blob: ee01ab606ad6ea3f76fe5376f83d228aceac40da [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);
Damien Lespiaue7457a92013-08-08 22:28:59 +010067
Jesse Barnes79e53942008-11-07 14:24:08 -080068typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040069 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080070} intel_range_t;
71
72typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040073 int dot_limit;
74 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080075} intel_p2_t;
76
Ma Lingd4906092009-03-18 20:13:27 +080077typedef struct intel_limit intel_limit_t;
78struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040079 intel_range_t dot, vco, n, m, m1, m2, p, p1;
80 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080081};
Jesse Barnes79e53942008-11-07 14:24:08 -080082
Daniel Vetterd2acd212012-10-20 20:57:43 +020083int
84intel_pch_rawclk(struct drm_device *dev)
85{
86 struct drm_i915_private *dev_priv = dev->dev_private;
87
88 WARN_ON(!HAS_PCH_SPLIT(dev));
89
90 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
91}
92
Chris Wilson021357a2010-09-07 20:54:59 +010093static inline u32 /* units of 100MHz */
94intel_fdi_link_freq(struct drm_device *dev)
95{
Chris Wilson8b99e682010-10-13 09:59:17 +010096 if (IS_GEN5(dev)) {
97 struct drm_i915_private *dev_priv = dev->dev_private;
98 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
99 } else
100 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100101}
102
Daniel Vetter5d536e22013-07-06 12:52:06 +0200103static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400104 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200105 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200106 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400107 .m = { .min = 96, .max = 140 },
108 .m1 = { .min = 18, .max = 26 },
109 .m2 = { .min = 6, .max = 16 },
110 .p = { .min = 4, .max = 128 },
111 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700112 .p2 = { .dot_limit = 165000,
113 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700114};
115
Daniel Vetter5d536e22013-07-06 12:52:06 +0200116static const intel_limit_t intel_limits_i8xx_dvo = {
117 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200118 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200119 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200120 .m = { .min = 96, .max = 140 },
121 .m1 = { .min = 18, .max = 26 },
122 .m2 = { .min = 6, .max = 16 },
123 .p = { .min = 4, .max = 128 },
124 .p1 = { .min = 2, .max = 33 },
125 .p2 = { .dot_limit = 165000,
126 .p2_slow = 4, .p2_fast = 4 },
127};
128
Keith Packarde4b36692009-06-05 19:22:17 -0700129static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400130 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200131 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200132 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400133 .m = { .min = 96, .max = 140 },
134 .m1 = { .min = 18, .max = 26 },
135 .m2 = { .min = 6, .max = 16 },
136 .p = { .min = 4, .max = 128 },
137 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700138 .p2 = { .dot_limit = 165000,
139 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700140};
Eric Anholt273e27c2011-03-30 13:01:10 -0700141
Keith Packarde4b36692009-06-05 19:22:17 -0700142static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400143 .dot = { .min = 20000, .max = 400000 },
144 .vco = { .min = 1400000, .max = 2800000 },
145 .n = { .min = 1, .max = 6 },
146 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100147 .m1 = { .min = 8, .max = 18 },
148 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400149 .p = { .min = 5, .max = 80 },
150 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700151 .p2 = { .dot_limit = 200000,
152 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700153};
154
155static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400156 .dot = { .min = 20000, .max = 400000 },
157 .vco = { .min = 1400000, .max = 2800000 },
158 .n = { .min = 1, .max = 6 },
159 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100160 .m1 = { .min = 8, .max = 18 },
161 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400162 .p = { .min = 7, .max = 98 },
163 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700164 .p2 = { .dot_limit = 112000,
165 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700166};
167
Eric Anholt273e27c2011-03-30 13:01:10 -0700168
Keith Packarde4b36692009-06-05 19:22:17 -0700169static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700170 .dot = { .min = 25000, .max = 270000 },
171 .vco = { .min = 1750000, .max = 3500000},
172 .n = { .min = 1, .max = 4 },
173 .m = { .min = 104, .max = 138 },
174 .m1 = { .min = 17, .max = 23 },
175 .m2 = { .min = 5, .max = 11 },
176 .p = { .min = 10, .max = 30 },
177 .p1 = { .min = 1, .max = 3},
178 .p2 = { .dot_limit = 270000,
179 .p2_slow = 10,
180 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800181 },
Keith Packarde4b36692009-06-05 19:22:17 -0700182};
183
184static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700185 .dot = { .min = 22000, .max = 400000 },
186 .vco = { .min = 1750000, .max = 3500000},
187 .n = { .min = 1, .max = 4 },
188 .m = { .min = 104, .max = 138 },
189 .m1 = { .min = 16, .max = 23 },
190 .m2 = { .min = 5, .max = 11 },
191 .p = { .min = 5, .max = 80 },
192 .p1 = { .min = 1, .max = 8},
193 .p2 = { .dot_limit = 165000,
194 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700195};
196
197static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700198 .dot = { .min = 20000, .max = 115000 },
199 .vco = { .min = 1750000, .max = 3500000 },
200 .n = { .min = 1, .max = 3 },
201 .m = { .min = 104, .max = 138 },
202 .m1 = { .min = 17, .max = 23 },
203 .m2 = { .min = 5, .max = 11 },
204 .p = { .min = 28, .max = 112 },
205 .p1 = { .min = 2, .max = 8 },
206 .p2 = { .dot_limit = 0,
207 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800208 },
Keith Packarde4b36692009-06-05 19:22:17 -0700209};
210
211static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700212 .dot = { .min = 80000, .max = 224000 },
213 .vco = { .min = 1750000, .max = 3500000 },
214 .n = { .min = 1, .max = 3 },
215 .m = { .min = 104, .max = 138 },
216 .m1 = { .min = 17, .max = 23 },
217 .m2 = { .min = 5, .max = 11 },
218 .p = { .min = 14, .max = 42 },
219 .p1 = { .min = 2, .max = 6 },
220 .p2 = { .dot_limit = 0,
221 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800222 },
Keith Packarde4b36692009-06-05 19:22:17 -0700223};
224
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500225static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400226 .dot = { .min = 20000, .max = 400000},
227 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700228 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400229 .n = { .min = 3, .max = 6 },
230 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700231 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400232 .m1 = { .min = 0, .max = 0 },
233 .m2 = { .min = 0, .max = 254 },
234 .p = { .min = 5, .max = 80 },
235 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700236 .p2 = { .dot_limit = 200000,
237 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700238};
239
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500240static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400241 .dot = { .min = 20000, .max = 400000 },
242 .vco = { .min = 1700000, .max = 3500000 },
243 .n = { .min = 3, .max = 6 },
244 .m = { .min = 2, .max = 256 },
245 .m1 = { .min = 0, .max = 0 },
246 .m2 = { .min = 0, .max = 254 },
247 .p = { .min = 7, .max = 112 },
248 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700249 .p2 = { .dot_limit = 112000,
250 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700251};
252
Eric Anholt273e27c2011-03-30 13:01:10 -0700253/* Ironlake / Sandybridge
254 *
255 * We calculate clock using (register_value + 2) for N/M1/M2, so here
256 * the range value for them is (actual_value - 2).
257 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800258static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700259 .dot = { .min = 25000, .max = 350000 },
260 .vco = { .min = 1760000, .max = 3510000 },
261 .n = { .min = 1, .max = 5 },
262 .m = { .min = 79, .max = 127 },
263 .m1 = { .min = 12, .max = 22 },
264 .m2 = { .min = 5, .max = 9 },
265 .p = { .min = 5, .max = 80 },
266 .p1 = { .min = 1, .max = 8 },
267 .p2 = { .dot_limit = 225000,
268 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700269};
270
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800271static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700272 .dot = { .min = 25000, .max = 350000 },
273 .vco = { .min = 1760000, .max = 3510000 },
274 .n = { .min = 1, .max = 3 },
275 .m = { .min = 79, .max = 118 },
276 .m1 = { .min = 12, .max = 22 },
277 .m2 = { .min = 5, .max = 9 },
278 .p = { .min = 28, .max = 112 },
279 .p1 = { .min = 2, .max = 8 },
280 .p2 = { .dot_limit = 225000,
281 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800282};
283
284static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700285 .dot = { .min = 25000, .max = 350000 },
286 .vco = { .min = 1760000, .max = 3510000 },
287 .n = { .min = 1, .max = 3 },
288 .m = { .min = 79, .max = 127 },
289 .m1 = { .min = 12, .max = 22 },
290 .m2 = { .min = 5, .max = 9 },
291 .p = { .min = 14, .max = 56 },
292 .p1 = { .min = 2, .max = 8 },
293 .p2 = { .dot_limit = 225000,
294 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800295};
296
Eric Anholt273e27c2011-03-30 13:01:10 -0700297/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800298static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700299 .dot = { .min = 25000, .max = 350000 },
300 .vco = { .min = 1760000, .max = 3510000 },
301 .n = { .min = 1, .max = 2 },
302 .m = { .min = 79, .max = 126 },
303 .m1 = { .min = 12, .max = 22 },
304 .m2 = { .min = 5, .max = 9 },
305 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400306 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700307 .p2 = { .dot_limit = 225000,
308 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800309};
310
311static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700312 .dot = { .min = 25000, .max = 350000 },
313 .vco = { .min = 1760000, .max = 3510000 },
314 .n = { .min = 1, .max = 3 },
315 .m = { .min = 79, .max = 126 },
316 .m1 = { .min = 12, .max = 22 },
317 .m2 = { .min = 5, .max = 9 },
318 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400319 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700320 .p2 = { .dot_limit = 225000,
321 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800322};
323
Ville Syrjälädc730512013-09-24 21:26:30 +0300324static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300325 /*
326 * These are the data rate limits (measured in fast clocks)
327 * since those are the strictest limits we have. The fast
328 * clock and actual rate limits are more relaxed, so checking
329 * them would make no difference.
330 */
331 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200332 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700333 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700334 .m1 = { .min = 2, .max = 3 },
335 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300336 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300337 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700338};
339
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300340static const intel_limit_t intel_limits_chv = {
341 /*
342 * These are the data rate limits (measured in fast clocks)
343 * since those are the strictest limits we have. The fast
344 * clock and actual rate limits are more relaxed, so checking
345 * them would make no difference.
346 */
347 .dot = { .min = 25000 * 5, .max = 540000 * 5},
348 .vco = { .min = 4860000, .max = 6700000 },
349 .n = { .min = 1, .max = 1 },
350 .m1 = { .min = 2, .max = 2 },
351 .m2 = { .min = 24 << 22, .max = 175 << 22 },
352 .p1 = { .min = 2, .max = 4 },
353 .p2 = { .p2_slow = 1, .p2_fast = 14 },
354};
355
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300356static void vlv_clock(int refclk, intel_clock_t *clock)
357{
358 clock->m = clock->m1 * clock->m2;
359 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200360 if (WARN_ON(clock->n == 0 || clock->p == 0))
361 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300362 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
363 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300364}
365
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300366/**
367 * Returns whether any output on the specified pipe is of the specified type
368 */
369static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
370{
371 struct drm_device *dev = crtc->dev;
372 struct intel_encoder *encoder;
373
374 for_each_encoder_on_crtc(dev, crtc, encoder)
375 if (encoder->type == type)
376 return true;
377
378 return false;
379}
380
Chris Wilson1b894b52010-12-14 20:04:54 +0000381static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
382 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800383{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800384 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800385 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800386
387 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100388 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000389 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800390 limit = &intel_limits_ironlake_dual_lvds_100m;
391 else
392 limit = &intel_limits_ironlake_dual_lvds;
393 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000394 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800395 limit = &intel_limits_ironlake_single_lvds_100m;
396 else
397 limit = &intel_limits_ironlake_single_lvds;
398 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200399 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800400 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800401
402 return limit;
403}
404
Ma Ling044c7c42009-03-18 20:13:23 +0800405static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
406{
407 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800408 const intel_limit_t *limit;
409
410 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100411 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700412 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800413 else
Keith Packarde4b36692009-06-05 19:22:17 -0700414 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800415 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
416 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700417 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800418 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700419 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800420 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700421 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800422
423 return limit;
424}
425
Chris Wilson1b894b52010-12-14 20:04:54 +0000426static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800427{
428 struct drm_device *dev = crtc->dev;
429 const intel_limit_t *limit;
430
Eric Anholtbad720f2009-10-22 16:11:14 -0700431 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000432 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800433 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800434 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500435 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800436 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500437 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800438 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500439 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300440 } else if (IS_CHERRYVIEW(dev)) {
441 limit = &intel_limits_chv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700442 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300443 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100444 } else if (!IS_GEN2(dev)) {
445 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
446 limit = &intel_limits_i9xx_lvds;
447 else
448 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800449 } else {
450 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700451 limit = &intel_limits_i8xx_lvds;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200452 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700453 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200454 else
455 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800456 }
457 return limit;
458}
459
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500460/* m1 is reserved as 0 in Pineview, n is a ring counter */
461static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800462{
Shaohua Li21778322009-02-23 15:19:16 +0800463 clock->m = clock->m2 + 2;
464 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200465 if (WARN_ON(clock->n == 0 || clock->p == 0))
466 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300467 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
468 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800469}
470
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200471static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
472{
473 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
474}
475
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200476static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800477{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200478 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800479 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200480 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
481 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300482 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
483 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800484}
485
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300486static void chv_clock(int refclk, intel_clock_t *clock)
487{
488 clock->m = clock->m1 * clock->m2;
489 clock->p = clock->p1 * clock->p2;
490 if (WARN_ON(clock->n == 0 || clock->p == 0))
491 return;
492 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
493 clock->n << 22);
494 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
495}
496
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800497#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800498/**
499 * Returns whether the given set of divisors are valid for a given refclk with
500 * the given connectors.
501 */
502
Chris Wilson1b894b52010-12-14 20:04:54 +0000503static bool intel_PLL_is_valid(struct drm_device *dev,
504 const intel_limit_t *limit,
505 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800506{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300507 if (clock->n < limit->n.min || limit->n.max < clock->n)
508 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800509 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400510 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800511 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400512 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800513 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400514 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300515
516 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
517 if (clock->m1 <= clock->m2)
518 INTELPllInvalid("m1 <= m2\n");
519
520 if (!IS_VALLEYVIEW(dev)) {
521 if (clock->p < limit->p.min || limit->p.max < clock->p)
522 INTELPllInvalid("p out of range\n");
523 if (clock->m < limit->m.min || limit->m.max < clock->m)
524 INTELPllInvalid("m out of range\n");
525 }
526
Jesse Barnes79e53942008-11-07 14:24:08 -0800527 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400528 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800529 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
530 * connector, etc., rather than just a single range.
531 */
532 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400533 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800534
535 return true;
536}
537
Ma Lingd4906092009-03-18 20:13:27 +0800538static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200539i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800540 int target, int refclk, intel_clock_t *match_clock,
541 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800542{
543 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800544 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800545 int err = target;
546
Daniel Vettera210b022012-11-26 17:22:08 +0100547 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800548 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100549 * For LVDS just rely on its current settings for dual-channel.
550 * We haven't figured out how to reliably set up different
551 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800552 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100553 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800554 clock.p2 = limit->p2.p2_fast;
555 else
556 clock.p2 = limit->p2.p2_slow;
557 } else {
558 if (target < limit->p2.dot_limit)
559 clock.p2 = limit->p2.p2_slow;
560 else
561 clock.p2 = limit->p2.p2_fast;
562 }
563
Akshay Joshi0206e352011-08-16 15:34:10 -0400564 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800565
Zhao Yakui42158662009-11-20 11:24:18 +0800566 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
567 clock.m1++) {
568 for (clock.m2 = limit->m2.min;
569 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200570 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800571 break;
572 for (clock.n = limit->n.min;
573 clock.n <= limit->n.max; clock.n++) {
574 for (clock.p1 = limit->p1.min;
575 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800576 int this_err;
577
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200578 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000579 if (!intel_PLL_is_valid(dev, limit,
580 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800581 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800582 if (match_clock &&
583 clock.p != match_clock->p)
584 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800585
586 this_err = abs(clock.dot - target);
587 if (this_err < err) {
588 *best_clock = clock;
589 err = this_err;
590 }
591 }
592 }
593 }
594 }
595
596 return (err != target);
597}
598
Ma Lingd4906092009-03-18 20:13:27 +0800599static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200600pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
601 int target, int refclk, intel_clock_t *match_clock,
602 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200603{
604 struct drm_device *dev = crtc->dev;
605 intel_clock_t clock;
606 int err = target;
607
608 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
609 /*
610 * For LVDS just rely on its current settings for dual-channel.
611 * We haven't figured out how to reliably set up different
612 * single/dual channel state, if we even can.
613 */
614 if (intel_is_dual_link_lvds(dev))
615 clock.p2 = limit->p2.p2_fast;
616 else
617 clock.p2 = limit->p2.p2_slow;
618 } else {
619 if (target < limit->p2.dot_limit)
620 clock.p2 = limit->p2.p2_slow;
621 else
622 clock.p2 = limit->p2.p2_fast;
623 }
624
625 memset(best_clock, 0, sizeof(*best_clock));
626
627 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
628 clock.m1++) {
629 for (clock.m2 = limit->m2.min;
630 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200631 for (clock.n = limit->n.min;
632 clock.n <= limit->n.max; clock.n++) {
633 for (clock.p1 = limit->p1.min;
634 clock.p1 <= limit->p1.max; clock.p1++) {
635 int this_err;
636
637 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800638 if (!intel_PLL_is_valid(dev, limit,
639 &clock))
640 continue;
641 if (match_clock &&
642 clock.p != match_clock->p)
643 continue;
644
645 this_err = abs(clock.dot - target);
646 if (this_err < err) {
647 *best_clock = clock;
648 err = this_err;
649 }
650 }
651 }
652 }
653 }
654
655 return (err != target);
656}
657
Ma Lingd4906092009-03-18 20:13:27 +0800658static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200659g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
660 int target, int refclk, intel_clock_t *match_clock,
661 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800662{
663 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800664 intel_clock_t clock;
665 int max_n;
666 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400667 /* approximately equals target * 0.00585 */
668 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800669 found = false;
670
671 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100672 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800673 clock.p2 = limit->p2.p2_fast;
674 else
675 clock.p2 = limit->p2.p2_slow;
676 } else {
677 if (target < limit->p2.dot_limit)
678 clock.p2 = limit->p2.p2_slow;
679 else
680 clock.p2 = limit->p2.p2_fast;
681 }
682
683 memset(best_clock, 0, sizeof(*best_clock));
684 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200685 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800686 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200687 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800688 for (clock.m1 = limit->m1.max;
689 clock.m1 >= limit->m1.min; clock.m1--) {
690 for (clock.m2 = limit->m2.max;
691 clock.m2 >= limit->m2.min; clock.m2--) {
692 for (clock.p1 = limit->p1.max;
693 clock.p1 >= limit->p1.min; clock.p1--) {
694 int this_err;
695
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200696 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000697 if (!intel_PLL_is_valid(dev, limit,
698 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800699 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000700
701 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800702 if (this_err < err_most) {
703 *best_clock = clock;
704 err_most = this_err;
705 max_n = clock.n;
706 found = true;
707 }
708 }
709 }
710 }
711 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800712 return found;
713}
Ma Lingd4906092009-03-18 20:13:27 +0800714
Zhenyu Wang2c072452009-06-05 15:38:42 +0800715static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200716vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
717 int target, int refclk, intel_clock_t *match_clock,
718 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700719{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300720 struct drm_device *dev = crtc->dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300721 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300722 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300723 /* min update 19.2 MHz */
724 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300725 bool found = false;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700726
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300727 target *= 5; /* fast clock */
728
729 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700730
731 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300732 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300733 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300734 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300735 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300736 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700737 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300738 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300739 unsigned int ppm, diff;
740
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300741 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
742 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300743
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300744 vlv_clock(refclk, &clock);
745
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300746 if (!intel_PLL_is_valid(dev, limit,
747 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300748 continue;
749
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300750 diff = abs(clock.dot - target);
751 ppm = div_u64(1000000ULL * diff, target);
752
753 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300754 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300755 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300756 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300757 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300758
Ville Syrjäläc6861222013-09-24 21:26:21 +0300759 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300760 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300761 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300762 found = true;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700763 }
764 }
765 }
766 }
767 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700768
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300769 return found;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700770}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700771
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300772static bool
773chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
774 int target, int refclk, intel_clock_t *match_clock,
775 intel_clock_t *best_clock)
776{
777 struct drm_device *dev = crtc->dev;
778 intel_clock_t clock;
779 uint64_t m2;
780 int found = false;
781
782 memset(best_clock, 0, sizeof(*best_clock));
783
784 /*
785 * Based on hardware doc, the n always set to 1, and m1 always
786 * set to 2. If requires to support 200Mhz refclk, we need to
787 * revisit this because n may not 1 anymore.
788 */
789 clock.n = 1, clock.m1 = 2;
790 target *= 5; /* fast clock */
791
792 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
793 for (clock.p2 = limit->p2.p2_fast;
794 clock.p2 >= limit->p2.p2_slow;
795 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
796
797 clock.p = clock.p1 * clock.p2;
798
799 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
800 clock.n) << 22, refclk * clock.m1);
801
802 if (m2 > INT_MAX/clock.m1)
803 continue;
804
805 clock.m2 = m2;
806
807 chv_clock(refclk, &clock);
808
809 if (!intel_PLL_is_valid(dev, limit, &clock))
810 continue;
811
812 /* based on hardware requirement, prefer bigger p
813 */
814 if (clock.p > best_clock->p) {
815 *best_clock = clock;
816 found = true;
817 }
818 }
819 }
820
821 return found;
822}
823
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300824bool intel_crtc_active(struct drm_crtc *crtc)
825{
826 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
827
828 /* Be paranoid as we can arrive here with only partial
829 * state retrieved from the hardware during setup.
830 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100831 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300832 * as Haswell has gained clock readout/fastboot support.
833 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000834 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300835 * properly reconstruct framebuffers.
836 */
Matt Roperf4510a22014-04-01 15:22:40 -0700837 return intel_crtc->active && crtc->primary->fb &&
Damien Lespiau241bfc32013-09-25 16:45:37 +0100838 intel_crtc->config.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300839}
840
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200841enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
842 enum pipe pipe)
843{
844 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
845 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
846
Daniel Vetter3b117c82013-04-17 20:15:07 +0200847 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200848}
849
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200850static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
Paulo Zanonia928d532012-05-04 17:18:15 -0300851{
852 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200853 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300854
855 frame = I915_READ(frame_reg);
856
857 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
Jesse Barnes93937072014-04-04 16:12:09 -0700858 WARN(1, "vblank wait timed out\n");
Paulo Zanonia928d532012-05-04 17:18:15 -0300859}
860
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700861/**
862 * intel_wait_for_vblank - wait for vblank on a given pipe
863 * @dev: drm device
864 * @pipe: pipe to wait for
865 *
866 * Wait for vblank to occur on a given pipe. Needed for various bits of
867 * mode setting code.
868 */
869void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800870{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700871 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800872 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700873
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200874 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
875 g4x_wait_for_vblank(dev, pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300876 return;
877 }
878
Chris Wilson300387c2010-09-05 20:25:43 +0100879 /* Clear existing vblank status. Note this will clear any other
880 * sticky status fields as well.
881 *
882 * This races with i915_driver_irq_handler() with the result
883 * that either function could miss a vblank event. Here it is not
884 * fatal, as we will either wait upon the next vblank interrupt or
885 * timeout. Generally speaking intel_wait_for_vblank() is only
886 * called during modeset at which time the GPU should be idle and
887 * should *not* be performing page flips and thus not waiting on
888 * vblanks...
889 * Currently, the result of us stealing a vblank from the irq
890 * handler is that a single frame will be skipped during swapbuffers.
891 */
892 I915_WRITE(pipestat_reg,
893 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
894
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700895 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100896 if (wait_for(I915_READ(pipestat_reg) &
897 PIPE_VBLANK_INTERRUPT_STATUS,
898 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700899 DRM_DEBUG_KMS("vblank wait timed out\n");
900}
901
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300902static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
903{
904 struct drm_i915_private *dev_priv = dev->dev_private;
905 u32 reg = PIPEDSL(pipe);
906 u32 line1, line2;
907 u32 line_mask;
908
909 if (IS_GEN2(dev))
910 line_mask = DSL_LINEMASK_GEN2;
911 else
912 line_mask = DSL_LINEMASK_GEN3;
913
914 line1 = I915_READ(reg) & line_mask;
915 mdelay(5);
916 line2 = I915_READ(reg) & line_mask;
917
918 return line1 == line2;
919}
920
Keith Packardab7ad7f2010-10-03 00:33:06 -0700921/*
922 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700923 * @dev: drm device
924 * @pipe: pipe to wait for
925 *
926 * After disabling a pipe, we can't wait for vblank in the usual way,
927 * spinning on the vblank interrupt status bit, since we won't actually
928 * see an interrupt when the pipe is disabled.
929 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700930 * On Gen4 and above:
931 * wait for the pipe register state bit to turn off
932 *
933 * Otherwise:
934 * wait for the display line value to settle (it usually
935 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100936 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700937 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100938void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700939{
940 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200941 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
942 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700943
Keith Packardab7ad7f2010-10-03 00:33:06 -0700944 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200945 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700946
Keith Packardab7ad7f2010-10-03 00:33:06 -0700947 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100948 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
949 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200950 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700951 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700952 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300953 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200954 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800956}
957
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000958/*
959 * ibx_digital_port_connected - is the specified port connected?
960 * @dev_priv: i915 private structure
961 * @port: the port to test
962 *
963 * Returns true if @port is connected, false otherwise.
964 */
965bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
966 struct intel_digital_port *port)
967{
968 u32 bit;
969
Damien Lespiauc36346e2012-12-13 16:09:03 +0000970 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200971 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000972 case PORT_B:
973 bit = SDE_PORTB_HOTPLUG;
974 break;
975 case PORT_C:
976 bit = SDE_PORTC_HOTPLUG;
977 break;
978 case PORT_D:
979 bit = SDE_PORTD_HOTPLUG;
980 break;
981 default:
982 return true;
983 }
984 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200985 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000986 case PORT_B:
987 bit = SDE_PORTB_HOTPLUG_CPT;
988 break;
989 case PORT_C:
990 bit = SDE_PORTC_HOTPLUG_CPT;
991 break;
992 case PORT_D:
993 bit = SDE_PORTD_HOTPLUG_CPT;
994 break;
995 default:
996 return true;
997 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000998 }
999
1000 return I915_READ(SDEISR) & bit;
1001}
1002
Jesse Barnesb24e7172011-01-04 15:09:30 -08001003static const char *state_string(bool enabled)
1004{
1005 return enabled ? "on" : "off";
1006}
1007
1008/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001009void assert_pll(struct drm_i915_private *dev_priv,
1010 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001011{
1012 int reg;
1013 u32 val;
1014 bool cur_state;
1015
1016 reg = DPLL(pipe);
1017 val = I915_READ(reg);
1018 cur_state = !!(val & DPLL_VCO_ENABLE);
1019 WARN(cur_state != state,
1020 "PLL state assertion failure (expected %s, current %s)\n",
1021 state_string(state), state_string(cur_state));
1022}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001023
Jani Nikula23538ef2013-08-27 15:12:22 +03001024/* XXX: the dsi pll is shared between MIPI DSI ports */
1025static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1026{
1027 u32 val;
1028 bool cur_state;
1029
1030 mutex_lock(&dev_priv->dpio_lock);
1031 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1032 mutex_unlock(&dev_priv->dpio_lock);
1033
1034 cur_state = val & DSI_PLL_VCO_EN;
1035 WARN(cur_state != state,
1036 "DSI PLL state assertion failure (expected %s, current %s)\n",
1037 state_string(state), state_string(cur_state));
1038}
1039#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1040#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1041
Daniel Vetter55607e82013-06-16 21:42:39 +02001042struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001043intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001044{
Daniel Vettere2b78262013-06-07 23:10:03 +02001045 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1046
Daniel Vettera43f6e02013-06-07 23:10:32 +02001047 if (crtc->config.shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001048 return NULL;
1049
Daniel Vettera43f6e02013-06-07 23:10:32 +02001050 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001051}
1052
Jesse Barnesb24e7172011-01-04 15:09:30 -08001053/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001054void assert_shared_dpll(struct drm_i915_private *dev_priv,
1055 struct intel_shared_dpll *pll,
1056 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001057{
Jesse Barnes040484a2011-01-03 12:14:26 -08001058 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001059 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001060
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001061 if (HAS_PCH_LPT(dev_priv->dev)) {
1062 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1063 return;
1064 }
1065
Chris Wilson92b27b02012-05-20 18:10:50 +01001066 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001067 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001068 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001069
Daniel Vetter53589012013-06-05 13:34:16 +02001070 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Chris Wilson92b27b02012-05-20 18:10:50 +01001071 WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001072 "%s assertion failure (expected %s, current %s)\n",
1073 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001074}
Jesse Barnes040484a2011-01-03 12:14:26 -08001075
1076static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1077 enum pipe pipe, bool state)
1078{
1079 int reg;
1080 u32 val;
1081 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001082 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1083 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001084
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001085 if (HAS_DDI(dev_priv->dev)) {
1086 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001087 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001088 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001089 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001090 } else {
1091 reg = FDI_TX_CTL(pipe);
1092 val = I915_READ(reg);
1093 cur_state = !!(val & FDI_TX_ENABLE);
1094 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001095 WARN(cur_state != state,
1096 "FDI TX state assertion failure (expected %s, current %s)\n",
1097 state_string(state), state_string(cur_state));
1098}
1099#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1100#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1101
1102static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1103 enum pipe pipe, bool state)
1104{
1105 int reg;
1106 u32 val;
1107 bool cur_state;
1108
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001109 reg = FDI_RX_CTL(pipe);
1110 val = I915_READ(reg);
1111 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001112 WARN(cur_state != state,
1113 "FDI RX state assertion failure (expected %s, current %s)\n",
1114 state_string(state), state_string(cur_state));
1115}
1116#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1117#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1118
1119static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1120 enum pipe pipe)
1121{
1122 int reg;
1123 u32 val;
1124
1125 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001126 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001127 return;
1128
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001129 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001130 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001131 return;
1132
Jesse Barnes040484a2011-01-03 12:14:26 -08001133 reg = FDI_TX_CTL(pipe);
1134 val = I915_READ(reg);
1135 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1136}
1137
Daniel Vetter55607e82013-06-16 21:42:39 +02001138void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1139 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001140{
1141 int reg;
1142 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001143 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001144
1145 reg = FDI_RX_CTL(pipe);
1146 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001147 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1148 WARN(cur_state != state,
1149 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1150 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001151}
1152
Jesse Barnesea0760c2011-01-04 15:09:32 -08001153static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1154 enum pipe pipe)
1155{
1156 int pp_reg, lvds_reg;
1157 u32 val;
1158 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001159 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001160
1161 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1162 pp_reg = PCH_PP_CONTROL;
1163 lvds_reg = PCH_LVDS;
1164 } else {
1165 pp_reg = PP_CONTROL;
1166 lvds_reg = LVDS;
1167 }
1168
1169 val = I915_READ(pp_reg);
1170 if (!(val & PANEL_POWER_ON) ||
1171 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1172 locked = false;
1173
1174 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1175 panel_pipe = PIPE_B;
1176
1177 WARN(panel_pipe == pipe && locked,
1178 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001179 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001180}
1181
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001182static void assert_cursor(struct drm_i915_private *dev_priv,
1183 enum pipe pipe, bool state)
1184{
1185 struct drm_device *dev = dev_priv->dev;
1186 bool cur_state;
1187
Paulo Zanonid9d82082014-02-27 16:30:56 -03001188 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001189 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001190 else if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001191 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001192 else
1193 cur_state = I915_READ(CURCNTR_IVB(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001194
1195 WARN(cur_state != state,
1196 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1197 pipe_name(pipe), state_string(state), state_string(cur_state));
1198}
1199#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1200#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1201
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001202void assert_pipe(struct drm_i915_private *dev_priv,
1203 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001204{
1205 int reg;
1206 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001207 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001208 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1209 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001210
Daniel Vetter8e636782012-01-22 01:36:48 +01001211 /* if we need the pipe A quirk it must be always on */
1212 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1213 state = true;
1214
Imre Deakda7e29b2014-02-18 00:02:02 +02001215 if (!intel_display_power_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001216 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001217 cur_state = false;
1218 } else {
1219 reg = PIPECONF(cpu_transcoder);
1220 val = I915_READ(reg);
1221 cur_state = !!(val & PIPECONF_ENABLE);
1222 }
1223
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001224 WARN(cur_state != state,
1225 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001226 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001227}
1228
Chris Wilson931872f2012-01-16 23:01:13 +00001229static void assert_plane(struct drm_i915_private *dev_priv,
1230 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001231{
1232 int reg;
1233 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001234 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001235
1236 reg = DSPCNTR(plane);
1237 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001238 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1239 WARN(cur_state != state,
1240 "plane %c assertion failure (expected %s, current %s)\n",
1241 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001242}
1243
Chris Wilson931872f2012-01-16 23:01:13 +00001244#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1245#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1246
Jesse Barnesb24e7172011-01-04 15:09:30 -08001247static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1248 enum pipe pipe)
1249{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001250 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001251 int reg, i;
1252 u32 val;
1253 int cur_pipe;
1254
Ville Syrjälä653e1022013-06-04 13:49:05 +03001255 /* Primary planes are fixed to pipes on gen4+ */
1256 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001257 reg = DSPCNTR(pipe);
1258 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001259 WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001260 "plane %c assertion failure, should be disabled but not\n",
1261 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001262 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001263 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001264
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265 /* Need to check both planes against the pipe */
Damien Lespiau08e2a7d2013-07-11 20:10:54 +01001266 for_each_pipe(i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001267 reg = DSPCNTR(i);
1268 val = I915_READ(reg);
1269 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1270 DISPPLANE_SEL_PIPE_SHIFT;
1271 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001272 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1273 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001274 }
1275}
1276
Jesse Barnes19332d72013-03-28 09:55:38 -07001277static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1278 enum pipe pipe)
1279{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001280 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001281 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001282 u32 val;
1283
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001284 if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001285 for_each_sprite(pipe, sprite) {
1286 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001287 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001288 WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001289 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001290 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001291 }
1292 } else if (INTEL_INFO(dev)->gen >= 7) {
1293 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001294 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001295 WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001296 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001297 plane_name(pipe), pipe_name(pipe));
1298 } else if (INTEL_INFO(dev)->gen >= 5) {
1299 reg = DVSCNTR(pipe);
1300 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001301 WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001302 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1303 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001304 }
1305}
1306
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001307static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001308{
1309 u32 val;
1310 bool enabled;
1311
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001312 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001313
Jesse Barnes92f25842011-01-04 15:09:34 -08001314 val = I915_READ(PCH_DREF_CONTROL);
1315 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1316 DREF_SUPERSPREAD_SOURCE_MASK));
1317 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1318}
1319
Daniel Vetterab9412b2013-05-03 11:49:46 +02001320static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1321 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001322{
1323 int reg;
1324 u32 val;
1325 bool enabled;
1326
Daniel Vetterab9412b2013-05-03 11:49:46 +02001327 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001328 val = I915_READ(reg);
1329 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001330 WARN(enabled,
1331 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1332 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001333}
1334
Keith Packard4e634382011-08-06 10:39:45 -07001335static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1336 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001337{
1338 if ((val & DP_PORT_EN) == 0)
1339 return false;
1340
1341 if (HAS_PCH_CPT(dev_priv->dev)) {
1342 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1343 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1344 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1345 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001346 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1347 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1348 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001349 } else {
1350 if ((val & DP_PIPE_MASK) != (pipe << 30))
1351 return false;
1352 }
1353 return true;
1354}
1355
Keith Packard1519b992011-08-06 10:35:34 -07001356static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1357 enum pipe pipe, u32 val)
1358{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001359 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001360 return false;
1361
1362 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001363 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001364 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001365 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1366 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1367 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001368 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001369 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001370 return false;
1371 }
1372 return true;
1373}
1374
1375static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1376 enum pipe pipe, u32 val)
1377{
1378 if ((val & LVDS_PORT_EN) == 0)
1379 return false;
1380
1381 if (HAS_PCH_CPT(dev_priv->dev)) {
1382 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1383 return false;
1384 } else {
1385 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1386 return false;
1387 }
1388 return true;
1389}
1390
1391static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1392 enum pipe pipe, u32 val)
1393{
1394 if ((val & ADPA_DAC_ENABLE) == 0)
1395 return false;
1396 if (HAS_PCH_CPT(dev_priv->dev)) {
1397 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1398 return false;
1399 } else {
1400 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1401 return false;
1402 }
1403 return true;
1404}
1405
Jesse Barnes291906f2011-02-02 12:28:03 -08001406static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001407 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001408{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001409 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001410 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001411 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001412 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001413
Daniel Vetter75c5da22012-09-10 21:58:29 +02001414 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1415 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001416 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001417}
1418
1419static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1420 enum pipe pipe, int reg)
1421{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001422 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001423 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001424 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001425 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001426
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001427 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001428 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001429 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001430}
1431
1432static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1433 enum pipe pipe)
1434{
1435 int reg;
1436 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001437
Keith Packardf0575e92011-07-25 22:12:43 -07001438 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1439 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1440 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001441
1442 reg = PCH_ADPA;
1443 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001444 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001445 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001446 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001447
1448 reg = PCH_LVDS;
1449 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001450 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001451 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001452 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001453
Paulo Zanonie2debe92013-02-18 19:00:27 -03001454 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1455 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1456 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001457}
1458
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001459static void intel_init_dpio(struct drm_device *dev)
1460{
1461 struct drm_i915_private *dev_priv = dev->dev_private;
1462
1463 if (!IS_VALLEYVIEW(dev))
1464 return;
1465
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001466 /*
1467 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1468 * CHV x1 PHY (DP/HDMI D)
1469 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1470 */
1471 if (IS_CHERRYVIEW(dev)) {
1472 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1473 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1474 } else {
1475 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1476 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001477}
1478
1479static void intel_reset_dpio(struct drm_device *dev)
1480{
1481 struct drm_i915_private *dev_priv = dev->dev_private;
1482
1483 if (!IS_VALLEYVIEW(dev))
1484 return;
1485
Imre Deake5cbfbf2014-01-09 17:08:16 +02001486 /*
1487 * Enable the CRI clock source so we can get at the display and the
1488 * reference clock for VGA hotplug / manual detection.
1489 */
Imre Deak404faab2014-01-09 17:08:15 +02001490 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
Imre Deake5cbfbf2014-01-09 17:08:16 +02001491 DPLL_REFA_CLK_ENABLE_VLV |
Imre Deak404faab2014-01-09 17:08:15 +02001492 DPLL_INTEGRATED_CRI_CLK_VLV);
1493
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001494 if (IS_CHERRYVIEW(dev)) {
1495 enum dpio_phy phy;
1496 u32 val;
1497
1498 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1499 /* Poll for phypwrgood signal */
1500 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1501 PHY_POWERGOOD(phy), 1))
1502 DRM_ERROR("Display PHY %d is not power up\n", phy);
1503
1504 /*
1505 * Deassert common lane reset for PHY.
1506 *
1507 * This should only be done on init and resume from S3
1508 * with both PLLs disabled, or we risk losing DPIO and
1509 * PLL synchronization.
1510 */
1511 val = I915_READ(DISPLAY_PHY_CONTROL);
1512 I915_WRITE(DISPLAY_PHY_CONTROL,
1513 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1514 }
1515
1516 } else {
1517 /*
1518 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1519 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1520 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1521 * b. The other bits such as sfr settings / modesel may all
1522 * be set to 0.
1523 *
1524 * This should only be done on init and resume from S3 with
1525 * both PLLs disabled, or we risk losing DPIO and PLL
1526 * synchronization.
1527 */
1528 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1529 }
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001530}
1531
Daniel Vetter426115c2013-07-11 22:13:42 +02001532static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001533{
Daniel Vetter426115c2013-07-11 22:13:42 +02001534 struct drm_device *dev = crtc->base.dev;
1535 struct drm_i915_private *dev_priv = dev->dev_private;
1536 int reg = DPLL(crtc->pipe);
1537 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001538
Daniel Vetter426115c2013-07-11 22:13:42 +02001539 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001540
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001541 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001542 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1543
1544 /* PLL is protected by panel, make sure we can write it */
1545 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001546 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001547
Daniel Vetter426115c2013-07-11 22:13:42 +02001548 I915_WRITE(reg, dpll);
1549 POSTING_READ(reg);
1550 udelay(150);
1551
1552 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1553 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1554
1555 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1556 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001557
1558 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001559 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001560 POSTING_READ(reg);
1561 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001562 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001563 POSTING_READ(reg);
1564 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001565 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001566 POSTING_READ(reg);
1567 udelay(150); /* wait for warmup */
1568}
1569
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001570static void chv_enable_pll(struct intel_crtc *crtc)
1571{
1572 struct drm_device *dev = crtc->base.dev;
1573 struct drm_i915_private *dev_priv = dev->dev_private;
1574 int pipe = crtc->pipe;
1575 enum dpio_channel port = vlv_pipe_to_channel(pipe);
1576 int dpll = DPLL(crtc->pipe);
1577 u32 tmp;
1578
1579 assert_pipe_disabled(dev_priv, crtc->pipe);
1580
1581 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1582
1583 mutex_lock(&dev_priv->dpio_lock);
1584
1585 /* Enable back the 10bit clock to display controller */
1586 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1587 tmp |= DPIO_DCLKP_EN;
1588 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1589
1590 /*
1591 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1592 */
1593 udelay(1);
1594
1595 /* Enable PLL */
1596 tmp = I915_READ(dpll);
1597 tmp |= DPLL_VCO_ENABLE;
1598 I915_WRITE(dpll, tmp);
1599
1600 /* Check PLL is locked */
1601 if (wait_for(((I915_READ(dpll) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1602 DRM_ERROR("PLL %d failed to lock\n", pipe);
1603
1604 /* Deassert soft data lane reset*/
1605 tmp = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
1606 tmp |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1607 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), tmp);
1608
1609
1610 mutex_unlock(&dev_priv->dpio_lock);
1611}
1612
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001613static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001614{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001615 struct drm_device *dev = crtc->base.dev;
1616 struct drm_i915_private *dev_priv = dev->dev_private;
1617 int reg = DPLL(crtc->pipe);
1618 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001619
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001620 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001621
1622 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001623 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001624
1625 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001626 if (IS_MOBILE(dev) && !IS_I830(dev))
1627 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001628
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001629 I915_WRITE(reg, dpll);
1630
1631 /* Wait for the clocks to stabilize. */
1632 POSTING_READ(reg);
1633 udelay(150);
1634
1635 if (INTEL_INFO(dev)->gen >= 4) {
1636 I915_WRITE(DPLL_MD(crtc->pipe),
1637 crtc->config.dpll_hw_state.dpll_md);
1638 } else {
1639 /* The pixel multiplier can only be updated once the
1640 * DPLL is enabled and the clocks are stable.
1641 *
1642 * So write it again.
1643 */
1644 I915_WRITE(reg, dpll);
1645 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001646
1647 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001648 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001649 POSTING_READ(reg);
1650 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001651 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001652 POSTING_READ(reg);
1653 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001654 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001655 POSTING_READ(reg);
1656 udelay(150); /* wait for warmup */
1657}
1658
1659/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001660 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001661 * @dev_priv: i915 private structure
1662 * @pipe: pipe PLL to disable
1663 *
1664 * Disable the PLL for @pipe, making sure the pipe is off first.
1665 *
1666 * Note! This is for pre-ILK only.
1667 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001668static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001669{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001670 /* Don't disable pipe A or pipe A PLLs if needed */
1671 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1672 return;
1673
1674 /* Make sure the pipe isn't still relying on us */
1675 assert_pipe_disabled(dev_priv, pipe);
1676
Daniel Vetter50b44a42013-06-05 13:34:33 +02001677 I915_WRITE(DPLL(pipe), 0);
1678 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001679}
1680
Jesse Barnesf6071162013-10-01 10:41:38 -07001681static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1682{
1683 u32 val = 0;
1684
1685 /* Make sure the pipe isn't still relying on us */
1686 assert_pipe_disabled(dev_priv, pipe);
1687
Imre Deake5cbfbf2014-01-09 17:08:16 +02001688 /*
1689 * Leave integrated clock source and reference clock enabled for pipe B.
1690 * The latter is needed for VGA hotplug / manual detection.
1691 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001692 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001693 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001694 I915_WRITE(DPLL(pipe), val);
1695 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001696
1697}
1698
1699static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1700{
1701 int dpll = DPLL(pipe);
1702 u32 val;
1703
1704 /* Set PLL en = 0 */
1705 val = I915_READ(dpll);
1706 val &= ~DPLL_VCO_ENABLE;
1707 I915_WRITE(dpll, val);
1708
Jesse Barnesf6071162013-10-01 10:41:38 -07001709}
1710
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001711void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1712 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001713{
1714 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001715 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001716
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001717 switch (dport->port) {
1718 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001719 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001720 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001721 break;
1722 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001723 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001724 dpll_reg = DPLL(0);
1725 break;
1726 case PORT_D:
1727 port_mask = DPLL_PORTD_READY_MASK;
1728 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001729 break;
1730 default:
1731 BUG();
1732 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001733
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001734 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001735 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001736 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001737}
1738
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001739/**
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001740 * ironlake_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001741 * @dev_priv: i915 private structure
1742 * @pipe: pipe PLL to enable
1743 *
1744 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1745 * drives the transcoder clock.
1746 */
Daniel Vettere2b78262013-06-07 23:10:03 +02001747static void ironlake_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001748{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001749 struct drm_device *dev = crtc->base.dev;
1750 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001751 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001752
Chris Wilson48da64a2012-05-13 20:16:12 +01001753 /* PCH PLLs only available on ILK, SNB and IVB */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001754 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001755 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001756 return;
1757
1758 if (WARN_ON(pll->refcount == 0))
1759 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001760
Daniel Vetter46edb022013-06-05 13:34:12 +02001761 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1762 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001763 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001764
Daniel Vettercdbd2312013-06-05 13:34:03 +02001765 if (pll->active++) {
1766 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001767 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001768 return;
1769 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001770 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001771
Daniel Vetter46edb022013-06-05 13:34:12 +02001772 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001773 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001774 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001775}
1776
Daniel Vettere2b78262013-06-07 23:10:03 +02001777static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001778{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001779 struct drm_device *dev = crtc->base.dev;
1780 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001781 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001782
Jesse Barnes92f25842011-01-04 15:09:34 -08001783 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001784 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001785 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001786 return;
1787
Chris Wilson48da64a2012-05-13 20:16:12 +01001788 if (WARN_ON(pll->refcount == 0))
1789 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001790
Daniel Vetter46edb022013-06-05 13:34:12 +02001791 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1792 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001793 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001794
Chris Wilson48da64a2012-05-13 20:16:12 +01001795 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001796 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001797 return;
1798 }
1799
Daniel Vettere9d69442013-06-05 13:34:15 +02001800 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001801 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001802 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001803 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001804
Daniel Vetter46edb022013-06-05 13:34:12 +02001805 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001806 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001807 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001808}
1809
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001810static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1811 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001812{
Daniel Vetter23670b322012-11-01 09:15:30 +01001813 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001814 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001815 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001816 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001817
1818 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001819 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001820
1821 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001822 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001823 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001824
1825 /* FDI must be feeding us bits for PCH ports */
1826 assert_fdi_tx_enabled(dev_priv, pipe);
1827 assert_fdi_rx_enabled(dev_priv, pipe);
1828
Daniel Vetter23670b322012-11-01 09:15:30 +01001829 if (HAS_PCH_CPT(dev)) {
1830 /* Workaround: Set the timing override bit before enabling the
1831 * pch transcoder. */
1832 reg = TRANS_CHICKEN2(pipe);
1833 val = I915_READ(reg);
1834 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1835 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001836 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001837
Daniel Vetterab9412b2013-05-03 11:49:46 +02001838 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001839 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001840 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001841
1842 if (HAS_PCH_IBX(dev_priv->dev)) {
1843 /*
1844 * make the BPC in transcoder be consistent with
1845 * that in pipeconf reg.
1846 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001847 val &= ~PIPECONF_BPC_MASK;
1848 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001849 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001850
1851 val &= ~TRANS_INTERLACE_MASK;
1852 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001853 if (HAS_PCH_IBX(dev_priv->dev) &&
1854 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1855 val |= TRANS_LEGACY_INTERLACED_ILK;
1856 else
1857 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001858 else
1859 val |= TRANS_PROGRESSIVE;
1860
Jesse Barnes040484a2011-01-03 12:14:26 -08001861 I915_WRITE(reg, val | TRANS_ENABLE);
1862 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001863 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001864}
1865
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001866static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001867 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001868{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001869 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001870
1871 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001872 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001873
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001874 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001875 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001876 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001877
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001878 /* Workaround: set timing override bit. */
1879 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001880 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001881 I915_WRITE(_TRANSA_CHICKEN2, val);
1882
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001883 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001884 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001885
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001886 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1887 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001888 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001889 else
1890 val |= TRANS_PROGRESSIVE;
1891
Daniel Vetterab9412b2013-05-03 11:49:46 +02001892 I915_WRITE(LPT_TRANSCONF, val);
1893 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001894 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001895}
1896
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001897static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1898 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001899{
Daniel Vetter23670b322012-11-01 09:15:30 +01001900 struct drm_device *dev = dev_priv->dev;
1901 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001902
1903 /* FDI relies on the transcoder */
1904 assert_fdi_tx_disabled(dev_priv, pipe);
1905 assert_fdi_rx_disabled(dev_priv, pipe);
1906
Jesse Barnes291906f2011-02-02 12:28:03 -08001907 /* Ports must be off as well */
1908 assert_pch_ports_disabled(dev_priv, pipe);
1909
Daniel Vetterab9412b2013-05-03 11:49:46 +02001910 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001911 val = I915_READ(reg);
1912 val &= ~TRANS_ENABLE;
1913 I915_WRITE(reg, val);
1914 /* wait for PCH transcoder off, transcoder state */
1915 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001916 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001917
1918 if (!HAS_PCH_IBX(dev)) {
1919 /* Workaround: Clear the timing override chicken bit again. */
1920 reg = TRANS_CHICKEN2(pipe);
1921 val = I915_READ(reg);
1922 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1923 I915_WRITE(reg, val);
1924 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001925}
1926
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001927static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001928{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001929 u32 val;
1930
Daniel Vetterab9412b2013-05-03 11:49:46 +02001931 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001932 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001933 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001934 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001935 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001936 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001937
1938 /* Workaround: clear timing override bit. */
1939 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001940 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001941 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001942}
1943
1944/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001945 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001946 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001947 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001948 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001949 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001950 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001951static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001952{
Paulo Zanoni03722642014-01-17 13:51:09 -02001953 struct drm_device *dev = crtc->base.dev;
1954 struct drm_i915_private *dev_priv = dev->dev_private;
1955 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001956 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1957 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001958 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001959 int reg;
1960 u32 val;
1961
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001962 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001963 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001964 assert_sprites_disabled(dev_priv, pipe);
1965
Paulo Zanoni681e5812012-12-06 11:12:38 -02001966 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001967 pch_transcoder = TRANSCODER_A;
1968 else
1969 pch_transcoder = pipe;
1970
Jesse Barnesb24e7172011-01-04 15:09:30 -08001971 /*
1972 * A pipe without a PLL won't actually be able to drive bits from
1973 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1974 * need the check.
1975 */
1976 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02001977 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03001978 assert_dsi_pll_enabled(dev_priv);
1979 else
1980 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001981 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02001982 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08001983 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001984 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001985 assert_fdi_tx_pll_enabled(dev_priv,
1986 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001987 }
1988 /* FIXME: assert CPU port conditions for SNB+ */
1989 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001990
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001991 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001992 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02001993 if (val & PIPECONF_ENABLE) {
1994 WARN_ON(!(pipe == PIPE_A &&
1995 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00001996 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02001997 }
Chris Wilson00d70b12011-03-17 07:18:29 +00001998
1999 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002000 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002001}
2002
2003/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002004 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002005 * @dev_priv: i915 private structure
2006 * @pipe: pipe to disable
2007 *
2008 * Disable @pipe, making sure that various hardware specific requirements
2009 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2010 *
2011 * @pipe should be %PIPE_A or %PIPE_B.
2012 *
2013 * Will wait until the pipe has shut down before returning.
2014 */
2015static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2016 enum pipe pipe)
2017{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002018 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2019 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002020 int reg;
2021 u32 val;
2022
2023 /*
2024 * Make sure planes won't keep trying to pump pixels to us,
2025 * or we might hang the display.
2026 */
2027 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002028 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002029 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002030
2031 /* Don't disable pipe A or pipe A PLLs if needed */
2032 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2033 return;
2034
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002035 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002036 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002037 if ((val & PIPECONF_ENABLE) == 0)
2038 return;
2039
2040 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002041 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2042}
2043
Keith Packardd74362c2011-07-28 14:47:14 -07002044/*
2045 * Plane regs are double buffered, going from enabled->disabled needs a
2046 * trigger in order to latch. The display address reg provides this.
2047 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002048void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2049 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002050{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002051 struct drm_device *dev = dev_priv->dev;
2052 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002053
2054 I915_WRITE(reg, I915_READ(reg));
2055 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002056}
2057
Jesse Barnesb24e7172011-01-04 15:09:30 -08002058/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002059 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002060 * @dev_priv: i915 private structure
2061 * @plane: plane to enable
2062 * @pipe: pipe being fed
2063 *
2064 * Enable @plane on @pipe, making sure that @pipe is running first.
2065 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002066static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2067 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002068{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002069 struct intel_crtc *intel_crtc =
2070 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002071 int reg;
2072 u32 val;
2073
2074 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2075 assert_pipe_enabled(dev_priv, pipe);
2076
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002077 if (intel_crtc->primary_enabled)
2078 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002079
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002080 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002081
Jesse Barnesb24e7172011-01-04 15:09:30 -08002082 reg = DSPCNTR(plane);
2083 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002084 WARN_ON(val & DISPLAY_PLANE_ENABLE);
Chris Wilson00d70b12011-03-17 07:18:29 +00002085
2086 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002087 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002088 intel_wait_for_vblank(dev_priv->dev, pipe);
2089}
2090
Jesse Barnesb24e7172011-01-04 15:09:30 -08002091/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002092 * intel_disable_primary_hw_plane - disable the primary hardware plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002093 * @dev_priv: i915 private structure
2094 * @plane: plane to disable
2095 * @pipe: pipe consuming the data
2096 *
2097 * Disable @plane; should be an independent operation.
2098 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002099static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2100 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002101{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002102 struct intel_crtc *intel_crtc =
2103 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002104 int reg;
2105 u32 val;
2106
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002107 if (!intel_crtc->primary_enabled)
2108 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002109
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002110 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002111
Jesse Barnesb24e7172011-01-04 15:09:30 -08002112 reg = DSPCNTR(plane);
2113 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002114 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
Chris Wilson00d70b12011-03-17 07:18:29 +00002115
2116 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002117 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002118 intel_wait_for_vblank(dev_priv->dev, pipe);
2119}
2120
Chris Wilson693db182013-03-05 14:52:39 +00002121static bool need_vtd_wa(struct drm_device *dev)
2122{
2123#ifdef CONFIG_INTEL_IOMMU
2124 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2125 return true;
2126#endif
2127 return false;
2128}
2129
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002130static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2131{
2132 int tile_height;
2133
2134 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2135 return ALIGN(height, tile_height);
2136}
2137
Chris Wilson127bd2a2010-07-23 23:32:05 +01002138int
Chris Wilson48b956c2010-09-14 12:50:34 +01002139intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002140 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002141 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002142{
Chris Wilsonce453d82011-02-21 14:43:56 +00002143 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002144 u32 alignment;
2145 int ret;
2146
Chris Wilson05394f32010-11-08 19:18:58 +00002147 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002148 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002149 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2150 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002151 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002152 alignment = 4 * 1024;
2153 else
2154 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002155 break;
2156 case I915_TILING_X:
2157 /* pin() will align the object as required by fence */
2158 alignment = 0;
2159 break;
2160 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002161 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002162 return -EINVAL;
2163 default:
2164 BUG();
2165 }
2166
Chris Wilson693db182013-03-05 14:52:39 +00002167 /* Note that the w/a also requires 64 PTE of padding following the
2168 * bo. We currently fill all unused PTE with the shadow page and so
2169 * we should always have valid PTE following the scanout preventing
2170 * the VT-d warning.
2171 */
2172 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2173 alignment = 256 * 1024;
2174
Chris Wilsonce453d82011-02-21 14:43:56 +00002175 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002176 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002177 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002178 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002179
2180 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2181 * fence, whereas 965+ only requires a fence if using
2182 * framebuffer compression. For simplicity, we always install
2183 * a fence as the cost is not that onerous.
2184 */
Chris Wilson06d98132012-04-17 15:31:24 +01002185 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002186 if (ret)
2187 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002188
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002189 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002190
Chris Wilsonce453d82011-02-21 14:43:56 +00002191 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002192 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002193
2194err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002195 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002196err_interruptible:
2197 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002198 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002199}
2200
Chris Wilson1690e1e2011-12-14 13:57:08 +01002201void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2202{
2203 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002204 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002205}
2206
Daniel Vetterc2c75132012-07-05 12:17:30 +02002207/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2208 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002209unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2210 unsigned int tiling_mode,
2211 unsigned int cpp,
2212 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002213{
Chris Wilsonbc752862013-02-21 20:04:31 +00002214 if (tiling_mode != I915_TILING_NONE) {
2215 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002216
Chris Wilsonbc752862013-02-21 20:04:31 +00002217 tile_rows = *y / 8;
2218 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002219
Chris Wilsonbc752862013-02-21 20:04:31 +00002220 tiles = *x / (512/cpp);
2221 *x %= 512/cpp;
2222
2223 return tile_rows * pitch * 8 + tiles * 4096;
2224 } else {
2225 unsigned int offset;
2226
2227 offset = *y * pitch + *x * cpp;
2228 *y = 0;
2229 *x = (offset & 4095) / cpp;
2230 return offset & -4096;
2231 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002232}
2233
Jesse Barnes46f297f2014-03-07 08:57:48 -08002234int intel_format_to_fourcc(int format)
2235{
2236 switch (format) {
2237 case DISPPLANE_8BPP:
2238 return DRM_FORMAT_C8;
2239 case DISPPLANE_BGRX555:
2240 return DRM_FORMAT_XRGB1555;
2241 case DISPPLANE_BGRX565:
2242 return DRM_FORMAT_RGB565;
2243 default:
2244 case DISPPLANE_BGRX888:
2245 return DRM_FORMAT_XRGB8888;
2246 case DISPPLANE_RGBX888:
2247 return DRM_FORMAT_XBGR8888;
2248 case DISPPLANE_BGRX101010:
2249 return DRM_FORMAT_XRGB2101010;
2250 case DISPPLANE_RGBX101010:
2251 return DRM_FORMAT_XBGR2101010;
2252 }
2253}
2254
Jesse Barnes484b41d2014-03-07 08:57:55 -08002255static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002256 struct intel_plane_config *plane_config)
2257{
2258 struct drm_device *dev = crtc->base.dev;
2259 struct drm_i915_gem_object *obj = NULL;
2260 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2261 u32 base = plane_config->base;
2262
Chris Wilsonff2652e2014-03-10 08:07:02 +00002263 if (plane_config->size == 0)
2264 return false;
2265
Jesse Barnes46f297f2014-03-07 08:57:48 -08002266 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2267 plane_config->size);
2268 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002269 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002270
2271 if (plane_config->tiled) {
2272 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002273 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002274 }
2275
Dave Airlie66e514c2014-04-03 07:51:54 +10002276 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2277 mode_cmd.width = crtc->base.primary->fb->width;
2278 mode_cmd.height = crtc->base.primary->fb->height;
2279 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002280
2281 mutex_lock(&dev->struct_mutex);
2282
Dave Airlie66e514c2014-04-03 07:51:54 +10002283 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002284 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002285 DRM_DEBUG_KMS("intel fb init failed\n");
2286 goto out_unref_obj;
2287 }
2288
2289 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002290
2291 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2292 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002293
2294out_unref_obj:
2295 drm_gem_object_unreference(&obj->base);
2296 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002297 return false;
2298}
2299
2300static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2301 struct intel_plane_config *plane_config)
2302{
2303 struct drm_device *dev = intel_crtc->base.dev;
2304 struct drm_crtc *c;
2305 struct intel_crtc *i;
2306 struct intel_framebuffer *fb;
2307
Dave Airlie66e514c2014-04-03 07:51:54 +10002308 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002309 return;
2310
2311 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2312 return;
2313
Dave Airlie66e514c2014-04-03 07:51:54 +10002314 kfree(intel_crtc->base.primary->fb);
2315 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002316
2317 /*
2318 * Failed to alloc the obj, check to see if we should share
2319 * an fb with another CRTC instead
2320 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002321 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002322 i = to_intel_crtc(c);
2323
2324 if (c == &intel_crtc->base)
2325 continue;
2326
Dave Airlie66e514c2014-04-03 07:51:54 +10002327 if (!i->active || !c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002328 continue;
2329
Dave Airlie66e514c2014-04-03 07:51:54 +10002330 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002331 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002332 drm_framebuffer_reference(c->primary->fb);
2333 intel_crtc->base.primary->fb = c->primary->fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002334 break;
2335 }
2336 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002337}
2338
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002339static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2340 struct drm_framebuffer *fb,
2341 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002342{
2343 struct drm_device *dev = crtc->dev;
2344 struct drm_i915_private *dev_priv = dev->dev_private;
2345 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2346 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002347 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002348 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002349 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002350 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002351 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002352
Jesse Barnes81255562010-08-02 12:07:50 -07002353 intel_fb = to_intel_framebuffer(fb);
2354 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002355
Chris Wilson5eddb702010-09-11 13:48:45 +01002356 reg = DSPCNTR(plane);
2357 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002358 /* Mask out pixel format bits in case we change it */
2359 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002360 switch (fb->pixel_format) {
2361 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002362 dspcntr |= DISPPLANE_8BPP;
2363 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002364 case DRM_FORMAT_XRGB1555:
2365 case DRM_FORMAT_ARGB1555:
2366 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002367 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002368 case DRM_FORMAT_RGB565:
2369 dspcntr |= DISPPLANE_BGRX565;
2370 break;
2371 case DRM_FORMAT_XRGB8888:
2372 case DRM_FORMAT_ARGB8888:
2373 dspcntr |= DISPPLANE_BGRX888;
2374 break;
2375 case DRM_FORMAT_XBGR8888:
2376 case DRM_FORMAT_ABGR8888:
2377 dspcntr |= DISPPLANE_RGBX888;
2378 break;
2379 case DRM_FORMAT_XRGB2101010:
2380 case DRM_FORMAT_ARGB2101010:
2381 dspcntr |= DISPPLANE_BGRX101010;
2382 break;
2383 case DRM_FORMAT_XBGR2101010:
2384 case DRM_FORMAT_ABGR2101010:
2385 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002386 break;
2387 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002388 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002389 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002390
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002391 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002392 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002393 dspcntr |= DISPPLANE_TILED;
2394 else
2395 dspcntr &= ~DISPPLANE_TILED;
2396 }
2397
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002398 if (IS_G4X(dev))
2399 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2400
Chris Wilson5eddb702010-09-11 13:48:45 +01002401 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002402
Daniel Vettere506a0c2012-07-05 12:17:29 +02002403 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002404
Daniel Vetterc2c75132012-07-05 12:17:30 +02002405 if (INTEL_INFO(dev)->gen >= 4) {
2406 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002407 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2408 fb->bits_per_pixel / 8,
2409 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002410 linear_offset -= intel_crtc->dspaddr_offset;
2411 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002412 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002413 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002414
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002415 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2416 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2417 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002418 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002419 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002420 I915_WRITE(DSPSURF(plane),
2421 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002422 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002423 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002424 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002425 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002426 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002427}
2428
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002429static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2430 struct drm_framebuffer *fb,
2431 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002432{
2433 struct drm_device *dev = crtc->dev;
2434 struct drm_i915_private *dev_priv = dev->dev_private;
2435 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2436 struct intel_framebuffer *intel_fb;
2437 struct drm_i915_gem_object *obj;
2438 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002439 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002440 u32 dspcntr;
2441 u32 reg;
2442
Jesse Barnes17638cd2011-06-24 12:19:23 -07002443 intel_fb = to_intel_framebuffer(fb);
2444 obj = intel_fb->obj;
2445
2446 reg = DSPCNTR(plane);
2447 dspcntr = I915_READ(reg);
2448 /* Mask out pixel format bits in case we change it */
2449 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002450 switch (fb->pixel_format) {
2451 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002452 dspcntr |= DISPPLANE_8BPP;
2453 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002454 case DRM_FORMAT_RGB565:
2455 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002456 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002457 case DRM_FORMAT_XRGB8888:
2458 case DRM_FORMAT_ARGB8888:
2459 dspcntr |= DISPPLANE_BGRX888;
2460 break;
2461 case DRM_FORMAT_XBGR8888:
2462 case DRM_FORMAT_ABGR8888:
2463 dspcntr |= DISPPLANE_RGBX888;
2464 break;
2465 case DRM_FORMAT_XRGB2101010:
2466 case DRM_FORMAT_ARGB2101010:
2467 dspcntr |= DISPPLANE_BGRX101010;
2468 break;
2469 case DRM_FORMAT_XBGR2101010:
2470 case DRM_FORMAT_ABGR2101010:
2471 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002472 break;
2473 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002474 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002475 }
2476
2477 if (obj->tiling_mode != I915_TILING_NONE)
2478 dspcntr |= DISPPLANE_TILED;
2479 else
2480 dspcntr &= ~DISPPLANE_TILED;
2481
Ville Syrjäläb42c6002013-11-03 13:47:27 +02002482 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002483 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2484 else
2485 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002486
2487 I915_WRITE(reg, dspcntr);
2488
Daniel Vettere506a0c2012-07-05 12:17:29 +02002489 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002490 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002491 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2492 fb->bits_per_pixel / 8,
2493 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002494 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002495
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002496 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2497 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2498 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002499 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002500 I915_WRITE(DSPSURF(plane),
2501 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002502 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002503 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2504 } else {
2505 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2506 I915_WRITE(DSPLINOFF(plane), linear_offset);
2507 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002508 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002509}
2510
2511/* Assume fb object is pinned & idle & fenced and just update base pointers */
2512static int
2513intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2514 int x, int y, enum mode_set_atomic state)
2515{
2516 struct drm_device *dev = crtc->dev;
2517 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002518
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002519 if (dev_priv->display.disable_fbc)
2520 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002521 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002522
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002523 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2524
2525 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002526}
2527
Ville Syrjälä96a02912013-02-18 19:08:49 +02002528void intel_display_handle_reset(struct drm_device *dev)
2529{
2530 struct drm_i915_private *dev_priv = dev->dev_private;
2531 struct drm_crtc *crtc;
2532
2533 /*
2534 * Flips in the rings have been nuked by the reset,
2535 * so complete all pending flips so that user space
2536 * will get its events and not get stuck.
2537 *
2538 * Also update the base address of all primary
2539 * planes to the the last fb to make sure we're
2540 * showing the correct fb after a reset.
2541 *
2542 * Need to make two loops over the crtcs so that we
2543 * don't try to grab a crtc mutex before the
2544 * pending_flip_queue really got woken up.
2545 */
2546
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002547 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002548 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2549 enum plane plane = intel_crtc->plane;
2550
2551 intel_prepare_page_flip(dev, plane);
2552 intel_finish_page_flip_plane(dev, plane);
2553 }
2554
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002555 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002556 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2557
2558 mutex_lock(&crtc->mutex);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002559 /*
2560 * FIXME: Once we have proper support for primary planes (and
2561 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002562 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002563 */
Matt Roperf4510a22014-04-01 15:22:40 -07002564 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002565 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002566 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002567 crtc->x,
2568 crtc->y);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002569 mutex_unlock(&crtc->mutex);
2570 }
2571}
2572
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002573static int
Chris Wilson14667a42012-04-03 17:58:35 +01002574intel_finish_fb(struct drm_framebuffer *old_fb)
2575{
2576 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2577 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2578 bool was_interruptible = dev_priv->mm.interruptible;
2579 int ret;
2580
Chris Wilson14667a42012-04-03 17:58:35 +01002581 /* Big Hammer, we also need to ensure that any pending
2582 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2583 * current scanout is retired before unpinning the old
2584 * framebuffer.
2585 *
2586 * This should only fail upon a hung GPU, in which case we
2587 * can safely continue.
2588 */
2589 dev_priv->mm.interruptible = false;
2590 ret = i915_gem_object_finish_gpu(obj);
2591 dev_priv->mm.interruptible = was_interruptible;
2592
2593 return ret;
2594}
2595
Chris Wilson7d5e3792014-03-04 13:15:08 +00002596static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2597{
2598 struct drm_device *dev = crtc->dev;
2599 struct drm_i915_private *dev_priv = dev->dev_private;
2600 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2601 unsigned long flags;
2602 bool pending;
2603
2604 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2605 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2606 return false;
2607
2608 spin_lock_irqsave(&dev->event_lock, flags);
2609 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2610 spin_unlock_irqrestore(&dev->event_lock, flags);
2611
2612 return pending;
2613}
2614
Chris Wilson14667a42012-04-03 17:58:35 +01002615static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002616intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002617 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002618{
2619 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002620 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002621 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002622 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002623 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002624
Chris Wilson7d5e3792014-03-04 13:15:08 +00002625 if (intel_crtc_has_pending_flip(crtc)) {
2626 DRM_ERROR("pipe is still busy with an old pageflip\n");
2627 return -EBUSY;
2628 }
2629
Jesse Barnes79e53942008-11-07 14:24:08 -08002630 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002631 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002632 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002633 return 0;
2634 }
2635
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002636 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002637 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2638 plane_name(intel_crtc->plane),
2639 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002640 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002641 }
2642
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002643 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002644 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002645 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002646 NULL);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002647 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002648 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002649 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002650 return ret;
2651 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002652
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002653 /*
2654 * Update pipe size and adjust fitter if needed: the reason for this is
2655 * that in compute_mode_changes we check the native mode (not the pfit
2656 * mode) to see if we can flip rather than do a full mode set. In the
2657 * fastboot case, we'll flip, but if we don't update the pipesrc and
2658 * pfit state, we'll end up with a big fb scanned out into the wrong
2659 * sized surface.
2660 *
2661 * To fix this properly, we need to hoist the checks up into
2662 * compute_mode_changes (or above), check the actual pfit state and
2663 * whether the platform allows pfit disable with pipe active, and only
2664 * then update the pipesrc and pfit state, even on the flip path.
2665 */
Jani Nikulad330a952014-01-21 11:24:25 +02002666 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002667 const struct drm_display_mode *adjusted_mode =
2668 &intel_crtc->config.adjusted_mode;
2669
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002670 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002671 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2672 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002673 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002674 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2675 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2676 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2677 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2678 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2679 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002680 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2681 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002682 }
2683
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002684 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002685
Matt Roperf4510a22014-04-01 15:22:40 -07002686 old_fb = crtc->primary->fb;
2687 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002688 crtc->x = x;
2689 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002690
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002691 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002692 if (intel_crtc->active && old_fb != fb)
2693 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002694 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002695 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002696 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002697 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002698
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002699 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002700 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002701 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002702 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002703
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002704 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002705}
2706
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002707static void intel_fdi_normal_train(struct drm_crtc *crtc)
2708{
2709 struct drm_device *dev = crtc->dev;
2710 struct drm_i915_private *dev_priv = dev->dev_private;
2711 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2712 int pipe = intel_crtc->pipe;
2713 u32 reg, temp;
2714
2715 /* enable normal train */
2716 reg = FDI_TX_CTL(pipe);
2717 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002718 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002719 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2720 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002721 } else {
2722 temp &= ~FDI_LINK_TRAIN_NONE;
2723 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002724 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002725 I915_WRITE(reg, temp);
2726
2727 reg = FDI_RX_CTL(pipe);
2728 temp = I915_READ(reg);
2729 if (HAS_PCH_CPT(dev)) {
2730 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2731 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2732 } else {
2733 temp &= ~FDI_LINK_TRAIN_NONE;
2734 temp |= FDI_LINK_TRAIN_NONE;
2735 }
2736 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2737
2738 /* wait one idle pattern time */
2739 POSTING_READ(reg);
2740 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002741
2742 /* IVB wants error correction enabled */
2743 if (IS_IVYBRIDGE(dev))
2744 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2745 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002746}
2747
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002748static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002749{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002750 return crtc->base.enabled && crtc->active &&
2751 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002752}
2753
Daniel Vetter01a415f2012-10-27 15:58:40 +02002754static void ivb_modeset_global_resources(struct drm_device *dev)
2755{
2756 struct drm_i915_private *dev_priv = dev->dev_private;
2757 struct intel_crtc *pipe_B_crtc =
2758 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2759 struct intel_crtc *pipe_C_crtc =
2760 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2761 uint32_t temp;
2762
Daniel Vetter1e833f42013-02-19 22:31:57 +01002763 /*
2764 * When everything is off disable fdi C so that we could enable fdi B
2765 * with all lanes. Note that we don't care about enabled pipes without
2766 * an enabled pch encoder.
2767 */
2768 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2769 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002770 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2771 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2772
2773 temp = I915_READ(SOUTH_CHICKEN1);
2774 temp &= ~FDI_BC_BIFURCATION_SELECT;
2775 DRM_DEBUG_KMS("disabling fdi C rx\n");
2776 I915_WRITE(SOUTH_CHICKEN1, temp);
2777 }
2778}
2779
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002780/* The FDI link training functions for ILK/Ibexpeak. */
2781static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2782{
2783 struct drm_device *dev = crtc->dev;
2784 struct drm_i915_private *dev_priv = dev->dev_private;
2785 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2786 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002787 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002788
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002789 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002790 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002791
Adam Jacksone1a44742010-06-25 15:32:14 -04002792 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2793 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002794 reg = FDI_RX_IMR(pipe);
2795 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002796 temp &= ~FDI_RX_SYMBOL_LOCK;
2797 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002798 I915_WRITE(reg, temp);
2799 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002800 udelay(150);
2801
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002802 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002803 reg = FDI_TX_CTL(pipe);
2804 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002805 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2806 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002807 temp &= ~FDI_LINK_TRAIN_NONE;
2808 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002809 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002810
Chris Wilson5eddb702010-09-11 13:48:45 +01002811 reg = FDI_RX_CTL(pipe);
2812 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002813 temp &= ~FDI_LINK_TRAIN_NONE;
2814 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002815 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2816
2817 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002818 udelay(150);
2819
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002820 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002821 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2822 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2823 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002824
Chris Wilson5eddb702010-09-11 13:48:45 +01002825 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002826 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002827 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002828 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2829
2830 if ((temp & FDI_RX_BIT_LOCK)) {
2831 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002832 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002833 break;
2834 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002835 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002836 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002837 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002838
2839 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002840 reg = FDI_TX_CTL(pipe);
2841 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002842 temp &= ~FDI_LINK_TRAIN_NONE;
2843 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002844 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002845
Chris Wilson5eddb702010-09-11 13:48:45 +01002846 reg = FDI_RX_CTL(pipe);
2847 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002848 temp &= ~FDI_LINK_TRAIN_NONE;
2849 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002850 I915_WRITE(reg, temp);
2851
2852 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002853 udelay(150);
2854
Chris Wilson5eddb702010-09-11 13:48:45 +01002855 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002856 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002857 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002858 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2859
2860 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002861 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002862 DRM_DEBUG_KMS("FDI train 2 done.\n");
2863 break;
2864 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002865 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002866 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002867 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002868
2869 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002870
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002871}
2872
Akshay Joshi0206e352011-08-16 15:34:10 -04002873static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002874 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2875 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2876 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2877 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2878};
2879
2880/* The FDI link training functions for SNB/Cougarpoint. */
2881static void gen6_fdi_link_train(struct drm_crtc *crtc)
2882{
2883 struct drm_device *dev = crtc->dev;
2884 struct drm_i915_private *dev_priv = dev->dev_private;
2885 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2886 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002887 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002888
Adam Jacksone1a44742010-06-25 15:32:14 -04002889 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2890 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002891 reg = FDI_RX_IMR(pipe);
2892 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002893 temp &= ~FDI_RX_SYMBOL_LOCK;
2894 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002895 I915_WRITE(reg, temp);
2896
2897 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002898 udelay(150);
2899
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002900 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002901 reg = FDI_TX_CTL(pipe);
2902 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002903 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2904 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002905 temp &= ~FDI_LINK_TRAIN_NONE;
2906 temp |= FDI_LINK_TRAIN_PATTERN_1;
2907 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2908 /* SNB-B */
2909 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002910 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002911
Daniel Vetterd74cf322012-10-26 10:58:13 +02002912 I915_WRITE(FDI_RX_MISC(pipe),
2913 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2914
Chris Wilson5eddb702010-09-11 13:48:45 +01002915 reg = FDI_RX_CTL(pipe);
2916 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002917 if (HAS_PCH_CPT(dev)) {
2918 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2919 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2920 } else {
2921 temp &= ~FDI_LINK_TRAIN_NONE;
2922 temp |= FDI_LINK_TRAIN_PATTERN_1;
2923 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002924 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2925
2926 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002927 udelay(150);
2928
Akshay Joshi0206e352011-08-16 15:34:10 -04002929 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002930 reg = FDI_TX_CTL(pipe);
2931 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002932 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2933 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002934 I915_WRITE(reg, temp);
2935
2936 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002937 udelay(500);
2938
Sean Paulfa37d392012-03-02 12:53:39 -05002939 for (retry = 0; retry < 5; retry++) {
2940 reg = FDI_RX_IIR(pipe);
2941 temp = I915_READ(reg);
2942 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2943 if (temp & FDI_RX_BIT_LOCK) {
2944 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2945 DRM_DEBUG_KMS("FDI train 1 done.\n");
2946 break;
2947 }
2948 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002949 }
Sean Paulfa37d392012-03-02 12:53:39 -05002950 if (retry < 5)
2951 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002952 }
2953 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002954 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002955
2956 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002957 reg = FDI_TX_CTL(pipe);
2958 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002959 temp &= ~FDI_LINK_TRAIN_NONE;
2960 temp |= FDI_LINK_TRAIN_PATTERN_2;
2961 if (IS_GEN6(dev)) {
2962 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2963 /* SNB-B */
2964 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2965 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002966 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002967
Chris Wilson5eddb702010-09-11 13:48:45 +01002968 reg = FDI_RX_CTL(pipe);
2969 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002970 if (HAS_PCH_CPT(dev)) {
2971 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2972 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2973 } else {
2974 temp &= ~FDI_LINK_TRAIN_NONE;
2975 temp |= FDI_LINK_TRAIN_PATTERN_2;
2976 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002977 I915_WRITE(reg, temp);
2978
2979 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002980 udelay(150);
2981
Akshay Joshi0206e352011-08-16 15:34:10 -04002982 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002983 reg = FDI_TX_CTL(pipe);
2984 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002985 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2986 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002987 I915_WRITE(reg, temp);
2988
2989 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002990 udelay(500);
2991
Sean Paulfa37d392012-03-02 12:53:39 -05002992 for (retry = 0; retry < 5; retry++) {
2993 reg = FDI_RX_IIR(pipe);
2994 temp = I915_READ(reg);
2995 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2996 if (temp & FDI_RX_SYMBOL_LOCK) {
2997 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2998 DRM_DEBUG_KMS("FDI train 2 done.\n");
2999 break;
3000 }
3001 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003002 }
Sean Paulfa37d392012-03-02 12:53:39 -05003003 if (retry < 5)
3004 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003005 }
3006 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003007 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003008
3009 DRM_DEBUG_KMS("FDI train done.\n");
3010}
3011
Jesse Barnes357555c2011-04-28 15:09:55 -07003012/* Manual link training for Ivy Bridge A0 parts */
3013static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3014{
3015 struct drm_device *dev = crtc->dev;
3016 struct drm_i915_private *dev_priv = dev->dev_private;
3017 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3018 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003019 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003020
3021 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3022 for train result */
3023 reg = FDI_RX_IMR(pipe);
3024 temp = I915_READ(reg);
3025 temp &= ~FDI_RX_SYMBOL_LOCK;
3026 temp &= ~FDI_RX_BIT_LOCK;
3027 I915_WRITE(reg, temp);
3028
3029 POSTING_READ(reg);
3030 udelay(150);
3031
Daniel Vetter01a415f2012-10-27 15:58:40 +02003032 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3033 I915_READ(FDI_RX_IIR(pipe)));
3034
Jesse Barnes139ccd32013-08-19 11:04:55 -07003035 /* Try each vswing and preemphasis setting twice before moving on */
3036 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3037 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003038 reg = FDI_TX_CTL(pipe);
3039 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003040 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3041 temp &= ~FDI_TX_ENABLE;
3042 I915_WRITE(reg, temp);
3043
3044 reg = FDI_RX_CTL(pipe);
3045 temp = I915_READ(reg);
3046 temp &= ~FDI_LINK_TRAIN_AUTO;
3047 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3048 temp &= ~FDI_RX_ENABLE;
3049 I915_WRITE(reg, temp);
3050
3051 /* enable CPU FDI TX and PCH FDI RX */
3052 reg = FDI_TX_CTL(pipe);
3053 temp = I915_READ(reg);
3054 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3055 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3056 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003057 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003058 temp |= snb_b_fdi_train_param[j/2];
3059 temp |= FDI_COMPOSITE_SYNC;
3060 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3061
3062 I915_WRITE(FDI_RX_MISC(pipe),
3063 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3064
3065 reg = FDI_RX_CTL(pipe);
3066 temp = I915_READ(reg);
3067 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3068 temp |= FDI_COMPOSITE_SYNC;
3069 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3070
3071 POSTING_READ(reg);
3072 udelay(1); /* should be 0.5us */
3073
3074 for (i = 0; i < 4; i++) {
3075 reg = FDI_RX_IIR(pipe);
3076 temp = I915_READ(reg);
3077 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3078
3079 if (temp & FDI_RX_BIT_LOCK ||
3080 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3081 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3082 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3083 i);
3084 break;
3085 }
3086 udelay(1); /* should be 0.5us */
3087 }
3088 if (i == 4) {
3089 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3090 continue;
3091 }
3092
3093 /* Train 2 */
3094 reg = FDI_TX_CTL(pipe);
3095 temp = I915_READ(reg);
3096 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3097 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3098 I915_WRITE(reg, temp);
3099
3100 reg = FDI_RX_CTL(pipe);
3101 temp = I915_READ(reg);
3102 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3103 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003104 I915_WRITE(reg, temp);
3105
3106 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003107 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003108
Jesse Barnes139ccd32013-08-19 11:04:55 -07003109 for (i = 0; i < 4; i++) {
3110 reg = FDI_RX_IIR(pipe);
3111 temp = I915_READ(reg);
3112 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003113
Jesse Barnes139ccd32013-08-19 11:04:55 -07003114 if (temp & FDI_RX_SYMBOL_LOCK ||
3115 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3116 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3117 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3118 i);
3119 goto train_done;
3120 }
3121 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003122 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003123 if (i == 4)
3124 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003125 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003126
Jesse Barnes139ccd32013-08-19 11:04:55 -07003127train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003128 DRM_DEBUG_KMS("FDI train done.\n");
3129}
3130
Daniel Vetter88cefb62012-08-12 19:27:14 +02003131static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003132{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003133 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003134 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003135 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003136 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003137
Jesse Barnesc64e3112010-09-10 11:27:03 -07003138
Jesse Barnes0e23b992010-09-10 11:10:00 -07003139 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003140 reg = FDI_RX_CTL(pipe);
3141 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003142 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3143 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003144 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003145 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3146
3147 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003148 udelay(200);
3149
3150 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003151 temp = I915_READ(reg);
3152 I915_WRITE(reg, temp | FDI_PCDCLK);
3153
3154 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003155 udelay(200);
3156
Paulo Zanoni20749732012-11-23 15:30:38 -02003157 /* Enable CPU FDI TX PLL, always on for Ironlake */
3158 reg = FDI_TX_CTL(pipe);
3159 temp = I915_READ(reg);
3160 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3161 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003162
Paulo Zanoni20749732012-11-23 15:30:38 -02003163 POSTING_READ(reg);
3164 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003165 }
3166}
3167
Daniel Vetter88cefb62012-08-12 19:27:14 +02003168static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3169{
3170 struct drm_device *dev = intel_crtc->base.dev;
3171 struct drm_i915_private *dev_priv = dev->dev_private;
3172 int pipe = intel_crtc->pipe;
3173 u32 reg, temp;
3174
3175 /* Switch from PCDclk to Rawclk */
3176 reg = FDI_RX_CTL(pipe);
3177 temp = I915_READ(reg);
3178 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3179
3180 /* Disable CPU FDI TX PLL */
3181 reg = FDI_TX_CTL(pipe);
3182 temp = I915_READ(reg);
3183 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3184
3185 POSTING_READ(reg);
3186 udelay(100);
3187
3188 reg = FDI_RX_CTL(pipe);
3189 temp = I915_READ(reg);
3190 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3191
3192 /* Wait for the clocks to turn off. */
3193 POSTING_READ(reg);
3194 udelay(100);
3195}
3196
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003197static void ironlake_fdi_disable(struct drm_crtc *crtc)
3198{
3199 struct drm_device *dev = crtc->dev;
3200 struct drm_i915_private *dev_priv = dev->dev_private;
3201 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3202 int pipe = intel_crtc->pipe;
3203 u32 reg, temp;
3204
3205 /* disable CPU FDI tx and PCH FDI rx */
3206 reg = FDI_TX_CTL(pipe);
3207 temp = I915_READ(reg);
3208 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3209 POSTING_READ(reg);
3210
3211 reg = FDI_RX_CTL(pipe);
3212 temp = I915_READ(reg);
3213 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003214 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003215 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3216
3217 POSTING_READ(reg);
3218 udelay(100);
3219
3220 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003221 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003222 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003223
3224 /* still set train pattern 1 */
3225 reg = FDI_TX_CTL(pipe);
3226 temp = I915_READ(reg);
3227 temp &= ~FDI_LINK_TRAIN_NONE;
3228 temp |= FDI_LINK_TRAIN_PATTERN_1;
3229 I915_WRITE(reg, temp);
3230
3231 reg = FDI_RX_CTL(pipe);
3232 temp = I915_READ(reg);
3233 if (HAS_PCH_CPT(dev)) {
3234 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3235 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3236 } else {
3237 temp &= ~FDI_LINK_TRAIN_NONE;
3238 temp |= FDI_LINK_TRAIN_PATTERN_1;
3239 }
3240 /* BPC in FDI rx is consistent with that in PIPECONF */
3241 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003242 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003243 I915_WRITE(reg, temp);
3244
3245 POSTING_READ(reg);
3246 udelay(100);
3247}
3248
Chris Wilson5dce5b932014-01-20 10:17:36 +00003249bool intel_has_pending_fb_unpin(struct drm_device *dev)
3250{
3251 struct intel_crtc *crtc;
3252
3253 /* Note that we don't need to be called with mode_config.lock here
3254 * as our list of CRTC objects is static for the lifetime of the
3255 * device and so cannot disappear as we iterate. Similarly, we can
3256 * happily treat the predicates as racy, atomic checks as userspace
3257 * cannot claim and pin a new fb without at least acquring the
3258 * struct_mutex and so serialising with us.
3259 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003260 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003261 if (atomic_read(&crtc->unpin_work_count) == 0)
3262 continue;
3263
3264 if (crtc->unpin_work)
3265 intel_wait_for_vblank(dev, crtc->pipe);
3266
3267 return true;
3268 }
3269
3270 return false;
3271}
3272
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003273static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3274{
Chris Wilson0f911282012-04-17 10:05:38 +01003275 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003276 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003277
Matt Roperf4510a22014-04-01 15:22:40 -07003278 if (crtc->primary->fb == NULL)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003279 return;
3280
Daniel Vetter2c10d572012-12-20 21:24:07 +01003281 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3282
Daniel Vettereed6d672014-05-19 16:09:35 +02003283 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3284 !intel_crtc_has_pending_flip(crtc),
3285 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003286
Chris Wilson0f911282012-04-17 10:05:38 +01003287 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07003288 intel_finish_fb(crtc->primary->fb);
Chris Wilson0f911282012-04-17 10:05:38 +01003289 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003290}
3291
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003292/* Program iCLKIP clock to the desired frequency */
3293static void lpt_program_iclkip(struct drm_crtc *crtc)
3294{
3295 struct drm_device *dev = crtc->dev;
3296 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003297 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003298 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3299 u32 temp;
3300
Daniel Vetter09153002012-12-12 14:06:44 +01003301 mutex_lock(&dev_priv->dpio_lock);
3302
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003303 /* It is necessary to ungate the pixclk gate prior to programming
3304 * the divisors, and gate it back when it is done.
3305 */
3306 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3307
3308 /* Disable SSCCTL */
3309 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003310 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3311 SBI_SSCCTL_DISABLE,
3312 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003313
3314 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003315 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003316 auxdiv = 1;
3317 divsel = 0x41;
3318 phaseinc = 0x20;
3319 } else {
3320 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003321 * but the adjusted_mode->crtc_clock in in KHz. To get the
3322 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003323 * convert the virtual clock precision to KHz here for higher
3324 * precision.
3325 */
3326 u32 iclk_virtual_root_freq = 172800 * 1000;
3327 u32 iclk_pi_range = 64;
3328 u32 desired_divisor, msb_divisor_value, pi_value;
3329
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003330 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003331 msb_divisor_value = desired_divisor / iclk_pi_range;
3332 pi_value = desired_divisor % iclk_pi_range;
3333
3334 auxdiv = 0;
3335 divsel = msb_divisor_value - 2;
3336 phaseinc = pi_value;
3337 }
3338
3339 /* This should not happen with any sane values */
3340 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3341 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3342 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3343 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3344
3345 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 +03003346 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003347 auxdiv,
3348 divsel,
3349 phasedir,
3350 phaseinc);
3351
3352 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003353 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003354 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3355 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3356 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3357 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3358 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3359 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003360 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003361
3362 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003363 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003364 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3365 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003366 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003367
3368 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003369 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003370 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003371 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003372
3373 /* Wait for initialization time */
3374 udelay(24);
3375
3376 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003377
3378 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003379}
3380
Daniel Vetter275f01b22013-05-03 11:49:47 +02003381static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3382 enum pipe pch_transcoder)
3383{
3384 struct drm_device *dev = crtc->base.dev;
3385 struct drm_i915_private *dev_priv = dev->dev_private;
3386 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3387
3388 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3389 I915_READ(HTOTAL(cpu_transcoder)));
3390 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3391 I915_READ(HBLANK(cpu_transcoder)));
3392 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3393 I915_READ(HSYNC(cpu_transcoder)));
3394
3395 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3396 I915_READ(VTOTAL(cpu_transcoder)));
3397 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3398 I915_READ(VBLANK(cpu_transcoder)));
3399 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3400 I915_READ(VSYNC(cpu_transcoder)));
3401 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3402 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3403}
3404
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003405static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3406{
3407 struct drm_i915_private *dev_priv = dev->dev_private;
3408 uint32_t temp;
3409
3410 temp = I915_READ(SOUTH_CHICKEN1);
3411 if (temp & FDI_BC_BIFURCATION_SELECT)
3412 return;
3413
3414 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3415 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3416
3417 temp |= FDI_BC_BIFURCATION_SELECT;
3418 DRM_DEBUG_KMS("enabling fdi C rx\n");
3419 I915_WRITE(SOUTH_CHICKEN1, temp);
3420 POSTING_READ(SOUTH_CHICKEN1);
3421}
3422
3423static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3424{
3425 struct drm_device *dev = intel_crtc->base.dev;
3426 struct drm_i915_private *dev_priv = dev->dev_private;
3427
3428 switch (intel_crtc->pipe) {
3429 case PIPE_A:
3430 break;
3431 case PIPE_B:
3432 if (intel_crtc->config.fdi_lanes > 2)
3433 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3434 else
3435 cpt_enable_fdi_bc_bifurcation(dev);
3436
3437 break;
3438 case PIPE_C:
3439 cpt_enable_fdi_bc_bifurcation(dev);
3440
3441 break;
3442 default:
3443 BUG();
3444 }
3445}
3446
Jesse Barnesf67a5592011-01-05 10:31:48 -08003447/*
3448 * Enable PCH resources required for PCH ports:
3449 * - PCH PLLs
3450 * - FDI training & RX/TX
3451 * - update transcoder timings
3452 * - DP transcoding bits
3453 * - transcoder
3454 */
3455static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003456{
3457 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003458 struct drm_i915_private *dev_priv = dev->dev_private;
3459 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3460 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003461 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003462
Daniel Vetterab9412b2013-05-03 11:49:46 +02003463 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003464
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003465 if (IS_IVYBRIDGE(dev))
3466 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3467
Daniel Vettercd986ab2012-10-26 10:58:12 +02003468 /* Write the TU size bits before fdi link training, so that error
3469 * detection works. */
3470 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3471 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3472
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003473 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003474 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003475
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003476 /* We need to program the right clock selection before writing the pixel
3477 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003478 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003479 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003480
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003481 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003482 temp |= TRANS_DPLL_ENABLE(pipe);
3483 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003484 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003485 temp |= sel;
3486 else
3487 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003488 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003489 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003490
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003491 /* XXX: pch pll's can be enabled any time before we enable the PCH
3492 * transcoder, and we actually should do this to not upset any PCH
3493 * transcoder that already use the clock when we share it.
3494 *
3495 * Note that enable_shared_dpll tries to do the right thing, but
3496 * get_shared_dpll unconditionally resets the pll - we need that to have
3497 * the right LVDS enable sequence. */
3498 ironlake_enable_shared_dpll(intel_crtc);
3499
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003500 /* set transcoder timing, panel must allow it */
3501 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003502 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003503
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003504 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003505
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003506 /* For PCH DP, enable TRANS_DP_CTL */
3507 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003508 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3509 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003510 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003511 reg = TRANS_DP_CTL(pipe);
3512 temp = I915_READ(reg);
3513 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003514 TRANS_DP_SYNC_MASK |
3515 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003516 temp |= (TRANS_DP_OUTPUT_ENABLE |
3517 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003518 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003519
3520 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003521 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003522 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003523 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003524
3525 switch (intel_trans_dp_port_sel(crtc)) {
3526 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003527 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003528 break;
3529 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003530 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003531 break;
3532 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003533 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003534 break;
3535 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003536 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003537 }
3538
Chris Wilson5eddb702010-09-11 13:48:45 +01003539 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003540 }
3541
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003542 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003543}
3544
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003545static void lpt_pch_enable(struct drm_crtc *crtc)
3546{
3547 struct drm_device *dev = crtc->dev;
3548 struct drm_i915_private *dev_priv = dev->dev_private;
3549 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003550 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003551
Daniel Vetterab9412b2013-05-03 11:49:46 +02003552 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003553
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003554 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003555
Paulo Zanoni0540e482012-10-31 18:12:40 -02003556 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003557 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003558
Paulo Zanoni937bb612012-10-31 18:12:47 -02003559 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003560}
3561
Daniel Vettere2b78262013-06-07 23:10:03 +02003562static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003563{
Daniel Vettere2b78262013-06-07 23:10:03 +02003564 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003565
3566 if (pll == NULL)
3567 return;
3568
3569 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003570 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003571 return;
3572 }
3573
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003574 if (--pll->refcount == 0) {
3575 WARN_ON(pll->on);
3576 WARN_ON(pll->active);
3577 }
3578
Daniel Vettera43f6e02013-06-07 23:10:32 +02003579 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003580}
3581
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003582static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003583{
Daniel Vettere2b78262013-06-07 23:10:03 +02003584 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3585 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3586 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003587
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003588 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003589 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3590 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003591 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003592 }
3593
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003594 if (HAS_PCH_IBX(dev_priv->dev)) {
3595 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003596 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003597 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003598
Daniel Vetter46edb022013-06-05 13:34:12 +02003599 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3600 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003601
3602 goto found;
3603 }
3604
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003605 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3606 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003607
3608 /* Only want to check enabled timings first */
3609 if (pll->refcount == 0)
3610 continue;
3611
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003612 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3613 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003614 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003615 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003616 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003617
3618 goto found;
3619 }
3620 }
3621
3622 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003623 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3624 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003625 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003626 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3627 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003628 goto found;
3629 }
3630 }
3631
3632 return NULL;
3633
3634found:
Daniel Vettera43f6e02013-06-07 23:10:32 +02003635 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003636 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3637 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003638
Daniel Vettercdbd2312013-06-05 13:34:03 +02003639 if (pll->active == 0) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02003640 memcpy(&pll->hw_state, &crtc->config.dpll_hw_state,
3641 sizeof(pll->hw_state));
3642
Daniel Vetter46edb022013-06-05 13:34:12 +02003643 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
Daniel Vettercdbd2312013-06-05 13:34:03 +02003644 WARN_ON(pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02003645 assert_shared_dpll_disabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003646
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02003647 pll->mode_set(dev_priv, pll);
Daniel Vettercdbd2312013-06-05 13:34:03 +02003648 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003649 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003650
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003651 return pll;
3652}
3653
Daniel Vettera1520312013-05-03 11:49:50 +02003654static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003655{
3656 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003657 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003658 u32 temp;
3659
3660 temp = I915_READ(dslreg);
3661 udelay(500);
3662 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003663 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003664 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003665 }
3666}
3667
Jesse Barnesb074cec2013-04-25 12:55:02 -07003668static void ironlake_pfit_enable(struct intel_crtc *crtc)
3669{
3670 struct drm_device *dev = crtc->base.dev;
3671 struct drm_i915_private *dev_priv = dev->dev_private;
3672 int pipe = crtc->pipe;
3673
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003674 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003675 /* Force use of hard-coded filter coefficients
3676 * as some pre-programmed values are broken,
3677 * e.g. x201.
3678 */
3679 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3680 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3681 PF_PIPE_SEL_IVB(pipe));
3682 else
3683 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3684 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3685 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003686 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003687}
3688
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003689static void intel_enable_planes(struct drm_crtc *crtc)
3690{
3691 struct drm_device *dev = crtc->dev;
3692 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003693 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003694 struct intel_plane *intel_plane;
3695
Matt Roperaf2b6532014-04-01 15:22:32 -07003696 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3697 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003698 if (intel_plane->pipe == pipe)
3699 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003700 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003701}
3702
3703static void intel_disable_planes(struct drm_crtc *crtc)
3704{
3705 struct drm_device *dev = crtc->dev;
3706 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003707 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003708 struct intel_plane *intel_plane;
3709
Matt Roperaf2b6532014-04-01 15:22:32 -07003710 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3711 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003712 if (intel_plane->pipe == pipe)
3713 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003714 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003715}
3716
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003717void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003718{
3719 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3720
3721 if (!crtc->config.ips_enabled)
3722 return;
3723
3724 /* We can only enable IPS after we enable a plane and wait for a vblank.
3725 * We guarantee that the plane is enabled by calling intel_enable_ips
3726 * only after intel_enable_plane. And intel_enable_plane already waits
3727 * for a vblank, so all we need to do here is to enable the IPS bit. */
3728 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003729 if (IS_BROADWELL(crtc->base.dev)) {
3730 mutex_lock(&dev_priv->rps.hw_lock);
3731 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3732 mutex_unlock(&dev_priv->rps.hw_lock);
3733 /* Quoting Art Runyan: "its not safe to expect any particular
3734 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003735 * mailbox." Moreover, the mailbox may return a bogus state,
3736 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003737 */
3738 } else {
3739 I915_WRITE(IPS_CTL, IPS_ENABLE);
3740 /* The bit only becomes 1 in the next vblank, so this wait here
3741 * is essentially intel_wait_for_vblank. If we don't have this
3742 * and don't wait for vblanks until the end of crtc_enable, then
3743 * the HW state readout code will complain that the expected
3744 * IPS_CTL value is not the one we read. */
3745 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3746 DRM_ERROR("Timed out waiting for IPS enable\n");
3747 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003748}
3749
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003750void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003751{
3752 struct drm_device *dev = crtc->base.dev;
3753 struct drm_i915_private *dev_priv = dev->dev_private;
3754
3755 if (!crtc->config.ips_enabled)
3756 return;
3757
3758 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003759 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003760 mutex_lock(&dev_priv->rps.hw_lock);
3761 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3762 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003763 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3764 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3765 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003766 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003767 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003768 POSTING_READ(IPS_CTL);
3769 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003770
3771 /* We need to wait for a vblank before we can disable the plane. */
3772 intel_wait_for_vblank(dev, crtc->pipe);
3773}
3774
3775/** Loads the palette/gamma unit for the CRTC with the prepared values */
3776static void intel_crtc_load_lut(struct drm_crtc *crtc)
3777{
3778 struct drm_device *dev = crtc->dev;
3779 struct drm_i915_private *dev_priv = dev->dev_private;
3780 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3781 enum pipe pipe = intel_crtc->pipe;
3782 int palreg = PALETTE(pipe);
3783 int i;
3784 bool reenable_ips = false;
3785
3786 /* The clocks have to be on to load the palette. */
3787 if (!crtc->enabled || !intel_crtc->active)
3788 return;
3789
3790 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3791 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3792 assert_dsi_pll_enabled(dev_priv);
3793 else
3794 assert_pll_enabled(dev_priv, pipe);
3795 }
3796
3797 /* use legacy palette for Ironlake */
3798 if (HAS_PCH_SPLIT(dev))
3799 palreg = LGC_PALETTE(pipe);
3800
3801 /* Workaround : Do not read or write the pipe palette/gamma data while
3802 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3803 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003804 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003805 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3806 GAMMA_MODE_MODE_SPLIT)) {
3807 hsw_disable_ips(intel_crtc);
3808 reenable_ips = true;
3809 }
3810
3811 for (i = 0; i < 256; i++) {
3812 I915_WRITE(palreg + 4 * i,
3813 (intel_crtc->lut_r[i] << 16) |
3814 (intel_crtc->lut_g[i] << 8) |
3815 intel_crtc->lut_b[i]);
3816 }
3817
3818 if (reenable_ips)
3819 hsw_enable_ips(intel_crtc);
3820}
3821
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003822static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3823{
3824 if (!enable && intel_crtc->overlay) {
3825 struct drm_device *dev = intel_crtc->base.dev;
3826 struct drm_i915_private *dev_priv = dev->dev_private;
3827
3828 mutex_lock(&dev->struct_mutex);
3829 dev_priv->mm.interruptible = false;
3830 (void) intel_overlay_switch_off(intel_crtc->overlay);
3831 dev_priv->mm.interruptible = true;
3832 mutex_unlock(&dev->struct_mutex);
3833 }
3834
3835 /* Let userspace switch the overlay on again. In most cases userspace
3836 * has to recompute where to put it anyway.
3837 */
3838}
3839
3840/**
3841 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3842 * cursor plane briefly if not already running after enabling the display
3843 * plane.
3844 * This workaround avoids occasional blank screens when self refresh is
3845 * enabled.
3846 */
3847static void
3848g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3849{
3850 u32 cntl = I915_READ(CURCNTR(pipe));
3851
3852 if ((cntl & CURSOR_MODE) == 0) {
3853 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3854
3855 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3856 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3857 intel_wait_for_vblank(dev_priv->dev, pipe);
3858 I915_WRITE(CURCNTR(pipe), cntl);
3859 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3860 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3861 }
3862}
3863
3864static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003865{
3866 struct drm_device *dev = crtc->dev;
3867 struct drm_i915_private *dev_priv = dev->dev_private;
3868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3869 int pipe = intel_crtc->pipe;
3870 int plane = intel_crtc->plane;
3871
3872 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3873 intel_enable_planes(crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003874 /* The fixup needs to happen before cursor is enabled */
3875 if (IS_G4X(dev))
3876 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003877 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003878 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003879
3880 hsw_enable_ips(intel_crtc);
3881
3882 mutex_lock(&dev->struct_mutex);
3883 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02003884 intel_edp_psr_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003885 mutex_unlock(&dev->struct_mutex);
3886}
3887
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003888static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003889{
3890 struct drm_device *dev = crtc->dev;
3891 struct drm_i915_private *dev_priv = dev->dev_private;
3892 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3893 int pipe = intel_crtc->pipe;
3894 int plane = intel_crtc->plane;
3895
3896 intel_crtc_wait_for_pending_flips(crtc);
3897 drm_vblank_off(dev, pipe);
3898
3899 if (dev_priv->fbc.plane == plane)
3900 intel_disable_fbc(dev);
3901
3902 hsw_disable_ips(intel_crtc);
3903
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003904 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003905 intel_crtc_update_cursor(crtc, false);
3906 intel_disable_planes(crtc);
3907 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3908}
3909
Jesse Barnesf67a5592011-01-05 10:31:48 -08003910static void ironlake_crtc_enable(struct drm_crtc *crtc)
3911{
3912 struct drm_device *dev = crtc->dev;
3913 struct drm_i915_private *dev_priv = dev->dev_private;
3914 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003915 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003916 int pipe = intel_crtc->pipe;
Daniel Vetter29407aa2014-04-24 23:55:08 +02003917 enum plane plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003918
Daniel Vetter08a48462012-07-02 11:43:47 +02003919 WARN_ON(!crtc->enabled);
3920
Jesse Barnesf67a5592011-01-05 10:31:48 -08003921 if (intel_crtc->active)
3922 return;
3923
Daniel Vetter29407aa2014-04-24 23:55:08 +02003924 if (intel_crtc->config.has_dp_encoder)
3925 intel_dp_set_m_n(intel_crtc);
3926
3927 intel_set_pipe_timings(intel_crtc);
3928
3929 if (intel_crtc->config.has_pch_encoder) {
3930 intel_cpu_transcoder_set_m_n(intel_crtc,
3931 &intel_crtc->config.fdi_m_n);
3932 }
3933
3934 ironlake_set_pipeconf(crtc);
3935
3936 /* Set up the display plane register */
3937 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3938 POSTING_READ(DSPCNTR(plane));
3939
3940 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3941 crtc->x, crtc->y);
3942
Jesse Barnesf67a5592011-01-05 10:31:48 -08003943 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003944
3945 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3946 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3947
Daniel Vetterf6736a12013-06-05 13:34:30 +02003948 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003949 if (encoder->pre_enable)
3950 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003951
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003952 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003953 /* Note: FDI PLL enabling _must_ be done before we enable the
3954 * cpu pipes, hence this is separate from all the other fdi/pch
3955 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003956 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003957 } else {
3958 assert_fdi_tx_disabled(dev_priv, pipe);
3959 assert_fdi_rx_disabled(dev_priv, pipe);
3960 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003961
Jesse Barnesb074cec2013-04-25 12:55:02 -07003962 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003963
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003964 /*
3965 * On ILK+ LUT must be loaded before the pipe is running but with
3966 * clocks enabled
3967 */
3968 intel_crtc_load_lut(crtc);
3969
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003970 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02003971 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003972
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003973 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003974 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003975
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003976 for_each_encoder_on_crtc(dev, crtc, encoder)
3977 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003978
3979 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003980 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003981
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003982 intel_crtc_enable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003983
Daniel Vetter6ce94102012-10-04 19:20:03 +02003984 /*
3985 * There seems to be a race in PCH platform hw (at least on some
3986 * outputs) where an enabled pipe still completes any pageflip right
3987 * away (as if the pipe is off) instead of waiting for vblank. As soon
3988 * as the first vblank happend, everything works as expected. Hence just
3989 * wait for one vblank before returning to avoid strange things
3990 * happening.
3991 */
3992 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003993}
3994
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003995/* IPS only exists on ULT machines and is tied to pipe A. */
3996static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3997{
Damien Lespiauf5adf942013-06-24 18:29:34 +01003998 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003999}
4000
Paulo Zanonie4916942013-09-20 16:21:19 -03004001/*
4002 * This implements the workaround described in the "notes" section of the mode
4003 * set sequence documentation. When going from no pipes or single pipe to
4004 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4005 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4006 */
4007static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4008{
4009 struct drm_device *dev = crtc->base.dev;
4010 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4011
4012 /* We want to get the other_active_crtc only if there's only 1 other
4013 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004014 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004015 if (!crtc_it->active || crtc_it == crtc)
4016 continue;
4017
4018 if (other_active_crtc)
4019 return;
4020
4021 other_active_crtc = crtc_it;
4022 }
4023 if (!other_active_crtc)
4024 return;
4025
4026 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4027 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4028}
4029
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004030static void haswell_crtc_enable(struct drm_crtc *crtc)
4031{
4032 struct drm_device *dev = crtc->dev;
4033 struct drm_i915_private *dev_priv = dev->dev_private;
4034 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4035 struct intel_encoder *encoder;
4036 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004037
4038 WARN_ON(!crtc->enabled);
4039
4040 if (intel_crtc->active)
4041 return;
4042
4043 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004044
4045 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4046 if (intel_crtc->config.has_pch_encoder)
4047 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4048
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004049 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02004050 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004051
4052 for_each_encoder_on_crtc(dev, crtc, encoder)
4053 if (encoder->pre_enable)
4054 encoder->pre_enable(encoder);
4055
Paulo Zanoni1f544382012-10-24 11:32:00 -02004056 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004057
Jesse Barnesb074cec2013-04-25 12:55:02 -07004058 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004059
4060 /*
4061 * On ILK+ LUT must be loaded before the pipe is running but with
4062 * clocks enabled
4063 */
4064 intel_crtc_load_lut(crtc);
4065
Paulo Zanoni1f544382012-10-24 11:32:00 -02004066 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004067 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004068
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004069 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004070 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004071
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004072 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004073 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004074
Jani Nikula8807e552013-08-30 19:40:32 +03004075 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004076 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004077 intel_opregion_notify_encoder(encoder, true);
4078 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004079
Paulo Zanonie4916942013-09-20 16:21:19 -03004080 /* If we change the relative order between pipe/planes enabling, we need
4081 * to change the workaround. */
4082 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004083 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004084}
4085
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004086static void ironlake_pfit_disable(struct intel_crtc *crtc)
4087{
4088 struct drm_device *dev = crtc->base.dev;
4089 struct drm_i915_private *dev_priv = dev->dev_private;
4090 int pipe = crtc->pipe;
4091
4092 /* To avoid upsetting the power well on haswell only disable the pfit if
4093 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004094 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004095 I915_WRITE(PF_CTL(pipe), 0);
4096 I915_WRITE(PF_WIN_POS(pipe), 0);
4097 I915_WRITE(PF_WIN_SZ(pipe), 0);
4098 }
4099}
4100
Jesse Barnes6be4a602010-09-10 10:26:01 -07004101static void ironlake_crtc_disable(struct drm_crtc *crtc)
4102{
4103 struct drm_device *dev = crtc->dev;
4104 struct drm_i915_private *dev_priv = dev->dev_private;
4105 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004106 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004107 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004108 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004109
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004110 if (!intel_crtc->active)
4111 return;
4112
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004113 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004114
Daniel Vetterea9d7582012-07-10 10:42:52 +02004115 for_each_encoder_on_crtc(dev, crtc, encoder)
4116 encoder->disable(encoder);
4117
Daniel Vetterd925c592013-06-05 13:34:04 +02004118 if (intel_crtc->config.has_pch_encoder)
4119 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4120
Jesse Barnesb24e7172011-01-04 15:09:30 -08004121 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004122
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004123 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004124
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004125 for_each_encoder_on_crtc(dev, crtc, encoder)
4126 if (encoder->post_disable)
4127 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004128
Daniel Vetterd925c592013-06-05 13:34:04 +02004129 if (intel_crtc->config.has_pch_encoder) {
4130 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004131
Daniel Vetterd925c592013-06-05 13:34:04 +02004132 ironlake_disable_pch_transcoder(dev_priv, pipe);
4133 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004134
Daniel Vetterd925c592013-06-05 13:34:04 +02004135 if (HAS_PCH_CPT(dev)) {
4136 /* disable TRANS_DP_CTL */
4137 reg = TRANS_DP_CTL(pipe);
4138 temp = I915_READ(reg);
4139 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4140 TRANS_DP_PORT_SEL_MASK);
4141 temp |= TRANS_DP_PORT_SEL_NONE;
4142 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004143
Daniel Vetterd925c592013-06-05 13:34:04 +02004144 /* disable DPLL_SEL */
4145 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004146 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004147 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004148 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004149
4150 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004151 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004152
4153 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004154 }
4155
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004156 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004157 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004158
4159 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004160 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004161 intel_edp_psr_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004162 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004163}
4164
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004165static void haswell_crtc_disable(struct drm_crtc *crtc)
4166{
4167 struct drm_device *dev = crtc->dev;
4168 struct drm_i915_private *dev_priv = dev->dev_private;
4169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4170 struct intel_encoder *encoder;
4171 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004172 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004173
4174 if (!intel_crtc->active)
4175 return;
4176
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004177 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004178
Jani Nikula8807e552013-08-30 19:40:32 +03004179 for_each_encoder_on_crtc(dev, crtc, encoder) {
4180 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004181 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004182 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004183
Paulo Zanoni86642812013-04-12 17:57:57 -03004184 if (intel_crtc->config.has_pch_encoder)
4185 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004186 intel_disable_pipe(dev_priv, pipe);
4187
Paulo Zanoniad80a812012-10-24 16:06:19 -02004188 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004189
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004190 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004191
Paulo Zanoni1f544382012-10-24 11:32:00 -02004192 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004193
4194 for_each_encoder_on_crtc(dev, crtc, encoder)
4195 if (encoder->post_disable)
4196 encoder->post_disable(encoder);
4197
Daniel Vetter88adfff2013-03-28 10:42:01 +01004198 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004199 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004200 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004201 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004202 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004203
4204 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004205 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004206
4207 mutex_lock(&dev->struct_mutex);
4208 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004209 intel_edp_psr_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004210 mutex_unlock(&dev->struct_mutex);
4211}
4212
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004213static void ironlake_crtc_off(struct drm_crtc *crtc)
4214{
4215 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004216 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004217}
4218
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004219static void haswell_crtc_off(struct drm_crtc *crtc)
4220{
4221 intel_ddi_put_crtc_pll(crtc);
4222}
4223
Jesse Barnes2dd24552013-04-25 12:55:01 -07004224static void i9xx_pfit_enable(struct intel_crtc *crtc)
4225{
4226 struct drm_device *dev = crtc->base.dev;
4227 struct drm_i915_private *dev_priv = dev->dev_private;
4228 struct intel_crtc_config *pipe_config = &crtc->config;
4229
Daniel Vetter328d8e82013-05-08 10:36:31 +02004230 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004231 return;
4232
Daniel Vetterc0b03412013-05-28 12:05:54 +02004233 /*
4234 * The panel fitter should only be adjusted whilst the pipe is disabled,
4235 * according to register description and PRM.
4236 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004237 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4238 assert_pipe_disabled(dev_priv, crtc->pipe);
4239
Jesse Barnesb074cec2013-04-25 12:55:02 -07004240 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4241 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004242
4243 /* Border color in case we don't scale up to the full screen. Black by
4244 * default, change to something else for debugging. */
4245 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004246}
4247
Imre Deak77d22dc2014-03-05 16:20:52 +02004248#define for_each_power_domain(domain, mask) \
4249 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4250 if ((1 << (domain)) & (mask))
4251
Imre Deak319be8a2014-03-04 19:22:57 +02004252enum intel_display_power_domain
4253intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004254{
Imre Deak319be8a2014-03-04 19:22:57 +02004255 struct drm_device *dev = intel_encoder->base.dev;
4256 struct intel_digital_port *intel_dig_port;
4257
4258 switch (intel_encoder->type) {
4259 case INTEL_OUTPUT_UNKNOWN:
4260 /* Only DDI platforms should ever use this output type */
4261 WARN_ON_ONCE(!HAS_DDI(dev));
4262 case INTEL_OUTPUT_DISPLAYPORT:
4263 case INTEL_OUTPUT_HDMI:
4264 case INTEL_OUTPUT_EDP:
4265 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4266 switch (intel_dig_port->port) {
4267 case PORT_A:
4268 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4269 case PORT_B:
4270 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4271 case PORT_C:
4272 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4273 case PORT_D:
4274 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4275 default:
4276 WARN_ON_ONCE(1);
4277 return POWER_DOMAIN_PORT_OTHER;
4278 }
4279 case INTEL_OUTPUT_ANALOG:
4280 return POWER_DOMAIN_PORT_CRT;
4281 case INTEL_OUTPUT_DSI:
4282 return POWER_DOMAIN_PORT_DSI;
4283 default:
4284 return POWER_DOMAIN_PORT_OTHER;
4285 }
4286}
4287
4288static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4289{
4290 struct drm_device *dev = crtc->dev;
4291 struct intel_encoder *intel_encoder;
4292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4293 enum pipe pipe = intel_crtc->pipe;
4294 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
Imre Deak77d22dc2014-03-05 16:20:52 +02004295 unsigned long mask;
4296 enum transcoder transcoder;
4297
4298 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4299
4300 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4301 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4302 if (pfit_enabled)
4303 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4304
Imre Deak319be8a2014-03-04 19:22:57 +02004305 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4306 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4307
Imre Deak77d22dc2014-03-05 16:20:52 +02004308 return mask;
4309}
4310
4311void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4312 bool enable)
4313{
4314 if (dev_priv->power_domains.init_power_on == enable)
4315 return;
4316
4317 if (enable)
4318 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4319 else
4320 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4321
4322 dev_priv->power_domains.init_power_on = enable;
4323}
4324
4325static void modeset_update_crtc_power_domains(struct drm_device *dev)
4326{
4327 struct drm_i915_private *dev_priv = dev->dev_private;
4328 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4329 struct intel_crtc *crtc;
4330
4331 /*
4332 * First get all needed power domains, then put all unneeded, to avoid
4333 * any unnecessary toggling of the power wells.
4334 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004335 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004336 enum intel_display_power_domain domain;
4337
4338 if (!crtc->base.enabled)
4339 continue;
4340
Imre Deak319be8a2014-03-04 19:22:57 +02004341 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004342
4343 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4344 intel_display_power_get(dev_priv, domain);
4345 }
4346
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004347 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004348 enum intel_display_power_domain domain;
4349
4350 for_each_power_domain(domain, crtc->enabled_power_domains)
4351 intel_display_power_put(dev_priv, domain);
4352
4353 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4354 }
4355
4356 intel_display_set_init_power(dev_priv, false);
4357}
4358
Jesse Barnes586f49d2013-11-04 16:06:59 -08004359int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004360{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004361 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004362
Jesse Barnes586f49d2013-11-04 16:06:59 -08004363 /* Obtain SKU information */
4364 mutex_lock(&dev_priv->dpio_lock);
4365 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4366 CCK_FUSE_HPLL_FREQ_MASK;
4367 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004368
Jesse Barnes586f49d2013-11-04 16:06:59 -08004369 return vco_freq[hpll_freq];
Jesse Barnes30a970c2013-11-04 13:48:12 -08004370}
4371
4372/* Adjust CDclk dividers to allow high res or save power if possible */
4373static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4374{
4375 struct drm_i915_private *dev_priv = dev->dev_private;
4376 u32 val, cmd;
4377
Imre Deakd60c4472014-03-27 17:45:10 +02004378 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4379 dev_priv->vlv_cdclk_freq = cdclk;
4380
Jesse Barnes30a970c2013-11-04 13:48:12 -08004381 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4382 cmd = 2;
4383 else if (cdclk == 266)
4384 cmd = 1;
4385 else
4386 cmd = 0;
4387
4388 mutex_lock(&dev_priv->rps.hw_lock);
4389 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4390 val &= ~DSPFREQGUAR_MASK;
4391 val |= (cmd << DSPFREQGUAR_SHIFT);
4392 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4393 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4394 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4395 50)) {
4396 DRM_ERROR("timed out waiting for CDclk change\n");
4397 }
4398 mutex_unlock(&dev_priv->rps.hw_lock);
4399
4400 if (cdclk == 400) {
4401 u32 divider, vco;
4402
4403 vco = valleyview_get_vco(dev_priv);
4404 divider = ((vco << 1) / cdclk) - 1;
4405
4406 mutex_lock(&dev_priv->dpio_lock);
4407 /* adjust cdclk divider */
4408 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4409 val &= ~0xf;
4410 val |= divider;
4411 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4412 mutex_unlock(&dev_priv->dpio_lock);
4413 }
4414
4415 mutex_lock(&dev_priv->dpio_lock);
4416 /* adjust self-refresh exit latency value */
4417 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4418 val &= ~0x7f;
4419
4420 /*
4421 * For high bandwidth configs, we set a higher latency in the bunit
4422 * so that the core display fetch happens in time to avoid underruns.
4423 */
4424 if (cdclk == 400)
4425 val |= 4500 / 250; /* 4.5 usec */
4426 else
4427 val |= 3000 / 250; /* 3.0 usec */
4428 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4429 mutex_unlock(&dev_priv->dpio_lock);
4430
4431 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4432 intel_i2c_reset(dev);
4433}
4434
Imre Deakd60c4472014-03-27 17:45:10 +02004435int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004436{
4437 int cur_cdclk, vco;
4438 int divider;
4439
4440 vco = valleyview_get_vco(dev_priv);
4441
4442 mutex_lock(&dev_priv->dpio_lock);
4443 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4444 mutex_unlock(&dev_priv->dpio_lock);
4445
4446 divider &= 0xf;
4447
4448 cur_cdclk = (vco << 1) / (divider + 1);
4449
4450 return cur_cdclk;
4451}
4452
4453static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4454 int max_pixclk)
4455{
Jesse Barnes30a970c2013-11-04 13:48:12 -08004456 /*
4457 * Really only a few cases to deal with, as only 4 CDclks are supported:
4458 * 200MHz
4459 * 267MHz
4460 * 320MHz
4461 * 400MHz
4462 * So we check to see whether we're above 90% of the lower bin and
4463 * adjust if needed.
4464 */
4465 if (max_pixclk > 288000) {
4466 return 400;
4467 } else if (max_pixclk > 240000) {
4468 return 320;
4469 } else
4470 return 266;
4471 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4472}
4473
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004474/* compute the max pixel clock for new configuration */
4475static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004476{
4477 struct drm_device *dev = dev_priv->dev;
4478 struct intel_crtc *intel_crtc;
4479 int max_pixclk = 0;
4480
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004481 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004482 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004483 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004484 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004485 }
4486
4487 return max_pixclk;
4488}
4489
4490static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004491 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004492{
4493 struct drm_i915_private *dev_priv = dev->dev_private;
4494 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004495 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004496
Imre Deakd60c4472014-03-27 17:45:10 +02004497 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4498 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004499 return;
4500
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004501 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004502 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004503 if (intel_crtc->base.enabled)
4504 *prepare_pipes |= (1 << intel_crtc->pipe);
4505}
4506
4507static void valleyview_modeset_global_resources(struct drm_device *dev)
4508{
4509 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004510 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004511 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4512
Imre Deakd60c4472014-03-27 17:45:10 +02004513 if (req_cdclk != dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004514 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak77961eb2014-03-05 16:20:56 +02004515 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004516}
4517
Jesse Barnes89b667f2013-04-18 14:51:36 -07004518static void valleyview_crtc_enable(struct drm_crtc *crtc)
4519{
4520 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004521 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004522 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4523 struct intel_encoder *encoder;
4524 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004525 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03004526 bool is_dsi;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004527 u32 dspcntr;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004528
4529 WARN_ON(!crtc->enabled);
4530
4531 if (intel_crtc->active)
4532 return;
4533
Daniel Vetter5b18e572014-04-24 23:55:06 +02004534 /* Set up the display plane register */
4535 dspcntr = DISPPLANE_GAMMA_ENABLE;
4536
4537 if (intel_crtc->config.has_dp_encoder)
4538 intel_dp_set_m_n(intel_crtc);
4539
4540 intel_set_pipe_timings(intel_crtc);
4541
4542 /* pipesrc and dspsize control the size that is scaled from,
4543 * which should always be the user's requested size.
4544 */
4545 I915_WRITE(DSPSIZE(plane),
4546 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4547 (intel_crtc->config.pipe_src_w - 1));
4548 I915_WRITE(DSPPOS(plane), 0);
4549
4550 i9xx_set_pipeconf(intel_crtc);
4551
4552 I915_WRITE(DSPCNTR(plane), dspcntr);
4553 POSTING_READ(DSPCNTR(plane));
4554
4555 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4556 crtc->x, crtc->y);
4557
Jesse Barnes89b667f2013-04-18 14:51:36 -07004558 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004559
Jesse Barnes89b667f2013-04-18 14:51:36 -07004560 for_each_encoder_on_crtc(dev, crtc, encoder)
4561 if (encoder->pre_pll_enable)
4562 encoder->pre_pll_enable(encoder);
4563
Jani Nikula23538ef2013-08-27 15:12:22 +03004564 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4565
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004566 if (!is_dsi) {
4567 if (IS_CHERRYVIEW(dev))
4568 chv_enable_pll(intel_crtc);
4569 else
4570 vlv_enable_pll(intel_crtc);
4571 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004572
4573 for_each_encoder_on_crtc(dev, crtc, encoder)
4574 if (encoder->pre_enable)
4575 encoder->pre_enable(encoder);
4576
Jesse Barnes2dd24552013-04-25 12:55:01 -07004577 i9xx_pfit_enable(intel_crtc);
4578
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004579 intel_crtc_load_lut(crtc);
4580
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004581 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004582 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004583 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004584
Jani Nikula50049452013-07-30 12:20:32 +03004585 for_each_encoder_on_crtc(dev, crtc, encoder)
4586 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004587
4588 intel_crtc_enable_planes(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004589}
4590
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004591static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004592{
4593 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004594 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004595 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004596 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004597 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004598 int plane = intel_crtc->plane;
4599 u32 dspcntr;
Jesse Barnes79e53942008-11-07 14:24:08 -08004600
Daniel Vetter08a48462012-07-02 11:43:47 +02004601 WARN_ON(!crtc->enabled);
4602
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004603 if (intel_crtc->active)
4604 return;
4605
Daniel Vetter5b18e572014-04-24 23:55:06 +02004606 /* Set up the display plane register */
4607 dspcntr = DISPPLANE_GAMMA_ENABLE;
4608
4609 if (pipe == 0)
4610 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4611 else
4612 dspcntr |= DISPPLANE_SEL_PIPE_B;
4613
4614 if (intel_crtc->config.has_dp_encoder)
4615 intel_dp_set_m_n(intel_crtc);
4616
4617 intel_set_pipe_timings(intel_crtc);
4618
4619 /* pipesrc and dspsize control the size that is scaled from,
4620 * which should always be the user's requested size.
4621 */
4622 I915_WRITE(DSPSIZE(plane),
4623 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4624 (intel_crtc->config.pipe_src_w - 1));
4625 I915_WRITE(DSPPOS(plane), 0);
4626
4627 i9xx_set_pipeconf(intel_crtc);
4628
4629 I915_WRITE(DSPCNTR(plane), dspcntr);
4630 POSTING_READ(DSPCNTR(plane));
4631
4632 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4633 crtc->x, crtc->y);
4634
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004635 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004636
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004637 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004638 if (encoder->pre_enable)
4639 encoder->pre_enable(encoder);
4640
Daniel Vetterf6736a12013-06-05 13:34:30 +02004641 i9xx_enable_pll(intel_crtc);
4642
Jesse Barnes2dd24552013-04-25 12:55:01 -07004643 i9xx_pfit_enable(intel_crtc);
4644
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004645 intel_crtc_load_lut(crtc);
4646
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004647 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004648 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004649 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004650
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004651 for_each_encoder_on_crtc(dev, crtc, encoder)
4652 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004653
4654 intel_crtc_enable_planes(crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004655}
4656
Daniel Vetter87476d62013-04-11 16:29:06 +02004657static void i9xx_pfit_disable(struct intel_crtc *crtc)
4658{
4659 struct drm_device *dev = crtc->base.dev;
4660 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004661
4662 if (!crtc->config.gmch_pfit.control)
4663 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004664
4665 assert_pipe_disabled(dev_priv, crtc->pipe);
4666
Daniel Vetter328d8e82013-05-08 10:36:31 +02004667 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4668 I915_READ(PFIT_CONTROL));
4669 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004670}
4671
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004672static void i9xx_crtc_disable(struct drm_crtc *crtc)
4673{
4674 struct drm_device *dev = crtc->dev;
4675 struct drm_i915_private *dev_priv = dev->dev_private;
4676 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004677 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004678 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004679
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004680 if (!intel_crtc->active)
4681 return;
4682
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004683 intel_crtc_disable_planes(crtc);
4684
Daniel Vetterea9d7582012-07-10 10:42:52 +02004685 for_each_encoder_on_crtc(dev, crtc, encoder)
4686 encoder->disable(encoder);
4687
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004688 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004689 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004690
Daniel Vetter87476d62013-04-11 16:29:06 +02004691 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004692
Jesse Barnes89b667f2013-04-18 14:51:36 -07004693 for_each_encoder_on_crtc(dev, crtc, encoder)
4694 if (encoder->post_disable)
4695 encoder->post_disable(encoder);
4696
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004697 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4698 if (IS_CHERRYVIEW(dev))
4699 chv_disable_pll(dev_priv, pipe);
4700 else if (IS_VALLEYVIEW(dev))
4701 vlv_disable_pll(dev_priv, pipe);
4702 else
4703 i9xx_disable_pll(dev_priv, pipe);
4704 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004705
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004706 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004707 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004708
Daniel Vetterefa96242014-04-24 23:55:02 +02004709 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004710 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004711 intel_edp_psr_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004712 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004713}
4714
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004715static void i9xx_crtc_off(struct drm_crtc *crtc)
4716{
4717}
4718
Daniel Vetter976f8a22012-07-08 22:34:21 +02004719static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4720 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004721{
4722 struct drm_device *dev = crtc->dev;
4723 struct drm_i915_master_private *master_priv;
4724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4725 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004726
4727 if (!dev->primary->master)
4728 return;
4729
4730 master_priv = dev->primary->master->driver_priv;
4731 if (!master_priv->sarea_priv)
4732 return;
4733
Jesse Barnes79e53942008-11-07 14:24:08 -08004734 switch (pipe) {
4735 case 0:
4736 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4737 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4738 break;
4739 case 1:
4740 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4741 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4742 break;
4743 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004744 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004745 break;
4746 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004747}
4748
Daniel Vetter976f8a22012-07-08 22:34:21 +02004749/**
4750 * Sets the power management mode of the pipe and plane.
4751 */
4752void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004753{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004754 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004755 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004756 struct intel_encoder *intel_encoder;
4757 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004758
Daniel Vetter976f8a22012-07-08 22:34:21 +02004759 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4760 enable |= intel_encoder->connectors_active;
4761
4762 if (enable)
4763 dev_priv->display.crtc_enable(crtc);
4764 else
4765 dev_priv->display.crtc_disable(crtc);
4766
4767 intel_crtc_update_sarea(crtc, enable);
4768}
4769
Daniel Vetter976f8a22012-07-08 22:34:21 +02004770static void intel_crtc_disable(struct drm_crtc *crtc)
4771{
4772 struct drm_device *dev = crtc->dev;
4773 struct drm_connector *connector;
4774 struct drm_i915_private *dev_priv = dev->dev_private;
4775
4776 /* crtc should still be enabled when we disable it. */
4777 WARN_ON(!crtc->enabled);
4778
4779 dev_priv->display.crtc_disable(crtc);
4780 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004781 dev_priv->display.off(crtc);
4782
Chris Wilson931872f2012-01-16 23:01:13 +00004783 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004784 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004785 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004786
Matt Roperf4510a22014-04-01 15:22:40 -07004787 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004788 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004789 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004790 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004791 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004792 }
4793
4794 /* Update computed state. */
4795 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4796 if (!connector->encoder || !connector->encoder->crtc)
4797 continue;
4798
4799 if (connector->encoder->crtc != crtc)
4800 continue;
4801
4802 connector->dpms = DRM_MODE_DPMS_OFF;
4803 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004804 }
4805}
4806
Chris Wilsonea5b2132010-08-04 13:50:23 +01004807void intel_encoder_destroy(struct drm_encoder *encoder)
4808{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004809 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004810
Chris Wilsonea5b2132010-08-04 13:50:23 +01004811 drm_encoder_cleanup(encoder);
4812 kfree(intel_encoder);
4813}
4814
Damien Lespiau92373292013-08-08 22:28:57 +01004815/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004816 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4817 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004818static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004819{
4820 if (mode == DRM_MODE_DPMS_ON) {
4821 encoder->connectors_active = true;
4822
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004823 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004824 } else {
4825 encoder->connectors_active = false;
4826
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004827 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004828 }
4829}
4830
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004831/* Cross check the actual hw state with our own modeset state tracking (and it's
4832 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004833static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004834{
4835 if (connector->get_hw_state(connector)) {
4836 struct intel_encoder *encoder = connector->encoder;
4837 struct drm_crtc *crtc;
4838 bool encoder_enabled;
4839 enum pipe pipe;
4840
4841 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4842 connector->base.base.id,
4843 drm_get_connector_name(&connector->base));
4844
4845 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4846 "wrong connector dpms state\n");
4847 WARN(connector->base.encoder != &encoder->base,
4848 "active connector not linked to encoder\n");
4849 WARN(!encoder->connectors_active,
4850 "encoder->connectors_active not set\n");
4851
4852 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4853 WARN(!encoder_enabled, "encoder not enabled\n");
4854 if (WARN_ON(!encoder->base.crtc))
4855 return;
4856
4857 crtc = encoder->base.crtc;
4858
4859 WARN(!crtc->enabled, "crtc not enabled\n");
4860 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4861 WARN(pipe != to_intel_crtc(crtc)->pipe,
4862 "encoder active on the wrong pipe\n");
4863 }
4864}
4865
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004866/* Even simpler default implementation, if there's really no special case to
4867 * consider. */
4868void intel_connector_dpms(struct drm_connector *connector, int mode)
4869{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004870 /* All the simple cases only support two dpms states. */
4871 if (mode != DRM_MODE_DPMS_ON)
4872 mode = DRM_MODE_DPMS_OFF;
4873
4874 if (mode == connector->dpms)
4875 return;
4876
4877 connector->dpms = mode;
4878
4879 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01004880 if (connector->encoder)
4881 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004882
Daniel Vetterb9805142012-08-31 17:37:33 +02004883 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004884}
4885
Daniel Vetterf0947c32012-07-02 13:10:34 +02004886/* Simple connector->get_hw_state implementation for encoders that support only
4887 * one connector and no cloning and hence the encoder state determines the state
4888 * of the connector. */
4889bool intel_connector_get_hw_state(struct intel_connector *connector)
4890{
Daniel Vetter24929352012-07-02 20:28:59 +02004891 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004892 struct intel_encoder *encoder = connector->encoder;
4893
4894 return encoder->get_hw_state(encoder, &pipe);
4895}
4896
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004897static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4898 struct intel_crtc_config *pipe_config)
4899{
4900 struct drm_i915_private *dev_priv = dev->dev_private;
4901 struct intel_crtc *pipe_B_crtc =
4902 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4903
4904 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4905 pipe_name(pipe), pipe_config->fdi_lanes);
4906 if (pipe_config->fdi_lanes > 4) {
4907 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4908 pipe_name(pipe), pipe_config->fdi_lanes);
4909 return false;
4910 }
4911
Paulo Zanonibafb6552013-11-02 21:07:44 -07004912 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004913 if (pipe_config->fdi_lanes > 2) {
4914 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4915 pipe_config->fdi_lanes);
4916 return false;
4917 } else {
4918 return true;
4919 }
4920 }
4921
4922 if (INTEL_INFO(dev)->num_pipes == 2)
4923 return true;
4924
4925 /* Ivybridge 3 pipe is really complicated */
4926 switch (pipe) {
4927 case PIPE_A:
4928 return true;
4929 case PIPE_B:
4930 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4931 pipe_config->fdi_lanes > 2) {
4932 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4933 pipe_name(pipe), pipe_config->fdi_lanes);
4934 return false;
4935 }
4936 return true;
4937 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004938 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004939 pipe_B_crtc->config.fdi_lanes <= 2) {
4940 if (pipe_config->fdi_lanes > 2) {
4941 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4942 pipe_name(pipe), pipe_config->fdi_lanes);
4943 return false;
4944 }
4945 } else {
4946 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4947 return false;
4948 }
4949 return true;
4950 default:
4951 BUG();
4952 }
4953}
4954
Daniel Vettere29c22c2013-02-21 00:00:16 +01004955#define RETRY 1
4956static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
4957 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02004958{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004959 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004960 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02004961 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01004962 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004963
Daniel Vettere29c22c2013-02-21 00:00:16 +01004964retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02004965 /* FDI is a binary signal running at ~2.7GHz, encoding
4966 * each output octet as 10 bits. The actual frequency
4967 * is stored as a divider into a 100MHz clock, and the
4968 * mode pixel clock is stored in units of 1KHz.
4969 * Hence the bw of each lane in terms of the mode signal
4970 * is:
4971 */
4972 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
4973
Damien Lespiau241bfc32013-09-25 16:45:37 +01004974 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004975
Daniel Vetter2bd89a02013-06-01 17:16:19 +02004976 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02004977 pipe_config->pipe_bpp);
4978
4979 pipe_config->fdi_lanes = lane;
4980
Daniel Vetter2bd89a02013-06-01 17:16:19 +02004981 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02004982 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004983
Daniel Vettere29c22c2013-02-21 00:00:16 +01004984 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
4985 intel_crtc->pipe, pipe_config);
4986 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
4987 pipe_config->pipe_bpp -= 2*3;
4988 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
4989 pipe_config->pipe_bpp);
4990 needs_recompute = true;
4991 pipe_config->bw_constrained = true;
4992
4993 goto retry;
4994 }
4995
4996 if (needs_recompute)
4997 return RETRY;
4998
4999 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005000}
5001
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005002static void hsw_compute_ips_config(struct intel_crtc *crtc,
5003 struct intel_crtc_config *pipe_config)
5004{
Jani Nikulad330a952014-01-21 11:24:25 +02005005 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005006 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005007 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005008}
5009
Daniel Vettera43f6e02013-06-07 23:10:32 +02005010static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005011 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005012{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005013 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005014 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005015
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005016 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005017 if (INTEL_INFO(dev)->gen < 4) {
5018 struct drm_i915_private *dev_priv = dev->dev_private;
5019 int clock_limit =
5020 dev_priv->display.get_display_clock_speed(dev);
5021
5022 /*
5023 * Enable pixel doubling when the dot clock
5024 * is > 90% of the (display) core speed.
5025 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005026 * GDG double wide on either pipe,
5027 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005028 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005029 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005030 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005031 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005032 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005033 }
5034
Damien Lespiau241bfc32013-09-25 16:45:37 +01005035 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005036 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005037 }
Chris Wilson89749352010-09-12 18:25:19 +01005038
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005039 /*
5040 * Pipe horizontal size must be even in:
5041 * - DVO ganged mode
5042 * - LVDS dual channel mode
5043 * - Double wide pipe
5044 */
5045 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5046 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5047 pipe_config->pipe_src_w &= ~1;
5048
Damien Lespiau8693a822013-05-03 18:48:11 +01005049 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5050 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005051 */
5052 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5053 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005054 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005055
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005056 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005057 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005058 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005059 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5060 * for lvds. */
5061 pipe_config->pipe_bpp = 8*3;
5062 }
5063
Damien Lespiauf5adf942013-06-24 18:29:34 +01005064 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005065 hsw_compute_ips_config(crtc, pipe_config);
5066
5067 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5068 * clock survives for now. */
5069 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5070 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005071
Daniel Vetter877d48d2013-04-19 11:24:43 +02005072 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005073 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005074
Daniel Vettere29c22c2013-02-21 00:00:16 +01005075 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005076}
5077
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005078static int valleyview_get_display_clock_speed(struct drm_device *dev)
5079{
5080 return 400000; /* FIXME */
5081}
5082
Jesse Barnese70236a2009-09-21 10:42:27 -07005083static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005084{
Jesse Barnese70236a2009-09-21 10:42:27 -07005085 return 400000;
5086}
Jesse Barnes79e53942008-11-07 14:24:08 -08005087
Jesse Barnese70236a2009-09-21 10:42:27 -07005088static int i915_get_display_clock_speed(struct drm_device *dev)
5089{
5090 return 333000;
5091}
Jesse Barnes79e53942008-11-07 14:24:08 -08005092
Jesse Barnese70236a2009-09-21 10:42:27 -07005093static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5094{
5095 return 200000;
5096}
Jesse Barnes79e53942008-11-07 14:24:08 -08005097
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005098static int pnv_get_display_clock_speed(struct drm_device *dev)
5099{
5100 u16 gcfgc = 0;
5101
5102 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5103
5104 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5105 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5106 return 267000;
5107 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5108 return 333000;
5109 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5110 return 444000;
5111 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5112 return 200000;
5113 default:
5114 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5115 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5116 return 133000;
5117 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5118 return 167000;
5119 }
5120}
5121
Jesse Barnese70236a2009-09-21 10:42:27 -07005122static int i915gm_get_display_clock_speed(struct drm_device *dev)
5123{
5124 u16 gcfgc = 0;
5125
5126 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5127
5128 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005129 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005130 else {
5131 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5132 case GC_DISPLAY_CLOCK_333_MHZ:
5133 return 333000;
5134 default:
5135 case GC_DISPLAY_CLOCK_190_200_MHZ:
5136 return 190000;
5137 }
5138 }
5139}
Jesse Barnes79e53942008-11-07 14:24:08 -08005140
Jesse Barnese70236a2009-09-21 10:42:27 -07005141static int i865_get_display_clock_speed(struct drm_device *dev)
5142{
5143 return 266000;
5144}
5145
5146static int i855_get_display_clock_speed(struct drm_device *dev)
5147{
5148 u16 hpllcc = 0;
5149 /* Assume that the hardware is in the high speed state. This
5150 * should be the default.
5151 */
5152 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5153 case GC_CLOCK_133_200:
5154 case GC_CLOCK_100_200:
5155 return 200000;
5156 case GC_CLOCK_166_250:
5157 return 250000;
5158 case GC_CLOCK_100_133:
5159 return 133000;
5160 }
5161
5162 /* Shouldn't happen */
5163 return 0;
5164}
5165
5166static int i830_get_display_clock_speed(struct drm_device *dev)
5167{
5168 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005169}
5170
Zhenyu Wang2c072452009-06-05 15:38:42 +08005171static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005172intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005173{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005174 while (*num > DATA_LINK_M_N_MASK ||
5175 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005176 *num >>= 1;
5177 *den >>= 1;
5178 }
5179}
5180
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005181static void compute_m_n(unsigned int m, unsigned int n,
5182 uint32_t *ret_m, uint32_t *ret_n)
5183{
5184 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5185 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5186 intel_reduce_m_n_ratio(ret_m, ret_n);
5187}
5188
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005189void
5190intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5191 int pixel_clock, int link_clock,
5192 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005193{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005194 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005195
5196 compute_m_n(bits_per_pixel * pixel_clock,
5197 link_clock * nlanes * 8,
5198 &m_n->gmch_m, &m_n->gmch_n);
5199
5200 compute_m_n(pixel_clock, link_clock,
5201 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005202}
5203
Chris Wilsona7615032011-01-12 17:04:08 +00005204static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5205{
Jani Nikulad330a952014-01-21 11:24:25 +02005206 if (i915.panel_use_ssc >= 0)
5207 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005208 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005209 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005210}
5211
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005212static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5213{
5214 struct drm_device *dev = crtc->dev;
5215 struct drm_i915_private *dev_priv = dev->dev_private;
5216 int refclk;
5217
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005218 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005219 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005220 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005221 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005222 refclk = dev_priv->vbt.lvds_ssc_freq;
5223 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005224 } else if (!IS_GEN2(dev)) {
5225 refclk = 96000;
5226 } else {
5227 refclk = 48000;
5228 }
5229
5230 return refclk;
5231}
5232
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005233static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005234{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005235 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005236}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005237
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005238static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5239{
5240 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005241}
5242
Daniel Vetterf47709a2013-03-28 10:42:02 +01005243static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005244 intel_clock_t *reduced_clock)
5245{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005246 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005247 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005248 int pipe = crtc->pipe;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005249 u32 fp, fp2 = 0;
5250
5251 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005252 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005253 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005254 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005255 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005256 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005257 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005258 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005259 }
5260
5261 I915_WRITE(FP0(pipe), fp);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005262 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005263
Daniel Vetterf47709a2013-03-28 10:42:02 +01005264 crtc->lowfreq_avail = false;
5265 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005266 reduced_clock && i915.powersave) {
Jesse Barnesa7516a02011-12-15 12:30:37 -08005267 I915_WRITE(FP1(pipe), fp2);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005268 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005269 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005270 } else {
5271 I915_WRITE(FP1(pipe), fp);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005272 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005273 }
5274}
5275
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005276static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5277 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005278{
5279 u32 reg_val;
5280
5281 /*
5282 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5283 * and set it to a reasonable value instead.
5284 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005285 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005286 reg_val &= 0xffffff00;
5287 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005288 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005289
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005290 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005291 reg_val &= 0x8cffffff;
5292 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005293 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005294
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005295 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005296 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005297 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005298
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005299 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005300 reg_val &= 0x00ffffff;
5301 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005302 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005303}
5304
Daniel Vetterb5518422013-05-03 11:49:48 +02005305static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5306 struct intel_link_m_n *m_n)
5307{
5308 struct drm_device *dev = crtc->base.dev;
5309 struct drm_i915_private *dev_priv = dev->dev_private;
5310 int pipe = crtc->pipe;
5311
Daniel Vettere3b95f12013-05-03 11:49:49 +02005312 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5313 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5314 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5315 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005316}
5317
5318static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5319 struct intel_link_m_n *m_n)
5320{
5321 struct drm_device *dev = crtc->base.dev;
5322 struct drm_i915_private *dev_priv = dev->dev_private;
5323 int pipe = crtc->pipe;
5324 enum transcoder transcoder = crtc->config.cpu_transcoder;
5325
5326 if (INTEL_INFO(dev)->gen >= 5) {
5327 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5328 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5329 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5330 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5331 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005332 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5333 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5334 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5335 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005336 }
5337}
5338
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005339static void intel_dp_set_m_n(struct intel_crtc *crtc)
5340{
5341 if (crtc->config.has_pch_encoder)
5342 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5343 else
5344 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5345}
5346
Daniel Vetterf47709a2013-03-28 10:42:02 +01005347static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005348{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005349 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005350 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005351 int pipe = crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005352 u32 dpll, mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005353 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005354 u32 coreclk, reg_val, dpll_md;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005355
Daniel Vetter09153002012-12-12 14:06:44 +01005356 mutex_lock(&dev_priv->dpio_lock);
5357
Daniel Vetterf47709a2013-03-28 10:42:02 +01005358 bestn = crtc->config.dpll.n;
5359 bestm1 = crtc->config.dpll.m1;
5360 bestm2 = crtc->config.dpll.m2;
5361 bestp1 = crtc->config.dpll.p1;
5362 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005363
Jesse Barnes89b667f2013-04-18 14:51:36 -07005364 /* See eDP HDMI DPIO driver vbios notes doc */
5365
5366 /* PLL B needs special handling */
5367 if (pipe)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005368 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005369
5370 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005371 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005372
5373 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005374 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005375 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005376 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005377
5378 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005379 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005380
5381 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005382 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5383 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5384 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005385 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005386
5387 /*
5388 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5389 * but we don't support that).
5390 * Note: don't use the DAC post divider as it seems unstable.
5391 */
5392 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005393 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005394
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005395 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005396 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005397
Jesse Barnes89b667f2013-04-18 14:51:36 -07005398 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005399 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005400 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005401 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005402 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005403 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005404 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005405 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005406 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005407
Jesse Barnes89b667f2013-04-18 14:51:36 -07005408 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5409 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5410 /* Use SSC source */
5411 if (!pipe)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005412 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005413 0x0df40000);
5414 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005415 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005416 0x0df70000);
5417 } else { /* HDMI or VGA */
5418 /* Use bend source */
5419 if (!pipe)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005420 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005421 0x0df70000);
5422 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005423 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005424 0x0df40000);
5425 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005426
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005427 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005428 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5429 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5430 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5431 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005432 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005433
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005434 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005435
Imre Deake5cbfbf2014-01-09 17:08:16 +02005436 /*
5437 * Enable DPIO clock input. We should never disable the reference
5438 * clock for pipe B, since VGA hotplug / manual detection depends
5439 * on it.
5440 */
Jesse Barnes89b667f2013-04-18 14:51:36 -07005441 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5442 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07005443 /* We should never disable this, set it here for state tracking */
5444 if (pipe == PIPE_B)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005445 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005446 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005447 crtc->config.dpll_hw_state.dpll = dpll;
5448
Daniel Vetteref1b4602013-06-01 17:17:04 +02005449 dpll_md = (crtc->config.pixel_multiplier - 1)
5450 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005451 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5452
Daniel Vetter09153002012-12-12 14:06:44 +01005453 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005454}
5455
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005456static void chv_update_pll(struct intel_crtc *crtc)
5457{
5458 struct drm_device *dev = crtc->base.dev;
5459 struct drm_i915_private *dev_priv = dev->dev_private;
5460 int pipe = crtc->pipe;
5461 int dpll_reg = DPLL(crtc->pipe);
5462 enum dpio_channel port = vlv_pipe_to_channel(pipe);
5463 u32 val, loopfilter, intcoeff;
5464 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5465 int refclk;
5466
5467 mutex_lock(&dev_priv->dpio_lock);
5468
5469 bestn = crtc->config.dpll.n;
5470 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5471 bestm1 = crtc->config.dpll.m1;
5472 bestm2 = crtc->config.dpll.m2 >> 22;
5473 bestp1 = crtc->config.dpll.p1;
5474 bestp2 = crtc->config.dpll.p2;
5475
5476 /*
5477 * Enable Refclk and SSC
5478 */
5479 val = I915_READ(dpll_reg);
5480 val |= (DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV);
5481 I915_WRITE(dpll_reg, val);
5482
5483 /* Propagate soft reset to data lane reset */
5484 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
5485 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
5486 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), val);
5487
5488 /* Disable 10bit clock to display controller */
5489 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
5490 val &= ~DPIO_DCLKP_EN;
5491 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
5492
5493 /* p1 and p2 divider */
5494 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5495 5 << DPIO_CHV_S1_DIV_SHIFT |
5496 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5497 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5498 1 << DPIO_CHV_K_DIV_SHIFT);
5499
5500 /* Feedback post-divider - m2 */
5501 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5502
5503 /* Feedback refclk divider - n and m1 */
5504 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5505 DPIO_CHV_M1_DIV_BY_2 |
5506 1 << DPIO_CHV_N_DIV_SHIFT);
5507
5508 /* M2 fraction division */
5509 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5510
5511 /* M2 fraction division enable */
5512 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5513 DPIO_CHV_FRAC_DIV_EN |
5514 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5515
5516 /* Loop filter */
5517 refclk = i9xx_get_refclk(&crtc->base, 0);
5518 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5519 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5520 if (refclk == 100000)
5521 intcoeff = 11;
5522 else if (refclk == 38400)
5523 intcoeff = 10;
5524 else
5525 intcoeff = 9;
5526 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5527 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5528
5529 /* AFC Recal */
5530 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5531 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5532 DPIO_AFC_RECAL);
5533
5534 mutex_unlock(&dev_priv->dpio_lock);
5535}
5536
Daniel Vetterf47709a2013-03-28 10:42:02 +01005537static void i9xx_update_pll(struct intel_crtc *crtc,
5538 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005539 int num_connectors)
5540{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005541 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005542 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005543 u32 dpll;
5544 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005545 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005546
Daniel Vetterf47709a2013-03-28 10:42:02 +01005547 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305548
Daniel Vetterf47709a2013-03-28 10:42:02 +01005549 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5550 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005551
5552 dpll = DPLL_VGA_MODE_DIS;
5553
Daniel Vetterf47709a2013-03-28 10:42:02 +01005554 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005555 dpll |= DPLLB_MODE_LVDS;
5556 else
5557 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005558
Daniel Vetteref1b4602013-06-01 17:17:04 +02005559 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005560 dpll |= (crtc->config.pixel_multiplier - 1)
5561 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005562 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005563
5564 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005565 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005566
Daniel Vetterf47709a2013-03-28 10:42:02 +01005567 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005568 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005569
5570 /* compute bitmask from p1 value */
5571 if (IS_PINEVIEW(dev))
5572 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5573 else {
5574 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5575 if (IS_G4X(dev) && reduced_clock)
5576 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5577 }
5578 switch (clock->p2) {
5579 case 5:
5580 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5581 break;
5582 case 7:
5583 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5584 break;
5585 case 10:
5586 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5587 break;
5588 case 14:
5589 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5590 break;
5591 }
5592 if (INTEL_INFO(dev)->gen >= 4)
5593 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5594
Daniel Vetter09ede542013-04-30 14:01:45 +02005595 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005596 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005597 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005598 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5599 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5600 else
5601 dpll |= PLL_REF_INPUT_DREFCLK;
5602
5603 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005604 crtc->config.dpll_hw_state.dpll = dpll;
5605
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005606 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005607 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5608 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005609 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005610 }
5611}
5612
Daniel Vetterf47709a2013-03-28 10:42:02 +01005613static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005614 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005615 int num_connectors)
5616{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005617 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005618 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005619 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005620 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005621
Daniel Vetterf47709a2013-03-28 10:42:02 +01005622 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305623
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005624 dpll = DPLL_VGA_MODE_DIS;
5625
Daniel Vetterf47709a2013-03-28 10:42:02 +01005626 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005627 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5628 } else {
5629 if (clock->p1 == 2)
5630 dpll |= PLL_P1_DIVIDE_BY_TWO;
5631 else
5632 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5633 if (clock->p2 == 4)
5634 dpll |= PLL_P2_DIVIDE_BY_4;
5635 }
5636
Daniel Vetter4a33e482013-07-06 12:52:05 +02005637 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5638 dpll |= DPLL_DVO_2X_MODE;
5639
Daniel Vetterf47709a2013-03-28 10:42:02 +01005640 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005641 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5642 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5643 else
5644 dpll |= PLL_REF_INPUT_DREFCLK;
5645
5646 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005647 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005648}
5649
Daniel Vetter8a654f32013-06-01 17:16:22 +02005650static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005651{
5652 struct drm_device *dev = intel_crtc->base.dev;
5653 struct drm_i915_private *dev_priv = dev->dev_private;
5654 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005655 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005656 struct drm_display_mode *adjusted_mode =
5657 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005658 uint32_t crtc_vtotal, crtc_vblank_end;
5659 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005660
5661 /* We need to be careful not to changed the adjusted mode, for otherwise
5662 * the hw state checker will get angry at the mismatch. */
5663 crtc_vtotal = adjusted_mode->crtc_vtotal;
5664 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005665
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005666 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005667 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005668 crtc_vtotal -= 1;
5669 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005670
5671 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5672 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5673 else
5674 vsyncshift = adjusted_mode->crtc_hsync_start -
5675 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005676 if (vsyncshift < 0)
5677 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005678 }
5679
5680 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005681 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005682
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005683 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005684 (adjusted_mode->crtc_hdisplay - 1) |
5685 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005686 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005687 (adjusted_mode->crtc_hblank_start - 1) |
5688 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005689 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005690 (adjusted_mode->crtc_hsync_start - 1) |
5691 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5692
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005693 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005694 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005695 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005696 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005697 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005698 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005699 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005700 (adjusted_mode->crtc_vsync_start - 1) |
5701 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5702
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005703 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5704 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5705 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5706 * bits. */
5707 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5708 (pipe == PIPE_B || pipe == PIPE_C))
5709 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5710
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005711 /* pipesrc controls the size that is scaled from, which should
5712 * always be the user's requested size.
5713 */
5714 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005715 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5716 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005717}
5718
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005719static void intel_get_pipe_timings(struct intel_crtc *crtc,
5720 struct intel_crtc_config *pipe_config)
5721{
5722 struct drm_device *dev = crtc->base.dev;
5723 struct drm_i915_private *dev_priv = dev->dev_private;
5724 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5725 uint32_t tmp;
5726
5727 tmp = I915_READ(HTOTAL(cpu_transcoder));
5728 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5729 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5730 tmp = I915_READ(HBLANK(cpu_transcoder));
5731 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5732 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5733 tmp = I915_READ(HSYNC(cpu_transcoder));
5734 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5735 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5736
5737 tmp = I915_READ(VTOTAL(cpu_transcoder));
5738 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5739 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5740 tmp = I915_READ(VBLANK(cpu_transcoder));
5741 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5742 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5743 tmp = I915_READ(VSYNC(cpu_transcoder));
5744 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5745 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5746
5747 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5748 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5749 pipe_config->adjusted_mode.crtc_vtotal += 1;
5750 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5751 }
5752
5753 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005754 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5755 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5756
5757 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5758 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005759}
5760
Daniel Vetterf6a83282014-02-11 15:28:57 -08005761void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5762 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03005763{
Daniel Vetterf6a83282014-02-11 15:28:57 -08005764 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5765 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5766 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5767 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005768
Daniel Vetterf6a83282014-02-11 15:28:57 -08005769 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5770 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5771 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5772 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005773
Daniel Vetterf6a83282014-02-11 15:28:57 -08005774 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005775
Daniel Vetterf6a83282014-02-11 15:28:57 -08005776 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5777 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005778}
5779
Daniel Vetter84b046f2013-02-19 18:48:54 +01005780static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5781{
5782 struct drm_device *dev = intel_crtc->base.dev;
5783 struct drm_i915_private *dev_priv = dev->dev_private;
5784 uint32_t pipeconf;
5785
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005786 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005787
Daniel Vetter67c72a12013-09-24 11:46:14 +02005788 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5789 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5790 pipeconf |= PIPECONF_ENABLE;
5791
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005792 if (intel_crtc->config.double_wide)
5793 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005794
Daniel Vetterff9ce462013-04-24 14:57:17 +02005795 /* only g4x and later have fancy bpc/dither controls */
5796 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02005797 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5798 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5799 pipeconf |= PIPECONF_DITHER_EN |
5800 PIPECONF_DITHER_TYPE_SP;
5801
5802 switch (intel_crtc->config.pipe_bpp) {
5803 case 18:
5804 pipeconf |= PIPECONF_6BPC;
5805 break;
5806 case 24:
5807 pipeconf |= PIPECONF_8BPC;
5808 break;
5809 case 30:
5810 pipeconf |= PIPECONF_10BPC;
5811 break;
5812 default:
5813 /* Case prevented by intel_choose_pipe_bpp_dither. */
5814 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005815 }
5816 }
5817
5818 if (HAS_PIPE_CXSR(dev)) {
5819 if (intel_crtc->lowfreq_avail) {
5820 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5821 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5822 } else {
5823 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005824 }
5825 }
5826
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02005827 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5828 if (INTEL_INFO(dev)->gen < 4 ||
5829 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5830 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5831 else
5832 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5833 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01005834 pipeconf |= PIPECONF_PROGRESSIVE;
5835
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005836 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5837 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005838
Daniel Vetter84b046f2013-02-19 18:48:54 +01005839 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5840 POSTING_READ(PIPECONF(intel_crtc->pipe));
5841}
5842
Eric Anholtf564048e2011-03-30 13:01:02 -07005843static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005844 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005845 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005846{
5847 struct drm_device *dev = crtc->dev;
5848 struct drm_i915_private *dev_priv = dev->dev_private;
5849 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07005850 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005851 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02005852 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005853 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005854 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005855 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08005856
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005857 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005858 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005859 case INTEL_OUTPUT_LVDS:
5860 is_lvds = true;
5861 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005862 case INTEL_OUTPUT_DSI:
5863 is_dsi = true;
5864 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005865 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005866
Eric Anholtc751ce42010-03-25 11:48:48 -07005867 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005868 }
5869
Jani Nikulaf2335332013-09-13 11:03:09 +03005870 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005871 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005872
Jani Nikulaf2335332013-09-13 11:03:09 +03005873 if (!intel_crtc->config.clock_set) {
5874 refclk = i9xx_get_refclk(crtc, num_connectors);
5875
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005876 /*
5877 * Returns a set of divisors for the desired target clock with
5878 * the given refclk, or FALSE. The returned values represent
5879 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5880 * 2) / p1 / p2.
5881 */
5882 limit = intel_limit(crtc, refclk);
5883 ok = dev_priv->display.find_dpll(limit, crtc,
5884 intel_crtc->config.port_clock,
5885 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005886 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005887 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5888 return -EINVAL;
5889 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005890
Jani Nikulaf2335332013-09-13 11:03:09 +03005891 if (is_lvds && dev_priv->lvds_downclock_avail) {
5892 /*
5893 * Ensure we match the reduced clock's P to the target
5894 * clock. If the clocks don't match, we can't switch
5895 * the display clock by using the FP0/FP1. In such case
5896 * we will disable the LVDS downclock feature.
5897 */
5898 has_reduced_clock =
5899 dev_priv->display.find_dpll(limit, crtc,
5900 dev_priv->lvds_downclock,
5901 refclk, &clock,
5902 &reduced_clock);
5903 }
5904 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005905 intel_crtc->config.dpll.n = clock.n;
5906 intel_crtc->config.dpll.m1 = clock.m1;
5907 intel_crtc->config.dpll.m2 = clock.m2;
5908 intel_crtc->config.dpll.p1 = clock.p1;
5909 intel_crtc->config.dpll.p2 = clock.p2;
5910 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005911
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005912 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005913 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305914 has_reduced_clock ? &reduced_clock : NULL,
5915 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005916 } else if (IS_CHERRYVIEW(dev)) {
5917 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005918 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03005919 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005920 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01005921 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005922 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02005923 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005924 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005925
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02005926 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07005927}
5928
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005929static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5930 struct intel_crtc_config *pipe_config)
5931{
5932 struct drm_device *dev = crtc->base.dev;
5933 struct drm_i915_private *dev_priv = dev->dev_private;
5934 uint32_t tmp;
5935
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02005936 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5937 return;
5938
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005939 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02005940 if (!(tmp & PFIT_ENABLE))
5941 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005942
Daniel Vetter06922822013-07-11 13:35:40 +02005943 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005944 if (INTEL_INFO(dev)->gen < 4) {
5945 if (crtc->pipe != PIPE_B)
5946 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005947 } else {
5948 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
5949 return;
5950 }
5951
Daniel Vetter06922822013-07-11 13:35:40 +02005952 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005953 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
5954 if (INTEL_INFO(dev)->gen < 5)
5955 pipe_config->gmch_pfit.lvds_border_bits =
5956 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
5957}
5958
Jesse Barnesacbec812013-09-20 11:29:32 -07005959static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5960 struct intel_crtc_config *pipe_config)
5961{
5962 struct drm_device *dev = crtc->base.dev;
5963 struct drm_i915_private *dev_priv = dev->dev_private;
5964 int pipe = pipe_config->cpu_transcoder;
5965 intel_clock_t clock;
5966 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07005967 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07005968
5969 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005970 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07005971 mutex_unlock(&dev_priv->dpio_lock);
5972
5973 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
5974 clock.m2 = mdiv & DPIO_M2DIV_MASK;
5975 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
5976 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
5977 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
5978
Ville Syrjäläf6466282013-10-14 14:50:31 +03005979 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07005980
Ville Syrjäläf6466282013-10-14 14:50:31 +03005981 /* clock.dot is the fast clock */
5982 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07005983}
5984
Jesse Barnes1ad292b2014-03-07 08:57:49 -08005985static void i9xx_get_plane_config(struct intel_crtc *crtc,
5986 struct intel_plane_config *plane_config)
5987{
5988 struct drm_device *dev = crtc->base.dev;
5989 struct drm_i915_private *dev_priv = dev->dev_private;
5990 u32 val, base, offset;
5991 int pipe = crtc->pipe, plane = crtc->plane;
5992 int fourcc, pixel_format;
5993 int aligned_height;
5994
Dave Airlie66e514c2014-04-03 07:51:54 +10005995 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
5996 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08005997 DRM_DEBUG_KMS("failed to alloc fb\n");
5998 return;
5999 }
6000
6001 val = I915_READ(DSPCNTR(plane));
6002
6003 if (INTEL_INFO(dev)->gen >= 4)
6004 if (val & DISPPLANE_TILED)
6005 plane_config->tiled = true;
6006
6007 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6008 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006009 crtc->base.primary->fb->pixel_format = fourcc;
6010 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006011 drm_format_plane_cpp(fourcc, 0) * 8;
6012
6013 if (INTEL_INFO(dev)->gen >= 4) {
6014 if (plane_config->tiled)
6015 offset = I915_READ(DSPTILEOFF(plane));
6016 else
6017 offset = I915_READ(DSPLINOFF(plane));
6018 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6019 } else {
6020 base = I915_READ(DSPADDR(plane));
6021 }
6022 plane_config->base = base;
6023
6024 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006025 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6026 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006027
6028 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006029 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006030
Dave Airlie66e514c2014-04-03 07:51:54 +10006031 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006032 plane_config->tiled);
6033
Dave Airlie66e514c2014-04-03 07:51:54 +10006034 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006035 aligned_height, PAGE_SIZE);
6036
6037 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 +10006038 pipe, plane, crtc->base.primary->fb->width,
6039 crtc->base.primary->fb->height,
6040 crtc->base.primary->fb->bits_per_pixel, base,
6041 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006042 plane_config->size);
6043
6044}
6045
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006046static void chv_crtc_clock_get(struct intel_crtc *crtc,
6047 struct intel_crtc_config *pipe_config)
6048{
6049 struct drm_device *dev = crtc->base.dev;
6050 struct drm_i915_private *dev_priv = dev->dev_private;
6051 int pipe = pipe_config->cpu_transcoder;
6052 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6053 intel_clock_t clock;
6054 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6055 int refclk = 100000;
6056
6057 mutex_lock(&dev_priv->dpio_lock);
6058 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6059 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6060 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6061 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6062 mutex_unlock(&dev_priv->dpio_lock);
6063
6064 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6065 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6066 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6067 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6068 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6069
6070 chv_clock(refclk, &clock);
6071
6072 /* clock.dot is the fast clock */
6073 pipe_config->port_clock = clock.dot / 5;
6074}
6075
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006076static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6077 struct intel_crtc_config *pipe_config)
6078{
6079 struct drm_device *dev = crtc->base.dev;
6080 struct drm_i915_private *dev_priv = dev->dev_private;
6081 uint32_t tmp;
6082
Imre Deakb5482bd2014-03-05 16:20:55 +02006083 if (!intel_display_power_enabled(dev_priv,
6084 POWER_DOMAIN_PIPE(crtc->pipe)))
6085 return false;
6086
Daniel Vettere143a212013-07-04 12:01:15 +02006087 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006088 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006089
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006090 tmp = I915_READ(PIPECONF(crtc->pipe));
6091 if (!(tmp & PIPECONF_ENABLE))
6092 return false;
6093
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006094 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6095 switch (tmp & PIPECONF_BPC_MASK) {
6096 case PIPECONF_6BPC:
6097 pipe_config->pipe_bpp = 18;
6098 break;
6099 case PIPECONF_8BPC:
6100 pipe_config->pipe_bpp = 24;
6101 break;
6102 case PIPECONF_10BPC:
6103 pipe_config->pipe_bpp = 30;
6104 break;
6105 default:
6106 break;
6107 }
6108 }
6109
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006110 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6111 pipe_config->limited_color_range = true;
6112
Ville Syrjälä282740f2013-09-04 18:30:03 +03006113 if (INTEL_INFO(dev)->gen < 4)
6114 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6115
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006116 intel_get_pipe_timings(crtc, pipe_config);
6117
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006118 i9xx_get_pfit_config(crtc, pipe_config);
6119
Daniel Vetter6c49f242013-06-06 12:45:25 +02006120 if (INTEL_INFO(dev)->gen >= 4) {
6121 tmp = I915_READ(DPLL_MD(crtc->pipe));
6122 pipe_config->pixel_multiplier =
6123 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6124 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006125 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006126 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6127 tmp = I915_READ(DPLL(crtc->pipe));
6128 pipe_config->pixel_multiplier =
6129 ((tmp & SDVO_MULTIPLIER_MASK)
6130 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6131 } else {
6132 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6133 * port and will be fixed up in the encoder->get_config
6134 * function. */
6135 pipe_config->pixel_multiplier = 1;
6136 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006137 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6138 if (!IS_VALLEYVIEW(dev)) {
6139 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6140 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006141 } else {
6142 /* Mask out read-only status bits. */
6143 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6144 DPLL_PORTC_READY_MASK |
6145 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006146 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006147
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006148 if (IS_CHERRYVIEW(dev))
6149 chv_crtc_clock_get(crtc, pipe_config);
6150 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006151 vlv_crtc_clock_get(crtc, pipe_config);
6152 else
6153 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006154
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006155 return true;
6156}
6157
Paulo Zanonidde86e22012-12-01 12:04:25 -02006158static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006159{
6160 struct drm_i915_private *dev_priv = dev->dev_private;
6161 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006162 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006163 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006164 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006165 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006166 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006167 bool has_ck505 = false;
6168 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006169
6170 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07006171 list_for_each_entry(encoder, &mode_config->encoder_list,
6172 base.head) {
6173 switch (encoder->type) {
6174 case INTEL_OUTPUT_LVDS:
6175 has_panel = true;
6176 has_lvds = true;
6177 break;
6178 case INTEL_OUTPUT_EDP:
6179 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006180 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006181 has_cpu_edp = true;
6182 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006183 }
6184 }
6185
Keith Packard99eb6a02011-09-26 14:29:12 -07006186 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006187 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006188 can_ssc = has_ck505;
6189 } else {
6190 has_ck505 = false;
6191 can_ssc = true;
6192 }
6193
Imre Deak2de69052013-05-08 13:14:04 +03006194 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6195 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006196
6197 /* Ironlake: try to setup display ref clock before DPLL
6198 * enabling. This is only under driver's control after
6199 * PCH B stepping, previous chipset stepping should be
6200 * ignoring this setting.
6201 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006202 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006203
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006204 /* As we must carefully and slowly disable/enable each source in turn,
6205 * compute the final state we want first and check if we need to
6206 * make any changes at all.
6207 */
6208 final = val;
6209 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006210 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006211 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006212 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006213 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6214
6215 final &= ~DREF_SSC_SOURCE_MASK;
6216 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6217 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006218
Keith Packard199e5d72011-09-22 12:01:57 -07006219 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006220 final |= DREF_SSC_SOURCE_ENABLE;
6221
6222 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6223 final |= DREF_SSC1_ENABLE;
6224
6225 if (has_cpu_edp) {
6226 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6227 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6228 else
6229 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6230 } else
6231 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6232 } else {
6233 final |= DREF_SSC_SOURCE_DISABLE;
6234 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6235 }
6236
6237 if (final == val)
6238 return;
6239
6240 /* Always enable nonspread source */
6241 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6242
6243 if (has_ck505)
6244 val |= DREF_NONSPREAD_CK505_ENABLE;
6245 else
6246 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6247
6248 if (has_panel) {
6249 val &= ~DREF_SSC_SOURCE_MASK;
6250 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006251
Keith Packard199e5d72011-09-22 12:01:57 -07006252 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006253 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006254 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006255 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006256 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006257 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006258
6259 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006260 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006261 POSTING_READ(PCH_DREF_CONTROL);
6262 udelay(200);
6263
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006264 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006265
6266 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006267 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006268 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006269 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006270 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006271 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006272 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006273 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006274 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006275
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006276 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006277 POSTING_READ(PCH_DREF_CONTROL);
6278 udelay(200);
6279 } else {
6280 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6281
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006282 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006283
6284 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006285 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006286
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006287 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006288 POSTING_READ(PCH_DREF_CONTROL);
6289 udelay(200);
6290
6291 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006292 val &= ~DREF_SSC_SOURCE_MASK;
6293 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006294
6295 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006296 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006297
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006298 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006299 POSTING_READ(PCH_DREF_CONTROL);
6300 udelay(200);
6301 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006302
6303 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006304}
6305
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006306static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006307{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006308 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006309
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006310 tmp = I915_READ(SOUTH_CHICKEN2);
6311 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6312 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006313
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006314 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6315 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6316 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006317
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006318 tmp = I915_READ(SOUTH_CHICKEN2);
6319 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6320 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006321
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006322 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6323 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6324 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006325}
6326
6327/* WaMPhyProgramming:hsw */
6328static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6329{
6330 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006331
6332 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6333 tmp &= ~(0xFF << 24);
6334 tmp |= (0x12 << 24);
6335 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6336
Paulo Zanonidde86e22012-12-01 12:04:25 -02006337 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6338 tmp |= (1 << 11);
6339 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6340
6341 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6342 tmp |= (1 << 11);
6343 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6344
Paulo Zanonidde86e22012-12-01 12:04:25 -02006345 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6346 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6347 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6348
6349 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6350 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6351 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6352
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006353 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6354 tmp &= ~(7 << 13);
6355 tmp |= (5 << 13);
6356 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006357
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006358 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6359 tmp &= ~(7 << 13);
6360 tmp |= (5 << 13);
6361 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006362
6363 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6364 tmp &= ~0xFF;
6365 tmp |= 0x1C;
6366 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6367
6368 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6369 tmp &= ~0xFF;
6370 tmp |= 0x1C;
6371 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6372
6373 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6374 tmp &= ~(0xFF << 16);
6375 tmp |= (0x1C << 16);
6376 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6377
6378 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6379 tmp &= ~(0xFF << 16);
6380 tmp |= (0x1C << 16);
6381 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6382
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006383 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6384 tmp |= (1 << 27);
6385 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006386
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006387 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6388 tmp |= (1 << 27);
6389 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006390
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006391 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6392 tmp &= ~(0xF << 28);
6393 tmp |= (4 << 28);
6394 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006395
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006396 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6397 tmp &= ~(0xF << 28);
6398 tmp |= (4 << 28);
6399 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006400}
6401
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006402/* Implements 3 different sequences from BSpec chapter "Display iCLK
6403 * Programming" based on the parameters passed:
6404 * - Sequence to enable CLKOUT_DP
6405 * - Sequence to enable CLKOUT_DP without spread
6406 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6407 */
6408static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6409 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006410{
6411 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006412 uint32_t reg, tmp;
6413
6414 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6415 with_spread = true;
6416 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6417 with_fdi, "LP PCH doesn't have FDI\n"))
6418 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006419
6420 mutex_lock(&dev_priv->dpio_lock);
6421
6422 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6423 tmp &= ~SBI_SSCCTL_DISABLE;
6424 tmp |= SBI_SSCCTL_PATHALT;
6425 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6426
6427 udelay(24);
6428
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006429 if (with_spread) {
6430 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6431 tmp &= ~SBI_SSCCTL_PATHALT;
6432 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006433
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006434 if (with_fdi) {
6435 lpt_reset_fdi_mphy(dev_priv);
6436 lpt_program_fdi_mphy(dev_priv);
6437 }
6438 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006439
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006440 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6441 SBI_GEN0 : SBI_DBUFF0;
6442 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6443 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6444 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006445
6446 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006447}
6448
Paulo Zanoni47701c32013-07-23 11:19:25 -03006449/* Sequence to disable CLKOUT_DP */
6450static void lpt_disable_clkout_dp(struct drm_device *dev)
6451{
6452 struct drm_i915_private *dev_priv = dev->dev_private;
6453 uint32_t reg, tmp;
6454
6455 mutex_lock(&dev_priv->dpio_lock);
6456
6457 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6458 SBI_GEN0 : SBI_DBUFF0;
6459 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6460 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6461 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6462
6463 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6464 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6465 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6466 tmp |= SBI_SSCCTL_PATHALT;
6467 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6468 udelay(32);
6469 }
6470 tmp |= SBI_SSCCTL_DISABLE;
6471 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6472 }
6473
6474 mutex_unlock(&dev_priv->dpio_lock);
6475}
6476
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006477static void lpt_init_pch_refclk(struct drm_device *dev)
6478{
6479 struct drm_mode_config *mode_config = &dev->mode_config;
6480 struct intel_encoder *encoder;
6481 bool has_vga = false;
6482
6483 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6484 switch (encoder->type) {
6485 case INTEL_OUTPUT_ANALOG:
6486 has_vga = true;
6487 break;
6488 }
6489 }
6490
Paulo Zanoni47701c32013-07-23 11:19:25 -03006491 if (has_vga)
6492 lpt_enable_clkout_dp(dev, true, true);
6493 else
6494 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006495}
6496
Paulo Zanonidde86e22012-12-01 12:04:25 -02006497/*
6498 * Initialize reference clocks when the driver loads
6499 */
6500void intel_init_pch_refclk(struct drm_device *dev)
6501{
6502 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6503 ironlake_init_pch_refclk(dev);
6504 else if (HAS_PCH_LPT(dev))
6505 lpt_init_pch_refclk(dev);
6506}
6507
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006508static int ironlake_get_refclk(struct drm_crtc *crtc)
6509{
6510 struct drm_device *dev = crtc->dev;
6511 struct drm_i915_private *dev_priv = dev->dev_private;
6512 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006513 int num_connectors = 0;
6514 bool is_lvds = false;
6515
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006516 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006517 switch (encoder->type) {
6518 case INTEL_OUTPUT_LVDS:
6519 is_lvds = true;
6520 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006521 }
6522 num_connectors++;
6523 }
6524
6525 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006526 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006527 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006528 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006529 }
6530
6531 return 120000;
6532}
6533
Daniel Vetter6ff93602013-04-19 11:24:36 +02006534static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006535{
6536 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6537 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6538 int pipe = intel_crtc->pipe;
6539 uint32_t val;
6540
Daniel Vetter78114072013-06-13 00:54:57 +02006541 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006542
Daniel Vetter965e0c42013-03-27 00:44:57 +01006543 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006544 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006545 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006546 break;
6547 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006548 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006549 break;
6550 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006551 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006552 break;
6553 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006554 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006555 break;
6556 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006557 /* Case prevented by intel_choose_pipe_bpp_dither. */
6558 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006559 }
6560
Daniel Vetterd8b32242013-04-25 17:54:44 +02006561 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006562 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6563
Daniel Vetter6ff93602013-04-19 11:24:36 +02006564 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006565 val |= PIPECONF_INTERLACED_ILK;
6566 else
6567 val |= PIPECONF_PROGRESSIVE;
6568
Daniel Vetter50f3b012013-03-27 00:44:56 +01006569 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006570 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006571
Paulo Zanonic8203562012-09-12 10:06:29 -03006572 I915_WRITE(PIPECONF(pipe), val);
6573 POSTING_READ(PIPECONF(pipe));
6574}
6575
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006576/*
6577 * Set up the pipe CSC unit.
6578 *
6579 * Currently only full range RGB to limited range RGB conversion
6580 * is supported, but eventually this should handle various
6581 * RGB<->YCbCr scenarios as well.
6582 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006583static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006584{
6585 struct drm_device *dev = crtc->dev;
6586 struct drm_i915_private *dev_priv = dev->dev_private;
6587 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6588 int pipe = intel_crtc->pipe;
6589 uint16_t coeff = 0x7800; /* 1.0 */
6590
6591 /*
6592 * TODO: Check what kind of values actually come out of the pipe
6593 * with these coeff/postoff values and adjust to get the best
6594 * accuracy. Perhaps we even need to take the bpc value into
6595 * consideration.
6596 */
6597
Daniel Vetter50f3b012013-03-27 00:44:56 +01006598 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006599 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6600
6601 /*
6602 * GY/GU and RY/RU should be the other way around according
6603 * to BSpec, but reality doesn't agree. Just set them up in
6604 * a way that results in the correct picture.
6605 */
6606 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6607 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6608
6609 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6610 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6611
6612 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6613 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6614
6615 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6616 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6617 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6618
6619 if (INTEL_INFO(dev)->gen > 6) {
6620 uint16_t postoff = 0;
6621
Daniel Vetter50f3b012013-03-27 00:44:56 +01006622 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006623 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006624
6625 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6626 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6627 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6628
6629 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6630 } else {
6631 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6632
Daniel Vetter50f3b012013-03-27 00:44:56 +01006633 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006634 mode |= CSC_BLACK_SCREEN_OFFSET;
6635
6636 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6637 }
6638}
6639
Daniel Vetter6ff93602013-04-19 11:24:36 +02006640static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006641{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006642 struct drm_device *dev = crtc->dev;
6643 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006644 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006645 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006646 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006647 uint32_t val;
6648
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006649 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006650
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006651 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006652 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6653
Daniel Vetter6ff93602013-04-19 11:24:36 +02006654 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006655 val |= PIPECONF_INTERLACED_ILK;
6656 else
6657 val |= PIPECONF_PROGRESSIVE;
6658
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006659 I915_WRITE(PIPECONF(cpu_transcoder), val);
6660 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006661
6662 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6663 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006664
6665 if (IS_BROADWELL(dev)) {
6666 val = 0;
6667
6668 switch (intel_crtc->config.pipe_bpp) {
6669 case 18:
6670 val |= PIPEMISC_DITHER_6_BPC;
6671 break;
6672 case 24:
6673 val |= PIPEMISC_DITHER_8_BPC;
6674 break;
6675 case 30:
6676 val |= PIPEMISC_DITHER_10_BPC;
6677 break;
6678 case 36:
6679 val |= PIPEMISC_DITHER_12_BPC;
6680 break;
6681 default:
6682 /* Case prevented by pipe_config_set_bpp. */
6683 BUG();
6684 }
6685
6686 if (intel_crtc->config.dither)
6687 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6688
6689 I915_WRITE(PIPEMISC(pipe), val);
6690 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006691}
6692
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006693static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006694 intel_clock_t *clock,
6695 bool *has_reduced_clock,
6696 intel_clock_t *reduced_clock)
6697{
6698 struct drm_device *dev = crtc->dev;
6699 struct drm_i915_private *dev_priv = dev->dev_private;
6700 struct intel_encoder *intel_encoder;
6701 int refclk;
6702 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006703 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006704
6705 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6706 switch (intel_encoder->type) {
6707 case INTEL_OUTPUT_LVDS:
6708 is_lvds = true;
6709 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006710 }
6711 }
6712
6713 refclk = ironlake_get_refclk(crtc);
6714
6715 /*
6716 * Returns a set of divisors for the desired target clock with the given
6717 * refclk, or FALSE. The returned values represent the clock equation:
6718 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6719 */
6720 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006721 ret = dev_priv->display.find_dpll(limit, crtc,
6722 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006723 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006724 if (!ret)
6725 return false;
6726
6727 if (is_lvds && dev_priv->lvds_downclock_avail) {
6728 /*
6729 * Ensure we match the reduced clock's P to the target clock.
6730 * If the clocks don't match, we can't switch the display clock
6731 * by using the FP0/FP1. In such case we will disable the LVDS
6732 * downclock feature.
6733 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006734 *has_reduced_clock =
6735 dev_priv->display.find_dpll(limit, crtc,
6736 dev_priv->lvds_downclock,
6737 refclk, clock,
6738 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006739 }
6740
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006741 return true;
6742}
6743
Paulo Zanonid4b19312012-11-29 11:29:32 -02006744int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6745{
6746 /*
6747 * Account for spread spectrum to avoid
6748 * oversubscribing the link. Max center spread
6749 * is 2.5%; use 5% for safety's sake.
6750 */
6751 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006752 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02006753}
6754
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006755static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02006756{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006757 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006758}
6759
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006760static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006761 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006762 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006763{
6764 struct drm_crtc *crtc = &intel_crtc->base;
6765 struct drm_device *dev = crtc->dev;
6766 struct drm_i915_private *dev_priv = dev->dev_private;
6767 struct intel_encoder *intel_encoder;
6768 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006769 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02006770 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006771
6772 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6773 switch (intel_encoder->type) {
6774 case INTEL_OUTPUT_LVDS:
6775 is_lvds = true;
6776 break;
6777 case INTEL_OUTPUT_SDVO:
6778 case INTEL_OUTPUT_HDMI:
6779 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006780 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006781 }
6782
6783 num_connectors++;
6784 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006785
Chris Wilsonc1858122010-12-03 21:35:48 +00006786 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07006787 factor = 21;
6788 if (is_lvds) {
6789 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006790 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02006791 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07006792 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02006793 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07006794 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00006795
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006796 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02006797 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00006798
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006799 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6800 *fp2 |= FP_CB_TUNE;
6801
Chris Wilson5eddb702010-09-11 13:48:45 +01006802 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006803
Eric Anholta07d6782011-03-30 13:01:08 -07006804 if (is_lvds)
6805 dpll |= DPLLB_MODE_LVDS;
6806 else
6807 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006808
Daniel Vetteref1b4602013-06-01 17:17:04 +02006809 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6810 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006811
6812 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006813 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02006814 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006815 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08006816
Eric Anholta07d6782011-03-30 13:01:08 -07006817 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006818 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006819 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006820 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006821
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006822 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07006823 case 5:
6824 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6825 break;
6826 case 7:
6827 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6828 break;
6829 case 10:
6830 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6831 break;
6832 case 14:
6833 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6834 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006835 }
6836
Daniel Vetterb4c09f32013-04-30 14:01:42 +02006837 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006838 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08006839 else
6840 dpll |= PLL_REF_INPUT_DREFCLK;
6841
Daniel Vetter959e16d2013-06-05 13:34:21 +02006842 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006843}
6844
Jesse Barnes79e53942008-11-07 14:24:08 -08006845static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08006846 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006847 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006848{
6849 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006850 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006851 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006852 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006853 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03006854 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01006855 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006856 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02006857 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08006858
6859 for_each_encoder_on_crtc(dev, crtc, encoder) {
6860 switch (encoder->type) {
6861 case INTEL_OUTPUT_LVDS:
6862 is_lvds = true;
6863 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006864 }
6865
6866 num_connectors++;
6867 }
6868
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006869 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6870 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6871
Daniel Vetterff9a6752013-06-01 17:16:21 +02006872 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006873 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006874 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006875 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6876 return -EINVAL;
6877 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006878 /* Compat-code for transition, will disappear. */
6879 if (!intel_crtc->config.clock_set) {
6880 intel_crtc->config.dpll.n = clock.n;
6881 intel_crtc->config.dpll.m1 = clock.m1;
6882 intel_crtc->config.dpll.m2 = clock.m2;
6883 intel_crtc->config.dpll.p1 = clock.p1;
6884 intel_crtc->config.dpll.p2 = clock.p2;
6885 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006886
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006887 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006888 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006889 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006890 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006891 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006892
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006893 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006894 &fp, &reduced_clock,
6895 has_reduced_clock ? &fp2 : NULL);
6896
Daniel Vetter959e16d2013-06-05 13:34:21 +02006897 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006898 intel_crtc->config.dpll_hw_state.fp0 = fp;
6899 if (has_reduced_clock)
6900 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6901 else
6902 intel_crtc->config.dpll_hw_state.fp1 = fp;
6903
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006904 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006905 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006906 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02006907 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006908 return -EINVAL;
6909 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006910 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006911 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006912
Jani Nikulad330a952014-01-21 11:24:25 +02006913 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006914 intel_crtc->lowfreq_avail = true;
6915 else
6916 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02006917
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006918 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006919}
6920
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006921static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6922 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02006923{
6924 struct drm_device *dev = crtc->base.dev;
6925 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006926 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02006927
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006928 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6929 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6930 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6931 & ~TU_SIZE_MASK;
6932 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6933 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6934 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6935}
6936
6937static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6938 enum transcoder transcoder,
6939 struct intel_link_m_n *m_n)
6940{
6941 struct drm_device *dev = crtc->base.dev;
6942 struct drm_i915_private *dev_priv = dev->dev_private;
6943 enum pipe pipe = crtc->pipe;
6944
6945 if (INTEL_INFO(dev)->gen >= 5) {
6946 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
6947 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
6948 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
6949 & ~TU_SIZE_MASK;
6950 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
6951 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
6952 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6953 } else {
6954 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
6955 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
6956 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
6957 & ~TU_SIZE_MASK;
6958 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
6959 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
6960 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6961 }
6962}
6963
6964void intel_dp_get_m_n(struct intel_crtc *crtc,
6965 struct intel_crtc_config *pipe_config)
6966{
6967 if (crtc->config.has_pch_encoder)
6968 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
6969 else
6970 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
6971 &pipe_config->dp_m_n);
6972}
6973
Daniel Vetter72419202013-04-04 13:28:53 +02006974static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
6975 struct intel_crtc_config *pipe_config)
6976{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006977 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
6978 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02006979}
6980
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006981static void ironlake_get_pfit_config(struct intel_crtc *crtc,
6982 struct intel_crtc_config *pipe_config)
6983{
6984 struct drm_device *dev = crtc->base.dev;
6985 struct drm_i915_private *dev_priv = dev->dev_private;
6986 uint32_t tmp;
6987
6988 tmp = I915_READ(PF_CTL(crtc->pipe));
6989
6990 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01006991 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006992 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
6993 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02006994
6995 /* We currently do not free assignements of panel fitters on
6996 * ivb/hsw (since we don't use the higher upscaling modes which
6997 * differentiates them) so just WARN about this case for now. */
6998 if (IS_GEN7(dev)) {
6999 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7000 PF_PIPE_SEL_IVB(crtc->pipe));
7001 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007002 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007003}
7004
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007005static void ironlake_get_plane_config(struct intel_crtc *crtc,
7006 struct intel_plane_config *plane_config)
7007{
7008 struct drm_device *dev = crtc->base.dev;
7009 struct drm_i915_private *dev_priv = dev->dev_private;
7010 u32 val, base, offset;
7011 int pipe = crtc->pipe, plane = crtc->plane;
7012 int fourcc, pixel_format;
7013 int aligned_height;
7014
Dave Airlie66e514c2014-04-03 07:51:54 +10007015 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7016 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007017 DRM_DEBUG_KMS("failed to alloc fb\n");
7018 return;
7019 }
7020
7021 val = I915_READ(DSPCNTR(plane));
7022
7023 if (INTEL_INFO(dev)->gen >= 4)
7024 if (val & DISPPLANE_TILED)
7025 plane_config->tiled = true;
7026
7027 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7028 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007029 crtc->base.primary->fb->pixel_format = fourcc;
7030 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007031 drm_format_plane_cpp(fourcc, 0) * 8;
7032
7033 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7034 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7035 offset = I915_READ(DSPOFFSET(plane));
7036 } else {
7037 if (plane_config->tiled)
7038 offset = I915_READ(DSPTILEOFF(plane));
7039 else
7040 offset = I915_READ(DSPLINOFF(plane));
7041 }
7042 plane_config->base = base;
7043
7044 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007045 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7046 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007047
7048 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007049 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007050
Dave Airlie66e514c2014-04-03 07:51:54 +10007051 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007052 plane_config->tiled);
7053
Dave Airlie66e514c2014-04-03 07:51:54 +10007054 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007055 aligned_height, PAGE_SIZE);
7056
7057 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 +10007058 pipe, plane, crtc->base.primary->fb->width,
7059 crtc->base.primary->fb->height,
7060 crtc->base.primary->fb->bits_per_pixel, base,
7061 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007062 plane_config->size);
7063}
7064
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007065static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7066 struct intel_crtc_config *pipe_config)
7067{
7068 struct drm_device *dev = crtc->base.dev;
7069 struct drm_i915_private *dev_priv = dev->dev_private;
7070 uint32_t tmp;
7071
Daniel Vettere143a212013-07-04 12:01:15 +02007072 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007073 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007074
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007075 tmp = I915_READ(PIPECONF(crtc->pipe));
7076 if (!(tmp & PIPECONF_ENABLE))
7077 return false;
7078
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007079 switch (tmp & PIPECONF_BPC_MASK) {
7080 case PIPECONF_6BPC:
7081 pipe_config->pipe_bpp = 18;
7082 break;
7083 case PIPECONF_8BPC:
7084 pipe_config->pipe_bpp = 24;
7085 break;
7086 case PIPECONF_10BPC:
7087 pipe_config->pipe_bpp = 30;
7088 break;
7089 case PIPECONF_12BPC:
7090 pipe_config->pipe_bpp = 36;
7091 break;
7092 default:
7093 break;
7094 }
7095
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007096 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7097 pipe_config->limited_color_range = true;
7098
Daniel Vetterab9412b2013-05-03 11:49:46 +02007099 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007100 struct intel_shared_dpll *pll;
7101
Daniel Vetter88adfff2013-03-28 10:42:01 +01007102 pipe_config->has_pch_encoder = true;
7103
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007104 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7105 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7106 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007107
7108 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007109
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007110 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007111 pipe_config->shared_dpll =
7112 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007113 } else {
7114 tmp = I915_READ(PCH_DPLL_SEL);
7115 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7116 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7117 else
7118 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7119 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007120
7121 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7122
7123 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7124 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007125
7126 tmp = pipe_config->dpll_hw_state.dpll;
7127 pipe_config->pixel_multiplier =
7128 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7129 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007130
7131 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007132 } else {
7133 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007134 }
7135
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007136 intel_get_pipe_timings(crtc, pipe_config);
7137
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007138 ironlake_get_pfit_config(crtc, pipe_config);
7139
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007140 return true;
7141}
7142
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007143static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7144{
7145 struct drm_device *dev = dev_priv->dev;
7146 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7147 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007148
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007149 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007150 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007151 pipe_name(crtc->pipe));
7152
7153 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7154 WARN(plls->spll_refcount, "SPLL enabled\n");
7155 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7156 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7157 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7158 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7159 "CPU PWM1 enabled\n");
7160 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7161 "CPU PWM2 enabled\n");
7162 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7163 "PCH PWM1 enabled\n");
7164 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7165 "Utility pin enabled\n");
7166 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7167
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007168 /*
7169 * In theory we can still leave IRQs enabled, as long as only the HPD
7170 * interrupts remain enabled. We used to check for that, but since it's
7171 * gen-specific and since we only disable LCPLL after we fully disable
7172 * the interrupts, the check below should be enough.
7173 */
7174 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007175}
7176
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007177static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7178{
7179 struct drm_device *dev = dev_priv->dev;
7180
7181 if (IS_HASWELL(dev)) {
7182 mutex_lock(&dev_priv->rps.hw_lock);
7183 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7184 val))
7185 DRM_ERROR("Failed to disable D_COMP\n");
7186 mutex_unlock(&dev_priv->rps.hw_lock);
7187 } else {
7188 I915_WRITE(D_COMP, val);
7189 }
7190 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007191}
7192
7193/*
7194 * This function implements pieces of two sequences from BSpec:
7195 * - Sequence for display software to disable LCPLL
7196 * - Sequence for display software to allow package C8+
7197 * The steps implemented here are just the steps that actually touch the LCPLL
7198 * register. Callers should take care of disabling all the display engine
7199 * functions, doing the mode unset, fixing interrupts, etc.
7200 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007201static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7202 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007203{
7204 uint32_t val;
7205
7206 assert_can_disable_lcpll(dev_priv);
7207
7208 val = I915_READ(LCPLL_CTL);
7209
7210 if (switch_to_fclk) {
7211 val |= LCPLL_CD_SOURCE_FCLK;
7212 I915_WRITE(LCPLL_CTL, val);
7213
7214 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7215 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7216 DRM_ERROR("Switching to FCLK failed\n");
7217
7218 val = I915_READ(LCPLL_CTL);
7219 }
7220
7221 val |= LCPLL_PLL_DISABLE;
7222 I915_WRITE(LCPLL_CTL, val);
7223 POSTING_READ(LCPLL_CTL);
7224
7225 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7226 DRM_ERROR("LCPLL still locked\n");
7227
7228 val = I915_READ(D_COMP);
7229 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007230 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007231 ndelay(100);
7232
7233 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7234 DRM_ERROR("D_COMP RCOMP still in progress\n");
7235
7236 if (allow_power_down) {
7237 val = I915_READ(LCPLL_CTL);
7238 val |= LCPLL_POWER_DOWN_ALLOW;
7239 I915_WRITE(LCPLL_CTL, val);
7240 POSTING_READ(LCPLL_CTL);
7241 }
7242}
7243
7244/*
7245 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7246 * source.
7247 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007248static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007249{
7250 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007251 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007252
7253 val = I915_READ(LCPLL_CTL);
7254
7255 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7256 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7257 return;
7258
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007259 /*
7260 * Make sure we're not on PC8 state before disabling PC8, otherwise
7261 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7262 *
7263 * The other problem is that hsw_restore_lcpll() is called as part of
7264 * the runtime PM resume sequence, so we can't just call
7265 * gen6_gt_force_wake_get() because that function calls
7266 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7267 * while we are on the resume sequence. So to solve this problem we have
7268 * to call special forcewake code that doesn't touch runtime PM and
7269 * doesn't enable the forcewake delayed work.
7270 */
7271 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7272 if (dev_priv->uncore.forcewake_count++ == 0)
7273 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7274 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007275
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007276 if (val & LCPLL_POWER_DOWN_ALLOW) {
7277 val &= ~LCPLL_POWER_DOWN_ALLOW;
7278 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007279 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007280 }
7281
7282 val = I915_READ(D_COMP);
7283 val |= D_COMP_COMP_FORCE;
7284 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007285 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007286
7287 val = I915_READ(LCPLL_CTL);
7288 val &= ~LCPLL_PLL_DISABLE;
7289 I915_WRITE(LCPLL_CTL, val);
7290
7291 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7292 DRM_ERROR("LCPLL not locked yet\n");
7293
7294 if (val & LCPLL_CD_SOURCE_FCLK) {
7295 val = I915_READ(LCPLL_CTL);
7296 val &= ~LCPLL_CD_SOURCE_FCLK;
7297 I915_WRITE(LCPLL_CTL, val);
7298
7299 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7300 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7301 DRM_ERROR("Switching back to LCPLL failed\n");
7302 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007303
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007304 /* See the big comment above. */
7305 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7306 if (--dev_priv->uncore.forcewake_count == 0)
7307 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7308 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007309}
7310
Paulo Zanoni765dab62014-03-07 20:08:18 -03007311/*
7312 * Package states C8 and deeper are really deep PC states that can only be
7313 * reached when all the devices on the system allow it, so even if the graphics
7314 * device allows PC8+, it doesn't mean the system will actually get to these
7315 * states. Our driver only allows PC8+ when going into runtime PM.
7316 *
7317 * The requirements for PC8+ are that all the outputs are disabled, the power
7318 * well is disabled and most interrupts are disabled, and these are also
7319 * requirements for runtime PM. When these conditions are met, we manually do
7320 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7321 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7322 * hang the machine.
7323 *
7324 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7325 * the state of some registers, so when we come back from PC8+ we need to
7326 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7327 * need to take care of the registers kept by RC6. Notice that this happens even
7328 * if we don't put the device in PCI D3 state (which is what currently happens
7329 * because of the runtime PM support).
7330 *
7331 * For more, read "Display Sequences for Package C8" on the hardware
7332 * documentation.
7333 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007334void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007335{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007336 struct drm_device *dev = dev_priv->dev;
7337 uint32_t val;
7338
Paulo Zanonic67a4702013-08-19 13:18:09 -03007339 DRM_DEBUG_KMS("Enabling package C8+\n");
7340
Paulo Zanonic67a4702013-08-19 13:18:09 -03007341 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7342 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7343 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7344 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7345 }
7346
7347 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007348 hsw_disable_lcpll(dev_priv, true, true);
7349}
7350
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007351void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007352{
7353 struct drm_device *dev = dev_priv->dev;
7354 uint32_t val;
7355
Paulo Zanonic67a4702013-08-19 13:18:09 -03007356 DRM_DEBUG_KMS("Disabling package C8+\n");
7357
7358 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007359 lpt_init_pch_refclk(dev);
7360
7361 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7362 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7363 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7364 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7365 }
7366
7367 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007368}
7369
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007370static void snb_modeset_global_resources(struct drm_device *dev)
7371{
7372 modeset_update_crtc_power_domains(dev);
7373}
7374
Imre Deak4f074122013-10-16 17:25:51 +03007375static void haswell_modeset_global_resources(struct drm_device *dev)
7376{
Paulo Zanonida723562013-12-19 11:54:51 -02007377 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007378}
7379
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007380static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007381 int x, int y,
7382 struct drm_framebuffer *fb)
7383{
7384 struct drm_device *dev = crtc->dev;
7385 struct drm_i915_private *dev_priv = dev->dev_private;
7386 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007387 int plane = intel_crtc->plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007388
Paulo Zanoni566b7342013-11-25 15:27:08 -02007389 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007390 return -EINVAL;
Paulo Zanoni566b7342013-11-25 15:27:08 -02007391 intel_ddi_pll_enable(intel_crtc);
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007392
Daniel Vetter644cef32014-04-24 23:55:07 +02007393 intel_crtc->lowfreq_avail = false;
7394
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007395 if (intel_crtc->config.has_dp_encoder)
7396 intel_dp_set_m_n(intel_crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007397
Daniel Vetter8a654f32013-06-01 17:16:22 +02007398 intel_set_pipe_timings(intel_crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007399
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01007400 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01007401 intel_cpu_transcoder_set_m_n(intel_crtc,
7402 &intel_crtc->config.fdi_m_n);
7403 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007404
Daniel Vetter6ff93602013-04-19 11:24:36 +02007405 haswell_set_pipeconf(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007406
Daniel Vetter50f3b012013-03-27 00:44:56 +01007407 intel_set_pipe_csc(crtc);
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007408
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007409 /* Set up the display plane register */
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007410 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007411 POSTING_READ(DSPCNTR(plane));
7412
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007413 dev_priv->display.update_primary_plane(crtc, fb, x, y);
7414
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007415 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007416}
7417
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007418static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7419 struct intel_crtc_config *pipe_config)
7420{
7421 struct drm_device *dev = crtc->base.dev;
7422 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007423 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007424 uint32_t tmp;
7425
Imre Deakb5482bd2014-03-05 16:20:55 +02007426 if (!intel_display_power_enabled(dev_priv,
7427 POWER_DOMAIN_PIPE(crtc->pipe)))
7428 return false;
7429
Daniel Vettere143a212013-07-04 12:01:15 +02007430 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007431 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7432
Daniel Vettereccb1402013-05-22 00:50:22 +02007433 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7434 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7435 enum pipe trans_edp_pipe;
7436 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7437 default:
7438 WARN(1, "unknown pipe linked to edp transcoder\n");
7439 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7440 case TRANS_DDI_EDP_INPUT_A_ON:
7441 trans_edp_pipe = PIPE_A;
7442 break;
7443 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7444 trans_edp_pipe = PIPE_B;
7445 break;
7446 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7447 trans_edp_pipe = PIPE_C;
7448 break;
7449 }
7450
7451 if (trans_edp_pipe == crtc->pipe)
7452 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7453 }
7454
Imre Deakda7e29b2014-02-18 00:02:02 +02007455 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007456 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007457 return false;
7458
Daniel Vettereccb1402013-05-22 00:50:22 +02007459 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007460 if (!(tmp & PIPECONF_ENABLE))
7461 return false;
7462
Daniel Vetter88adfff2013-03-28 10:42:01 +01007463 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03007464 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01007465 * DDI E. So just check whether this pipe is wired to DDI E and whether
7466 * the PCH transcoder is on.
7467 */
Daniel Vettereccb1402013-05-22 00:50:22 +02007468 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01007469 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02007470 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01007471 pipe_config->has_pch_encoder = true;
7472
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007473 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7474 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7475 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007476
7477 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007478 }
7479
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007480 intel_get_pipe_timings(crtc, pipe_config);
7481
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007482 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007483 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007484 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007485
Jesse Barnese59150d2014-01-07 13:30:45 -08007486 if (IS_HASWELL(dev))
7487 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7488 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007489
Daniel Vetter6c49f242013-06-06 12:45:25 +02007490 pipe_config->pixel_multiplier = 1;
7491
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007492 return true;
7493}
7494
Jani Nikula1a915102013-10-16 12:34:48 +03007495static struct {
7496 int clock;
7497 u32 config;
7498} hdmi_audio_clock[] = {
7499 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7500 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7501 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7502 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7503 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7504 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7505 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7506 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7507 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7508 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7509};
7510
7511/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7512static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7513{
7514 int i;
7515
7516 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7517 if (mode->clock == hdmi_audio_clock[i].clock)
7518 break;
7519 }
7520
7521 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7522 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7523 i = 1;
7524 }
7525
7526 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7527 hdmi_audio_clock[i].clock,
7528 hdmi_audio_clock[i].config);
7529
7530 return hdmi_audio_clock[i].config;
7531}
7532
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007533static bool intel_eld_uptodate(struct drm_connector *connector,
7534 int reg_eldv, uint32_t bits_eldv,
7535 int reg_elda, uint32_t bits_elda,
7536 int reg_edid)
7537{
7538 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7539 uint8_t *eld = connector->eld;
7540 uint32_t i;
7541
7542 i = I915_READ(reg_eldv);
7543 i &= bits_eldv;
7544
7545 if (!eld[0])
7546 return !i;
7547
7548 if (!i)
7549 return false;
7550
7551 i = I915_READ(reg_elda);
7552 i &= ~bits_elda;
7553 I915_WRITE(reg_elda, i);
7554
7555 for (i = 0; i < eld[2]; i++)
7556 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7557 return false;
7558
7559 return true;
7560}
7561
Wu Fengguange0dac652011-09-05 14:25:34 +08007562static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007563 struct drm_crtc *crtc,
7564 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007565{
7566 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7567 uint8_t *eld = connector->eld;
7568 uint32_t eldv;
7569 uint32_t len;
7570 uint32_t i;
7571
7572 i = I915_READ(G4X_AUD_VID_DID);
7573
7574 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7575 eldv = G4X_ELDV_DEVCL_DEVBLC;
7576 else
7577 eldv = G4X_ELDV_DEVCTG;
7578
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007579 if (intel_eld_uptodate(connector,
7580 G4X_AUD_CNTL_ST, eldv,
7581 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7582 G4X_HDMIW_HDMIEDID))
7583 return;
7584
Wu Fengguange0dac652011-09-05 14:25:34 +08007585 i = I915_READ(G4X_AUD_CNTL_ST);
7586 i &= ~(eldv | G4X_ELD_ADDR);
7587 len = (i >> 9) & 0x1f; /* ELD buffer size */
7588 I915_WRITE(G4X_AUD_CNTL_ST, i);
7589
7590 if (!eld[0])
7591 return;
7592
7593 len = min_t(uint8_t, eld[2], len);
7594 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7595 for (i = 0; i < len; i++)
7596 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7597
7598 i = I915_READ(G4X_AUD_CNTL_ST);
7599 i |= eldv;
7600 I915_WRITE(G4X_AUD_CNTL_ST, i);
7601}
7602
Wang Xingchao83358c852012-08-16 22:43:37 +08007603static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007604 struct drm_crtc *crtc,
7605 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007606{
7607 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7608 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007609 uint32_t eldv;
7610 uint32_t i;
7611 int len;
7612 int pipe = to_intel_crtc(crtc)->pipe;
7613 int tmp;
7614
7615 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7616 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7617 int aud_config = HSW_AUD_CFG(pipe);
7618 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7619
Wang Xingchao83358c852012-08-16 22:43:37 +08007620 /* Audio output enable */
7621 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7622 tmp = I915_READ(aud_cntrl_st2);
7623 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7624 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007625 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007626
Daniel Vetterc7905792014-04-16 16:56:09 +02007627 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007628
7629 /* Set ELD valid state */
7630 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007631 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007632 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7633 I915_WRITE(aud_cntrl_st2, tmp);
7634 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007635 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007636
7637 /* Enable HDMI mode */
7638 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007639 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007640 /* clear N_programing_enable and N_value_index */
7641 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7642 I915_WRITE(aud_config, tmp);
7643
7644 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7645
7646 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7647
7648 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7649 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7650 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7651 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007652 } else {
7653 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7654 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007655
7656 if (intel_eld_uptodate(connector,
7657 aud_cntrl_st2, eldv,
7658 aud_cntl_st, IBX_ELD_ADDRESS,
7659 hdmiw_hdmiedid))
7660 return;
7661
7662 i = I915_READ(aud_cntrl_st2);
7663 i &= ~eldv;
7664 I915_WRITE(aud_cntrl_st2, i);
7665
7666 if (!eld[0])
7667 return;
7668
7669 i = I915_READ(aud_cntl_st);
7670 i &= ~IBX_ELD_ADDRESS;
7671 I915_WRITE(aud_cntl_st, i);
7672 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7673 DRM_DEBUG_DRIVER("port num:%d\n", i);
7674
7675 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7676 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7677 for (i = 0; i < len; i++)
7678 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7679
7680 i = I915_READ(aud_cntrl_st2);
7681 i |= eldv;
7682 I915_WRITE(aud_cntrl_st2, i);
7683
7684}
7685
Wu Fengguange0dac652011-09-05 14:25:34 +08007686static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007687 struct drm_crtc *crtc,
7688 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007689{
7690 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7691 uint8_t *eld = connector->eld;
7692 uint32_t eldv;
7693 uint32_t i;
7694 int len;
7695 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007696 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007697 int aud_cntl_st;
7698 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007699 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007700
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007701 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007702 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7703 aud_config = IBX_AUD_CFG(pipe);
7704 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007705 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007706 } else if (IS_VALLEYVIEW(connector->dev)) {
7707 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7708 aud_config = VLV_AUD_CFG(pipe);
7709 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7710 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007711 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007712 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7713 aud_config = CPT_AUD_CFG(pipe);
7714 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007715 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007716 }
7717
Wang Xingchao9b138a82012-08-09 16:52:18 +08007718 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08007719
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007720 if (IS_VALLEYVIEW(connector->dev)) {
7721 struct intel_encoder *intel_encoder;
7722 struct intel_digital_port *intel_dig_port;
7723
7724 intel_encoder = intel_attached_encoder(connector);
7725 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7726 i = intel_dig_port->port;
7727 } else {
7728 i = I915_READ(aud_cntl_st);
7729 i = (i >> 29) & DIP_PORT_SEL_MASK;
7730 /* DIP_Port_Select, 0x1 = PortB */
7731 }
7732
Wu Fengguange0dac652011-09-05 14:25:34 +08007733 if (!i) {
7734 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7735 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007736 eldv = IBX_ELD_VALIDB;
7737 eldv |= IBX_ELD_VALIDB << 4;
7738 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08007739 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03007740 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007741 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08007742 }
7743
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007744 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7745 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7746 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06007747 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007748 } else {
7749 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7750 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007751
7752 if (intel_eld_uptodate(connector,
7753 aud_cntrl_st2, eldv,
7754 aud_cntl_st, IBX_ELD_ADDRESS,
7755 hdmiw_hdmiedid))
7756 return;
7757
Wu Fengguange0dac652011-09-05 14:25:34 +08007758 i = I915_READ(aud_cntrl_st2);
7759 i &= ~eldv;
7760 I915_WRITE(aud_cntrl_st2, i);
7761
7762 if (!eld[0])
7763 return;
7764
Wu Fengguange0dac652011-09-05 14:25:34 +08007765 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007766 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08007767 I915_WRITE(aud_cntl_st, i);
7768
7769 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7770 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7771 for (i = 0; i < len; i++)
7772 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7773
7774 i = I915_READ(aud_cntrl_st2);
7775 i |= eldv;
7776 I915_WRITE(aud_cntrl_st2, i);
7777}
7778
7779void intel_write_eld(struct drm_encoder *encoder,
7780 struct drm_display_mode *mode)
7781{
7782 struct drm_crtc *crtc = encoder->crtc;
7783 struct drm_connector *connector;
7784 struct drm_device *dev = encoder->dev;
7785 struct drm_i915_private *dev_priv = dev->dev_private;
7786
7787 connector = drm_select_eld(encoder, mode);
7788 if (!connector)
7789 return;
7790
7791 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7792 connector->base.id,
7793 drm_get_connector_name(connector),
7794 connector->encoder->base.id,
7795 drm_get_encoder_name(connector->encoder));
7796
7797 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7798
7799 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03007800 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08007801}
7802
Chris Wilson560b85b2010-08-07 11:01:38 +01007803static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7804{
7805 struct drm_device *dev = crtc->dev;
7806 struct drm_i915_private *dev_priv = dev->dev_private;
7807 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7808 bool visible = base != 0;
7809 u32 cntl;
7810
7811 if (intel_crtc->cursor_visible == visible)
7812 return;
7813
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007814 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01007815 if (visible) {
7816 /* On these chipsets we can only modify the base whilst
7817 * the cursor is disabled.
7818 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007819 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01007820
7821 cntl &= ~(CURSOR_FORMAT_MASK);
7822 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7823 cntl |= CURSOR_ENABLE |
7824 CURSOR_GAMMA_ENABLE |
7825 CURSOR_FORMAT_ARGB;
7826 } else
7827 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007828 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007829
7830 intel_crtc->cursor_visible = visible;
7831}
7832
7833static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7834{
7835 struct drm_device *dev = crtc->dev;
7836 struct drm_i915_private *dev_priv = dev->dev_private;
7837 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7838 int pipe = intel_crtc->pipe;
7839 bool visible = base != 0;
7840
7841 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307842 int16_t width = intel_crtc->cursor_width;
Jesse Barnes548f2452011-02-17 10:40:53 -08007843 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007844 if (base) {
7845 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307846 cntl |= MCURSOR_GAMMA_ENABLE;
7847
7848 switch (width) {
7849 case 64:
7850 cntl |= CURSOR_MODE_64_ARGB_AX;
7851 break;
7852 case 128:
7853 cntl |= CURSOR_MODE_128_ARGB_AX;
7854 break;
7855 case 256:
7856 cntl |= CURSOR_MODE_256_ARGB_AX;
7857 break;
7858 default:
7859 WARN_ON(1);
7860 return;
7861 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007862 cntl |= pipe << 28; /* Connect to correct pipe */
7863 } else {
7864 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7865 cntl |= CURSOR_MODE_DISABLE;
7866 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007867 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007868
7869 intel_crtc->cursor_visible = visible;
7870 }
7871 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007872 POSTING_READ(CURCNTR(pipe));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007873 I915_WRITE(CURBASE(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007874 POSTING_READ(CURBASE(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007875}
7876
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007877static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7878{
7879 struct drm_device *dev = crtc->dev;
7880 struct drm_i915_private *dev_priv = dev->dev_private;
7881 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7882 int pipe = intel_crtc->pipe;
7883 bool visible = base != 0;
7884
7885 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307886 int16_t width = intel_crtc->cursor_width;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007887 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
7888 if (base) {
7889 cntl &= ~CURSOR_MODE;
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307890 cntl |= MCURSOR_GAMMA_ENABLE;
7891 switch (width) {
7892 case 64:
7893 cntl |= CURSOR_MODE_64_ARGB_AX;
7894 break;
7895 case 128:
7896 cntl |= CURSOR_MODE_128_ARGB_AX;
7897 break;
7898 case 256:
7899 cntl |= CURSOR_MODE_256_ARGB_AX;
7900 break;
7901 default:
7902 WARN_ON(1);
7903 return;
7904 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007905 } else {
7906 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7907 cntl |= CURSOR_MODE_DISABLE;
7908 }
Ville Syrjälä6bbfa1c2013-11-02 21:07:39 -07007909 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007910 cntl |= CURSOR_PIPE_CSC_ENABLE;
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007911 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7912 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007913 I915_WRITE(CURCNTR_IVB(pipe), cntl);
7914
7915 intel_crtc->cursor_visible = visible;
7916 }
7917 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007918 POSTING_READ(CURCNTR_IVB(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007919 I915_WRITE(CURBASE_IVB(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007920 POSTING_READ(CURBASE_IVB(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007921}
7922
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007923/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01007924static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7925 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007926{
7927 struct drm_device *dev = crtc->dev;
7928 struct drm_i915_private *dev_priv = dev->dev_private;
7929 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7930 int pipe = intel_crtc->pipe;
7931 int x = intel_crtc->cursor_x;
7932 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007933 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007934 bool visible;
7935
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007936 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007937 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007938
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007939 if (x >= intel_crtc->config.pipe_src_w)
7940 base = 0;
7941
7942 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007943 base = 0;
7944
7945 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007946 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007947 base = 0;
7948
7949 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7950 x = -x;
7951 }
7952 pos |= x << CURSOR_X_SHIFT;
7953
7954 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007955 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007956 base = 0;
7957
7958 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7959 y = -y;
7960 }
7961 pos |= y << CURSOR_Y_SHIFT;
7962
7963 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01007964 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007965 return;
7966
Paulo Zanonib3dc6852013-11-02 21:07:33 -07007967 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007968 I915_WRITE(CURPOS_IVB(pipe), pos);
7969 ivb_update_cursor(crtc, base);
7970 } else {
7971 I915_WRITE(CURPOS(pipe), pos);
7972 if (IS_845G(dev) || IS_I865G(dev))
7973 i845_update_cursor(crtc, base);
7974 else
7975 i9xx_update_cursor(crtc, base);
7976 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007977}
7978
Jesse Barnes79e53942008-11-07 14:24:08 -08007979static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00007980 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08007981 uint32_t handle,
7982 uint32_t width, uint32_t height)
7983{
7984 struct drm_device *dev = crtc->dev;
7985 struct drm_i915_private *dev_priv = dev->dev_private;
7986 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00007987 struct drm_i915_gem_object *obj;
Chris Wilson64f962e2014-03-26 12:38:15 +00007988 unsigned old_width;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007989 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007990 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08007991
Jesse Barnes79e53942008-11-07 14:24:08 -08007992 /* if we want to turn off the cursor ignore width and height */
7993 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08007994 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007995 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00007996 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10007997 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007998 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08007999 }
8000
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308001 /* Check for which cursor types we support */
8002 if (!((width == 64 && height == 64) ||
8003 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8004 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8005 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008006 return -EINVAL;
8007 }
8008
Chris Wilson05394f32010-11-08 19:18:58 +00008009 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00008010 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08008011 return -ENOENT;
8012
Chris Wilson05394f32010-11-08 19:18:58 +00008013 if (obj->base.size < width * height * 4) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008014 DRM_DEBUG_KMS("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008015 ret = -ENOMEM;
8016 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008017 }
8018
Dave Airlie71acb5e2008-12-30 20:31:46 +10008019 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008020 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008021 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008022 unsigned alignment;
8023
Chris Wilsond9e86c02010-11-10 16:40:20 +00008024 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008025 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008026 ret = -EINVAL;
8027 goto fail_locked;
8028 }
8029
Chris Wilson693db182013-03-05 14:52:39 +00008030 /* Note that the w/a also requires 2 PTE of padding following
8031 * the bo. We currently fill all unused PTE with the shadow
8032 * page and so we should always have valid PTE following the
8033 * cursor preventing the VT-d warning.
8034 */
8035 alignment = 0;
8036 if (need_vtd_wa(dev))
8037 alignment = 64*1024;
8038
8039 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008040 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008041 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008042 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008043 }
8044
Chris Wilsond9e86c02010-11-10 16:40:20 +00008045 ret = i915_gem_object_put_fence(obj);
8046 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008047 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008048 goto fail_unpin;
8049 }
8050
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008051 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008052 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008053 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00008054 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008055 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8056 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008057 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008058 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008059 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008060 }
Chris Wilson05394f32010-11-08 19:18:58 +00008061 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008062 }
8063
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008064 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04008065 I915_WRITE(CURSIZE, (height << 12) | width);
8066
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008067 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008068 if (intel_crtc->cursor_bo) {
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008069 if (INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00008070 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10008071 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8072 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01008073 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00008074 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008075 }
Jesse Barnes80824002009-09-10 15:28:06 -07008076
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008077 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008078
Chris Wilson64f962e2014-03-26 12:38:15 +00008079 old_width = intel_crtc->cursor_width;
8080
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008081 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008082 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008083 intel_crtc->cursor_width = width;
8084 intel_crtc->cursor_height = height;
8085
Chris Wilson64f962e2014-03-26 12:38:15 +00008086 if (intel_crtc->active) {
8087 if (old_width != width)
8088 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008089 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008090 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008091
Jesse Barnes79e53942008-11-07 14:24:08 -08008092 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008093fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008094 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008095fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008096 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008097fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008098 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008099 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008100}
8101
8102static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8103{
Jesse Barnes79e53942008-11-07 14:24:08 -08008104 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008105
Ville Syrjälä92e76c82013-10-21 19:01:58 +03008106 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8107 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
Jesse Barnes652c3932009-08-17 13:31:43 -07008108
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008109 if (intel_crtc->active)
8110 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08008111
8112 return 0;
8113}
8114
Jesse Barnes79e53942008-11-07 14:24:08 -08008115static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008116 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008117{
James Simmons72034252010-08-03 01:33:19 +01008118 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008119 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008120
James Simmons72034252010-08-03 01:33:19 +01008121 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008122 intel_crtc->lut_r[i] = red[i] >> 8;
8123 intel_crtc->lut_g[i] = green[i] >> 8;
8124 intel_crtc->lut_b[i] = blue[i] >> 8;
8125 }
8126
8127 intel_crtc_load_lut(crtc);
8128}
8129
Jesse Barnes79e53942008-11-07 14:24:08 -08008130/* VESA 640x480x72Hz mode to set on the pipe */
8131static struct drm_display_mode load_detect_mode = {
8132 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8133 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8134};
8135
Daniel Vettera8bb6812014-02-10 18:00:39 +01008136struct drm_framebuffer *
8137__intel_framebuffer_create(struct drm_device *dev,
8138 struct drm_mode_fb_cmd2 *mode_cmd,
8139 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008140{
8141 struct intel_framebuffer *intel_fb;
8142 int ret;
8143
8144 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8145 if (!intel_fb) {
8146 drm_gem_object_unreference_unlocked(&obj->base);
8147 return ERR_PTR(-ENOMEM);
8148 }
8149
8150 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008151 if (ret)
8152 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008153
8154 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008155err:
8156 drm_gem_object_unreference_unlocked(&obj->base);
8157 kfree(intel_fb);
8158
8159 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008160}
8161
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008162static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008163intel_framebuffer_create(struct drm_device *dev,
8164 struct drm_mode_fb_cmd2 *mode_cmd,
8165 struct drm_i915_gem_object *obj)
8166{
8167 struct drm_framebuffer *fb;
8168 int ret;
8169
8170 ret = i915_mutex_lock_interruptible(dev);
8171 if (ret)
8172 return ERR_PTR(ret);
8173 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8174 mutex_unlock(&dev->struct_mutex);
8175
8176 return fb;
8177}
8178
Chris Wilsond2dff872011-04-19 08:36:26 +01008179static u32
8180intel_framebuffer_pitch_for_width(int width, int bpp)
8181{
8182 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8183 return ALIGN(pitch, 64);
8184}
8185
8186static u32
8187intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8188{
8189 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8190 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8191}
8192
8193static struct drm_framebuffer *
8194intel_framebuffer_create_for_mode(struct drm_device *dev,
8195 struct drm_display_mode *mode,
8196 int depth, int bpp)
8197{
8198 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008199 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008200
8201 obj = i915_gem_alloc_object(dev,
8202 intel_framebuffer_size_for_mode(mode, bpp));
8203 if (obj == NULL)
8204 return ERR_PTR(-ENOMEM);
8205
8206 mode_cmd.width = mode->hdisplay;
8207 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008208 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8209 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008210 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008211
8212 return intel_framebuffer_create(dev, &mode_cmd, obj);
8213}
8214
8215static struct drm_framebuffer *
8216mode_fits_in_fbdev(struct drm_device *dev,
8217 struct drm_display_mode *mode)
8218{
Daniel Vetter4520f532013-10-09 09:18:51 +02008219#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008220 struct drm_i915_private *dev_priv = dev->dev_private;
8221 struct drm_i915_gem_object *obj;
8222 struct drm_framebuffer *fb;
8223
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008224 if (!dev_priv->fbdev)
8225 return NULL;
8226
8227 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008228 return NULL;
8229
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008230 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008231 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008232
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008233 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008234 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8235 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008236 return NULL;
8237
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008238 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008239 return NULL;
8240
8241 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008242#else
8243 return NULL;
8244#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008245}
8246
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008247bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008248 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01008249 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008250{
8251 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008252 struct intel_encoder *intel_encoder =
8253 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008254 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008255 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008256 struct drm_crtc *crtc = NULL;
8257 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008258 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08008259 int i = -1;
8260
Chris Wilsond2dff872011-04-19 08:36:26 +01008261 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8262 connector->base.id, drm_get_connector_name(connector),
8263 encoder->base.id, drm_get_encoder_name(encoder));
8264
Jesse Barnes79e53942008-11-07 14:24:08 -08008265 /*
8266 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008267 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008268 * - if the connector already has an assigned crtc, use it (but make
8269 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008270 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008271 * - try to find the first unused crtc that can drive this connector,
8272 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008273 */
8274
8275 /* See if we already have a CRTC for this connector */
8276 if (encoder->crtc) {
8277 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008278
Daniel Vetter7b240562012-12-12 00:35:33 +01008279 mutex_lock(&crtc->mutex);
8280
Daniel Vetter24218aa2012-08-12 19:27:11 +02008281 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008282 old->load_detect_temp = false;
8283
8284 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008285 if (connector->dpms != DRM_MODE_DPMS_ON)
8286 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008287
Chris Wilson71731882011-04-19 23:10:58 +01008288 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008289 }
8290
8291 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008292 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008293 i++;
8294 if (!(encoder->possible_crtcs & (1 << i)))
8295 continue;
8296 if (!possible_crtc->enabled) {
8297 crtc = possible_crtc;
8298 break;
8299 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008300 }
8301
8302 /*
8303 * If we didn't find an unused CRTC, don't use any.
8304 */
8305 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008306 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8307 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008308 }
8309
Daniel Vetter7b240562012-12-12 00:35:33 +01008310 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02008311 intel_encoder->new_crtc = to_intel_crtc(crtc);
8312 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008313
8314 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008315 intel_crtc->new_enabled = true;
8316 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008317 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008318 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008319 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008320
Chris Wilson64927112011-04-20 07:25:26 +01008321 if (!mode)
8322 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008323
Chris Wilsond2dff872011-04-19 08:36:26 +01008324 /* We need a framebuffer large enough to accommodate all accesses
8325 * that the plane may generate whilst we perform load detection.
8326 * We can not rely on the fbcon either being present (we get called
8327 * during its initialisation to detect all boot displays, or it may
8328 * not even exist) or that it is large enough to satisfy the
8329 * requested mode.
8330 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008331 fb = mode_fits_in_fbdev(dev, mode);
8332 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008333 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008334 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8335 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008336 } else
8337 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008338 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008339 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008340 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008341 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008342
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008343 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008344 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008345 if (old->release_fb)
8346 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008347 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008348 }
Chris Wilson71731882011-04-19 23:10:58 +01008349
Jesse Barnes79e53942008-11-07 14:24:08 -08008350 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008351 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008352 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008353
8354 fail:
8355 intel_crtc->new_enabled = crtc->enabled;
8356 if (intel_crtc->new_enabled)
8357 intel_crtc->new_config = &intel_crtc->config;
8358 else
8359 intel_crtc->new_config = NULL;
8360 mutex_unlock(&crtc->mutex);
8361 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008362}
8363
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008364void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01008365 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008366{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008367 struct intel_encoder *intel_encoder =
8368 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008369 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008370 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008371 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008372
Chris Wilsond2dff872011-04-19 08:36:26 +01008373 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8374 connector->base.id, drm_get_connector_name(connector),
8375 encoder->base.id, drm_get_encoder_name(encoder));
8376
Chris Wilson8261b192011-04-19 23:18:09 +01008377 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008378 to_intel_connector(connector)->new_encoder = NULL;
8379 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008380 intel_crtc->new_enabled = false;
8381 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008382 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008383
Daniel Vetter36206362012-12-10 20:42:17 +01008384 if (old->release_fb) {
8385 drm_framebuffer_unregister_private(old->release_fb);
8386 drm_framebuffer_unreference(old->release_fb);
8387 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008388
Daniel Vetter67c96402013-01-23 16:25:09 +00008389 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01008390 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008391 }
8392
Eric Anholtc751ce42010-03-25 11:48:48 -07008393 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008394 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8395 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01008396
8397 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08008398}
8399
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008400static int i9xx_pll_refclk(struct drm_device *dev,
8401 const struct intel_crtc_config *pipe_config)
8402{
8403 struct drm_i915_private *dev_priv = dev->dev_private;
8404 u32 dpll = pipe_config->dpll_hw_state.dpll;
8405
8406 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008407 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008408 else if (HAS_PCH_SPLIT(dev))
8409 return 120000;
8410 else if (!IS_GEN2(dev))
8411 return 96000;
8412 else
8413 return 48000;
8414}
8415
Jesse Barnes79e53942008-11-07 14:24:08 -08008416/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008417static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8418 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008419{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008420 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008421 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008422 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008423 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008424 u32 fp;
8425 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008426 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008427
8428 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008429 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008430 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008431 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008432
8433 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008434 if (IS_PINEVIEW(dev)) {
8435 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8436 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008437 } else {
8438 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8439 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8440 }
8441
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008442 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008443 if (IS_PINEVIEW(dev))
8444 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8445 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008446 else
8447 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008448 DPLL_FPA01_P1_POST_DIV_SHIFT);
8449
8450 switch (dpll & DPLL_MODE_MASK) {
8451 case DPLLB_MODE_DAC_SERIAL:
8452 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8453 5 : 10;
8454 break;
8455 case DPLLB_MODE_LVDS:
8456 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8457 7 : 14;
8458 break;
8459 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008460 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008461 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008462 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008463 }
8464
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008465 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008466 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008467 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008468 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008469 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008470 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008471 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008472
8473 if (is_lvds) {
8474 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8475 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008476
8477 if (lvds & LVDS_CLKB_POWER_UP)
8478 clock.p2 = 7;
8479 else
8480 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008481 } else {
8482 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8483 clock.p1 = 2;
8484 else {
8485 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8486 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8487 }
8488 if (dpll & PLL_P2_DIVIDE_BY_4)
8489 clock.p2 = 4;
8490 else
8491 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008492 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008493
8494 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008495 }
8496
Ville Syrjälä18442d02013-09-13 16:00:08 +03008497 /*
8498 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008499 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008500 * encoder's get_config() function.
8501 */
8502 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008503}
8504
Ville Syrjälä6878da02013-09-13 15:59:11 +03008505int intel_dotclock_calculate(int link_freq,
8506 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008507{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008508 /*
8509 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008510 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008511 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008512 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008513 *
8514 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008515 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008516 */
8517
Ville Syrjälä6878da02013-09-13 15:59:11 +03008518 if (!m_n->link_n)
8519 return 0;
8520
8521 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8522}
8523
Ville Syrjälä18442d02013-09-13 16:00:08 +03008524static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8525 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008526{
8527 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008528
8529 /* read out port_clock from the DPLL */
8530 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008531
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008532 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008533 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008534 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008535 * agree once we know their relationship in the encoder's
8536 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008537 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008538 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008539 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8540 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008541}
8542
8543/** Returns the currently programmed mode of the given pipe. */
8544struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8545 struct drm_crtc *crtc)
8546{
Jesse Barnes548f2452011-02-17 10:40:53 -08008547 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008548 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008549 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008550 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008551 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008552 int htot = I915_READ(HTOTAL(cpu_transcoder));
8553 int hsync = I915_READ(HSYNC(cpu_transcoder));
8554 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8555 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008556 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008557
8558 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8559 if (!mode)
8560 return NULL;
8561
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008562 /*
8563 * Construct a pipe_config sufficient for getting the clock info
8564 * back out of crtc_clock_get.
8565 *
8566 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8567 * to use a real value here instead.
8568 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008569 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008570 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008571 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8572 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8573 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008574 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8575
Ville Syrjälä773ae032013-09-23 17:48:20 +03008576 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008577 mode->hdisplay = (htot & 0xffff) + 1;
8578 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8579 mode->hsync_start = (hsync & 0xffff) + 1;
8580 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8581 mode->vdisplay = (vtot & 0xffff) + 1;
8582 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8583 mode->vsync_start = (vsync & 0xffff) + 1;
8584 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8585
8586 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008587
8588 return mode;
8589}
8590
Daniel Vetter3dec0092010-08-20 21:40:52 +02008591static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07008592{
8593 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008594 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008595 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8596 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008597 int dpll_reg = DPLL(pipe);
8598 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008599
Eric Anholtbad720f2009-10-22 16:11:14 -07008600 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008601 return;
8602
8603 if (!dev_priv->lvds_downclock_avail)
8604 return;
8605
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008606 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008607 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008608 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008609
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008610 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008611
8612 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8613 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008614 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008615
Jesse Barnes652c3932009-08-17 13:31:43 -07008616 dpll = I915_READ(dpll_reg);
8617 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008618 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008619 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008620}
8621
8622static void intel_decrease_pllclock(struct drm_crtc *crtc)
8623{
8624 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008625 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008626 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008627
Eric Anholtbad720f2009-10-22 16:11:14 -07008628 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008629 return;
8630
8631 if (!dev_priv->lvds_downclock_avail)
8632 return;
8633
8634 /*
8635 * Since this is called by a timer, we should never get here in
8636 * the manual case.
8637 */
8638 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008639 int pipe = intel_crtc->pipe;
8640 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008641 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008642
Zhao Yakui44d98a62009-10-09 11:39:40 +08008643 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008644
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008645 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008646
Chris Wilson074b5e12012-05-02 12:07:06 +01008647 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008648 dpll |= DISPLAY_RATE_SELECT_FPA1;
8649 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008650 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008651 dpll = I915_READ(dpll_reg);
8652 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008653 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008654 }
8655
8656}
8657
Chris Wilsonf047e392012-07-21 12:31:41 +01008658void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008659{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008660 struct drm_i915_private *dev_priv = dev->dev_private;
8661
Chris Wilsonf62a0072014-02-21 17:55:39 +00008662 if (dev_priv->mm.busy)
8663 return;
8664
Paulo Zanoni43694d62014-03-07 20:08:08 -03008665 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008666 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008667 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008668}
8669
8670void intel_mark_idle(struct drm_device *dev)
8671{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008672 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008673 struct drm_crtc *crtc;
8674
Chris Wilsonf62a0072014-02-21 17:55:39 +00008675 if (!dev_priv->mm.busy)
8676 return;
8677
8678 dev_priv->mm.busy = false;
8679
Jani Nikulad330a952014-01-21 11:24:25 +02008680 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008681 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008682
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008683 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008684 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008685 continue;
8686
8687 intel_decrease_pllclock(crtc);
8688 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008689
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008690 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008691 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008692
8693out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008694 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008695}
8696
Chris Wilsonc65355b2013-06-06 16:53:41 -03008697void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8698 struct intel_ring_buffer *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01008699{
8700 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07008701 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07008702
Jani Nikulad330a952014-01-21 11:24:25 +02008703 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07008704 return;
8705
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008706 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008707 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -07008708 continue;
8709
Matt Roperf4510a22014-04-01 15:22:40 -07008710 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
Chris Wilsonc65355b2013-06-06 16:53:41 -03008711 continue;
8712
8713 intel_increase_pllclock(crtc);
8714 if (ring && intel_fbc_enabled(dev))
8715 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07008716 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008717}
8718
Jesse Barnes79e53942008-11-07 14:24:08 -08008719static void intel_crtc_destroy(struct drm_crtc *crtc)
8720{
8721 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008722 struct drm_device *dev = crtc->dev;
8723 struct intel_unpin_work *work;
8724 unsigned long flags;
8725
8726 spin_lock_irqsave(&dev->event_lock, flags);
8727 work = intel_crtc->unpin_work;
8728 intel_crtc->unpin_work = NULL;
8729 spin_unlock_irqrestore(&dev->event_lock, flags);
8730
8731 if (work) {
8732 cancel_work_sync(&work->work);
8733 kfree(work);
8734 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008735
Mika Kuoppala40ccc722013-04-23 17:27:08 +03008736 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8737
Jesse Barnes79e53942008-11-07 14:24:08 -08008738 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008739
Jesse Barnes79e53942008-11-07 14:24:08 -08008740 kfree(intel_crtc);
8741}
8742
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008743static void intel_unpin_work_fn(struct work_struct *__work)
8744{
8745 struct intel_unpin_work *work =
8746 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008747 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008748
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008749 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01008750 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00008751 drm_gem_object_unreference(&work->pending_flip_obj->base);
8752 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00008753
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008754 intel_update_fbc(dev);
8755 mutex_unlock(&dev->struct_mutex);
8756
8757 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8758 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8759
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008760 kfree(work);
8761}
8762
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008763static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01008764 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008765{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008766 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008767 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8768 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008769 unsigned long flags;
8770
8771 /* Ignore early vblank irqs */
8772 if (intel_crtc == NULL)
8773 return;
8774
8775 spin_lock_irqsave(&dev->event_lock, flags);
8776 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00008777
8778 /* Ensure we don't miss a work->pending update ... */
8779 smp_rmb();
8780
8781 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008782 spin_unlock_irqrestore(&dev->event_lock, flags);
8783 return;
8784 }
8785
Chris Wilsone7d841c2012-12-03 11:36:30 +00008786 /* and that the unpin work is consistent wrt ->pending. */
8787 smp_rmb();
8788
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008789 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008790
Rob Clark45a066e2012-10-08 14:50:40 -05008791 if (work->event)
8792 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008793
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01008794 drm_vblank_put(dev, intel_crtc->pipe);
8795
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008796 spin_unlock_irqrestore(&dev->event_lock, flags);
8797
Daniel Vetter2c10d572012-12-20 21:24:07 +01008798 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008799
8800 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07008801
8802 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008803}
8804
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008805void intel_finish_page_flip(struct drm_device *dev, int pipe)
8806{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008807 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008808 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8809
Mario Kleiner49b14a52010-12-09 07:00:07 +01008810 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008811}
8812
8813void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8814{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008815 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008816 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8817
Mario Kleiner49b14a52010-12-09 07:00:07 +01008818 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008819}
8820
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008821void intel_prepare_page_flip(struct drm_device *dev, int plane)
8822{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008823 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008824 struct intel_crtc *intel_crtc =
8825 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8826 unsigned long flags;
8827
Chris Wilsone7d841c2012-12-03 11:36:30 +00008828 /* NB: An MMIO update of the plane base pointer will also
8829 * generate a page-flip completion irq, i.e. every modeset
8830 * is also accompanied by a spurious intel_prepare_page_flip().
8831 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008832 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008833 if (intel_crtc->unpin_work)
8834 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008835 spin_unlock_irqrestore(&dev->event_lock, flags);
8836}
8837
Robin Schroereba905b2014-05-18 02:24:50 +02008838static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00008839{
8840 /* Ensure that the work item is consistent when activating it ... */
8841 smp_wmb();
8842 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8843 /* and that it is marked active as soon as the irq could fire. */
8844 smp_wmb();
8845}
8846
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008847static int intel_gen2_queue_flip(struct drm_device *dev,
8848 struct drm_crtc *crtc,
8849 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008850 struct drm_i915_gem_object *obj,
8851 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008852{
8853 struct drm_i915_private *dev_priv = dev->dev_private;
8854 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008855 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008856 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008857 int ret;
8858
Daniel Vetter6d90c952012-04-26 23:28:05 +02008859 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008860 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008861 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008862
Daniel Vetter6d90c952012-04-26 23:28:05 +02008863 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008864 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008865 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008866
8867 /* Can't queue multiple flips, so wait for the previous
8868 * one to finish before executing the next.
8869 */
8870 if (intel_crtc->plane)
8871 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8872 else
8873 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008874 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8875 intel_ring_emit(ring, MI_NOOP);
8876 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8877 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8878 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008879 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008880 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00008881
8882 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008883 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008884 return 0;
8885
8886err_unpin:
8887 intel_unpin_fb_obj(obj);
8888err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008889 return ret;
8890}
8891
8892static int intel_gen3_queue_flip(struct drm_device *dev,
8893 struct drm_crtc *crtc,
8894 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008895 struct drm_i915_gem_object *obj,
8896 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008897{
8898 struct drm_i915_private *dev_priv = dev->dev_private;
8899 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008900 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008901 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008902 int ret;
8903
Daniel Vetter6d90c952012-04-26 23:28:05 +02008904 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008905 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008906 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008907
Daniel Vetter6d90c952012-04-26 23:28:05 +02008908 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008909 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008910 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008911
8912 if (intel_crtc->plane)
8913 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8914 else
8915 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008916 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8917 intel_ring_emit(ring, MI_NOOP);
8918 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8919 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8920 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008921 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008922 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008923
Chris Wilsone7d841c2012-12-03 11:36:30 +00008924 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008925 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008926 return 0;
8927
8928err_unpin:
8929 intel_unpin_fb_obj(obj);
8930err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008931 return ret;
8932}
8933
8934static int intel_gen4_queue_flip(struct drm_device *dev,
8935 struct drm_crtc *crtc,
8936 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008937 struct drm_i915_gem_object *obj,
8938 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008939{
8940 struct drm_i915_private *dev_priv = dev->dev_private;
8941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8942 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008943 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008944 int ret;
8945
Daniel Vetter6d90c952012-04-26 23:28:05 +02008946 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008947 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008948 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008949
Daniel Vetter6d90c952012-04-26 23:28:05 +02008950 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008951 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008952 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008953
8954 /* i965+ uses the linear or tiled offsets from the
8955 * Display Registers (which do not change across a page-flip)
8956 * so we need only reprogram the base address.
8957 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02008958 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8959 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8960 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02008961 intel_ring_emit(ring,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008962 (i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset) |
Daniel Vetterc2c75132012-07-05 12:17:30 +02008963 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008964
8965 /* XXX Enabling the panel-fitter across page-flip is so far
8966 * untested on non-native modes, so ignore it for now.
8967 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
8968 */
8969 pf = 0;
8970 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008971 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008972
8973 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008974 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008975 return 0;
8976
8977err_unpin:
8978 intel_unpin_fb_obj(obj);
8979err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008980 return ret;
8981}
8982
8983static int intel_gen6_queue_flip(struct drm_device *dev,
8984 struct drm_crtc *crtc,
8985 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008986 struct drm_i915_gem_object *obj,
8987 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008988{
8989 struct drm_i915_private *dev_priv = dev->dev_private;
8990 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008991 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008992 uint32_t pf, pipesrc;
8993 int ret;
8994
Daniel Vetter6d90c952012-04-26 23:28:05 +02008995 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008996 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008997 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008998
Daniel Vetter6d90c952012-04-26 23:28:05 +02008999 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009000 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009001 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009002
Daniel Vetter6d90c952012-04-26 23:28:05 +02009003 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9004 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9005 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009006 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009007
Chris Wilson99d9acd2012-04-17 20:37:00 +01009008 /* Contrary to the suggestions in the documentation,
9009 * "Enable Panel Fitter" does not seem to be required when page
9010 * flipping with a non-native mode, and worse causes a normal
9011 * modeset to fail.
9012 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9013 */
9014 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009015 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009016 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009017
9018 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009019 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009020 return 0;
9021
9022err_unpin:
9023 intel_unpin_fb_obj(obj);
9024err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009025 return ret;
9026}
9027
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009028static int intel_gen7_queue_flip(struct drm_device *dev,
9029 struct drm_crtc *crtc,
9030 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009031 struct drm_i915_gem_object *obj,
9032 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009033{
9034 struct drm_i915_private *dev_priv = dev->dev_private;
9035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009036 struct intel_ring_buffer *ring;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009037 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009038 int len, ret;
9039
9040 ring = obj->ring;
Chris Wilson1c5fd082013-09-04 10:54:30 +01009041 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
Chris Wilsonffe74d72013-08-26 20:58:12 +01009042 ring = &dev_priv->ring[BCS];
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009043
9044 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
9045 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009046 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009047
Robin Schroereba905b2014-05-18 02:24:50 +02009048 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009049 case PLANE_A:
9050 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9051 break;
9052 case PLANE_B:
9053 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9054 break;
9055 case PLANE_C:
9056 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9057 break;
9058 default:
9059 WARN_ONCE(1, "unknown plane in flip command\n");
9060 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03009061 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009062 }
9063
Chris Wilsonffe74d72013-08-26 20:58:12 +01009064 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009065 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009066 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009067 /*
9068 * On Gen 8, SRM is now taking an extra dword to accommodate
9069 * 48bits addresses, and we need a NOOP for the batch size to
9070 * stay even.
9071 */
9072 if (IS_GEN8(dev))
9073 len += 2;
9074 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009075
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009076 /*
9077 * BSpec MI_DISPLAY_FLIP for IVB:
9078 * "The full packet must be contained within the same cache line."
9079 *
9080 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9081 * cacheline, if we ever start emitting more commands before
9082 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9083 * then do the cacheline alignment, and finally emit the
9084 * MI_DISPLAY_FLIP.
9085 */
9086 ret = intel_ring_cacheline_align(ring);
9087 if (ret)
9088 goto err_unpin;
9089
Chris Wilsonffe74d72013-08-26 20:58:12 +01009090 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009091 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009092 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009093
Chris Wilsonffe74d72013-08-26 20:58:12 +01009094 /* Unmask the flip-done completion message. Note that the bspec says that
9095 * we should do this for both the BCS and RCS, and that we must not unmask
9096 * more than one flip event at any time (or ensure that one flip message
9097 * can be sent by waiting for flip-done prior to queueing new flips).
9098 * Experimentation says that BCS works despite DERRMR masking all
9099 * flip-done completion events and that unmasking all planes at once
9100 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9101 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9102 */
9103 if (ring->id == RCS) {
9104 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9105 intel_ring_emit(ring, DERRMR);
9106 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9107 DERRMR_PIPEB_PRI_FLIP_DONE |
9108 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009109 if (IS_GEN8(dev))
9110 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9111 MI_SRM_LRM_GLOBAL_GTT);
9112 else
9113 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9114 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009115 intel_ring_emit(ring, DERRMR);
9116 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009117 if (IS_GEN8(dev)) {
9118 intel_ring_emit(ring, 0);
9119 intel_ring_emit(ring, MI_NOOP);
9120 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009121 }
9122
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009123 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009124 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009125 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009126 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009127
9128 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009129 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009130 return 0;
9131
9132err_unpin:
9133 intel_unpin_fb_obj(obj);
9134err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009135 return ret;
9136}
9137
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009138static int intel_default_queue_flip(struct drm_device *dev,
9139 struct drm_crtc *crtc,
9140 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009141 struct drm_i915_gem_object *obj,
9142 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009143{
9144 return -ENODEV;
9145}
9146
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009147static int intel_crtc_page_flip(struct drm_crtc *crtc,
9148 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009149 struct drm_pending_vblank_event *event,
9150 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009151{
9152 struct drm_device *dev = crtc->dev;
9153 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009154 struct drm_framebuffer *old_fb = crtc->primary->fb;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009155 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009156 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9157 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009158 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009159 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009160
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009161 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009162 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009163 return -EINVAL;
9164
9165 /*
9166 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9167 * Note that pitch changes could also affect these register.
9168 */
9169 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009170 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9171 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009172 return -EINVAL;
9173
Chris Wilsonf900db42014-02-20 09:26:13 +00009174 if (i915_terminally_wedged(&dev_priv->gpu_error))
9175 goto out_hang;
9176
Daniel Vetterb14c5672013-09-19 12:18:32 +02009177 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009178 if (work == NULL)
9179 return -ENOMEM;
9180
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009181 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009182 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009183 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009184 INIT_WORK(&work->work, intel_unpin_work_fn);
9185
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009186 ret = drm_vblank_get(dev, intel_crtc->pipe);
9187 if (ret)
9188 goto free_work;
9189
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009190 /* We borrow the event spin lock for protecting unpin_work */
9191 spin_lock_irqsave(&dev->event_lock, flags);
9192 if (intel_crtc->unpin_work) {
9193 spin_unlock_irqrestore(&dev->event_lock, flags);
9194 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009195 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01009196
9197 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009198 return -EBUSY;
9199 }
9200 intel_crtc->unpin_work = work;
9201 spin_unlock_irqrestore(&dev->event_lock, flags);
9202
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009203 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9204 flush_workqueue(dev_priv->wq);
9205
Chris Wilson79158102012-05-23 11:13:58 +01009206 ret = i915_mutex_lock_interruptible(dev);
9207 if (ret)
9208 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009209
Jesse Barnes75dfca82010-02-10 15:09:44 -08009210 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009211 drm_gem_object_reference(&work->old_fb_obj->base);
9212 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009213
Matt Roperf4510a22014-04-01 15:22:40 -07009214 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009215
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009216 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009217
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009218 work->enable_stall_check = true;
9219
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009220 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009221 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009222
Keith Packarded8d1972013-07-22 18:49:58 -07009223 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009224 if (ret)
9225 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009226
Chris Wilson7782de32011-07-08 12:22:41 +01009227 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009228 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009229 mutex_unlock(&dev->struct_mutex);
9230
Jesse Barnese5510fa2010-07-01 16:48:37 -07009231 trace_i915_flip_request(intel_crtc->plane, obj);
9232
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009233 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009234
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009235cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009236 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009237 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009238 drm_gem_object_unreference(&work->old_fb_obj->base);
9239 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009240 mutex_unlock(&dev->struct_mutex);
9241
Chris Wilson79158102012-05-23 11:13:58 +01009242cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009243 spin_lock_irqsave(&dev->event_lock, flags);
9244 intel_crtc->unpin_work = NULL;
9245 spin_unlock_irqrestore(&dev->event_lock, flags);
9246
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009247 drm_vblank_put(dev, intel_crtc->pipe);
9248free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009249 kfree(work);
9250
Chris Wilsonf900db42014-02-20 09:26:13 +00009251 if (ret == -EIO) {
9252out_hang:
9253 intel_crtc_wait_for_pending_flips(crtc);
9254 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9255 if (ret == 0 && event)
9256 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9257 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009258 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009259}
9260
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009261static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009262 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9263 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009264};
9265
Daniel Vetter9a935852012-07-05 22:34:27 +02009266/**
9267 * intel_modeset_update_staged_output_state
9268 *
9269 * Updates the staged output configuration state, e.g. after we've read out the
9270 * current hw state.
9271 */
9272static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9273{
Ville Syrjälä76688512014-01-10 11:28:06 +02009274 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009275 struct intel_encoder *encoder;
9276 struct intel_connector *connector;
9277
9278 list_for_each_entry(connector, &dev->mode_config.connector_list,
9279 base.head) {
9280 connector->new_encoder =
9281 to_intel_encoder(connector->base.encoder);
9282 }
9283
9284 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9285 base.head) {
9286 encoder->new_crtc =
9287 to_intel_crtc(encoder->base.crtc);
9288 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009289
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009290 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009291 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009292
9293 if (crtc->new_enabled)
9294 crtc->new_config = &crtc->config;
9295 else
9296 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009297 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009298}
9299
9300/**
9301 * intel_modeset_commit_output_state
9302 *
9303 * This function copies the stage display pipe configuration to the real one.
9304 */
9305static void intel_modeset_commit_output_state(struct drm_device *dev)
9306{
Ville Syrjälä76688512014-01-10 11:28:06 +02009307 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009308 struct intel_encoder *encoder;
9309 struct intel_connector *connector;
9310
9311 list_for_each_entry(connector, &dev->mode_config.connector_list,
9312 base.head) {
9313 connector->base.encoder = &connector->new_encoder->base;
9314 }
9315
9316 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9317 base.head) {
9318 encoder->base.crtc = &encoder->new_crtc->base;
9319 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009320
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009321 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009322 crtc->base.enabled = crtc->new_enabled;
9323 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009324}
9325
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009326static void
Robin Schroereba905b2014-05-18 02:24:50 +02009327connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009328 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009329{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009330 int bpp = pipe_config->pipe_bpp;
9331
9332 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9333 connector->base.base.id,
9334 drm_get_connector_name(&connector->base));
9335
9336 /* Don't use an invalid EDID bpc value */
9337 if (connector->base.display_info.bpc &&
9338 connector->base.display_info.bpc * 3 < bpp) {
9339 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9340 bpp, connector->base.display_info.bpc*3);
9341 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9342 }
9343
9344 /* Clamp bpp to 8 on screens without EDID 1.4 */
9345 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9346 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9347 bpp);
9348 pipe_config->pipe_bpp = 24;
9349 }
9350}
9351
9352static int
9353compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9354 struct drm_framebuffer *fb,
9355 struct intel_crtc_config *pipe_config)
9356{
9357 struct drm_device *dev = crtc->base.dev;
9358 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009359 int bpp;
9360
Daniel Vetterd42264b2013-03-28 16:38:08 +01009361 switch (fb->pixel_format) {
9362 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009363 bpp = 8*3; /* since we go through a colormap */
9364 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009365 case DRM_FORMAT_XRGB1555:
9366 case DRM_FORMAT_ARGB1555:
9367 /* checked in intel_framebuffer_init already */
9368 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9369 return -EINVAL;
9370 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009371 bpp = 6*3; /* min is 18bpp */
9372 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009373 case DRM_FORMAT_XBGR8888:
9374 case DRM_FORMAT_ABGR8888:
9375 /* checked in intel_framebuffer_init already */
9376 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9377 return -EINVAL;
9378 case DRM_FORMAT_XRGB8888:
9379 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009380 bpp = 8*3;
9381 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009382 case DRM_FORMAT_XRGB2101010:
9383 case DRM_FORMAT_ARGB2101010:
9384 case DRM_FORMAT_XBGR2101010:
9385 case DRM_FORMAT_ABGR2101010:
9386 /* checked in intel_framebuffer_init already */
9387 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01009388 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009389 bpp = 10*3;
9390 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01009391 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009392 default:
9393 DRM_DEBUG_KMS("unsupported depth\n");
9394 return -EINVAL;
9395 }
9396
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009397 pipe_config->pipe_bpp = bpp;
9398
9399 /* Clamp display bpp to EDID value */
9400 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009401 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02009402 if (!connector->new_encoder ||
9403 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009404 continue;
9405
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009406 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009407 }
9408
9409 return bpp;
9410}
9411
Daniel Vetter644db712013-09-19 14:53:58 +02009412static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9413{
9414 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9415 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01009416 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02009417 mode->crtc_hdisplay, mode->crtc_hsync_start,
9418 mode->crtc_hsync_end, mode->crtc_htotal,
9419 mode->crtc_vdisplay, mode->crtc_vsync_start,
9420 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9421}
9422
Daniel Vetterc0b03412013-05-28 12:05:54 +02009423static void intel_dump_pipe_config(struct intel_crtc *crtc,
9424 struct intel_crtc_config *pipe_config,
9425 const char *context)
9426{
9427 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9428 context, pipe_name(crtc->pipe));
9429
9430 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9431 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9432 pipe_config->pipe_bpp, pipe_config->dither);
9433 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9434 pipe_config->has_pch_encoder,
9435 pipe_config->fdi_lanes,
9436 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9437 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9438 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009439 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9440 pipe_config->has_dp_encoder,
9441 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9442 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9443 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009444 DRM_DEBUG_KMS("requested mode:\n");
9445 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9446 DRM_DEBUG_KMS("adjusted mode:\n");
9447 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02009448 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03009449 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009450 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9451 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009452 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9453 pipe_config->gmch_pfit.control,
9454 pipe_config->gmch_pfit.pgm_ratios,
9455 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009456 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02009457 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009458 pipe_config->pch_pfit.size,
9459 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009460 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03009461 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009462}
9463
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009464static bool encoders_cloneable(const struct intel_encoder *a,
9465 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009466{
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009467 /* masks could be asymmetric, so check both ways */
9468 return a == b || (a->cloneable & (1 << b->type) &&
9469 b->cloneable & (1 << a->type));
9470}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009471
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009472static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9473 struct intel_encoder *encoder)
9474{
9475 struct drm_device *dev = crtc->base.dev;
9476 struct intel_encoder *source_encoder;
9477
9478 list_for_each_entry(source_encoder,
9479 &dev->mode_config.encoder_list, base.head) {
9480 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009481 continue;
9482
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009483 if (!encoders_cloneable(encoder, source_encoder))
9484 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009485 }
9486
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009487 return true;
9488}
9489
9490static bool check_encoder_cloning(struct intel_crtc *crtc)
9491{
9492 struct drm_device *dev = crtc->base.dev;
9493 struct intel_encoder *encoder;
9494
9495 list_for_each_entry(encoder,
9496 &dev->mode_config.encoder_list, base.head) {
9497 if (encoder->new_crtc != crtc)
9498 continue;
9499
9500 if (!check_single_encoder_cloning(crtc, encoder))
9501 return false;
9502 }
9503
9504 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009505}
9506
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009507static struct intel_crtc_config *
9508intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009509 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009510 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02009511{
9512 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02009513 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009514 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01009515 int plane_bpp, ret = -EINVAL;
9516 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02009517
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009518 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009519 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9520 return ERR_PTR(-EINVAL);
9521 }
9522
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009523 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9524 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02009525 return ERR_PTR(-ENOMEM);
9526
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009527 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9528 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009529
Daniel Vettere143a212013-07-04 12:01:15 +02009530 pipe_config->cpu_transcoder =
9531 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009532 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009533
Imre Deak2960bc92013-07-30 13:36:32 +03009534 /*
9535 * Sanitize sync polarity flags based on requested ones. If neither
9536 * positive or negative polarity is requested, treat this as meaning
9537 * negative polarity.
9538 */
9539 if (!(pipe_config->adjusted_mode.flags &
9540 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9541 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9542
9543 if (!(pipe_config->adjusted_mode.flags &
9544 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9545 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9546
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009547 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9548 * plane pixel format and any sink constraints into account. Returns the
9549 * source plane bpp so that dithering can be selected on mismatches
9550 * after encoders and crtc also have had their say. */
9551 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9552 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009553 if (plane_bpp < 0)
9554 goto fail;
9555
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03009556 /*
9557 * Determine the real pipe dimensions. Note that stereo modes can
9558 * increase the actual pipe size due to the frame doubling and
9559 * insertion of additional space for blanks between the frame. This
9560 * is stored in the crtc timings. We use the requested mode to do this
9561 * computation to clearly distinguish it from the adjusted mode, which
9562 * can be changed by the connectors in the below retry loop.
9563 */
9564 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9565 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9566 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9567
Daniel Vettere29c22c2013-02-21 00:00:16 +01009568encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02009569 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02009570 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02009571 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009572
Daniel Vetter135c81b2013-07-21 21:37:09 +02009573 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01009574 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02009575
Daniel Vetter7758a112012-07-08 19:40:39 +02009576 /* Pass our mode to the connectors and the CRTC to give them a chance to
9577 * adjust it according to limitations or connector properties, and also
9578 * a chance to reject the mode entirely.
9579 */
9580 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9581 base.head) {
9582
9583 if (&encoder->new_crtc->base != crtc)
9584 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01009585
Daniel Vetterefea6e82013-07-21 21:36:59 +02009586 if (!(encoder->compute_config(encoder, pipe_config))) {
9587 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02009588 goto fail;
9589 }
9590 }
9591
Daniel Vetterff9a6752013-06-01 17:16:21 +02009592 /* Set default port clock if not overwritten by the encoder. Needs to be
9593 * done afterwards in case the encoder adjusts the mode. */
9594 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01009595 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9596 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009597
Daniel Vettera43f6e02013-06-07 23:10:32 +02009598 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009599 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02009600 DRM_DEBUG_KMS("CRTC fixup failed\n");
9601 goto fail;
9602 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01009603
9604 if (ret == RETRY) {
9605 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9606 ret = -EINVAL;
9607 goto fail;
9608 }
9609
9610 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9611 retry = false;
9612 goto encoder_retry;
9613 }
9614
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009615 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9616 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9617 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9618
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009619 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02009620fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009621 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009622 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02009623}
9624
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009625/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9626 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9627static void
9628intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9629 unsigned *prepare_pipes, unsigned *disable_pipes)
9630{
9631 struct intel_crtc *intel_crtc;
9632 struct drm_device *dev = crtc->dev;
9633 struct intel_encoder *encoder;
9634 struct intel_connector *connector;
9635 struct drm_crtc *tmp_crtc;
9636
9637 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
9638
9639 /* Check which crtcs have changed outputs connected to them, these need
9640 * to be part of the prepare_pipes mask. We don't (yet) support global
9641 * modeset across multiple crtcs, so modeset_pipes will only have one
9642 * bit set at most. */
9643 list_for_each_entry(connector, &dev->mode_config.connector_list,
9644 base.head) {
9645 if (connector->base.encoder == &connector->new_encoder->base)
9646 continue;
9647
9648 if (connector->base.encoder) {
9649 tmp_crtc = connector->base.encoder->crtc;
9650
9651 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9652 }
9653
9654 if (connector->new_encoder)
9655 *prepare_pipes |=
9656 1 << connector->new_encoder->new_crtc->pipe;
9657 }
9658
9659 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9660 base.head) {
9661 if (encoder->base.crtc == &encoder->new_crtc->base)
9662 continue;
9663
9664 if (encoder->base.crtc) {
9665 tmp_crtc = encoder->base.crtc;
9666
9667 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9668 }
9669
9670 if (encoder->new_crtc)
9671 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
9672 }
9673
Ville Syrjälä76688512014-01-10 11:28:06 +02009674 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009675 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009676 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009677 continue;
9678
Ville Syrjälä76688512014-01-10 11:28:06 +02009679 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009680 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +02009681 else
9682 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009683 }
9684
9685
9686 /* set_mode is also used to update properties on life display pipes. */
9687 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +02009688 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009689 *prepare_pipes |= 1 << intel_crtc->pipe;
9690
Daniel Vetterb6c51642013-04-12 18:48:43 +02009691 /*
9692 * For simplicity do a full modeset on any pipe where the output routing
9693 * changed. We could be more clever, but that would require us to be
9694 * more careful with calling the relevant encoder->mode_set functions.
9695 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009696 if (*prepare_pipes)
9697 *modeset_pipes = *prepare_pipes;
9698
9699 /* ... and mask these out. */
9700 *modeset_pipes &= ~(*disable_pipes);
9701 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02009702
9703 /*
9704 * HACK: We don't (yet) fully support global modesets. intel_set_config
9705 * obies this rule, but the modeset restore mode of
9706 * intel_modeset_setup_hw_state does not.
9707 */
9708 *modeset_pipes &= 1 << intel_crtc->pipe;
9709 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02009710
9711 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9712 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009713}
9714
Daniel Vetterea9d7582012-07-10 10:42:52 +02009715static bool intel_crtc_in_use(struct drm_crtc *crtc)
9716{
9717 struct drm_encoder *encoder;
9718 struct drm_device *dev = crtc->dev;
9719
9720 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9721 if (encoder->crtc == crtc)
9722 return true;
9723
9724 return false;
9725}
9726
9727static void
9728intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9729{
9730 struct intel_encoder *intel_encoder;
9731 struct intel_crtc *intel_crtc;
9732 struct drm_connector *connector;
9733
9734 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9735 base.head) {
9736 if (!intel_encoder->base.crtc)
9737 continue;
9738
9739 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9740
9741 if (prepare_pipes & (1 << intel_crtc->pipe))
9742 intel_encoder->connectors_active = false;
9743 }
9744
9745 intel_modeset_commit_output_state(dev);
9746
Ville Syrjälä76688512014-01-10 11:28:06 +02009747 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009748 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009749 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009750 WARN_ON(intel_crtc->new_config &&
9751 intel_crtc->new_config != &intel_crtc->config);
9752 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009753 }
9754
9755 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9756 if (!connector->encoder || !connector->encoder->crtc)
9757 continue;
9758
9759 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9760
9761 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02009762 struct drm_property *dpms_property =
9763 dev->mode_config.dpms_property;
9764
Daniel Vetterea9d7582012-07-10 10:42:52 +02009765 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05009766 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02009767 dpms_property,
9768 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009769
9770 intel_encoder = to_intel_encoder(connector->encoder);
9771 intel_encoder->connectors_active = true;
9772 }
9773 }
9774
9775}
9776
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009777static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009778{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009779 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009780
9781 if (clock1 == clock2)
9782 return true;
9783
9784 if (!clock1 || !clock2)
9785 return false;
9786
9787 diff = abs(clock1 - clock2);
9788
9789 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9790 return true;
9791
9792 return false;
9793}
9794
Daniel Vetter25c5b262012-07-08 22:08:04 +02009795#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9796 list_for_each_entry((intel_crtc), \
9797 &(dev)->mode_config.crtc_list, \
9798 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02009799 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02009800
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009801static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009802intel_pipe_config_compare(struct drm_device *dev,
9803 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009804 struct intel_crtc_config *pipe_config)
9805{
Daniel Vetter66e985c2013-06-05 13:34:20 +02009806#define PIPE_CONF_CHECK_X(name) \
9807 if (current_config->name != pipe_config->name) { \
9808 DRM_ERROR("mismatch in " #name " " \
9809 "(expected 0x%08x, found 0x%08x)\n", \
9810 current_config->name, \
9811 pipe_config->name); \
9812 return false; \
9813 }
9814
Daniel Vetter08a24032013-04-19 11:25:34 +02009815#define PIPE_CONF_CHECK_I(name) \
9816 if (current_config->name != pipe_config->name) { \
9817 DRM_ERROR("mismatch in " #name " " \
9818 "(expected %i, found %i)\n", \
9819 current_config->name, \
9820 pipe_config->name); \
9821 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01009822 }
9823
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009824#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9825 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07009826 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009827 "(expected %i, found %i)\n", \
9828 current_config->name & (mask), \
9829 pipe_config->name & (mask)); \
9830 return false; \
9831 }
9832
Ville Syrjälä5e550652013-09-06 23:29:07 +03009833#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9834 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9835 DRM_ERROR("mismatch in " #name " " \
9836 "(expected %i, found %i)\n", \
9837 current_config->name, \
9838 pipe_config->name); \
9839 return false; \
9840 }
9841
Daniel Vetterbb760062013-06-06 14:55:52 +02009842#define PIPE_CONF_QUIRK(quirk) \
9843 ((current_config->quirks | pipe_config->quirks) & (quirk))
9844
Daniel Vettereccb1402013-05-22 00:50:22 +02009845 PIPE_CONF_CHECK_I(cpu_transcoder);
9846
Daniel Vetter08a24032013-04-19 11:25:34 +02009847 PIPE_CONF_CHECK_I(has_pch_encoder);
9848 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02009849 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9850 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9851 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9852 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9853 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02009854
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009855 PIPE_CONF_CHECK_I(has_dp_encoder);
9856 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9857 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9858 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9859 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9860 PIPE_CONF_CHECK_I(dp_m_n.tu);
9861
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009862 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9863 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9864 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9865 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9866 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9867 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9868
9869 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9870 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9871 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9872 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9873 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9874 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9875
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009876 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +02009877 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009878 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9879 IS_VALLEYVIEW(dev))
9880 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009881
Daniel Vetter9ed109a2014-04-24 23:54:52 +02009882 PIPE_CONF_CHECK_I(has_audio);
9883
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009884 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9885 DRM_MODE_FLAG_INTERLACE);
9886
Daniel Vetterbb760062013-06-06 14:55:52 +02009887 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9888 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9889 DRM_MODE_FLAG_PHSYNC);
9890 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9891 DRM_MODE_FLAG_NHSYNC);
9892 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9893 DRM_MODE_FLAG_PVSYNC);
9894 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9895 DRM_MODE_FLAG_NVSYNC);
9896 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009897
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009898 PIPE_CONF_CHECK_I(pipe_src_w);
9899 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009900
Daniel Vetter99535992014-04-13 12:00:33 +02009901 /*
9902 * FIXME: BIOS likes to set up a cloned config with lvds+external
9903 * screen. Since we don't yet re-compute the pipe config when moving
9904 * just the lvds port away to another pipe the sw tracking won't match.
9905 *
9906 * Proper atomic modesets with recomputed global state will fix this.
9907 * Until then just don't check gmch state for inherited modes.
9908 */
9909 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9910 PIPE_CONF_CHECK_I(gmch_pfit.control);
9911 /* pfit ratios are autocomputed by the hw on gen4+ */
9912 if (INTEL_INFO(dev)->gen < 4)
9913 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
9914 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
9915 }
9916
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009917 PIPE_CONF_CHECK_I(pch_pfit.enabled);
9918 if (current_config->pch_pfit.enabled) {
9919 PIPE_CONF_CHECK_I(pch_pfit.pos);
9920 PIPE_CONF_CHECK_I(pch_pfit.size);
9921 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009922
Jesse Barnese59150d2014-01-07 13:30:45 -08009923 /* BDW+ don't expose a synchronous way to read the state */
9924 if (IS_HASWELL(dev))
9925 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009926
Ville Syrjälä282740f2013-09-04 18:30:03 +03009927 PIPE_CONF_CHECK_I(double_wide);
9928
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009929 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009930 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02009931 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009932 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
9933 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009934
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009935 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
9936 PIPE_CONF_CHECK_I(pipe_bpp);
9937
Jesse Barnesa9a7e982014-01-20 14:18:04 -08009938 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
9939 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +03009940
Daniel Vetter66e985c2013-06-05 13:34:20 +02009941#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +02009942#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009943#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +03009944#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +02009945#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009946
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009947 return true;
9948}
9949
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009950static void
9951check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009952{
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009953 struct intel_connector *connector;
9954
9955 list_for_each_entry(connector, &dev->mode_config.connector_list,
9956 base.head) {
9957 /* This also checks the encoder/connector hw state with the
9958 * ->get_hw_state callbacks. */
9959 intel_connector_check_state(connector);
9960
9961 WARN(&connector->new_encoder->base != connector->base.encoder,
9962 "connector's staged encoder doesn't match current encoder\n");
9963 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009964}
9965
9966static void
9967check_encoder_state(struct drm_device *dev)
9968{
9969 struct intel_encoder *encoder;
9970 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009971
9972 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9973 base.head) {
9974 bool enabled = false;
9975 bool active = false;
9976 enum pipe pipe, tracked_pipe;
9977
9978 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
9979 encoder->base.base.id,
9980 drm_get_encoder_name(&encoder->base));
9981
9982 WARN(&encoder->new_crtc->base != encoder->base.crtc,
9983 "encoder's stage crtc doesn't match current crtc\n");
9984 WARN(encoder->connectors_active && !encoder->base.crtc,
9985 "encoder's active_connectors set, but no crtc\n");
9986
9987 list_for_each_entry(connector, &dev->mode_config.connector_list,
9988 base.head) {
9989 if (connector->base.encoder != &encoder->base)
9990 continue;
9991 enabled = true;
9992 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
9993 active = true;
9994 }
9995 WARN(!!encoder->base.crtc != enabled,
9996 "encoder's enabled state mismatch "
9997 "(expected %i, found %i)\n",
9998 !!encoder->base.crtc, enabled);
9999 WARN(active && !encoder->base.crtc,
10000 "active encoder with no crtc\n");
10001
10002 WARN(encoder->connectors_active != active,
10003 "encoder's computed active state doesn't match tracked active state "
10004 "(expected %i, found %i)\n", active, encoder->connectors_active);
10005
10006 active = encoder->get_hw_state(encoder, &pipe);
10007 WARN(active != encoder->connectors_active,
10008 "encoder's hw state doesn't match sw tracking "
10009 "(expected %i, found %i)\n",
10010 encoder->connectors_active, active);
10011
10012 if (!encoder->base.crtc)
10013 continue;
10014
10015 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10016 WARN(active && pipe != tracked_pipe,
10017 "active encoder's pipe doesn't match"
10018 "(expected %i, found %i)\n",
10019 tracked_pipe, pipe);
10020
10021 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010022}
10023
10024static void
10025check_crtc_state(struct drm_device *dev)
10026{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010027 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010028 struct intel_crtc *crtc;
10029 struct intel_encoder *encoder;
10030 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010031
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010032 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010033 bool enabled = false;
10034 bool active = false;
10035
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010036 memset(&pipe_config, 0, sizeof(pipe_config));
10037
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010038 DRM_DEBUG_KMS("[CRTC:%d]\n",
10039 crtc->base.base.id);
10040
10041 WARN(crtc->active && !crtc->base.enabled,
10042 "active crtc, but not enabled in sw tracking\n");
10043
10044 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10045 base.head) {
10046 if (encoder->base.crtc != &crtc->base)
10047 continue;
10048 enabled = true;
10049 if (encoder->connectors_active)
10050 active = true;
10051 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010052
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010053 WARN(active != crtc->active,
10054 "crtc's computed active state doesn't match tracked active state "
10055 "(expected %i, found %i)\n", active, crtc->active);
10056 WARN(enabled != crtc->base.enabled,
10057 "crtc's computed enabled state doesn't match tracked enabled state "
10058 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10059
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010060 active = dev_priv->display.get_pipe_config(crtc,
10061 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010062
10063 /* hw state is inconsistent with the pipe A quirk */
10064 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10065 active = crtc->active;
10066
Daniel Vetter6c49f242013-06-06 12:45:25 +020010067 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10068 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010069 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010070 if (encoder->base.crtc != &crtc->base)
10071 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010072 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010073 encoder->get_config(encoder, &pipe_config);
10074 }
10075
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010076 WARN(crtc->active != active,
10077 "crtc active state doesn't match with hw state "
10078 "(expected %i, found %i)\n", crtc->active, active);
10079
Daniel Vetterc0b03412013-05-28 12:05:54 +020010080 if (active &&
10081 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10082 WARN(1, "pipe state doesn't match!\n");
10083 intel_dump_pipe_config(crtc, &pipe_config,
10084 "[hw state]");
10085 intel_dump_pipe_config(crtc, &crtc->config,
10086 "[sw state]");
10087 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010088 }
10089}
10090
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010091static void
10092check_shared_dpll_state(struct drm_device *dev)
10093{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010094 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010095 struct intel_crtc *crtc;
10096 struct intel_dpll_hw_state dpll_hw_state;
10097 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010098
10099 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10100 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10101 int enabled_crtcs = 0, active_crtcs = 0;
10102 bool active;
10103
10104 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10105
10106 DRM_DEBUG_KMS("%s\n", pll->name);
10107
10108 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10109
10110 WARN(pll->active > pll->refcount,
10111 "more active pll users than references: %i vs %i\n",
10112 pll->active, pll->refcount);
10113 WARN(pll->active && !pll->on,
10114 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010115 WARN(pll->on && !pll->active,
10116 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010117 WARN(pll->on != active,
10118 "pll on state mismatch (expected %i, found %i)\n",
10119 pll->on, active);
10120
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010121 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010122 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10123 enabled_crtcs++;
10124 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10125 active_crtcs++;
10126 }
10127 WARN(pll->active != active_crtcs,
10128 "pll active crtcs mismatch (expected %i, found %i)\n",
10129 pll->active, active_crtcs);
10130 WARN(pll->refcount != enabled_crtcs,
10131 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10132 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010133
10134 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10135 sizeof(dpll_hw_state)),
10136 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010137 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010138}
10139
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010140void
10141intel_modeset_check_state(struct drm_device *dev)
10142{
10143 check_connector_state(dev);
10144 check_encoder_state(dev);
10145 check_crtc_state(dev);
10146 check_shared_dpll_state(dev);
10147}
10148
Ville Syrjälä18442d02013-09-13 16:00:08 +030010149void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10150 int dotclock)
10151{
10152 /*
10153 * FDI already provided one idea for the dotclock.
10154 * Yell if the encoder disagrees.
10155 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010156 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010157 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010158 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010159}
10160
Daniel Vetterf30da182013-04-11 20:22:50 +020010161static int __intel_set_mode(struct drm_crtc *crtc,
10162 struct drm_display_mode *mode,
10163 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010164{
10165 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010166 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010167 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010168 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010169 struct intel_crtc *intel_crtc;
10170 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010171 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010172
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010173 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010174 if (!saved_mode)
10175 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010176
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010177 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010178 &prepare_pipes, &disable_pipes);
10179
Tim Gardner3ac18232012-12-07 07:54:26 -070010180 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010181
Daniel Vetter25c5b262012-07-08 22:08:04 +020010182 /* Hack: Because we don't (yet) support global modeset on multiple
10183 * crtcs, we don't keep track of the new mode for more than one crtc.
10184 * Hence simply check whether any bit is set in modeset_pipes in all the
10185 * pieces of code that are not yet converted to deal with mutliple crtcs
10186 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010187 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010188 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010189 if (IS_ERR(pipe_config)) {
10190 ret = PTR_ERR(pipe_config);
10191 pipe_config = NULL;
10192
Tim Gardner3ac18232012-12-07 07:54:26 -070010193 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010194 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010195 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10196 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010197 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010198 }
10199
Jesse Barnes30a970c2013-11-04 13:48:12 -080010200 /*
10201 * See if the config requires any additional preparation, e.g.
10202 * to adjust global state with pipes off. We need to do this
10203 * here so we can get the modeset_pipe updated config for the new
10204 * mode set on this crtc. For other crtcs we need to use the
10205 * adjusted_mode bits in the crtc directly.
10206 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010207 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010208 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010209
Ville Syrjäläc164f832013-11-05 22:34:12 +020010210 /* may have added more to prepare_pipes than we should */
10211 prepare_pipes &= ~disable_pipes;
10212 }
10213
Daniel Vetter460da9162013-03-27 00:44:51 +010010214 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10215 intel_crtc_disable(&intel_crtc->base);
10216
Daniel Vetterea9d7582012-07-10 10:42:52 +020010217 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10218 if (intel_crtc->base.enabled)
10219 dev_priv->display.crtc_disable(&intel_crtc->base);
10220 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010221
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010222 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10223 * to set it here already despite that we pass it down the callchain.
10224 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010225 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010226 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010227 /* mode_set/enable/disable functions rely on a correct pipe
10228 * config. */
10229 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010230 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010231
10232 /*
10233 * Calculate and store various constants which
10234 * are later needed by vblank and swap-completion
10235 * timestamping. They are derived from true hwmode.
10236 */
10237 drm_calc_timestamping_constants(crtc,
10238 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010239 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010240
Daniel Vetterea9d7582012-07-10 10:42:52 +020010241 /* Only after disabling all output pipelines that will be changed can we
10242 * update the the output configuration. */
10243 intel_modeset_update_state(dev, prepare_pipes);
10244
Daniel Vetter47fab732012-10-26 10:58:18 +020010245 if (dev_priv->display.modeset_global_resources)
10246 dev_priv->display.modeset_global_resources(dev);
10247
Daniel Vettera6778b32012-07-02 09:56:42 +020010248 /* Set up the DPLL and any encoders state that needs to adjust or depend
10249 * on the DPLL.
10250 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010251 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Daniel Vetter4c107942014-04-24 23:55:05 +020010252 struct drm_framebuffer *old_fb;
10253
10254 mutex_lock(&dev->struct_mutex);
10255 ret = intel_pin_and_fence_fb_obj(dev,
10256 to_intel_framebuffer(fb)->obj,
10257 NULL);
10258 if (ret != 0) {
10259 DRM_ERROR("pin & fence failed\n");
10260 mutex_unlock(&dev->struct_mutex);
10261 goto done;
10262 }
10263 old_fb = crtc->primary->fb;
10264 if (old_fb)
10265 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10266 mutex_unlock(&dev->struct_mutex);
10267
10268 crtc->primary->fb = fb;
10269 crtc->x = x;
10270 crtc->y = y;
10271
Daniel Vetter4271b752014-04-24 23:55:00 +020010272 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10273 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010274 if (ret)
10275 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020010276 }
10277
10278 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010279 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10280 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +020010281
Daniel Vettera6778b32012-07-02 09:56:42 +020010282 /* FIXME: add subpixel order */
10283done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010284 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070010285 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010286
Tim Gardner3ac18232012-12-07 07:54:26 -070010287out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010288 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070010289 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020010290 return ret;
10291}
10292
Damien Lespiaue7457a92013-08-08 22:28:59 +010010293static int intel_set_mode(struct drm_crtc *crtc,
10294 struct drm_display_mode *mode,
10295 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020010296{
10297 int ret;
10298
10299 ret = __intel_set_mode(crtc, mode, x, y, fb);
10300
10301 if (ret == 0)
10302 intel_modeset_check_state(crtc->dev);
10303
10304 return ret;
10305}
10306
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010307void intel_crtc_restore_mode(struct drm_crtc *crtc)
10308{
Matt Roperf4510a22014-04-01 15:22:40 -070010309 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010310}
10311
Daniel Vetter25c5b262012-07-08 22:08:04 +020010312#undef for_each_intel_crtc_masked
10313
Daniel Vetterd9e55602012-07-04 22:16:09 +020010314static void intel_set_config_free(struct intel_set_config *config)
10315{
10316 if (!config)
10317 return;
10318
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010319 kfree(config->save_connector_encoders);
10320 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020010321 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020010322 kfree(config);
10323}
10324
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010325static int intel_set_config_save_state(struct drm_device *dev,
10326 struct intel_set_config *config)
10327{
Ville Syrjälä76688512014-01-10 11:28:06 +020010328 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010329 struct drm_encoder *encoder;
10330 struct drm_connector *connector;
10331 int count;
10332
Ville Syrjälä76688512014-01-10 11:28:06 +020010333 config->save_crtc_enabled =
10334 kcalloc(dev->mode_config.num_crtc,
10335 sizeof(bool), GFP_KERNEL);
10336 if (!config->save_crtc_enabled)
10337 return -ENOMEM;
10338
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010339 config->save_encoder_crtcs =
10340 kcalloc(dev->mode_config.num_encoder,
10341 sizeof(struct drm_crtc *), GFP_KERNEL);
10342 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010343 return -ENOMEM;
10344
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010345 config->save_connector_encoders =
10346 kcalloc(dev->mode_config.num_connector,
10347 sizeof(struct drm_encoder *), GFP_KERNEL);
10348 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010349 return -ENOMEM;
10350
10351 /* Copy data. Note that driver private data is not affected.
10352 * Should anything bad happen only the expected state is
10353 * restored, not the drivers personal bookkeeping.
10354 */
10355 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010356 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010357 config->save_crtc_enabled[count++] = crtc->enabled;
10358 }
10359
10360 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010361 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010362 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010363 }
10364
10365 count = 0;
10366 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010367 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010368 }
10369
10370 return 0;
10371}
10372
10373static void intel_set_config_restore_state(struct drm_device *dev,
10374 struct intel_set_config *config)
10375{
Ville Syrjälä76688512014-01-10 11:28:06 +020010376 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010377 struct intel_encoder *encoder;
10378 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010379 int count;
10380
10381 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010382 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010383 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010384
10385 if (crtc->new_enabled)
10386 crtc->new_config = &crtc->config;
10387 else
10388 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010389 }
10390
10391 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010392 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10393 encoder->new_crtc =
10394 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010395 }
10396
10397 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010398 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10399 connector->new_encoder =
10400 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010401 }
10402}
10403
Imre Deake3de42b2013-05-03 19:44:07 +020010404static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010010405is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020010406{
10407 int i;
10408
Chris Wilson2e57f472013-07-17 12:14:40 +010010409 if (set->num_connectors == 0)
10410 return false;
10411
10412 if (WARN_ON(set->connectors == NULL))
10413 return false;
10414
10415 for (i = 0; i < set->num_connectors; i++)
10416 if (set->connectors[i]->encoder &&
10417 set->connectors[i]->encoder->crtc == set->crtc &&
10418 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020010419 return true;
10420
10421 return false;
10422}
10423
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010424static void
10425intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10426 struct intel_set_config *config)
10427{
10428
10429 /* We should be able to check here if the fb has the same properties
10430 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010010431 if (is_crtc_connector_off(set)) {
10432 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070010433 } else if (set->crtc->primary->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010434 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -070010435 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010436 struct intel_crtc *intel_crtc =
10437 to_intel_crtc(set->crtc);
10438
Jani Nikulad330a952014-01-21 11:24:25 +020010439 if (intel_crtc->active && i915.fastboot) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010440 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10441 config->fb_changed = true;
10442 } else {
10443 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10444 config->mode_changed = true;
10445 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010446 } else if (set->fb == NULL) {
10447 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010010448 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070010449 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010450 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010451 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010452 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010453 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010454 }
10455
Daniel Vetter835c5872012-07-10 18:11:08 +020010456 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010457 config->fb_changed = true;
10458
10459 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10460 DRM_DEBUG_KMS("modes are different, full mode set\n");
10461 drm_mode_debug_printmodeline(&set->crtc->mode);
10462 drm_mode_debug_printmodeline(set->mode);
10463 config->mode_changed = true;
10464 }
Chris Wilsona1d95702013-08-13 18:48:47 +010010465
10466 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10467 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010468}
10469
Daniel Vetter2e431052012-07-04 22:42:15 +020010470static int
Daniel Vetter9a935852012-07-05 22:34:27 +020010471intel_modeset_stage_output_state(struct drm_device *dev,
10472 struct drm_mode_set *set,
10473 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020010474{
Daniel Vetter9a935852012-07-05 22:34:27 +020010475 struct intel_connector *connector;
10476 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020010477 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030010478 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020010479
Damien Lespiau9abdda72013-02-13 13:29:23 +000010480 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020010481 * of connectors. For paranoia, double-check this. */
10482 WARN_ON(!set->fb && (set->num_connectors != 0));
10483 WARN_ON(set->fb && (set->num_connectors == 0));
10484
Daniel Vetter9a935852012-07-05 22:34:27 +020010485 list_for_each_entry(connector, &dev->mode_config.connector_list,
10486 base.head) {
10487 /* Otherwise traverse passed in connector list and get encoders
10488 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010489 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010490 if (set->connectors[ro] == &connector->base) {
10491 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +020010492 break;
10493 }
10494 }
10495
Daniel Vetter9a935852012-07-05 22:34:27 +020010496 /* If we disable the crtc, disable all its connectors. Also, if
10497 * the connector is on the changing crtc but not on the new
10498 * connector list, disable it. */
10499 if ((!set->fb || ro == set->num_connectors) &&
10500 connector->base.encoder &&
10501 connector->base.encoder->crtc == set->crtc) {
10502 connector->new_encoder = NULL;
10503
10504 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10505 connector->base.base.id,
10506 drm_get_connector_name(&connector->base));
10507 }
10508
10509
10510 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010511 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010512 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010513 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010514 }
10515 /* connector->new_encoder is now updated for all connectors. */
10516
10517 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020010518 list_for_each_entry(connector, &dev->mode_config.connector_list,
10519 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010520 struct drm_crtc *new_crtc;
10521
Daniel Vetter9a935852012-07-05 22:34:27 +020010522 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020010523 continue;
10524
Daniel Vetter9a935852012-07-05 22:34:27 +020010525 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020010526
10527 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010528 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020010529 new_crtc = set->crtc;
10530 }
10531
10532 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010010533 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10534 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010535 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020010536 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010537 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10538
10539 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10540 connector->base.base.id,
10541 drm_get_connector_name(&connector->base),
10542 new_crtc->base.id);
10543 }
10544
10545 /* Check for any encoders that needs to be disabled. */
10546 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10547 base.head) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010548 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010549 list_for_each_entry(connector,
10550 &dev->mode_config.connector_list,
10551 base.head) {
10552 if (connector->new_encoder == encoder) {
10553 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010554 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020010555 }
10556 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010557
10558 if (num_connectors == 0)
10559 encoder->new_crtc = NULL;
10560 else if (num_connectors > 1)
10561 return -EINVAL;
10562
Daniel Vetter9a935852012-07-05 22:34:27 +020010563 /* Only now check for crtc changes so we don't miss encoders
10564 * that will be disabled. */
10565 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010566 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010567 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010568 }
10569 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010570 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010571
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010572 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010573 crtc->new_enabled = false;
10574
10575 list_for_each_entry(encoder,
10576 &dev->mode_config.encoder_list,
10577 base.head) {
10578 if (encoder->new_crtc == crtc) {
10579 crtc->new_enabled = true;
10580 break;
10581 }
10582 }
10583
10584 if (crtc->new_enabled != crtc->base.enabled) {
10585 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10586 crtc->new_enabled ? "en" : "dis");
10587 config->mode_changed = true;
10588 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010589
10590 if (crtc->new_enabled)
10591 crtc->new_config = &crtc->config;
10592 else
10593 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010594 }
10595
Daniel Vetter2e431052012-07-04 22:42:15 +020010596 return 0;
10597}
10598
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010599static void disable_crtc_nofb(struct intel_crtc *crtc)
10600{
10601 struct drm_device *dev = crtc->base.dev;
10602 struct intel_encoder *encoder;
10603 struct intel_connector *connector;
10604
10605 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10606 pipe_name(crtc->pipe));
10607
10608 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10609 if (connector->new_encoder &&
10610 connector->new_encoder->new_crtc == crtc)
10611 connector->new_encoder = NULL;
10612 }
10613
10614 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10615 if (encoder->new_crtc == crtc)
10616 encoder->new_crtc = NULL;
10617 }
10618
10619 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010620 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010621}
10622
Daniel Vetter2e431052012-07-04 22:42:15 +020010623static int intel_crtc_set_config(struct drm_mode_set *set)
10624{
10625 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020010626 struct drm_mode_set save_set;
10627 struct intel_set_config *config;
10628 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020010629
Daniel Vetter8d3e3752012-07-05 16:09:09 +020010630 BUG_ON(!set);
10631 BUG_ON(!set->crtc);
10632 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020010633
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010010634 /* Enforce sane interface api - has been abused by the fb helper. */
10635 BUG_ON(!set->mode && set->fb);
10636 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020010637
Daniel Vetter2e431052012-07-04 22:42:15 +020010638 if (set->fb) {
10639 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10640 set->crtc->base.id, set->fb->base.id,
10641 (int)set->num_connectors, set->x, set->y);
10642 } else {
10643 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020010644 }
10645
10646 dev = set->crtc->dev;
10647
10648 ret = -ENOMEM;
10649 config = kzalloc(sizeof(*config), GFP_KERNEL);
10650 if (!config)
10651 goto out_config;
10652
10653 ret = intel_set_config_save_state(dev, config);
10654 if (ret)
10655 goto out_config;
10656
10657 save_set.crtc = set->crtc;
10658 save_set.mode = &set->crtc->mode;
10659 save_set.x = set->crtc->x;
10660 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070010661 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020010662
10663 /* Compute whether we need a full modeset, only an fb base update or no
10664 * change at all. In the future we might also check whether only the
10665 * mode changed, e.g. for LVDS where we only change the panel fitter in
10666 * such cases. */
10667 intel_set_config_compute_mode_changes(set, config);
10668
Daniel Vetter9a935852012-07-05 22:34:27 +020010669 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020010670 if (ret)
10671 goto fail;
10672
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010673 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010674 ret = intel_set_mode(set->crtc, set->mode,
10675 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010676 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +020010677 intel_crtc_wait_for_pending_flips(set->crtc);
10678
Daniel Vetter4f660f42012-07-02 09:47:37 +020010679 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020010680 set->x, set->y, set->fb);
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010681 /*
10682 * In the fastboot case this may be our only check of the
10683 * state after boot. It would be better to only do it on
10684 * the first update, but we don't have a nice way of doing that
10685 * (and really, set_config isn't used much for high freq page
10686 * flipping, so increasing its cost here shouldn't be a big
10687 * deal).
10688 */
Jani Nikulad330a952014-01-21 11:24:25 +020010689 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010690 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020010691 }
10692
Chris Wilson2d05eae2013-05-03 17:36:25 +010010693 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020010694 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10695 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020010696fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010010697 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010698
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010699 /*
10700 * HACK: if the pipe was on, but we didn't have a framebuffer,
10701 * force the pipe off to avoid oopsing in the modeset code
10702 * due to fb==NULL. This should only happen during boot since
10703 * we don't yet reconstruct the FB from the hardware state.
10704 */
10705 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10706 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10707
Chris Wilson2d05eae2013-05-03 17:36:25 +010010708 /* Try to restore the config */
10709 if (config->mode_changed &&
10710 intel_set_mode(save_set.crtc, save_set.mode,
10711 save_set.x, save_set.y, save_set.fb))
10712 DRM_ERROR("failed to restore config after modeset failure\n");
10713 }
Daniel Vetter50f56112012-07-02 09:35:43 +020010714
Daniel Vetterd9e55602012-07-04 22:16:09 +020010715out_config:
10716 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010717 return ret;
10718}
10719
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010720static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010721 .cursor_set = intel_crtc_cursor_set,
10722 .cursor_move = intel_crtc_cursor_move,
10723 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020010724 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010725 .destroy = intel_crtc_destroy,
10726 .page_flip = intel_crtc_page_flip,
10727};
10728
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010729static void intel_cpu_pll_init(struct drm_device *dev)
10730{
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010731 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010732 intel_ddi_pll_init(dev);
10733}
10734
Daniel Vetter53589012013-06-05 13:34:16 +020010735static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10736 struct intel_shared_dpll *pll,
10737 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010738{
Daniel Vetter53589012013-06-05 13:34:16 +020010739 uint32_t val;
10740
10741 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020010742 hw_state->dpll = val;
10743 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10744 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020010745
10746 return val & DPLL_VCO_ENABLE;
10747}
10748
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010749static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10750 struct intel_shared_dpll *pll)
10751{
10752 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10753 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10754}
10755
Daniel Vettere7b903d2013-06-05 13:34:14 +020010756static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10757 struct intel_shared_dpll *pll)
10758{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010759 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020010760 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020010761
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010762 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10763
10764 /* Wait for the clocks to stabilize. */
10765 POSTING_READ(PCH_DPLL(pll->id));
10766 udelay(150);
10767
10768 /* The pixel multiplier can only be updated once the
10769 * DPLL is enabled and the clocks are stable.
10770 *
10771 * So write it again.
10772 */
10773 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10774 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010775 udelay(200);
10776}
10777
10778static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10779 struct intel_shared_dpll *pll)
10780{
10781 struct drm_device *dev = dev_priv->dev;
10782 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010783
10784 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010785 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020010786 if (intel_crtc_to_shared_dpll(crtc) == pll)
10787 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
10788 }
10789
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010790 I915_WRITE(PCH_DPLL(pll->id), 0);
10791 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010792 udelay(200);
10793}
10794
Daniel Vetter46edb022013-06-05 13:34:12 +020010795static char *ibx_pch_dpll_names[] = {
10796 "PCH DPLL A",
10797 "PCH DPLL B",
10798};
10799
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010800static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010801{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010802 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010803 int i;
10804
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010805 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010806
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010807 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020010808 dev_priv->shared_dplls[i].id = i;
10809 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010810 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010811 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10812 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020010813 dev_priv->shared_dplls[i].get_hw_state =
10814 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010815 }
10816}
10817
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010818static void intel_shared_dpll_init(struct drm_device *dev)
10819{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010820 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010821
10822 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10823 ibx_pch_dpll_init(dev);
10824 else
10825 dev_priv->num_shared_dpll = 0;
10826
10827 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010828}
10829
Hannes Ederb358d0a2008-12-18 21:18:47 +010010830static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080010831{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010832 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010833 struct intel_crtc *intel_crtc;
10834 int i;
10835
Daniel Vetter955382f2013-09-19 14:05:45 +020010836 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010837 if (intel_crtc == NULL)
10838 return;
10839
10840 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10841
10842 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080010843 for (i = 0; i < 256; i++) {
10844 intel_crtc->lut_r[i] = i;
10845 intel_crtc->lut_g[i] = i;
10846 intel_crtc->lut_b[i] = i;
10847 }
10848
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020010849 /*
10850 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10851 * is hooked to plane B. Hence we want plane A feeding pipe B.
10852 */
Jesse Barnes80824002009-09-10 15:28:06 -070010853 intel_crtc->pipe = pipe;
10854 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010010855 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080010856 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010010857 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070010858 }
10859
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030010860 init_waitqueue_head(&intel_crtc->vbl_wait);
10861
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080010862 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10863 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10864 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10865 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10866
Jesse Barnes79e53942008-11-07 14:24:08 -080010867 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -080010868}
10869
Jesse Barnes752aa882013-10-31 18:55:49 +020010870enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10871{
10872 struct drm_encoder *encoder = connector->base.encoder;
10873
10874 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10875
10876 if (!encoder)
10877 return INVALID_PIPE;
10878
10879 return to_intel_crtc(encoder->crtc)->pipe;
10880}
10881
Carl Worth08d7b3d2009-04-29 14:43:54 -070010882int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000010883 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070010884{
Carl Worth08d7b3d2009-04-29 14:43:54 -070010885 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +020010886 struct drm_mode_object *drmmode_obj;
10887 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010888
Daniel Vetter1cff8f62012-04-24 09:55:08 +020010889 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10890 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010891
Daniel Vetterc05422d2009-08-11 16:05:30 +020010892 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10893 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -070010894
Daniel Vetterc05422d2009-08-11 16:05:30 +020010895 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070010896 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030010897 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010898 }
10899
Daniel Vetterc05422d2009-08-11 16:05:30 +020010900 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10901 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010902
Daniel Vetterc05422d2009-08-11 16:05:30 +020010903 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010904}
10905
Daniel Vetter66a92782012-07-12 20:08:18 +020010906static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080010907{
Daniel Vetter66a92782012-07-12 20:08:18 +020010908 struct drm_device *dev = encoder->base.dev;
10909 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010910 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010911 int entry = 0;
10912
Daniel Vetter66a92782012-07-12 20:08:18 +020010913 list_for_each_entry(source_encoder,
10914 &dev->mode_config.encoder_list, base.head) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010915 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020010916 index_mask |= (1 << entry);
10917
Jesse Barnes79e53942008-11-07 14:24:08 -080010918 entry++;
10919 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010010920
Jesse Barnes79e53942008-11-07 14:24:08 -080010921 return index_mask;
10922}
10923
Chris Wilson4d302442010-12-14 19:21:29 +000010924static bool has_edp_a(struct drm_device *dev)
10925{
10926 struct drm_i915_private *dev_priv = dev->dev_private;
10927
10928 if (!IS_MOBILE(dev))
10929 return false;
10930
10931 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
10932 return false;
10933
Damien Lespiaue3589902014-02-07 19:12:50 +000010934 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000010935 return false;
10936
10937 return true;
10938}
10939
Damien Lespiauba0fbca2014-01-08 14:18:23 +000010940const char *intel_output_name(int output)
10941{
10942 static const char *names[] = {
10943 [INTEL_OUTPUT_UNUSED] = "Unused",
10944 [INTEL_OUTPUT_ANALOG] = "Analog",
10945 [INTEL_OUTPUT_DVO] = "DVO",
10946 [INTEL_OUTPUT_SDVO] = "SDVO",
10947 [INTEL_OUTPUT_LVDS] = "LVDS",
10948 [INTEL_OUTPUT_TVOUT] = "TV",
10949 [INTEL_OUTPUT_HDMI] = "HDMI",
10950 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
10951 [INTEL_OUTPUT_EDP] = "eDP",
10952 [INTEL_OUTPUT_DSI] = "DSI",
10953 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
10954 };
10955
10956 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
10957 return "Invalid";
10958
10959 return names[output];
10960}
10961
Jesse Barnes79e53942008-11-07 14:24:08 -080010962static void intel_setup_outputs(struct drm_device *dev)
10963{
Eric Anholt725e30a2009-01-22 13:01:02 -080010964 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010965 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010966 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010967
Daniel Vetterc9093352013-06-06 22:22:47 +020010968 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080010969
Ville Syrjälä7895a812014-04-09 13:28:23 +030010970 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020010971 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010972
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010973 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030010974 int found;
10975
10976 /* Haswell uses DDI functions to detect digital outputs */
10977 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
10978 /* DDI A only supports eDP */
10979 if (found)
10980 intel_ddi_init(dev, PORT_A);
10981
10982 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
10983 * register */
10984 found = I915_READ(SFUSE_STRAP);
10985
10986 if (found & SFUSE_STRAP_DDIB_DETECTED)
10987 intel_ddi_init(dev, PORT_B);
10988 if (found & SFUSE_STRAP_DDIC_DETECTED)
10989 intel_ddi_init(dev, PORT_C);
10990 if (found & SFUSE_STRAP_DDID_DETECTED)
10991 intel_ddi_init(dev, PORT_D);
10992 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010993 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020010994 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020010995
10996 if (has_edp_a(dev))
10997 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010998
Paulo Zanonidc0fa712013-02-19 16:21:46 -030010999 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080011000 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010011001 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011002 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011003 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011004 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011005 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011006 }
11007
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011008 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011009 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011010
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011011 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011012 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011013
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011014 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011015 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011016
Daniel Vetter270b3042012-10-27 15:52:05 +020011017 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011018 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070011019 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030011020 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11021 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11022 PORT_B);
11023 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11024 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11025 }
11026
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011027 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11028 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11029 PORT_C);
11030 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011031 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011032 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053011033
Jani Nikula3cfca972013-08-27 15:12:26 +030011034 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080011035 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011036 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080011037
Paulo Zanonie2debe92013-02-18 19:00:27 -030011038 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011039 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011040 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011041 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11042 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011043 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011044 }
Ma Ling27185ae2009-08-24 13:50:23 +080011045
Imre Deake7281ea2013-05-08 13:14:08 +030011046 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011047 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080011048 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011049
11050 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011051
Paulo Zanonie2debe92013-02-18 19:00:27 -030011052 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011053 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011054 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011055 }
Ma Ling27185ae2009-08-24 13:50:23 +080011056
Paulo Zanonie2debe92013-02-18 19:00:27 -030011057 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011058
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011059 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11060 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011061 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011062 }
Imre Deake7281ea2013-05-08 13:14:08 +030011063 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011064 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080011065 }
Ma Ling27185ae2009-08-24 13:50:23 +080011066
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011067 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030011068 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011069 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070011070 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011071 intel_dvo_init(dev);
11072
Zhenyu Wang103a1962009-11-27 11:44:36 +080011073 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011074 intel_tv_init(dev);
11075
Chris Wilson4ef69c72010-09-09 15:14:28 +010011076 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11077 encoder->base.possible_crtcs = encoder->crtc_mask;
11078 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020011079 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080011080 }
Chris Wilson47356eb2011-01-11 17:06:04 +000011081
Paulo Zanonidde86e22012-12-01 12:04:25 -020011082 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020011083
11084 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011085}
11086
11087static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11088{
11089 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080011090
Daniel Vetteref2d6332014-02-10 18:00:38 +010011091 drm_framebuffer_cleanup(fb);
11092 WARN_ON(!intel_fb->obj->framebuffer_references--);
11093 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080011094 kfree(intel_fb);
11095}
11096
11097static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000011098 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080011099 unsigned int *handle)
11100{
11101 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011102 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011103
Chris Wilson05394f32010-11-08 19:18:58 +000011104 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080011105}
11106
11107static const struct drm_framebuffer_funcs intel_fb_funcs = {
11108 .destroy = intel_user_framebuffer_destroy,
11109 .create_handle = intel_user_framebuffer_create_handle,
11110};
11111
Daniel Vetterb5ea6422014-03-02 21:18:00 +010011112static int intel_framebuffer_init(struct drm_device *dev,
11113 struct intel_framebuffer *intel_fb,
11114 struct drm_mode_fb_cmd2 *mode_cmd,
11115 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080011116{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011117 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011118 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080011119 int ret;
11120
Daniel Vetterdd4916c2013-10-09 21:23:51 +020011121 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11122
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011123 if (obj->tiling_mode == I915_TILING_Y) {
11124 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010011125 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011126 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011127
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011128 if (mode_cmd->pitches[0] & 63) {
11129 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11130 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010011131 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011132 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011133
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011134 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11135 pitch_limit = 32*1024;
11136 } else if (INTEL_INFO(dev)->gen >= 4) {
11137 if (obj->tiling_mode)
11138 pitch_limit = 16*1024;
11139 else
11140 pitch_limit = 32*1024;
11141 } else if (INTEL_INFO(dev)->gen >= 3) {
11142 if (obj->tiling_mode)
11143 pitch_limit = 8*1024;
11144 else
11145 pitch_limit = 16*1024;
11146 } else
11147 /* XXX DSPC is limited to 4k tiled */
11148 pitch_limit = 8*1024;
11149
11150 if (mode_cmd->pitches[0] > pitch_limit) {
11151 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11152 obj->tiling_mode ? "tiled" : "linear",
11153 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011154 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011155 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011156
11157 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011158 mode_cmd->pitches[0] != obj->stride) {
11159 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11160 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011161 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011162 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011163
Ville Syrjälä57779d02012-10-31 17:50:14 +020011164 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011165 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020011166 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011167 case DRM_FORMAT_RGB565:
11168 case DRM_FORMAT_XRGB8888:
11169 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011170 break;
11171 case DRM_FORMAT_XRGB1555:
11172 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011173 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011174 DRM_DEBUG("unsupported pixel format: %s\n",
11175 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011176 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011177 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020011178 break;
11179 case DRM_FORMAT_XBGR8888:
11180 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011181 case DRM_FORMAT_XRGB2101010:
11182 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011183 case DRM_FORMAT_XBGR2101010:
11184 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011185 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011186 DRM_DEBUG("unsupported pixel format: %s\n",
11187 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011188 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011189 }
Jesse Barnesb5626742011-06-24 12:19:27 -070011190 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020011191 case DRM_FORMAT_YUYV:
11192 case DRM_FORMAT_UYVY:
11193 case DRM_FORMAT_YVYU:
11194 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011195 if (INTEL_INFO(dev)->gen < 5) {
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 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011200 break;
11201 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011202 DRM_DEBUG("unsupported pixel format: %s\n",
11203 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010011204 return -EINVAL;
11205 }
11206
Ville Syrjälä90f9a332012-10-31 17:50:19 +020011207 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11208 if (mode_cmd->offsets[0] != 0)
11209 return -EINVAL;
11210
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011211 aligned_height = intel_align_height(dev, mode_cmd->height,
11212 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020011213 /* FIXME drm helper for size checks (especially planar formats)? */
11214 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11215 return -EINVAL;
11216
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011217 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11218 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020011219 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011220
Jesse Barnes79e53942008-11-07 14:24:08 -080011221 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11222 if (ret) {
11223 DRM_ERROR("framebuffer init failed %d\n", ret);
11224 return ret;
11225 }
11226
Jesse Barnes79e53942008-11-07 14:24:08 -080011227 return 0;
11228}
11229
Jesse Barnes79e53942008-11-07 14:24:08 -080011230static struct drm_framebuffer *
11231intel_user_framebuffer_create(struct drm_device *dev,
11232 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011233 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080011234{
Chris Wilson05394f32010-11-08 19:18:58 +000011235 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011236
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011237 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11238 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000011239 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010011240 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080011241
Chris Wilsond2dff872011-04-19 08:36:26 +010011242 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080011243}
11244
Daniel Vetter4520f532013-10-09 09:18:51 +020011245#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020011246static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020011247{
11248}
11249#endif
11250
Jesse Barnes79e53942008-11-07 14:24:08 -080011251static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080011252 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020011253 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080011254};
11255
Jesse Barnese70236a2009-09-21 10:42:27 -070011256/* Set up chip specific display functions */
11257static void intel_init_display(struct drm_device *dev)
11258{
11259 struct drm_i915_private *dev_priv = dev->dev_private;
11260
Daniel Vetteree9300b2013-06-03 22:40:22 +020011261 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11262 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030011263 else if (IS_CHERRYVIEW(dev))
11264 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020011265 else if (IS_VALLEYVIEW(dev))
11266 dev_priv->display.find_dpll = vlv_find_best_dpll;
11267 else if (IS_PINEVIEW(dev))
11268 dev_priv->display.find_dpll = pnv_find_best_dpll;
11269 else
11270 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11271
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011272 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011273 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011274 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011275 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020011276 dev_priv->display.crtc_enable = haswell_crtc_enable;
11277 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011278 dev_priv->display.off = haswell_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011279 dev_priv->display.update_primary_plane =
11280 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011281 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011282 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011283 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011284 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011285 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11286 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011287 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011288 dev_priv->display.update_primary_plane =
11289 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011290 } else if (IS_VALLEYVIEW(dev)) {
11291 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011292 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011293 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11294 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11295 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11296 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011297 dev_priv->display.update_primary_plane =
11298 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011299 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011300 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011301 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011302 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011303 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11304 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011305 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011306 dev_priv->display.update_primary_plane =
11307 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011308 }
Jesse Barnese70236a2009-09-21 10:42:27 -070011309
Jesse Barnese70236a2009-09-21 10:42:27 -070011310 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070011311 if (IS_VALLEYVIEW(dev))
11312 dev_priv->display.get_display_clock_speed =
11313 valleyview_get_display_clock_speed;
11314 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070011315 dev_priv->display.get_display_clock_speed =
11316 i945_get_display_clock_speed;
11317 else if (IS_I915G(dev))
11318 dev_priv->display.get_display_clock_speed =
11319 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011320 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011321 dev_priv->display.get_display_clock_speed =
11322 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011323 else if (IS_PINEVIEW(dev))
11324 dev_priv->display.get_display_clock_speed =
11325 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070011326 else if (IS_I915GM(dev))
11327 dev_priv->display.get_display_clock_speed =
11328 i915gm_get_display_clock_speed;
11329 else if (IS_I865G(dev))
11330 dev_priv->display.get_display_clock_speed =
11331 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020011332 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011333 dev_priv->display.get_display_clock_speed =
11334 i855_get_display_clock_speed;
11335 else /* 852, 830 */
11336 dev_priv->display.get_display_clock_speed =
11337 i830_get_display_clock_speed;
11338
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080011339 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010011340 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011341 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011342 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080011343 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011344 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011345 dev_priv->display.write_eld = ironlake_write_eld;
Paulo Zanoni9a952a02014-03-07 20:12:34 -030011346 dev_priv->display.modeset_global_resources =
11347 snb_modeset_global_resources;
Jesse Barnes357555c2011-04-28 15:09:55 -070011348 } else if (IS_IVYBRIDGE(dev)) {
11349 /* FIXME: detect B0+ stepping and use auto training */
11350 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011351 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020011352 dev_priv->display.modeset_global_resources =
11353 ivb_modeset_global_resources;
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011354 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030011355 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080011356 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020011357 dev_priv->display.modeset_global_resources =
11358 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020011359 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070011360 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080011361 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnes30a970c2013-11-04 13:48:12 -080011362 } else if (IS_VALLEYVIEW(dev)) {
11363 dev_priv->display.modeset_global_resources =
11364 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040011365 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070011366 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011367
11368 /* Default just returns -ENODEV to indicate unsupported */
11369 dev_priv->display.queue_flip = intel_default_queue_flip;
11370
11371 switch (INTEL_INFO(dev)->gen) {
11372 case 2:
11373 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11374 break;
11375
11376 case 3:
11377 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11378 break;
11379
11380 case 4:
11381 case 5:
11382 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11383 break;
11384
11385 case 6:
11386 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11387 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011388 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011389 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011390 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11391 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011392 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020011393
11394 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070011395}
11396
Jesse Barnesb690e962010-07-19 13:53:12 -070011397/*
11398 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11399 * resume, or other times. This quirk makes sure that's the case for
11400 * affected systems.
11401 */
Akshay Joshi0206e352011-08-16 15:34:10 -040011402static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070011403{
11404 struct drm_i915_private *dev_priv = dev->dev_private;
11405
11406 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011407 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011408}
11409
Keith Packard435793d2011-07-12 14:56:22 -070011410/*
11411 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11412 */
11413static void quirk_ssc_force_disable(struct drm_device *dev)
11414{
11415 struct drm_i915_private *dev_priv = dev->dev_private;
11416 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011417 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070011418}
11419
Carsten Emde4dca20e2012-03-15 15:56:26 +010011420/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010011421 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11422 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010011423 */
11424static void quirk_invert_brightness(struct drm_device *dev)
11425{
11426 struct drm_i915_private *dev_priv = dev->dev_private;
11427 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011428 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011429}
11430
11431struct intel_quirk {
11432 int device;
11433 int subsystem_vendor;
11434 int subsystem_device;
11435 void (*hook)(struct drm_device *dev);
11436};
11437
Egbert Eich5f85f1762012-10-14 15:46:38 +020011438/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11439struct intel_dmi_quirk {
11440 void (*hook)(struct drm_device *dev);
11441 const struct dmi_system_id (*dmi_id_list)[];
11442};
11443
11444static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11445{
11446 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11447 return 1;
11448}
11449
11450static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11451 {
11452 .dmi_id_list = &(const struct dmi_system_id[]) {
11453 {
11454 .callback = intel_dmi_reverse_brightness,
11455 .ident = "NCR Corporation",
11456 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11457 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11458 },
11459 },
11460 { } /* terminating entry */
11461 },
11462 .hook = quirk_invert_brightness,
11463 },
11464};
11465
Ben Widawskyc43b5632012-04-16 14:07:40 -070011466static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070011467 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040011468 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070011469
Jesse Barnesb690e962010-07-19 13:53:12 -070011470 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11471 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11472
Jesse Barnesb690e962010-07-19 13:53:12 -070011473 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11474 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11475
Chris Wilsona4945f92013-10-08 11:16:59 +010011476 /* 830 needs to leave pipe A & dpll A up */
Daniel Vetterdcdaed62012-08-12 21:19:34 +020011477 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070011478
11479 /* Lenovo U160 cannot use SSC on LVDS */
11480 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020011481
11482 /* Sony Vaio Y cannot use SSC on LVDS */
11483 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010011484
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010011485 /* Acer Aspire 5734Z must invert backlight brightness */
11486 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11487
11488 /* Acer/eMachines G725 */
11489 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11490
11491 /* Acer/eMachines e725 */
11492 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11493
11494 /* Acer/Packard Bell NCL20 */
11495 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11496
11497 /* Acer Aspire 4736Z */
11498 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020011499
11500 /* Acer Aspire 5336 */
11501 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -070011502};
11503
11504static void intel_init_quirks(struct drm_device *dev)
11505{
11506 struct pci_dev *d = dev->pdev;
11507 int i;
11508
11509 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11510 struct intel_quirk *q = &intel_quirks[i];
11511
11512 if (d->device == q->device &&
11513 (d->subsystem_vendor == q->subsystem_vendor ||
11514 q->subsystem_vendor == PCI_ANY_ID) &&
11515 (d->subsystem_device == q->subsystem_device ||
11516 q->subsystem_device == PCI_ANY_ID))
11517 q->hook(dev);
11518 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020011519 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11520 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11521 intel_dmi_quirks[i].hook(dev);
11522 }
Jesse Barnesb690e962010-07-19 13:53:12 -070011523}
11524
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011525/* Disable the VGA plane that we never use */
11526static void i915_disable_vga(struct drm_device *dev)
11527{
11528 struct drm_i915_private *dev_priv = dev->dev_private;
11529 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011530 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011531
Ville Syrjälä2b37c612014-01-22 21:32:38 +020011532 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011533 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070011534 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011535 sr1 = inb(VGA_SR_DATA);
11536 outb(sr1 | 1<<5, VGA_SR_DATA);
11537 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11538 udelay(300);
11539
11540 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11541 POSTING_READ(vga_reg);
11542}
11543
Daniel Vetterf8175862012-04-10 15:50:11 +020011544void intel_modeset_init_hw(struct drm_device *dev)
11545{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030011546 intel_prepare_ddi(dev);
11547
Daniel Vetterf8175862012-04-10 15:50:11 +020011548 intel_init_clock_gating(dev);
11549
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011550 intel_reset_dpio(dev);
Jesse Barnes40e9cf62013-10-03 11:35:46 -070011551
Daniel Vetter8090c6b2012-06-24 16:42:32 +020011552 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020011553}
11554
Imre Deak7d708ee2013-04-17 14:04:50 +030011555void intel_modeset_suspend_hw(struct drm_device *dev)
11556{
11557 intel_suspend_hw(dev);
11558}
11559
Jesse Barnes79e53942008-11-07 14:24:08 -080011560void intel_modeset_init(struct drm_device *dev)
11561{
Jesse Barnes652c3932009-08-17 13:31:43 -070011562 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000011563 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011564 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080011565 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080011566
11567 drm_mode_config_init(dev);
11568
11569 dev->mode_config.min_width = 0;
11570 dev->mode_config.min_height = 0;
11571
Dave Airlie019d96c2011-09-29 16:20:42 +010011572 dev->mode_config.preferred_depth = 24;
11573 dev->mode_config.prefer_shadow = 1;
11574
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020011575 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080011576
Jesse Barnesb690e962010-07-19 13:53:12 -070011577 intel_init_quirks(dev);
11578
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030011579 intel_init_pm(dev);
11580
Ben Widawskye3c74752013-04-05 13:12:39 -070011581 if (INTEL_INFO(dev)->num_pipes == 0)
11582 return;
11583
Jesse Barnese70236a2009-09-21 10:42:27 -070011584 intel_init_display(dev);
11585
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011586 if (IS_GEN2(dev)) {
11587 dev->mode_config.max_width = 2048;
11588 dev->mode_config.max_height = 2048;
11589 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070011590 dev->mode_config.max_width = 4096;
11591 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080011592 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011593 dev->mode_config.max_width = 8192;
11594 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080011595 }
Damien Lespiau068be562014-03-28 14:17:49 +000011596
11597 if (IS_GEN2(dev)) {
11598 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11599 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11600 } else {
11601 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11602 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11603 }
11604
Ben Widawsky5d4545a2013-01-17 12:45:15 -080011605 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011606
Zhao Yakui28c97732009-10-09 11:39:41 +080011607 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011608 INTEL_INFO(dev)->num_pipes,
11609 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080011610
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011611 for_each_pipe(pipe) {
11612 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000011613 for_each_sprite(pipe, sprite) {
11614 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011615 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030011616 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000011617 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011618 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011619 }
11620
Jesse Barnesf42bb702013-12-16 16:34:23 -080011621 intel_init_dpio(dev);
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011622 intel_reset_dpio(dev);
Jesse Barnesf42bb702013-12-16 16:34:23 -080011623
Paulo Zanoni79f689a2012-10-05 12:05:52 -030011624 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011625 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011626
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011627 /* Just disable it once at startup */
11628 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011629 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000011630
11631 /* Just in case the BIOS is doing something questionable. */
11632 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011633
Jesse Barnes8b687df2014-02-21 13:13:39 -080011634 mutex_lock(&dev->mode_config.mutex);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011635 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes8b687df2014-02-21 13:13:39 -080011636 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011637
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011638 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080011639 if (!crtc->active)
11640 continue;
11641
Jesse Barnes46f297f2014-03-07 08:57:48 -080011642 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080011643 * Note that reserving the BIOS fb up front prevents us
11644 * from stuffing other stolen allocations like the ring
11645 * on top. This prevents some ugliness at boot time, and
11646 * can even allow for smooth boot transitions if the BIOS
11647 * fb is large enough for the active pipe configuration.
11648 */
11649 if (dev_priv->display.get_plane_config) {
11650 dev_priv->display.get_plane_config(crtc,
11651 &crtc->plane_config);
11652 /*
11653 * If the fb is shared between multiple heads, we'll
11654 * just get the first one.
11655 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080011656 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011657 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080011658 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010011659}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080011660
Daniel Vetter24929352012-07-02 20:28:59 +020011661static void
11662intel_connector_break_all_links(struct intel_connector *connector)
11663{
11664 connector->base.dpms = DRM_MODE_DPMS_OFF;
11665 connector->base.encoder = NULL;
11666 connector->encoder->connectors_active = false;
11667 connector->encoder->base.crtc = NULL;
11668}
11669
Daniel Vetter7fad7982012-07-04 17:51:47 +020011670static void intel_enable_pipe_a(struct drm_device *dev)
11671{
11672 struct intel_connector *connector;
11673 struct drm_connector *crt = NULL;
11674 struct intel_load_detect_pipe load_detect_temp;
11675
11676 /* We can't just switch on the pipe A, we need to set things up with a
11677 * proper mode and output configuration. As a gross hack, enable pipe A
11678 * by enabling the load detect pipe once. */
11679 list_for_each_entry(connector,
11680 &dev->mode_config.connector_list,
11681 base.head) {
11682 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11683 crt = &connector->base;
11684 break;
11685 }
11686 }
11687
11688 if (!crt)
11689 return;
11690
11691 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11692 intel_release_load_detect_pipe(crt, &load_detect_temp);
11693
11694
11695}
11696
Daniel Vetterfa555832012-10-10 23:14:00 +020011697static bool
11698intel_check_plane_mapping(struct intel_crtc *crtc)
11699{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011700 struct drm_device *dev = crtc->base.dev;
11701 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011702 u32 reg, val;
11703
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011704 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020011705 return true;
11706
11707 reg = DSPCNTR(!crtc->plane);
11708 val = I915_READ(reg);
11709
11710 if ((val & DISPLAY_PLANE_ENABLE) &&
11711 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11712 return false;
11713
11714 return true;
11715}
11716
Daniel Vetter24929352012-07-02 20:28:59 +020011717static void intel_sanitize_crtc(struct intel_crtc *crtc)
11718{
11719 struct drm_device *dev = crtc->base.dev;
11720 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011721 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020011722
Daniel Vetter24929352012-07-02 20:28:59 +020011723 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020011724 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020011725 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11726
11727 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020011728 * disable the crtc (and hence change the state) if it is wrong. Note
11729 * that gen4+ has a fixed plane -> pipe mapping. */
11730 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020011731 struct intel_connector *connector;
11732 bool plane;
11733
Daniel Vetter24929352012-07-02 20:28:59 +020011734 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11735 crtc->base.base.id);
11736
11737 /* Pipe has the wrong plane attached and the plane is active.
11738 * Temporarily change the plane mapping and disable everything
11739 * ... */
11740 plane = crtc->plane;
11741 crtc->plane = !plane;
11742 dev_priv->display.crtc_disable(&crtc->base);
11743 crtc->plane = plane;
11744
11745 /* ... and break all links. */
11746 list_for_each_entry(connector, &dev->mode_config.connector_list,
11747 base.head) {
11748 if (connector->encoder->base.crtc != &crtc->base)
11749 continue;
11750
11751 intel_connector_break_all_links(connector);
11752 }
11753
11754 WARN_ON(crtc->active);
11755 crtc->base.enabled = false;
11756 }
Daniel Vetter24929352012-07-02 20:28:59 +020011757
Daniel Vetter7fad7982012-07-04 17:51:47 +020011758 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11759 crtc->pipe == PIPE_A && !crtc->active) {
11760 /* BIOS forgot to enable pipe A, this mostly happens after
11761 * resume. Force-enable the pipe to fix this, the update_dpms
11762 * call below we restore the pipe to the right state, but leave
11763 * the required bits on. */
11764 intel_enable_pipe_a(dev);
11765 }
11766
Daniel Vetter24929352012-07-02 20:28:59 +020011767 /* Adjust the state of the output pipe according to whether we
11768 * have active connectors/encoders. */
11769 intel_crtc_update_dpms(&crtc->base);
11770
11771 if (crtc->active != crtc->base.enabled) {
11772 struct intel_encoder *encoder;
11773
11774 /* This can happen either due to bugs in the get_hw_state
11775 * functions or because the pipe is force-enabled due to the
11776 * pipe A quirk. */
11777 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11778 crtc->base.base.id,
11779 crtc->base.enabled ? "enabled" : "disabled",
11780 crtc->active ? "enabled" : "disabled");
11781
11782 crtc->base.enabled = crtc->active;
11783
11784 /* Because we only establish the connector -> encoder ->
11785 * crtc links if something is active, this means the
11786 * crtc is now deactivated. Break the links. connector
11787 * -> encoder links are only establish when things are
11788 * actually up, hence no need to break them. */
11789 WARN_ON(crtc->active);
11790
11791 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11792 WARN_ON(encoder->connectors_active);
11793 encoder->base.crtc = NULL;
11794 }
11795 }
Daniel Vetter4cc31482014-03-24 00:01:41 +010011796 if (crtc->active) {
11797 /*
11798 * We start out with underrun reporting disabled to avoid races.
11799 * For correct bookkeeping mark this on active crtcs.
11800 *
11801 * No protection against concurrent access is required - at
11802 * worst a fifo underrun happens which also sets this to false.
11803 */
11804 crtc->cpu_fifo_underrun_disabled = true;
11805 crtc->pch_fifo_underrun_disabled = true;
11806 }
Daniel Vetter24929352012-07-02 20:28:59 +020011807}
11808
11809static void intel_sanitize_encoder(struct intel_encoder *encoder)
11810{
11811 struct intel_connector *connector;
11812 struct drm_device *dev = encoder->base.dev;
11813
11814 /* We need to check both for a crtc link (meaning that the
11815 * encoder is active and trying to read from a pipe) and the
11816 * pipe itself being active. */
11817 bool has_active_crtc = encoder->base.crtc &&
11818 to_intel_crtc(encoder->base.crtc)->active;
11819
11820 if (encoder->connectors_active && !has_active_crtc) {
11821 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11822 encoder->base.base.id,
11823 drm_get_encoder_name(&encoder->base));
11824
11825 /* Connector is active, but has no active pipe. This is
11826 * fallout from our resume register restoring. Disable
11827 * the encoder manually again. */
11828 if (encoder->base.crtc) {
11829 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11830 encoder->base.base.id,
11831 drm_get_encoder_name(&encoder->base));
11832 encoder->disable(encoder);
11833 }
11834
11835 /* Inconsistent output/port/pipe state happens presumably due to
11836 * a bug in one of the get_hw_state functions. Or someplace else
11837 * in our code, like the register restore mess on resume. Clamp
11838 * things to off as a safer default. */
11839 list_for_each_entry(connector,
11840 &dev->mode_config.connector_list,
11841 base.head) {
11842 if (connector->encoder != encoder)
11843 continue;
11844
11845 intel_connector_break_all_links(connector);
11846 }
11847 }
11848 /* Enabled encoders without active connectors will be fixed in
11849 * the crtc fixup. */
11850}
11851
Imre Deak04098752014-02-18 00:02:16 +020011852void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011853{
11854 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011855 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011856
Imre Deak04098752014-02-18 00:02:16 +020011857 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11858 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11859 i915_disable_vga(dev);
11860 }
11861}
11862
11863void i915_redisable_vga(struct drm_device *dev)
11864{
11865 struct drm_i915_private *dev_priv = dev->dev_private;
11866
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011867 /* This function can be called both from intel_modeset_setup_hw_state or
11868 * at a very early point in our resume sequence, where the power well
11869 * structures are not yet restored. Since this function is at a very
11870 * paranoid "someone might have enabled VGA while we were not looking"
11871 * level, just check if the power well is enabled instead of trying to
11872 * follow the "don't touch the power well if we don't need it" policy
11873 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020011874 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011875 return;
11876
Imre Deak04098752014-02-18 00:02:16 +020011877 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011878}
11879
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011880static bool primary_get_hw_state(struct intel_crtc *crtc)
11881{
11882 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11883
11884 if (!crtc->active)
11885 return false;
11886
11887 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11888}
11889
Daniel Vetter30e984d2013-06-05 13:34:17 +020011890static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020011891{
11892 struct drm_i915_private *dev_priv = dev->dev_private;
11893 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020011894 struct intel_crtc *crtc;
11895 struct intel_encoder *encoder;
11896 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020011897 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020011898
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011899 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010011900 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020011901
Daniel Vetter99535992014-04-13 12:00:33 +020011902 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11903
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011904 crtc->active = dev_priv->display.get_pipe_config(crtc,
11905 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011906
11907 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011908 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020011909
11910 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
11911 crtc->base.base.id,
11912 crtc->active ? "enabled" : "disabled");
11913 }
11914
Daniel Vetter53589012013-06-05 13:34:16 +020011915 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011916 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011917 intel_ddi_setup_hw_pll_state(dev);
11918
Daniel Vetter53589012013-06-05 13:34:16 +020011919 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11920 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11921
11922 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
11923 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011924 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020011925 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11926 pll->active++;
11927 }
11928 pll->refcount = pll->active;
11929
Daniel Vetter35c95372013-07-17 06:55:04 +020011930 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
11931 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020011932 }
11933
Daniel Vetter24929352012-07-02 20:28:59 +020011934 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
11935 base.head) {
11936 pipe = 0;
11937
11938 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011939 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
11940 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010011941 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011942 } else {
11943 encoder->base.crtc = NULL;
11944 }
11945
11946 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011947 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020011948 encoder->base.base.id,
11949 drm_get_encoder_name(&encoder->base),
11950 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011951 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020011952 }
11953
11954 list_for_each_entry(connector, &dev->mode_config.connector_list,
11955 base.head) {
11956 if (connector->get_hw_state(connector)) {
11957 connector->base.dpms = DRM_MODE_DPMS_ON;
11958 connector->encoder->connectors_active = true;
11959 connector->base.encoder = &connector->encoder->base;
11960 } else {
11961 connector->base.dpms = DRM_MODE_DPMS_OFF;
11962 connector->base.encoder = NULL;
11963 }
11964 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
11965 connector->base.base.id,
11966 drm_get_connector_name(&connector->base),
11967 connector->base.encoder ? "enabled" : "disabled");
11968 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020011969}
11970
11971/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
11972 * and i915 state tracking structures. */
11973void intel_modeset_setup_hw_state(struct drm_device *dev,
11974 bool force_restore)
11975{
11976 struct drm_i915_private *dev_priv = dev->dev_private;
11977 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020011978 struct intel_crtc *crtc;
11979 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020011980 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020011981
11982 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020011983
Jesse Barnesbabea612013-06-26 18:57:38 +030011984 /*
11985 * Now that we have the config, copy it to each CRTC struct
11986 * Note that this could go away if we move to using crtc_config
11987 * checking everywhere.
11988 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011989 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020011990 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080011991 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030011992 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
11993 crtc->base.base.id);
11994 drm_mode_debug_printmodeline(&crtc->base.mode);
11995 }
11996 }
11997
Daniel Vetter24929352012-07-02 20:28:59 +020011998 /* HW state is read out, now we need to sanitize this mess. */
11999 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12000 base.head) {
12001 intel_sanitize_encoder(encoder);
12002 }
12003
12004 for_each_pipe(pipe) {
12005 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12006 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012007 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020012008 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012009
Daniel Vetter35c95372013-07-17 06:55:04 +020012010 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12011 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12012
12013 if (!pll->on || pll->active)
12014 continue;
12015
12016 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12017
12018 pll->disable(dev_priv, pll);
12019 pll->on = false;
12020 }
12021
Ville Syrjälä96f90c52013-12-05 15:51:38 +020012022 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030012023 ilk_wm_get_hw_state(dev);
12024
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012025 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030012026 i915_redisable_vga(dev);
12027
Daniel Vetterf30da182013-04-11 20:22:50 +020012028 /*
12029 * We need to use raw interfaces for restoring state to avoid
12030 * checking (bogus) intermediate states.
12031 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012032 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070012033 struct drm_crtc *crtc =
12034 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020012035
12036 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070012037 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012038 }
12039 } else {
12040 intel_modeset_update_staged_output_state(dev);
12041 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012042
12043 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010012044}
12045
12046void intel_modeset_gem_init(struct drm_device *dev)
12047{
Jesse Barnes484b41d2014-03-07 08:57:55 -080012048 struct drm_crtc *c;
12049 struct intel_framebuffer *fb;
12050
Imre Deakae484342014-03-31 15:10:44 +030012051 mutex_lock(&dev->struct_mutex);
12052 intel_init_gt_powersave(dev);
12053 mutex_unlock(&dev->struct_mutex);
12054
Chris Wilson1833b132012-05-09 11:56:28 +010012055 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020012056
12057 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012058
12059 /*
12060 * Make sure any fbs we allocated at startup are properly
12061 * pinned & fenced. When we do the allocation it's too early
12062 * for this.
12063 */
12064 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012065 for_each_crtc(dev, c) {
Dave Airlie66e514c2014-04-03 07:51:54 +100012066 if (!c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -080012067 continue;
12068
Dave Airlie66e514c2014-04-03 07:51:54 +100012069 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012070 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12071 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12072 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100012073 drm_framebuffer_unreference(c->primary->fb);
12074 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080012075 }
12076 }
12077 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012078}
12079
Imre Deak4932e2c2014-02-11 17:12:48 +020012080void intel_connector_unregister(struct intel_connector *intel_connector)
12081{
12082 struct drm_connector *connector = &intel_connector->base;
12083
12084 intel_panel_destroy_backlight(connector);
12085 drm_sysfs_connector_remove(connector);
12086}
12087
Jesse Barnes79e53942008-11-07 14:24:08 -080012088void intel_modeset_cleanup(struct drm_device *dev)
12089{
Jesse Barnes652c3932009-08-17 13:31:43 -070012090 struct drm_i915_private *dev_priv = dev->dev_private;
12091 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030012092 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070012093
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012094 /*
12095 * Interrupts and polling as the first thing to avoid creating havoc.
12096 * Too much stuff here (turning of rps, connectors, ...) would
12097 * experience fancy races otherwise.
12098 */
12099 drm_irq_uninstall(dev);
12100 cancel_work_sync(&dev_priv->hotplug_work);
12101 /*
12102 * Due to the hpd irq storm handling the hotplug work can re-arm the
12103 * poll handlers. Hence disable polling after hpd handling is shut down.
12104 */
Keith Packardf87ea762010-10-03 19:36:26 -070012105 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012106
Jesse Barnes652c3932009-08-17 13:31:43 -070012107 mutex_lock(&dev->struct_mutex);
12108
Jesse Barnes723bfd72010-10-07 16:01:13 -070012109 intel_unregister_dsm_handler();
12110
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012111 for_each_crtc(dev, crtc) {
Jesse Barnes652c3932009-08-17 13:31:43 -070012112 /* Skip inactive CRTCs */
Matt Roperf4510a22014-04-01 15:22:40 -070012113 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -070012114 continue;
12115
Daniel Vetter3dec0092010-08-20 21:40:52 +020012116 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070012117 }
12118
Chris Wilson973d04f2011-07-08 12:22:37 +010012119 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012120
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012121 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000012122
Daniel Vetter930ebb42012-06-29 23:32:16 +020012123 ironlake_teardown_rc6(dev);
12124
Kristian Høgsberg69341a52009-11-11 12:19:17 -050012125 mutex_unlock(&dev->struct_mutex);
12126
Chris Wilson1630fe72011-07-08 12:22:42 +010012127 /* flush any delayed tasks or pending work */
12128 flush_scheduled_work();
12129
Jani Nikuladb31af12013-11-08 16:48:53 +020012130 /* destroy the backlight and sysfs files before encoders/connectors */
12131 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020012132 struct intel_connector *intel_connector;
12133
12134 intel_connector = to_intel_connector(connector);
12135 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020012136 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030012137
Jesse Barnes79e53942008-11-07 14:24:08 -080012138 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010012139
12140 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030012141
12142 mutex_lock(&dev->struct_mutex);
12143 intel_cleanup_gt_powersave(dev);
12144 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012145}
12146
Dave Airlie28d52042009-09-21 14:33:58 +100012147/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080012148 * Return which encoder is currently attached for connector.
12149 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010012150struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080012151{
Chris Wilsondf0e9242010-09-09 16:20:55 +010012152 return &intel_attached_encoder(connector)->base;
12153}
Jesse Barnes79e53942008-11-07 14:24:08 -080012154
Chris Wilsondf0e9242010-09-09 16:20:55 +010012155void intel_connector_attach_encoder(struct intel_connector *connector,
12156 struct intel_encoder *encoder)
12157{
12158 connector->encoder = encoder;
12159 drm_mode_connector_attach_encoder(&connector->base,
12160 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080012161}
Dave Airlie28d52042009-09-21 14:33:58 +100012162
12163/*
12164 * set vga decode state - true == enable VGA decode
12165 */
12166int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12167{
12168 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000012169 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100012170 u16 gmch_ctrl;
12171
Chris Wilson75fa0412014-02-07 18:37:02 -020012172 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12173 DRM_ERROR("failed to read control word\n");
12174 return -EIO;
12175 }
12176
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020012177 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12178 return 0;
12179
Dave Airlie28d52042009-09-21 14:33:58 +100012180 if (state)
12181 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12182 else
12183 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020012184
12185 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12186 DRM_ERROR("failed to write control word\n");
12187 return -EIO;
12188 }
12189
Dave Airlie28d52042009-09-21 14:33:58 +100012190 return 0;
12191}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012192
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012193struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012194
12195 u32 power_well_driver;
12196
Chris Wilson63b66e52013-08-08 15:12:06 +020012197 int num_transcoders;
12198
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012199 struct intel_cursor_error_state {
12200 u32 control;
12201 u32 position;
12202 u32 base;
12203 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010012204 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012205
12206 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012207 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012208 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030012209 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010012210 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012211
12212 struct intel_plane_error_state {
12213 u32 control;
12214 u32 stride;
12215 u32 size;
12216 u32 pos;
12217 u32 addr;
12218 u32 surface;
12219 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010012220 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020012221
12222 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012223 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020012224 enum transcoder cpu_transcoder;
12225
12226 u32 conf;
12227
12228 u32 htotal;
12229 u32 hblank;
12230 u32 hsync;
12231 u32 vtotal;
12232 u32 vblank;
12233 u32 vsync;
12234 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012235};
12236
12237struct intel_display_error_state *
12238intel_display_capture_error_state(struct drm_device *dev)
12239{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012240 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012241 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020012242 int transcoders[] = {
12243 TRANSCODER_A,
12244 TRANSCODER_B,
12245 TRANSCODER_C,
12246 TRANSCODER_EDP,
12247 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012248 int i;
12249
Chris Wilson63b66e52013-08-08 15:12:06 +020012250 if (INTEL_INFO(dev)->num_pipes == 0)
12251 return NULL;
12252
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012253 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012254 if (error == NULL)
12255 return NULL;
12256
Imre Deak190be112013-11-25 17:15:31 +020012257 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012258 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12259
Damien Lespiau52331302012-08-15 19:23:25 +010012260 for_each_pipe(i) {
Imre Deakddf9c532013-11-27 22:02:02 +020012261 error->pipe[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012262 intel_display_power_enabled_sw(dev_priv,
12263 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020012264 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012265 continue;
12266
Paulo Zanonia18c4c32013-03-06 20:03:12 -030012267 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
12268 error->cursor[i].control = I915_READ(CURCNTR(i));
12269 error->cursor[i].position = I915_READ(CURPOS(i));
12270 error->cursor[i].base = I915_READ(CURBASE(i));
12271 } else {
12272 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
12273 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
12274 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
12275 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012276
12277 error->plane[i].control = I915_READ(DSPCNTR(i));
12278 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012279 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030012280 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012281 error->plane[i].pos = I915_READ(DSPPOS(i));
12282 }
Paulo Zanonica291362013-03-06 20:03:14 -030012283 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12284 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012285 if (INTEL_INFO(dev)->gen >= 4) {
12286 error->plane[i].surface = I915_READ(DSPSURF(i));
12287 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12288 }
12289
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012290 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030012291
12292 if (!HAS_PCH_SPLIT(dev))
12293 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020012294 }
12295
12296 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12297 if (HAS_DDI(dev_priv->dev))
12298 error->num_transcoders++; /* Account for eDP. */
12299
12300 for (i = 0; i < error->num_transcoders; i++) {
12301 enum transcoder cpu_transcoder = transcoders[i];
12302
Imre Deakddf9c532013-11-27 22:02:02 +020012303 error->transcoder[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012304 intel_display_power_enabled_sw(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020012305 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012306 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012307 continue;
12308
Chris Wilson63b66e52013-08-08 15:12:06 +020012309 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12310
12311 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12312 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12313 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12314 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12315 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12316 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12317 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012318 }
12319
12320 return error;
12321}
12322
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012323#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12324
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012325void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012326intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012327 struct drm_device *dev,
12328 struct intel_display_error_state *error)
12329{
12330 int i;
12331
Chris Wilson63b66e52013-08-08 15:12:06 +020012332 if (!error)
12333 return;
12334
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012335 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020012336 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012337 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012338 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010012339 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012340 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020012341 err_printf(m, " Power: %s\n",
12342 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012343 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030012344 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012345
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012346 err_printf(m, "Plane [%d]:\n", i);
12347 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12348 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012349 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012350 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12351 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012352 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030012353 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012354 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012355 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012356 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12357 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012358 }
12359
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012360 err_printf(m, "Cursor [%d]:\n", i);
12361 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12362 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12363 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012364 }
Chris Wilson63b66e52013-08-08 15:12:06 +020012365
12366 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010012367 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020012368 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012369 err_printf(m, " Power: %s\n",
12370 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020012371 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12372 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12373 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12374 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12375 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12376 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12377 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12378 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012379}