blob: e79b25bbee6c49474db0fd54e702fd635805dccc [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
Jesse Barnesc1c7af62009-09-10 15:28:03 -070027#include <linux/module.h>
28#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080029#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080030#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070032#include <linux/vgaarb.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "drmP.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070037#include "i915_trace.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100038#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080039
40#include "drm_crtc_helper.h"
41
Zhenyu Wang32f9d652009-07-24 01:00:32 +080042#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
43
Jesse Barnes79e53942008-11-07 14:24:08 -080044bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080045static void intel_update_watermarks(struct drm_device *dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +020046static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010047static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080048
49typedef struct {
50 /* given values */
51 int n;
52 int m1, m2;
53 int p1, p2;
54 /* derived values */
55 int dot;
56 int vco;
57 int m;
58 int p;
59} intel_clock_t;
60
61typedef struct {
62 int min, max;
63} intel_range_t;
64
65typedef struct {
66 int dot_limit;
67 int p2_slow, p2_fast;
68} intel_p2_t;
69
70#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080071typedef struct intel_limit intel_limit_t;
72struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080073 intel_range_t dot, vco, n, m, m1, m2, p, p1;
74 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080075 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
76 int, int, intel_clock_t *);
77};
Jesse Barnes79e53942008-11-07 14:24:08 -080078
79#define I8XX_DOT_MIN 25000
80#define I8XX_DOT_MAX 350000
81#define I8XX_VCO_MIN 930000
82#define I8XX_VCO_MAX 1400000
83#define I8XX_N_MIN 3
84#define I8XX_N_MAX 16
85#define I8XX_M_MIN 96
86#define I8XX_M_MAX 140
87#define I8XX_M1_MIN 18
88#define I8XX_M1_MAX 26
89#define I8XX_M2_MIN 6
90#define I8XX_M2_MAX 16
91#define I8XX_P_MIN 4
92#define I8XX_P_MAX 128
93#define I8XX_P1_MIN 2
94#define I8XX_P1_MAX 33
95#define I8XX_P1_LVDS_MIN 1
96#define I8XX_P1_LVDS_MAX 6
97#define I8XX_P2_SLOW 4
98#define I8XX_P2_FAST 2
99#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e3952009-07-17 11:44:30 +0800100#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -0800101#define I8XX_P2_SLOW_LIMIT 165000
102
103#define I9XX_DOT_MIN 20000
104#define I9XX_DOT_MAX 400000
105#define I9XX_VCO_MIN 1400000
106#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500107#define PINEVIEW_VCO_MIN 1700000
108#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500109#define I9XX_N_MIN 1
110#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500111/* Pineview's Ncounter is a ring counter */
112#define PINEVIEW_N_MIN 3
113#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800114#define I9XX_M_MIN 70
115#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500116#define PINEVIEW_M_MIN 2
117#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800118#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500119#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800120#define I9XX_M2_MIN 5
121#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500122/* Pineview M1 is reserved, and must be 0 */
123#define PINEVIEW_M1_MIN 0
124#define PINEVIEW_M1_MAX 0
125#define PINEVIEW_M2_MIN 0
126#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800127#define I9XX_P_SDVO_DAC_MIN 5
128#define I9XX_P_SDVO_DAC_MAX 80
129#define I9XX_P_LVDS_MIN 7
130#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500131#define PINEVIEW_P_LVDS_MIN 7
132#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800133#define I9XX_P1_MIN 1
134#define I9XX_P1_MAX 8
135#define I9XX_P2_SDVO_DAC_SLOW 10
136#define I9XX_P2_SDVO_DAC_FAST 5
137#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
138#define I9XX_P2_LVDS_SLOW 14
139#define I9XX_P2_LVDS_FAST 7
140#define I9XX_P2_LVDS_SLOW_LIMIT 112000
141
Ma Ling044c7c42009-03-18 20:13:23 +0800142/*The parameter is for SDVO on G4x platform*/
143#define G4X_DOT_SDVO_MIN 25000
144#define G4X_DOT_SDVO_MAX 270000
145#define G4X_VCO_MIN 1750000
146#define G4X_VCO_MAX 3500000
147#define G4X_N_SDVO_MIN 1
148#define G4X_N_SDVO_MAX 4
149#define G4X_M_SDVO_MIN 104
150#define G4X_M_SDVO_MAX 138
151#define G4X_M1_SDVO_MIN 17
152#define G4X_M1_SDVO_MAX 23
153#define G4X_M2_SDVO_MIN 5
154#define G4X_M2_SDVO_MAX 11
155#define G4X_P_SDVO_MIN 10
156#define G4X_P_SDVO_MAX 30
157#define G4X_P1_SDVO_MIN 1
158#define G4X_P1_SDVO_MAX 3
159#define G4X_P2_SDVO_SLOW 10
160#define G4X_P2_SDVO_FAST 10
161#define G4X_P2_SDVO_LIMIT 270000
162
163/*The parameter is for HDMI_DAC on G4x platform*/
164#define G4X_DOT_HDMI_DAC_MIN 22000
165#define G4X_DOT_HDMI_DAC_MAX 400000
166#define G4X_N_HDMI_DAC_MIN 1
167#define G4X_N_HDMI_DAC_MAX 4
168#define G4X_M_HDMI_DAC_MIN 104
169#define G4X_M_HDMI_DAC_MAX 138
170#define G4X_M1_HDMI_DAC_MIN 16
171#define G4X_M1_HDMI_DAC_MAX 23
172#define G4X_M2_HDMI_DAC_MIN 5
173#define G4X_M2_HDMI_DAC_MAX 11
174#define G4X_P_HDMI_DAC_MIN 5
175#define G4X_P_HDMI_DAC_MAX 80
176#define G4X_P1_HDMI_DAC_MIN 1
177#define G4X_P1_HDMI_DAC_MAX 8
178#define G4X_P2_HDMI_DAC_SLOW 10
179#define G4X_P2_HDMI_DAC_FAST 5
180#define G4X_P2_HDMI_DAC_LIMIT 165000
181
182/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
183#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
184#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
185#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
186#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
187#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
188#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
189#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
190#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
191#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
192#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
193#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
194#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
195#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
196#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
197#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
198#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
199#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
200
201/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
202#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
203#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
204#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
205#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
206#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
207#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
208#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
209#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
210#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
211#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
212#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
213#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
214#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
215#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
216#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
217#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
218#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
219
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700220/*The parameter is for DISPLAY PORT on G4x platform*/
221#define G4X_DOT_DISPLAY_PORT_MIN 161670
222#define G4X_DOT_DISPLAY_PORT_MAX 227000
223#define G4X_N_DISPLAY_PORT_MIN 1
224#define G4X_N_DISPLAY_PORT_MAX 2
225#define G4X_M_DISPLAY_PORT_MIN 97
226#define G4X_M_DISPLAY_PORT_MAX 108
227#define G4X_M1_DISPLAY_PORT_MIN 0x10
228#define G4X_M1_DISPLAY_PORT_MAX 0x12
229#define G4X_M2_DISPLAY_PORT_MIN 0x05
230#define G4X_M2_DISPLAY_PORT_MAX 0x06
231#define G4X_P_DISPLAY_PORT_MIN 10
232#define G4X_P_DISPLAY_PORT_MAX 20
233#define G4X_P1_DISPLAY_PORT_MIN 1
234#define G4X_P1_DISPLAY_PORT_MAX 2
235#define G4X_P2_DISPLAY_PORT_SLOW 10
236#define G4X_P2_DISPLAY_PORT_FAST 10
237#define G4X_P2_DISPLAY_PORT_LIMIT 0
238
Eric Anholtbad720f2009-10-22 16:11:14 -0700239/* Ironlake / Sandybridge */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800240/* as we calculate clock using (register_value + 2) for
241 N/M1/M2, so here the range value for them is (actual_value-2).
242 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500243#define IRONLAKE_DOT_MIN 25000
244#define IRONLAKE_DOT_MAX 350000
245#define IRONLAKE_VCO_MIN 1760000
246#define IRONLAKE_VCO_MAX 3510000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500247#define IRONLAKE_M1_MIN 12
Zhao Yakuia59e3852010-01-06 22:05:57 +0800248#define IRONLAKE_M1_MAX 22
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500249#define IRONLAKE_M2_MIN 5
250#define IRONLAKE_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500251#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800252
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800253/* We have parameter ranges for different type of outputs. */
254
255/* DAC & HDMI Refclk 120Mhz */
256#define IRONLAKE_DAC_N_MIN 1
257#define IRONLAKE_DAC_N_MAX 5
258#define IRONLAKE_DAC_M_MIN 79
259#define IRONLAKE_DAC_M_MAX 127
260#define IRONLAKE_DAC_P_MIN 5
261#define IRONLAKE_DAC_P_MAX 80
262#define IRONLAKE_DAC_P1_MIN 1
263#define IRONLAKE_DAC_P1_MAX 8
264#define IRONLAKE_DAC_P2_SLOW 10
265#define IRONLAKE_DAC_P2_FAST 5
266
267/* LVDS single-channel 120Mhz refclk */
268#define IRONLAKE_LVDS_S_N_MIN 1
269#define IRONLAKE_LVDS_S_N_MAX 3
270#define IRONLAKE_LVDS_S_M_MIN 79
271#define IRONLAKE_LVDS_S_M_MAX 118
272#define IRONLAKE_LVDS_S_P_MIN 28
273#define IRONLAKE_LVDS_S_P_MAX 112
274#define IRONLAKE_LVDS_S_P1_MIN 2
275#define IRONLAKE_LVDS_S_P1_MAX 8
276#define IRONLAKE_LVDS_S_P2_SLOW 14
277#define IRONLAKE_LVDS_S_P2_FAST 14
278
279/* LVDS dual-channel 120Mhz refclk */
280#define IRONLAKE_LVDS_D_N_MIN 1
281#define IRONLAKE_LVDS_D_N_MAX 3
282#define IRONLAKE_LVDS_D_M_MIN 79
283#define IRONLAKE_LVDS_D_M_MAX 127
284#define IRONLAKE_LVDS_D_P_MIN 14
285#define IRONLAKE_LVDS_D_P_MAX 56
286#define IRONLAKE_LVDS_D_P1_MIN 2
287#define IRONLAKE_LVDS_D_P1_MAX 8
288#define IRONLAKE_LVDS_D_P2_SLOW 7
289#define IRONLAKE_LVDS_D_P2_FAST 7
290
291/* LVDS single-channel 100Mhz refclk */
292#define IRONLAKE_LVDS_S_SSC_N_MIN 1
293#define IRONLAKE_LVDS_S_SSC_N_MAX 2
294#define IRONLAKE_LVDS_S_SSC_M_MIN 79
295#define IRONLAKE_LVDS_S_SSC_M_MAX 126
296#define IRONLAKE_LVDS_S_SSC_P_MIN 28
297#define IRONLAKE_LVDS_S_SSC_P_MAX 112
298#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
299#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
300#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
301#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
302
303/* LVDS dual-channel 100Mhz refclk */
304#define IRONLAKE_LVDS_D_SSC_N_MIN 1
305#define IRONLAKE_LVDS_D_SSC_N_MAX 3
306#define IRONLAKE_LVDS_D_SSC_M_MIN 79
307#define IRONLAKE_LVDS_D_SSC_M_MAX 126
308#define IRONLAKE_LVDS_D_SSC_P_MIN 14
309#define IRONLAKE_LVDS_D_SSC_P_MAX 42
310#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
311#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
312#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
313#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
314
315/* DisplayPort */
316#define IRONLAKE_DP_N_MIN 1
317#define IRONLAKE_DP_N_MAX 2
318#define IRONLAKE_DP_M_MIN 81
319#define IRONLAKE_DP_M_MAX 90
320#define IRONLAKE_DP_P_MIN 10
321#define IRONLAKE_DP_P_MAX 20
322#define IRONLAKE_DP_P2_FAST 10
323#define IRONLAKE_DP_P2_SLOW 10
324#define IRONLAKE_DP_P2_LIMIT 0
325#define IRONLAKE_DP_P1_MIN 1
326#define IRONLAKE_DP_P1_MAX 2
Zhao Yakui45476682009-12-31 16:06:04 +0800327
Jesse Barnes2377b742010-07-07 14:06:43 -0700328/* FDI */
329#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
330
Ma Lingd4906092009-03-18 20:13:27 +0800331static bool
332intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
333 int target, int refclk, intel_clock_t *best_clock);
334static bool
335intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
336 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800337
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700338static bool
339intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
340 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800341static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500342intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
343 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700344
Chris Wilson021357a2010-09-07 20:54:59 +0100345static inline u32 /* units of 100MHz */
346intel_fdi_link_freq(struct drm_device *dev)
347{
Chris Wilson8b99e682010-10-13 09:59:17 +0100348 if (IS_GEN5(dev)) {
349 struct drm_i915_private *dev_priv = dev->dev_private;
350 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
351 } else
352 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100353}
354
Keith Packarde4b36692009-06-05 19:22:17 -0700355static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800356 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
357 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
358 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
359 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
360 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
361 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
362 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
363 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
364 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
365 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800366 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700367};
368
369static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800370 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
371 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
372 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
373 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
374 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
375 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
376 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
377 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
378 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
379 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800380 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700381};
382
383static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800384 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
385 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
386 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
387 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
388 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
389 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
390 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
391 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
392 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
393 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800394 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700395};
396
397static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800398 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
399 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
400 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
401 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
402 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
403 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
404 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
405 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
406 /* The single-channel range is 25-112Mhz, and dual-channel
407 * is 80-224Mhz. Prefer single channel as much as possible.
408 */
409 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
410 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800411 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700412};
413
Ma Ling044c7c42009-03-18 20:13:23 +0800414 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700415static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800416 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
417 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
418 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
419 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
420 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
421 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
422 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
423 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
424 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
425 .p2_slow = G4X_P2_SDVO_SLOW,
426 .p2_fast = G4X_P2_SDVO_FAST
427 },
Ma Lingd4906092009-03-18 20:13:27 +0800428 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700429};
430
431static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800432 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
433 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
434 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
435 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
436 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
437 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
438 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
439 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
440 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
441 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
442 .p2_fast = G4X_P2_HDMI_DAC_FAST
443 },
Ma Lingd4906092009-03-18 20:13:27 +0800444 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700445};
446
447static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800448 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
449 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
450 .vco = { .min = G4X_VCO_MIN,
451 .max = G4X_VCO_MAX },
452 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
453 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
454 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
455 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
456 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
457 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
458 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
459 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
460 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
461 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
462 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
463 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
464 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
465 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
466 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
467 },
Ma Lingd4906092009-03-18 20:13:27 +0800468 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700469};
470
471static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800472 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
473 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
474 .vco = { .min = G4X_VCO_MIN,
475 .max = G4X_VCO_MAX },
476 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
477 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
478 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
479 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
480 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
481 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
482 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
483 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
484 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
485 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
486 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
487 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
488 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
489 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
490 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
491 },
Ma Lingd4906092009-03-18 20:13:27 +0800492 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700493};
494
495static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700496 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
497 .max = G4X_DOT_DISPLAY_PORT_MAX },
498 .vco = { .min = G4X_VCO_MIN,
499 .max = G4X_VCO_MAX},
500 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
501 .max = G4X_N_DISPLAY_PORT_MAX },
502 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
503 .max = G4X_M_DISPLAY_PORT_MAX },
504 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
505 .max = G4X_M1_DISPLAY_PORT_MAX },
506 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
507 .max = G4X_M2_DISPLAY_PORT_MAX },
508 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
509 .max = G4X_P_DISPLAY_PORT_MAX },
510 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
511 .max = G4X_P1_DISPLAY_PORT_MAX},
512 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
513 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
514 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
515 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700516};
517
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500518static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800519 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500520 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
521 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
522 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
523 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
524 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800525 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
526 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
527 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
528 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800529 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700530};
531
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500532static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800533 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500534 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
535 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
536 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
537 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
538 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
539 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800540 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500541 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800542 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
543 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800544 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700545};
546
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800547static const intel_limit_t intel_limits_ironlake_dac = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500548 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
549 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800550 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
551 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500552 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
553 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800554 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
555 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500556 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800557 .p2_slow = IRONLAKE_DAC_P2_SLOW,
558 .p2_fast = IRONLAKE_DAC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800559 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700560};
561
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800562static const intel_limit_t intel_limits_ironlake_single_lvds = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500563 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
564 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800565 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
566 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500567 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
568 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800569 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
570 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500571 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800572 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
573 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
574 .find_pll = intel_g4x_find_best_PLL,
575};
576
577static const intel_limit_t intel_limits_ironlake_dual_lvds = {
578 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
579 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
580 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
581 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
582 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
583 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
584 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
585 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
586 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
587 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
588 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
589 .find_pll = intel_g4x_find_best_PLL,
590};
591
592static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
593 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
594 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
595 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
596 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
597 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
598 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
599 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
600 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
601 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
602 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
603 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
604 .find_pll = intel_g4x_find_best_PLL,
605};
606
607static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
608 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
609 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
610 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
611 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
612 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
613 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
614 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
615 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
616 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
617 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
618 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800619 .find_pll = intel_g4x_find_best_PLL,
620};
621
622static const intel_limit_t intel_limits_ironlake_display_port = {
623 .dot = { .min = IRONLAKE_DOT_MIN,
624 .max = IRONLAKE_DOT_MAX },
625 .vco = { .min = IRONLAKE_VCO_MIN,
626 .max = IRONLAKE_VCO_MAX},
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800627 .n = { .min = IRONLAKE_DP_N_MIN,
628 .max = IRONLAKE_DP_N_MAX },
629 .m = { .min = IRONLAKE_DP_M_MIN,
630 .max = IRONLAKE_DP_M_MAX },
Zhao Yakui45476682009-12-31 16:06:04 +0800631 .m1 = { .min = IRONLAKE_M1_MIN,
632 .max = IRONLAKE_M1_MAX },
633 .m2 = { .min = IRONLAKE_M2_MIN,
634 .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800635 .p = { .min = IRONLAKE_DP_P_MIN,
636 .max = IRONLAKE_DP_P_MAX },
637 .p1 = { .min = IRONLAKE_DP_P1_MIN,
638 .max = IRONLAKE_DP_P1_MAX},
639 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
640 .p2_slow = IRONLAKE_DP_P2_SLOW,
641 .p2_fast = IRONLAKE_DP_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800642 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800643};
644
Chris Wilson1b894b52010-12-14 20:04:54 +0000645static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
646 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800647{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800648 struct drm_device *dev = crtc->dev;
649 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800650 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800651
652 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800653 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
654 LVDS_CLKB_POWER_UP) {
655 /* LVDS dual channel */
Chris Wilson1b894b52010-12-14 20:04:54 +0000656 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800657 limit = &intel_limits_ironlake_dual_lvds_100m;
658 else
659 limit = &intel_limits_ironlake_dual_lvds;
660 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000661 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800662 limit = &intel_limits_ironlake_single_lvds_100m;
663 else
664 limit = &intel_limits_ironlake_single_lvds;
665 }
666 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800667 HAS_eDP)
668 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800669 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800670 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800671
672 return limit;
673}
674
Ma Ling044c7c42009-03-18 20:13:23 +0800675static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
676{
677 struct drm_device *dev = crtc->dev;
678 struct drm_i915_private *dev_priv = dev->dev_private;
679 const intel_limit_t *limit;
680
681 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
682 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
683 LVDS_CLKB_POWER_UP)
684 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700685 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800686 else
687 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700688 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800689 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
690 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700691 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800692 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700693 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700694 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700695 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800696 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700697 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800698
699 return limit;
700}
701
Chris Wilson1b894b52010-12-14 20:04:54 +0000702static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800703{
704 struct drm_device *dev = crtc->dev;
705 const intel_limit_t *limit;
706
Eric Anholtbad720f2009-10-22 16:11:14 -0700707 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000708 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800709 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800710 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500711 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800712 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500713 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800714 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500715 limit = &intel_limits_pineview_sdvo;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100716 } else if (!IS_GEN2(dev)) {
717 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
718 limit = &intel_limits_i9xx_lvds;
719 else
720 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800721 } else {
722 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700723 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800724 else
Keith Packarde4b36692009-06-05 19:22:17 -0700725 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800726 }
727 return limit;
728}
729
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500730/* m1 is reserved as 0 in Pineview, n is a ring counter */
731static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800732{
Shaohua Li21778322009-02-23 15:19:16 +0800733 clock->m = clock->m2 + 2;
734 clock->p = clock->p1 * clock->p2;
735 clock->vco = refclk * clock->m / clock->n;
736 clock->dot = clock->vco / clock->p;
737}
738
739static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
740{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500741 if (IS_PINEVIEW(dev)) {
742 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800743 return;
744 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800745 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
746 clock->p = clock->p1 * clock->p2;
747 clock->vco = refclk * clock->m / (clock->n + 2);
748 clock->dot = clock->vco / clock->p;
749}
750
Jesse Barnes79e53942008-11-07 14:24:08 -0800751/**
752 * Returns whether any output on the specified pipe is of the specified type
753 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100754bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800755{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100756 struct drm_device *dev = crtc->dev;
757 struct drm_mode_config *mode_config = &dev->mode_config;
758 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800759
Chris Wilson4ef69c72010-09-09 15:14:28 +0100760 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
761 if (encoder->base.crtc == crtc && encoder->type == type)
762 return true;
763
764 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800765}
766
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800767#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800768/**
769 * Returns whether the given set of divisors are valid for a given refclk with
770 * the given connectors.
771 */
772
Chris Wilson1b894b52010-12-14 20:04:54 +0000773static bool intel_PLL_is_valid(struct drm_device *dev,
774 const intel_limit_t *limit,
775 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800776{
Jesse Barnes79e53942008-11-07 14:24:08 -0800777 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
778 INTELPllInvalid ("p1 out of range\n");
779 if (clock->p < limit->p.min || limit->p.max < clock->p)
780 INTELPllInvalid ("p out of range\n");
781 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
782 INTELPllInvalid ("m2 out of range\n");
783 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
784 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500785 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800786 INTELPllInvalid ("m1 <= m2\n");
787 if (clock->m < limit->m.min || limit->m.max < clock->m)
788 INTELPllInvalid ("m out of range\n");
789 if (clock->n < limit->n.min || limit->n.max < clock->n)
790 INTELPllInvalid ("n out of range\n");
791 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
792 INTELPllInvalid ("vco out of range\n");
793 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
794 * connector, etc., rather than just a single range.
795 */
796 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
797 INTELPllInvalid ("dot out of range\n");
798
799 return true;
800}
801
Ma Lingd4906092009-03-18 20:13:27 +0800802static bool
803intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
804 int target, int refclk, intel_clock_t *best_clock)
805
Jesse Barnes79e53942008-11-07 14:24:08 -0800806{
807 struct drm_device *dev = crtc->dev;
808 struct drm_i915_private *dev_priv = dev->dev_private;
809 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800810 int err = target;
811
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200812 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800813 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800814 /*
815 * For LVDS, if the panel is on, just rely on its current
816 * settings for dual-channel. We haven't figured out how to
817 * reliably set up different single/dual channel state, if we
818 * even can.
819 */
820 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
821 LVDS_CLKB_POWER_UP)
822 clock.p2 = limit->p2.p2_fast;
823 else
824 clock.p2 = limit->p2.p2_slow;
825 } else {
826 if (target < limit->p2.dot_limit)
827 clock.p2 = limit->p2.p2_slow;
828 else
829 clock.p2 = limit->p2.p2_fast;
830 }
831
832 memset (best_clock, 0, sizeof (*best_clock));
833
Zhao Yakui42158662009-11-20 11:24:18 +0800834 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
835 clock.m1++) {
836 for (clock.m2 = limit->m2.min;
837 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500838 /* m1 is always 0 in Pineview */
839 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800840 break;
841 for (clock.n = limit->n.min;
842 clock.n <= limit->n.max; clock.n++) {
843 for (clock.p1 = limit->p1.min;
844 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800845 int this_err;
846
Shaohua Li21778322009-02-23 15:19:16 +0800847 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000848 if (!intel_PLL_is_valid(dev, limit,
849 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800850 continue;
851
852 this_err = abs(clock.dot - target);
853 if (this_err < err) {
854 *best_clock = clock;
855 err = this_err;
856 }
857 }
858 }
859 }
860 }
861
862 return (err != target);
863}
864
Ma Lingd4906092009-03-18 20:13:27 +0800865static bool
866intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
867 int target, int refclk, intel_clock_t *best_clock)
868{
869 struct drm_device *dev = crtc->dev;
870 struct drm_i915_private *dev_priv = dev->dev_private;
871 intel_clock_t clock;
872 int max_n;
873 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400874 /* approximately equals target * 0.00585 */
875 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800876 found = false;
877
878 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800879 int lvds_reg;
880
Eric Anholtc619eed2010-01-28 16:45:52 -0800881 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800882 lvds_reg = PCH_LVDS;
883 else
884 lvds_reg = LVDS;
885 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800886 LVDS_CLKB_POWER_UP)
887 clock.p2 = limit->p2.p2_fast;
888 else
889 clock.p2 = limit->p2.p2_slow;
890 } else {
891 if (target < limit->p2.dot_limit)
892 clock.p2 = limit->p2.p2_slow;
893 else
894 clock.p2 = limit->p2.p2_fast;
895 }
896
897 memset(best_clock, 0, sizeof(*best_clock));
898 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200899 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800900 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200901 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800902 for (clock.m1 = limit->m1.max;
903 clock.m1 >= limit->m1.min; clock.m1--) {
904 for (clock.m2 = limit->m2.max;
905 clock.m2 >= limit->m2.min; clock.m2--) {
906 for (clock.p1 = limit->p1.max;
907 clock.p1 >= limit->p1.min; clock.p1--) {
908 int this_err;
909
Shaohua Li21778322009-02-23 15:19:16 +0800910 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000911 if (!intel_PLL_is_valid(dev, limit,
912 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800913 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000914
915 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800916 if (this_err < err_most) {
917 *best_clock = clock;
918 err_most = this_err;
919 max_n = clock.n;
920 found = true;
921 }
922 }
923 }
924 }
925 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800926 return found;
927}
Ma Lingd4906092009-03-18 20:13:27 +0800928
Zhenyu Wang2c072452009-06-05 15:38:42 +0800929static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500930intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
931 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800932{
933 struct drm_device *dev = crtc->dev;
934 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800935
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800936 if (target < 200000) {
937 clock.n = 1;
938 clock.p1 = 2;
939 clock.p2 = 10;
940 clock.m1 = 12;
941 clock.m2 = 9;
942 } else {
943 clock.n = 2;
944 clock.p1 = 1;
945 clock.p2 = 10;
946 clock.m1 = 14;
947 clock.m2 = 8;
948 }
949 intel_clock(dev, refclk, &clock);
950 memcpy(best_clock, &clock, sizeof(intel_clock_t));
951 return true;
952}
953
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700954/* DisplayPort has only two frequencies, 162MHz and 270MHz */
955static bool
956intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
957 int target, int refclk, intel_clock_t *best_clock)
958{
Chris Wilson5eddb702010-09-11 13:48:45 +0100959 intel_clock_t clock;
960 if (target < 200000) {
961 clock.p1 = 2;
962 clock.p2 = 10;
963 clock.n = 2;
964 clock.m1 = 23;
965 clock.m2 = 8;
966 } else {
967 clock.p1 = 1;
968 clock.p2 = 10;
969 clock.n = 1;
970 clock.m1 = 14;
971 clock.m2 = 2;
972 }
973 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
974 clock.p = (clock.p1 * clock.p2);
975 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
976 clock.vco = 0;
977 memcpy(best_clock, &clock, sizeof(intel_clock_t));
978 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700979}
980
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700981/**
982 * intel_wait_for_vblank - wait for vblank on a given pipe
983 * @dev: drm device
984 * @pipe: pipe to wait for
985 *
986 * Wait for vblank to occur on a given pipe. Needed for various bits of
987 * mode setting code.
988 */
989void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800990{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700991 struct drm_i915_private *dev_priv = dev->dev_private;
992 int pipestat_reg = (pipe == 0 ? PIPEASTAT : PIPEBSTAT);
993
Chris Wilson300387c2010-09-05 20:25:43 +0100994 /* Clear existing vblank status. Note this will clear any other
995 * sticky status fields as well.
996 *
997 * This races with i915_driver_irq_handler() with the result
998 * that either function could miss a vblank event. Here it is not
999 * fatal, as we will either wait upon the next vblank interrupt or
1000 * timeout. Generally speaking intel_wait_for_vblank() is only
1001 * called during modeset at which time the GPU should be idle and
1002 * should *not* be performing page flips and thus not waiting on
1003 * vblanks...
1004 * Currently, the result of us stealing a vblank from the irq
1005 * handler is that a single frame will be skipped during swapbuffers.
1006 */
1007 I915_WRITE(pipestat_reg,
1008 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
1009
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001010 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +01001011 if (wait_for(I915_READ(pipestat_reg) &
1012 PIPE_VBLANK_INTERRUPT_STATUS,
1013 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001014 DRM_DEBUG_KMS("vblank wait timed out\n");
1015}
1016
Keith Packardab7ad7f2010-10-03 00:33:06 -07001017/*
1018 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001019 * @dev: drm device
1020 * @pipe: pipe to wait for
1021 *
1022 * After disabling a pipe, we can't wait for vblank in the usual way,
1023 * spinning on the vblank interrupt status bit, since we won't actually
1024 * see an interrupt when the pipe is disabled.
1025 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001026 * On Gen4 and above:
1027 * wait for the pipe register state bit to turn off
1028 *
1029 * Otherwise:
1030 * wait for the display line value to settle (it usually
1031 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001032 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001033 */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001034void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001035{
1036 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001037
Keith Packardab7ad7f2010-10-03 00:33:06 -07001038 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +01001039 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001040
Keith Packardab7ad7f2010-10-03 00:33:06 -07001041 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001042 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1043 100))
Keith Packardab7ad7f2010-10-03 00:33:06 -07001044 DRM_DEBUG_KMS("pipe_off wait timed out\n");
1045 } else {
1046 u32 last_line;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001047 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -07001048 unsigned long timeout = jiffies + msecs_to_jiffies(100);
1049
1050 /* Wait for the display line to settle */
1051 do {
Chris Wilson58e10eb2010-10-03 10:56:11 +01001052 last_line = I915_READ(reg) & DSL_LINEMASK;
Keith Packardab7ad7f2010-10-03 00:33:06 -07001053 mdelay(5);
Chris Wilson58e10eb2010-10-03 10:56:11 +01001054 } while (((I915_READ(reg) & DSL_LINEMASK) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -07001055 time_after(timeout, jiffies));
1056 if (time_after(jiffies, timeout))
1057 DRM_DEBUG_KMS("pipe_off wait timed out\n");
1058 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001059}
1060
Jesse Barnes80824002009-09-10 15:28:06 -07001061static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1062{
1063 struct drm_device *dev = crtc->dev;
1064 struct drm_i915_private *dev_priv = dev->dev_private;
1065 struct drm_framebuffer *fb = crtc->fb;
1066 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001067 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes80824002009-09-10 15:28:06 -07001068 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1069 int plane, i;
1070 u32 fbc_ctl, fbc_ctl2;
1071
Chris Wilsonbed4a672010-09-11 10:47:47 +01001072 if (fb->pitch == dev_priv->cfb_pitch &&
Chris Wilson05394f32010-11-08 19:18:58 +00001073 obj->fence_reg == dev_priv->cfb_fence &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001074 intel_crtc->plane == dev_priv->cfb_plane &&
1075 I915_READ(FBC_CONTROL) & FBC_CTL_EN)
1076 return;
1077
1078 i8xx_disable_fbc(dev);
1079
Jesse Barnes80824002009-09-10 15:28:06 -07001080 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
1081
1082 if (fb->pitch < dev_priv->cfb_pitch)
1083 dev_priv->cfb_pitch = fb->pitch;
1084
1085 /* FBC_CTL wants 64B units */
1086 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
Chris Wilson05394f32010-11-08 19:18:58 +00001087 dev_priv->cfb_fence = obj->fence_reg;
Jesse Barnes80824002009-09-10 15:28:06 -07001088 dev_priv->cfb_plane = intel_crtc->plane;
1089 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1090
1091 /* Clear old tags */
1092 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1093 I915_WRITE(FBC_TAG + (i * 4), 0);
1094
1095 /* Set it up... */
1096 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
Chris Wilson05394f32010-11-08 19:18:58 +00001097 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes80824002009-09-10 15:28:06 -07001098 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1099 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1100 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1101
1102 /* enable it... */
1103 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001104 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001105 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001106 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1107 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
Chris Wilson05394f32010-11-08 19:18:58 +00001108 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes80824002009-09-10 15:28:06 -07001109 fbc_ctl |= dev_priv->cfb_fence;
1110 I915_WRITE(FBC_CONTROL, fbc_ctl);
1111
Zhao Yakui28c97732009-10-09 11:39:41 +08001112 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Chris Wilson5eddb702010-09-11 13:48:45 +01001113 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
Jesse Barnes80824002009-09-10 15:28:06 -07001114}
1115
1116void i8xx_disable_fbc(struct drm_device *dev)
1117{
1118 struct drm_i915_private *dev_priv = dev->dev_private;
1119 u32 fbc_ctl;
1120
1121 /* Disable compression */
1122 fbc_ctl = I915_READ(FBC_CONTROL);
Chris Wilsona5cad622010-09-22 13:15:10 +01001123 if ((fbc_ctl & FBC_CTL_EN) == 0)
1124 return;
1125
Jesse Barnes80824002009-09-10 15:28:06 -07001126 fbc_ctl &= ~FBC_CTL_EN;
1127 I915_WRITE(FBC_CONTROL, fbc_ctl);
1128
1129 /* Wait for compressing bit to clear */
Chris Wilson481b6af2010-08-23 17:43:35 +01001130 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
Chris Wilson913d8d12010-08-07 11:01:35 +01001131 DRM_DEBUG_KMS("FBC idle timed out\n");
1132 return;
Jesse Barnes9517a922010-05-21 09:40:45 -07001133 }
Jesse Barnes80824002009-09-10 15:28:06 -07001134
Zhao Yakui28c97732009-10-09 11:39:41 +08001135 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001136}
1137
Adam Jacksonee5382a2010-04-23 11:17:39 -04001138static bool i8xx_fbc_enabled(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001139{
Jesse Barnes80824002009-09-10 15:28:06 -07001140 struct drm_i915_private *dev_priv = dev->dev_private;
1141
1142 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1143}
1144
Jesse Barnes74dff282009-09-14 15:39:40 -07001145static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1146{
1147 struct drm_device *dev = crtc->dev;
1148 struct drm_i915_private *dev_priv = dev->dev_private;
1149 struct drm_framebuffer *fb = crtc->fb;
1150 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001151 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes74dff282009-09-14 15:39:40 -07001152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5eddb702010-09-11 13:48:45 +01001153 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Jesse Barnes74dff282009-09-14 15:39:40 -07001154 unsigned long stall_watermark = 200;
1155 u32 dpfc_ctl;
1156
Chris Wilsonbed4a672010-09-11 10:47:47 +01001157 dpfc_ctl = I915_READ(DPFC_CONTROL);
1158 if (dpfc_ctl & DPFC_CTL_EN) {
1159 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
Chris Wilson05394f32010-11-08 19:18:58 +00001160 dev_priv->cfb_fence == obj->fence_reg &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001161 dev_priv->cfb_plane == intel_crtc->plane &&
1162 dev_priv->cfb_y == crtc->y)
1163 return;
1164
1165 I915_WRITE(DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1166 POSTING_READ(DPFC_CONTROL);
1167 intel_wait_for_vblank(dev, intel_crtc->pipe);
1168 }
1169
Jesse Barnes74dff282009-09-14 15:39:40 -07001170 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
Chris Wilson05394f32010-11-08 19:18:58 +00001171 dev_priv->cfb_fence = obj->fence_reg;
Jesse Barnes74dff282009-09-14 15:39:40 -07001172 dev_priv->cfb_plane = intel_crtc->plane;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001173 dev_priv->cfb_y = crtc->y;
Jesse Barnes74dff282009-09-14 15:39:40 -07001174
1175 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
Chris Wilson05394f32010-11-08 19:18:58 +00001176 if (obj->tiling_mode != I915_TILING_NONE) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001177 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1178 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1179 } else {
1180 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1181 }
1182
Jesse Barnes74dff282009-09-14 15:39:40 -07001183 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1184 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1185 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1186 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1187
1188 /* enable it... */
1189 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1190
Zhao Yakui28c97732009-10-09 11:39:41 +08001191 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001192}
1193
1194void g4x_disable_fbc(struct drm_device *dev)
1195{
1196 struct drm_i915_private *dev_priv = dev->dev_private;
1197 u32 dpfc_ctl;
1198
1199 /* Disable compression */
1200 dpfc_ctl = I915_READ(DPFC_CONTROL);
Chris Wilsonbed4a672010-09-11 10:47:47 +01001201 if (dpfc_ctl & DPFC_CTL_EN) {
1202 dpfc_ctl &= ~DPFC_CTL_EN;
1203 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
Jesse Barnes74dff282009-09-14 15:39:40 -07001204
Chris Wilsonbed4a672010-09-11 10:47:47 +01001205 DRM_DEBUG_KMS("disabled FBC\n");
1206 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001207}
1208
Adam Jacksonee5382a2010-04-23 11:17:39 -04001209static bool g4x_fbc_enabled(struct drm_device *dev)
Jesse Barnes74dff282009-09-14 15:39:40 -07001210{
Jesse Barnes74dff282009-09-14 15:39:40 -07001211 struct drm_i915_private *dev_priv = dev->dev_private;
1212
1213 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1214}
1215
Jesse Barnes4efe0702011-01-18 11:25:41 -08001216static void sandybridge_blit_fbc_update(struct drm_device *dev)
1217{
1218 struct drm_i915_private *dev_priv = dev->dev_private;
1219 u32 blt_ecoskpd;
1220
1221 /* Make sure blitter notifies FBC of writes */
1222 __gen6_force_wake_get(dev_priv);
1223 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
1224 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
1225 GEN6_BLITTER_LOCK_SHIFT;
1226 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1227 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
1228 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1229 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
1230 GEN6_BLITTER_LOCK_SHIFT);
1231 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1232 POSTING_READ(GEN6_BLITTER_ECOSKPD);
1233 __gen6_force_wake_put(dev_priv);
1234}
1235
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001236static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1237{
1238 struct drm_device *dev = crtc->dev;
1239 struct drm_i915_private *dev_priv = dev->dev_private;
1240 struct drm_framebuffer *fb = crtc->fb;
1241 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001242 struct drm_i915_gem_object *obj = intel_fb->obj;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001243 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5eddb702010-09-11 13:48:45 +01001244 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001245 unsigned long stall_watermark = 200;
1246 u32 dpfc_ctl;
1247
Chris Wilsonbed4a672010-09-11 10:47:47 +01001248 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
1249 if (dpfc_ctl & DPFC_CTL_EN) {
1250 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
Chris Wilson05394f32010-11-08 19:18:58 +00001251 dev_priv->cfb_fence == obj->fence_reg &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001252 dev_priv->cfb_plane == intel_crtc->plane &&
Chris Wilson05394f32010-11-08 19:18:58 +00001253 dev_priv->cfb_offset == obj->gtt_offset &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001254 dev_priv->cfb_y == crtc->y)
1255 return;
1256
1257 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1258 POSTING_READ(ILK_DPFC_CONTROL);
1259 intel_wait_for_vblank(dev, intel_crtc->pipe);
1260 }
1261
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001262 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
Chris Wilson05394f32010-11-08 19:18:58 +00001263 dev_priv->cfb_fence = obj->fence_reg;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001264 dev_priv->cfb_plane = intel_crtc->plane;
Chris Wilson05394f32010-11-08 19:18:58 +00001265 dev_priv->cfb_offset = obj->gtt_offset;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001266 dev_priv->cfb_y = crtc->y;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001267
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001268 dpfc_ctl &= DPFC_RESERVED;
1269 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
Chris Wilson05394f32010-11-08 19:18:58 +00001270 if (obj->tiling_mode != I915_TILING_NONE) {
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001271 dpfc_ctl |= (DPFC_CTL_FENCE_EN | dev_priv->cfb_fence);
1272 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
1273 } else {
1274 I915_WRITE(ILK_DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1275 }
1276
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001277 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1278 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1279 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1280 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
Chris Wilson05394f32010-11-08 19:18:58 +00001281 I915_WRITE(ILK_FBC_RT_BASE, obj->gtt_offset | ILK_FBC_RT_VALID);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001282 /* enable it... */
Chris Wilsonbed4a672010-09-11 10:47:47 +01001283 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001284
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001285 if (IS_GEN6(dev)) {
1286 I915_WRITE(SNB_DPFC_CTL_SA,
1287 SNB_CPU_FENCE_ENABLE | dev_priv->cfb_fence);
1288 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
Jesse Barnes4efe0702011-01-18 11:25:41 -08001289 sandybridge_blit_fbc_update(dev);
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001290 }
1291
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001292 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
1293}
1294
1295void ironlake_disable_fbc(struct drm_device *dev)
1296{
1297 struct drm_i915_private *dev_priv = dev->dev_private;
1298 u32 dpfc_ctl;
1299
1300 /* Disable compression */
1301 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
Chris Wilsonbed4a672010-09-11 10:47:47 +01001302 if (dpfc_ctl & DPFC_CTL_EN) {
1303 dpfc_ctl &= ~DPFC_CTL_EN;
1304 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001305
Chris Wilsonbed4a672010-09-11 10:47:47 +01001306 DRM_DEBUG_KMS("disabled FBC\n");
1307 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001308}
1309
1310static bool ironlake_fbc_enabled(struct drm_device *dev)
1311{
1312 struct drm_i915_private *dev_priv = dev->dev_private;
1313
1314 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
1315}
1316
Adam Jacksonee5382a2010-04-23 11:17:39 -04001317bool intel_fbc_enabled(struct drm_device *dev)
1318{
1319 struct drm_i915_private *dev_priv = dev->dev_private;
1320
1321 if (!dev_priv->display.fbc_enabled)
1322 return false;
1323
1324 return dev_priv->display.fbc_enabled(dev);
1325}
1326
1327void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1328{
1329 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1330
1331 if (!dev_priv->display.enable_fbc)
1332 return;
1333
1334 dev_priv->display.enable_fbc(crtc, interval);
1335}
1336
1337void intel_disable_fbc(struct drm_device *dev)
1338{
1339 struct drm_i915_private *dev_priv = dev->dev_private;
1340
1341 if (!dev_priv->display.disable_fbc)
1342 return;
1343
1344 dev_priv->display.disable_fbc(dev);
1345}
1346
Jesse Barnes80824002009-09-10 15:28:06 -07001347/**
1348 * intel_update_fbc - enable/disable FBC as needed
Chris Wilsonbed4a672010-09-11 10:47:47 +01001349 * @dev: the drm_device
Jesse Barnes80824002009-09-10 15:28:06 -07001350 *
1351 * Set up the framebuffer compression hardware at mode set time. We
1352 * enable it if possible:
1353 * - plane A only (on pre-965)
1354 * - no pixel mulitply/line duplication
1355 * - no alpha buffer discard
1356 * - no dual wide
1357 * - framebuffer <= 2048 in width, 1536 in height
1358 *
1359 * We can't assume that any compression will take place (worst case),
1360 * so the compressed buffer has to be the same size as the uncompressed
1361 * one. It also must reside (along with the line length buffer) in
1362 * stolen memory.
1363 *
1364 * We need to enable/disable FBC on a global basis.
1365 */
Chris Wilsonbed4a672010-09-11 10:47:47 +01001366static void intel_update_fbc(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001367{
Jesse Barnes80824002009-09-10 15:28:06 -07001368 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001369 struct drm_crtc *crtc = NULL, *tmp_crtc;
1370 struct intel_crtc *intel_crtc;
1371 struct drm_framebuffer *fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001372 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001373 struct drm_i915_gem_object *obj;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001374
1375 DRM_DEBUG_KMS("\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001376
1377 if (!i915_powersave)
1378 return;
1379
Adam Jacksonee5382a2010-04-23 11:17:39 -04001380 if (!I915_HAS_FBC(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07001381 return;
1382
Jesse Barnes80824002009-09-10 15:28:06 -07001383 /*
1384 * If FBC is already on, we just have to verify that we can
1385 * keep it that way...
1386 * Need to disable if:
Jesse Barnes9c928d12010-07-23 15:20:00 -07001387 * - more than one pipe is active
Jesse Barnes80824002009-09-10 15:28:06 -07001388 * - changing FBC params (stride, fence, mode)
1389 * - new fb is too large to fit in compressed buffer
1390 * - going to an unsupported config (interlace, pixel multiply, etc.)
1391 */
Jesse Barnes9c928d12010-07-23 15:20:00 -07001392 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001393 if (tmp_crtc->enabled) {
1394 if (crtc) {
1395 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
1396 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
1397 goto out_disable;
1398 }
1399 crtc = tmp_crtc;
1400 }
Jesse Barnes9c928d12010-07-23 15:20:00 -07001401 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001402
1403 if (!crtc || crtc->fb == NULL) {
1404 DRM_DEBUG_KMS("no output, disabling\n");
1405 dev_priv->no_fbc_reason = FBC_NO_OUTPUT;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001406 goto out_disable;
1407 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001408
1409 intel_crtc = to_intel_crtc(crtc);
1410 fb = crtc->fb;
1411 intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001412 obj = intel_fb->obj;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001413
Chris Wilson05394f32010-11-08 19:18:58 +00001414 if (intel_fb->obj->base.size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001415 DRM_DEBUG_KMS("framebuffer too large, disabling "
Chris Wilson5eddb702010-09-11 13:48:45 +01001416 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001417 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001418 goto out_disable;
1419 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001420 if ((crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) ||
1421 (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001422 DRM_DEBUG_KMS("mode incompatible with compression, "
Chris Wilson5eddb702010-09-11 13:48:45 +01001423 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001424 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001425 goto out_disable;
1426 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001427 if ((crtc->mode.hdisplay > 2048) ||
1428 (crtc->mode.vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001429 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001430 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001431 goto out_disable;
1432 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001433 if ((IS_I915GM(dev) || IS_I945GM(dev)) && intel_crtc->plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001434 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001435 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001436 goto out_disable;
1437 }
Chris Wilson05394f32010-11-08 19:18:58 +00001438 if (obj->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001439 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001440 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001441 goto out_disable;
1442 }
1443
Jason Wesselc924b932010-08-05 09:22:32 -05001444 /* If the kernel debugger is active, always disable compression */
1445 if (in_dbg_master())
1446 goto out_disable;
1447
Chris Wilsonbed4a672010-09-11 10:47:47 +01001448 intel_enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001449 return;
1450
1451out_disable:
Jesse Barnes80824002009-09-10 15:28:06 -07001452 /* Multiple disables should be harmless */
Chris Wilsona9394062010-05-27 13:18:16 +01001453 if (intel_fbc_enabled(dev)) {
1454 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Adam Jacksonee5382a2010-04-23 11:17:39 -04001455 intel_disable_fbc(dev);
Chris Wilsona9394062010-05-27 13:18:16 +01001456 }
Jesse Barnes80824002009-09-10 15:28:06 -07001457}
1458
Chris Wilson127bd2a2010-07-23 23:32:05 +01001459int
Chris Wilson48b956c2010-09-14 12:50:34 +01001460intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001461 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001462 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001463{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001464 u32 alignment;
1465 int ret;
1466
Chris Wilson05394f32010-11-08 19:18:58 +00001467 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001468 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001469 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1470 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001471 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001472 alignment = 4 * 1024;
1473 else
1474 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001475 break;
1476 case I915_TILING_X:
1477 /* pin() will align the object as required by fence */
1478 alignment = 0;
1479 break;
1480 case I915_TILING_Y:
1481 /* FIXME: Is this true? */
1482 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1483 return -EINVAL;
1484 default:
1485 BUG();
1486 }
1487
Daniel Vetter75e9e912010-11-04 17:11:09 +01001488 ret = i915_gem_object_pin(obj, alignment, true);
Chris Wilson48b956c2010-09-14 12:50:34 +01001489 if (ret)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001490 return ret;
1491
Chris Wilson48b956c2010-09-14 12:50:34 +01001492 ret = i915_gem_object_set_to_display_plane(obj, pipelined);
1493 if (ret)
1494 goto err_unpin;
Chris Wilson72133422010-09-13 23:56:38 +01001495
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001496 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1497 * fence, whereas 965+ only requires a fence if using
1498 * framebuffer compression. For simplicity, we always install
1499 * a fence as the cost is not that onerous.
1500 */
Chris Wilson05394f32010-11-08 19:18:58 +00001501 if (obj->tiling_mode != I915_TILING_NONE) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00001502 ret = i915_gem_object_get_fence(obj, pipelined, false);
Chris Wilson48b956c2010-09-14 12:50:34 +01001503 if (ret)
1504 goto err_unpin;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001505 }
1506
1507 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001508
1509err_unpin:
1510 i915_gem_object_unpin(obj);
1511 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001512}
1513
Jesse Barnes81255562010-08-02 12:07:50 -07001514/* Assume fb object is pinned & idle & fenced and just update base pointers */
1515static int
1516intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -05001517 int x, int y, enum mode_set_atomic state)
Jesse Barnes81255562010-08-02 12:07:50 -07001518{
1519 struct drm_device *dev = crtc->dev;
1520 struct drm_i915_private *dev_priv = dev->dev_private;
1521 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1522 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001523 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001524 int plane = intel_crtc->plane;
1525 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001526 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001527 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001528
1529 switch (plane) {
1530 case 0:
1531 case 1:
1532 break;
1533 default:
1534 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1535 return -EINVAL;
1536 }
1537
1538 intel_fb = to_intel_framebuffer(fb);
1539 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001540
Chris Wilson5eddb702010-09-11 13:48:45 +01001541 reg = DSPCNTR(plane);
1542 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001543 /* Mask out pixel format bits in case we change it */
1544 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1545 switch (fb->bits_per_pixel) {
1546 case 8:
1547 dspcntr |= DISPPLANE_8BPP;
1548 break;
1549 case 16:
1550 if (fb->depth == 15)
1551 dspcntr |= DISPPLANE_15_16BPP;
1552 else
1553 dspcntr |= DISPPLANE_16BPP;
1554 break;
1555 case 24:
1556 case 32:
1557 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1558 break;
1559 default:
1560 DRM_ERROR("Unknown color depth\n");
1561 return -EINVAL;
1562 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001563 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00001564 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07001565 dspcntr |= DISPPLANE_TILED;
1566 else
1567 dspcntr &= ~DISPPLANE_TILED;
1568 }
1569
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001570 if (HAS_PCH_SPLIT(dev))
Jesse Barnes81255562010-08-02 12:07:50 -07001571 /* must disable */
1572 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1573
Chris Wilson5eddb702010-09-11 13:48:45 +01001574 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001575
Chris Wilson05394f32010-11-08 19:18:58 +00001576 Start = obj->gtt_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001577 Offset = y * fb->pitch + x * (fb->bits_per_pixel / 8);
1578
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001579 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
1580 Start, Offset, x, y, fb->pitch);
Chris Wilson5eddb702010-09-11 13:48:45 +01001581 I915_WRITE(DSPSTRIDE(plane), fb->pitch);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001582 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001583 I915_WRITE(DSPSURF(plane), Start);
1584 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1585 I915_WRITE(DSPADDR(plane), Offset);
1586 } else
1587 I915_WRITE(DSPADDR(plane), Start + Offset);
1588 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001589
Chris Wilsonbed4a672010-09-11 10:47:47 +01001590 intel_update_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02001591 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07001592
1593 return 0;
1594}
1595
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001596static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001597intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1598 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001599{
1600 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08001601 struct drm_i915_master_private *master_priv;
1602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001603 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001604
1605 /* no fb bound */
1606 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001607 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001608 return 0;
1609 }
1610
Chris Wilson265db952010-09-20 15:41:01 +01001611 switch (intel_crtc->plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001612 case 0:
1613 case 1:
1614 break;
1615 default:
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001616 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001617 }
1618
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001619 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01001620 ret = intel_pin_and_fence_fb_obj(dev,
1621 to_intel_framebuffer(crtc->fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001622 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001623 if (ret != 0) {
1624 mutex_unlock(&dev->struct_mutex);
1625 return ret;
1626 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001627
Chris Wilson265db952010-09-20 15:41:01 +01001628 if (old_fb) {
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01001629 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001630 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
Chris Wilson265db952010-09-20 15:41:01 +01001631
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01001632 wait_event(dev_priv->pending_flip_queue,
Chris Wilson86b27d82011-02-11 20:47:45 +00001633 atomic_read(&dev_priv->mm.wedged) ||
Chris Wilson05394f32010-11-08 19:18:58 +00001634 atomic_read(&obj->pending_flip) == 0);
Chris Wilson85345512010-11-13 09:49:11 +00001635
1636 /* Big Hammer, we also need to ensure that any pending
1637 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
1638 * current scanout is retired before unpinning the old
1639 * framebuffer.
Chris Wilson86b27d82011-02-11 20:47:45 +00001640 *
1641 * This should only fail upon a hung GPU, in which case we
1642 * can safely continue.
Chris Wilson85345512010-11-13 09:49:11 +00001643 */
Chris Wilson05394f32010-11-08 19:18:58 +00001644 ret = i915_gem_object_flush_gpu(obj, false);
Chris Wilson86b27d82011-02-11 20:47:45 +00001645 (void) ret;
Chris Wilson265db952010-09-20 15:41:01 +01001646 }
1647
Jason Wessel21c74a82010-10-13 14:09:44 -05001648 ret = intel_pipe_set_base_atomic(crtc, crtc->fb, x, y,
1649 LEAVE_ATOMIC_MODE_SET);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001650 if (ret) {
Chris Wilson265db952010-09-20 15:41:01 +01001651 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001652 mutex_unlock(&dev->struct_mutex);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001653 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001654 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001655
Chris Wilsonb7f1de22010-12-14 16:09:31 +00001656 if (old_fb) {
1657 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson265db952010-09-20 15:41:01 +01001658 i915_gem_object_unpin(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00001659 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001660
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001661 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001662
1663 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001664 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001665
1666 master_priv = dev->primary->master->driver_priv;
1667 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001668 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001669
Chris Wilson265db952010-09-20 15:41:01 +01001670 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001671 master_priv->sarea_priv->pipeB_x = x;
1672 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001673 } else {
1674 master_priv->sarea_priv->pipeA_x = x;
1675 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001676 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001677
1678 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001679}
1680
Chris Wilson5eddb702010-09-11 13:48:45 +01001681static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001682{
1683 struct drm_device *dev = crtc->dev;
1684 struct drm_i915_private *dev_priv = dev->dev_private;
1685 u32 dpa_ctl;
1686
Zhao Yakui28c97732009-10-09 11:39:41 +08001687 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001688 dpa_ctl = I915_READ(DP_A);
1689 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1690
1691 if (clock < 200000) {
1692 u32 temp;
1693 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1694 /* workaround for 160Mhz:
1695 1) program 0x4600c bits 15:0 = 0x8124
1696 2) program 0x46010 bit 0 = 1
1697 3) program 0x46034 bit 24 = 1
1698 4) program 0x64000 bit 14 = 1
1699 */
1700 temp = I915_READ(0x4600c);
1701 temp &= 0xffff0000;
1702 I915_WRITE(0x4600c, temp | 0x8124);
1703
1704 temp = I915_READ(0x46010);
1705 I915_WRITE(0x46010, temp | 1);
1706
1707 temp = I915_READ(0x46034);
1708 I915_WRITE(0x46034, temp | (1 << 24));
1709 } else {
1710 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1711 }
1712 I915_WRITE(DP_A, dpa_ctl);
1713
Chris Wilson5eddb702010-09-11 13:48:45 +01001714 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001715 udelay(500);
1716}
1717
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08001718static void intel_fdi_normal_train(struct drm_crtc *crtc)
1719{
1720 struct drm_device *dev = crtc->dev;
1721 struct drm_i915_private *dev_priv = dev->dev_private;
1722 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1723 int pipe = intel_crtc->pipe;
1724 u32 reg, temp;
1725
1726 /* enable normal train */
1727 reg = FDI_TX_CTL(pipe);
1728 temp = I915_READ(reg);
1729 temp &= ~FDI_LINK_TRAIN_NONE;
1730 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
1731 I915_WRITE(reg, temp);
1732
1733 reg = FDI_RX_CTL(pipe);
1734 temp = I915_READ(reg);
1735 if (HAS_PCH_CPT(dev)) {
1736 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1737 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
1738 } else {
1739 temp &= ~FDI_LINK_TRAIN_NONE;
1740 temp |= FDI_LINK_TRAIN_NONE;
1741 }
1742 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
1743
1744 /* wait one idle pattern time */
1745 POSTING_READ(reg);
1746 udelay(1000);
1747}
1748
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001749/* The FDI link training functions for ILK/Ibexpeak. */
1750static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1751{
1752 struct drm_device *dev = crtc->dev;
1753 struct drm_i915_private *dev_priv = dev->dev_private;
1754 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1755 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01001756 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001757
Adam Jacksone1a44742010-06-25 15:32:14 -04001758 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1759 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01001760 reg = FDI_RX_IMR(pipe);
1761 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001762 temp &= ~FDI_RX_SYMBOL_LOCK;
1763 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01001764 I915_WRITE(reg, temp);
1765 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001766 udelay(150);
1767
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001768 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01001769 reg = FDI_TX_CTL(pipe);
1770 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04001771 temp &= ~(7 << 19);
1772 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001773 temp &= ~FDI_LINK_TRAIN_NONE;
1774 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01001775 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001776
Chris Wilson5eddb702010-09-11 13:48:45 +01001777 reg = FDI_RX_CTL(pipe);
1778 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001779 temp &= ~FDI_LINK_TRAIN_NONE;
1780 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01001781 I915_WRITE(reg, temp | FDI_RX_ENABLE);
1782
1783 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001784 udelay(150);
1785
Jesse Barnes5b2adf82010-10-07 16:01:15 -07001786 /* Ironlake workaround, enable clock pointer after FDI enable*/
1787 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_ENABLE);
1788
Chris Wilson5eddb702010-09-11 13:48:45 +01001789 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04001790 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001791 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001792 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1793
1794 if ((temp & FDI_RX_BIT_LOCK)) {
1795 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01001796 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001797 break;
1798 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001799 }
Adam Jacksone1a44742010-06-25 15:32:14 -04001800 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01001801 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001802
1803 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01001804 reg = FDI_TX_CTL(pipe);
1805 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001806 temp &= ~FDI_LINK_TRAIN_NONE;
1807 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01001808 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001809
Chris Wilson5eddb702010-09-11 13:48:45 +01001810 reg = FDI_RX_CTL(pipe);
1811 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001812 temp &= ~FDI_LINK_TRAIN_NONE;
1813 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01001814 I915_WRITE(reg, temp);
1815
1816 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001817 udelay(150);
1818
Chris Wilson5eddb702010-09-11 13:48:45 +01001819 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04001820 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001821 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001822 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1823
1824 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001825 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001826 DRM_DEBUG_KMS("FDI train 2 done.\n");
1827 break;
1828 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001829 }
Adam Jacksone1a44742010-06-25 15:32:14 -04001830 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01001831 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001832
1833 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07001834
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001835}
1836
Chris Wilson5eddb702010-09-11 13:48:45 +01001837static const int const snb_b_fdi_train_param [] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001838 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1839 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1840 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1841 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1842};
1843
1844/* The FDI link training functions for SNB/Cougarpoint. */
1845static void gen6_fdi_link_train(struct drm_crtc *crtc)
1846{
1847 struct drm_device *dev = crtc->dev;
1848 struct drm_i915_private *dev_priv = dev->dev_private;
1849 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1850 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01001851 u32 reg, temp, i;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001852
Adam Jacksone1a44742010-06-25 15:32:14 -04001853 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1854 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01001855 reg = FDI_RX_IMR(pipe);
1856 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001857 temp &= ~FDI_RX_SYMBOL_LOCK;
1858 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01001859 I915_WRITE(reg, temp);
1860
1861 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001862 udelay(150);
1863
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001864 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01001865 reg = FDI_TX_CTL(pipe);
1866 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04001867 temp &= ~(7 << 19);
1868 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001869 temp &= ~FDI_LINK_TRAIN_NONE;
1870 temp |= FDI_LINK_TRAIN_PATTERN_1;
1871 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1872 /* SNB-B */
1873 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01001874 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001875
Chris Wilson5eddb702010-09-11 13:48:45 +01001876 reg = FDI_RX_CTL(pipe);
1877 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001878 if (HAS_PCH_CPT(dev)) {
1879 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1880 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1881 } else {
1882 temp &= ~FDI_LINK_TRAIN_NONE;
1883 temp |= FDI_LINK_TRAIN_PATTERN_1;
1884 }
Chris Wilson5eddb702010-09-11 13:48:45 +01001885 I915_WRITE(reg, temp | FDI_RX_ENABLE);
1886
1887 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001888 udelay(150);
1889
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001890 for (i = 0; i < 4; i++ ) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001891 reg = FDI_TX_CTL(pipe);
1892 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001893 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1894 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01001895 I915_WRITE(reg, temp);
1896
1897 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001898 udelay(500);
1899
Chris Wilson5eddb702010-09-11 13:48:45 +01001900 reg = FDI_RX_IIR(pipe);
1901 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001902 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1903
1904 if (temp & FDI_RX_BIT_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001905 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001906 DRM_DEBUG_KMS("FDI train 1 done.\n");
1907 break;
1908 }
1909 }
1910 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01001911 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001912
1913 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01001914 reg = FDI_TX_CTL(pipe);
1915 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001916 temp &= ~FDI_LINK_TRAIN_NONE;
1917 temp |= FDI_LINK_TRAIN_PATTERN_2;
1918 if (IS_GEN6(dev)) {
1919 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1920 /* SNB-B */
1921 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1922 }
Chris Wilson5eddb702010-09-11 13:48:45 +01001923 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001924
Chris Wilson5eddb702010-09-11 13:48:45 +01001925 reg = FDI_RX_CTL(pipe);
1926 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001927 if (HAS_PCH_CPT(dev)) {
1928 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1929 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1930 } else {
1931 temp &= ~FDI_LINK_TRAIN_NONE;
1932 temp |= FDI_LINK_TRAIN_PATTERN_2;
1933 }
Chris Wilson5eddb702010-09-11 13:48:45 +01001934 I915_WRITE(reg, temp);
1935
1936 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001937 udelay(150);
1938
1939 for (i = 0; i < 4; i++ ) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001940 reg = FDI_TX_CTL(pipe);
1941 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001942 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1943 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01001944 I915_WRITE(reg, temp);
1945
1946 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001947 udelay(500);
1948
Chris Wilson5eddb702010-09-11 13:48:45 +01001949 reg = FDI_RX_IIR(pipe);
1950 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001951 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1952
1953 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001954 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001955 DRM_DEBUG_KMS("FDI train 2 done.\n");
1956 break;
1957 }
1958 }
1959 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01001960 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001961
1962 DRM_DEBUG_KMS("FDI train done.\n");
1963}
1964
Jesse Barnes0e23b992010-09-10 11:10:00 -07001965static void ironlake_fdi_enable(struct drm_crtc *crtc)
1966{
1967 struct drm_device *dev = crtc->dev;
1968 struct drm_i915_private *dev_priv = dev->dev_private;
1969 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1970 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01001971 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07001972
Jesse Barnesc64e3112010-09-10 11:27:03 -07001973 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01001974 I915_WRITE(FDI_RX_TUSIZE1(pipe),
1975 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07001976
Jesse Barnes0e23b992010-09-10 11:10:00 -07001977 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01001978 reg = FDI_RX_CTL(pipe);
1979 temp = I915_READ(reg);
1980 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07001981 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01001982 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
1983 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
1984
1985 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001986 udelay(200);
1987
1988 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01001989 temp = I915_READ(reg);
1990 I915_WRITE(reg, temp | FDI_PCDCLK);
1991
1992 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001993 udelay(200);
1994
1995 /* Enable CPU FDI TX PLL, always on for Ironlake */
Chris Wilson5eddb702010-09-11 13:48:45 +01001996 reg = FDI_TX_CTL(pipe);
1997 temp = I915_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001998 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001999 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
2000
2001 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002002 udelay(100);
2003 }
2004}
2005
Chris Wilson5eddb702010-09-11 13:48:45 +01002006static void intel_flush_display_plane(struct drm_device *dev,
2007 int plane)
2008{
2009 struct drm_i915_private *dev_priv = dev->dev_private;
2010 u32 reg = DSPADDR(plane);
2011 I915_WRITE(reg, I915_READ(reg));
2012}
2013
Chris Wilson6b383a72010-09-13 13:54:26 +01002014/*
2015 * When we disable a pipe, we need to clear any pending scanline wait events
2016 * to avoid hanging the ring, which we assume we are waiting on.
2017 */
2018static void intel_clear_scanline_wait(struct drm_device *dev)
2019{
2020 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8168bd42010-11-11 17:54:52 +00002021 struct intel_ring_buffer *ring;
Chris Wilson6b383a72010-09-13 13:54:26 +01002022 u32 tmp;
2023
2024 if (IS_GEN2(dev))
2025 /* Can't break the hang on i8xx */
2026 return;
2027
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002028 ring = LP_RING(dev_priv);
Chris Wilson8168bd42010-11-11 17:54:52 +00002029 tmp = I915_READ_CTL(ring);
2030 if (tmp & RING_WAIT)
2031 I915_WRITE_CTL(ring, tmp);
Chris Wilson6b383a72010-09-13 13:54:26 +01002032}
2033
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002034static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2035{
Chris Wilson05394f32010-11-08 19:18:58 +00002036 struct drm_i915_gem_object *obj;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002037 struct drm_i915_private *dev_priv;
2038
2039 if (crtc->fb == NULL)
2040 return;
2041
Chris Wilson05394f32010-11-08 19:18:58 +00002042 obj = to_intel_framebuffer(crtc->fb)->obj;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002043 dev_priv = crtc->dev->dev_private;
2044 wait_event(dev_priv->pending_flip_queue,
Chris Wilson05394f32010-11-08 19:18:58 +00002045 atomic_read(&obj->pending_flip) == 0);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002046}
2047
Jesse Barnes011b9912011-02-15 15:08:02 -08002048static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2049{
2050 struct drm_device *dev = crtc->dev;
2051 struct drm_mode_config *mode_config = &dev->mode_config;
2052 struct intel_encoder *encoder;
2053
2054 /*
2055 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2056 * must be driven by its own crtc; no sharing is possible.
2057 */
2058 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2059 if (encoder->base.crtc != crtc)
2060 continue;
2061
2062 switch (encoder->type) {
2063 case INTEL_OUTPUT_EDP:
2064 if (!intel_encoder_is_pch_edp(&encoder->base))
2065 return false;
2066 continue;
2067 }
2068 }
2069
2070 return true;
2071}
2072
Jesse Barnes6be4a602010-09-10 10:26:01 -07002073static void ironlake_crtc_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002074{
2075 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002076 struct drm_i915_private *dev_priv = dev->dev_private;
2077 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2078 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002079 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002080 u32 reg, temp;
Jesse Barnes011b9912011-02-15 15:08:02 -08002081 bool is_pch_port = false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002082
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002083 if (intel_crtc->active)
2084 return;
2085
2086 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01002087 intel_update_watermarks(dev);
2088
Jesse Barnes6be4a602010-09-10 10:26:01 -07002089 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2090 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01002091 if ((temp & LVDS_PORT_EN) == 0)
Jesse Barnes6be4a602010-09-10 10:26:01 -07002092 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002093 }
2094
Jesse Barnes011b9912011-02-15 15:08:02 -08002095 is_pch_port = intel_crtc_driving_pch(crtc);
2096
2097 if (is_pch_port)
2098 ironlake_fdi_enable(crtc);
2099 else {
2100 /* disable CPU FDI tx and PCH FDI rx */
2101 reg = FDI_TX_CTL(pipe);
2102 temp = I915_READ(reg);
2103 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2104 POSTING_READ(reg);
2105
2106 reg = FDI_RX_CTL(pipe);
2107 temp = I915_READ(reg);
2108 temp &= ~(0x7 << 16);
2109 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2110 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2111
2112 POSTING_READ(reg);
2113 udelay(100);
2114
2115 /* Ironlake workaround, disable clock pointer after downing FDI */
2116 if (HAS_PCH_IBX(dev))
2117 I915_WRITE(FDI_RX_CHICKEN(pipe),
2118 I915_READ(FDI_RX_CHICKEN(pipe) &
2119 ~FDI_RX_PHASE_SYNC_POINTER_ENABLE));
2120
2121 /* still set train pattern 1 */
2122 reg = FDI_TX_CTL(pipe);
2123 temp = I915_READ(reg);
2124 temp &= ~FDI_LINK_TRAIN_NONE;
2125 temp |= FDI_LINK_TRAIN_PATTERN_1;
2126 I915_WRITE(reg, temp);
2127
2128 reg = FDI_RX_CTL(pipe);
2129 temp = I915_READ(reg);
2130 if (HAS_PCH_CPT(dev)) {
2131 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2132 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2133 } else {
2134 temp &= ~FDI_LINK_TRAIN_NONE;
2135 temp |= FDI_LINK_TRAIN_PATTERN_1;
2136 }
2137 /* BPC in FDI rx is consistent with that in PIPECONF */
2138 temp &= ~(0x07 << 16);
2139 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2140 I915_WRITE(reg, temp);
2141
2142 POSTING_READ(reg);
2143 udelay(100);
2144 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002145
2146 /* Enable panel fitting for LVDS */
2147 if (dev_priv->pch_pf_size &&
Jesse Barnes1d850362010-10-07 16:01:10 -07002148 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
Jesse Barnes6be4a602010-09-10 10:26:01 -07002149 /* Force use of hard-coded filter coefficients
2150 * as some pre-programmed values are broken,
2151 * e.g. x201.
2152 */
2153 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1,
2154 PF_ENABLE | PF_FILTER_MED_3x3);
2155 I915_WRITE(pipe ? PFB_WIN_POS : PFA_WIN_POS,
2156 dev_priv->pch_pf_pos);
2157 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ,
2158 dev_priv->pch_pf_size);
2159 }
2160
2161 /* Enable CPU pipe */
Chris Wilson5eddb702010-09-11 13:48:45 +01002162 reg = PIPECONF(pipe);
2163 temp = I915_READ(reg);
2164 if ((temp & PIPECONF_ENABLE) == 0) {
2165 I915_WRITE(reg, temp | PIPECONF_ENABLE);
2166 POSTING_READ(reg);
Jesse Barnes17f67662010-10-07 16:01:19 -07002167 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002168 }
2169
2170 /* configure and enable CPU plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002171 reg = DSPCNTR(plane);
2172 temp = I915_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002173 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002174 I915_WRITE(reg, temp | DISPLAY_PLANE_ENABLE);
2175 intel_flush_display_plane(dev, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002176 }
2177
Jesse Barnes011b9912011-02-15 15:08:02 -08002178 /* Skip the PCH stuff if possible */
2179 if (!is_pch_port)
2180 goto done;
2181
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002182 /* For PCH output, training FDI link */
2183 if (IS_GEN6(dev))
2184 gen6_fdi_link_train(crtc);
2185 else
2186 ironlake_fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002187
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002188 /* enable PCH DPLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002189 reg = PCH_DPLL(pipe);
2190 temp = I915_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002191 if ((temp & DPLL_VCO_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002192 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2193 POSTING_READ(reg);
Chris Wilson8c4223b2010-09-10 22:33:42 +01002194 udelay(200);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002195 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002196
2197 if (HAS_PCH_CPT(dev)) {
2198 /* Be sure PCH DPLL SEL is set */
2199 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002200 if (pipe == 0 && (temp & TRANSA_DPLL_ENABLE) == 0)
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002201 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002202 else if (pipe == 1 && (temp & TRANSB_DPLL_ENABLE) == 0)
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002203 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2204 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002205 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002206
Chris Wilson5eddb702010-09-11 13:48:45 +01002207 /* set transcoder timing */
2208 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2209 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2210 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2211
2212 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2213 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2214 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002215
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002216 intel_fdi_normal_train(crtc);
2217
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002218 /* For PCH DP, enable TRANS_DP_CTL */
2219 if (HAS_PCH_CPT(dev) &&
2220 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002221 reg = TRANS_DP_CTL(pipe);
2222 temp = I915_READ(reg);
2223 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08002224 TRANS_DP_SYNC_MASK |
2225 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01002226 temp |= (TRANS_DP_OUTPUT_ENABLE |
2227 TRANS_DP_ENH_FRAMING);
Eric Anholt220cad32010-11-18 09:32:58 +08002228 temp |= TRANS_DP_8BPC;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002229
2230 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002231 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002232 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002233 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002234
2235 switch (intel_trans_dp_port_sel(crtc)) {
2236 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002237 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002238 break;
2239 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002240 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002241 break;
2242 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002243 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002244 break;
2245 default:
2246 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002247 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002248 break;
2249 }
2250
Chris Wilson5eddb702010-09-11 13:48:45 +01002251 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002252 }
2253
2254 /* enable PCH transcoder */
Chris Wilson5eddb702010-09-11 13:48:45 +01002255 reg = TRANSCONF(pipe);
2256 temp = I915_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002257 /*
2258 * make the BPC in transcoder be consistent with
2259 * that in pipeconf reg.
2260 */
2261 temp &= ~PIPE_BPC_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002262 temp |= I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK;
2263 I915_WRITE(reg, temp | TRANS_ENABLE);
2264 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Jesse Barnes17f67662010-10-07 16:01:19 -07002265 DRM_ERROR("failed to enable transcoder %d\n", pipe);
Jesse Barnes011b9912011-02-15 15:08:02 -08002266done:
Jesse Barnes6be4a602010-09-10 10:26:01 -07002267 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002268 intel_update_fbc(dev);
Chris Wilson6b383a72010-09-13 13:54:26 +01002269 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002270}
2271
2272static void ironlake_crtc_disable(struct drm_crtc *crtc)
2273{
2274 struct drm_device *dev = crtc->dev;
2275 struct drm_i915_private *dev_priv = dev->dev_private;
2276 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2277 int pipe = intel_crtc->pipe;
2278 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002279 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002280
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002281 if (!intel_crtc->active)
2282 return;
2283
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002284 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002285 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01002286 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01002287
Jesse Barnes6be4a602010-09-10 10:26:01 -07002288 /* Disable display plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002289 reg = DSPCNTR(plane);
2290 temp = I915_READ(reg);
2291 if (temp & DISPLAY_PLANE_ENABLE) {
2292 I915_WRITE(reg, temp & ~DISPLAY_PLANE_ENABLE);
2293 intel_flush_display_plane(dev, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002294 }
2295
2296 if (dev_priv->cfb_plane == plane &&
2297 dev_priv->display.disable_fbc)
2298 dev_priv->display.disable_fbc(dev);
2299
2300 /* disable cpu pipe, disable after all planes disabled */
Chris Wilson5eddb702010-09-11 13:48:45 +01002301 reg = PIPECONF(pipe);
2302 temp = I915_READ(reg);
2303 if (temp & PIPECONF_ENABLE) {
2304 I915_WRITE(reg, temp & ~PIPECONF_ENABLE);
Jesse Barnes17f67662010-10-07 16:01:19 -07002305 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002306 /* wait for cpu pipe off, pipe state */
Jesse Barnes17f67662010-10-07 16:01:19 -07002307 intel_wait_for_pipe_off(dev, intel_crtc->pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01002308 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002309
Jesse Barnes6be4a602010-09-10 10:26:01 -07002310 /* Disable PF */
2311 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1, 0);
2312 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ, 0);
2313
2314 /* disable CPU FDI tx and PCH FDI rx */
Chris Wilson5eddb702010-09-11 13:48:45 +01002315 reg = FDI_TX_CTL(pipe);
2316 temp = I915_READ(reg);
2317 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2318 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002319
Chris Wilson5eddb702010-09-11 13:48:45 +01002320 reg = FDI_RX_CTL(pipe);
2321 temp = I915_READ(reg);
2322 temp &= ~(0x7 << 16);
2323 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2324 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002325
Chris Wilson5eddb702010-09-11 13:48:45 +01002326 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002327 udelay(100);
2328
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002329 /* Ironlake workaround, disable clock pointer after downing FDI */
Zhenyu Wange07ac3a2010-11-04 09:02:54 +00002330 if (HAS_PCH_IBX(dev))
2331 I915_WRITE(FDI_RX_CHICKEN(pipe),
2332 I915_READ(FDI_RX_CHICKEN(pipe) &
2333 ~FDI_RX_PHASE_SYNC_POINTER_ENABLE));
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002334
Jesse Barnes6be4a602010-09-10 10:26:01 -07002335 /* still set train pattern 1 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002336 reg = FDI_TX_CTL(pipe);
2337 temp = I915_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002338 temp &= ~FDI_LINK_TRAIN_NONE;
2339 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002340 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002341
Chris Wilson5eddb702010-09-11 13:48:45 +01002342 reg = FDI_RX_CTL(pipe);
2343 temp = I915_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002344 if (HAS_PCH_CPT(dev)) {
2345 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2346 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2347 } else {
2348 temp &= ~FDI_LINK_TRAIN_NONE;
2349 temp |= FDI_LINK_TRAIN_PATTERN_1;
2350 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002351 /* BPC in FDI rx is consistent with that in PIPECONF */
2352 temp &= ~(0x07 << 16);
2353 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2354 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002355
Chris Wilson5eddb702010-09-11 13:48:45 +01002356 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002357 udelay(100);
2358
2359 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2360 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01002361 if (temp & LVDS_PORT_EN) {
2362 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2363 POSTING_READ(PCH_LVDS);
2364 udelay(100);
2365 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002366 }
2367
2368 /* disable PCH transcoder */
Chris Wilson5eddb702010-09-11 13:48:45 +01002369 reg = TRANSCONF(plane);
2370 temp = I915_READ(reg);
2371 if (temp & TRANS_ENABLE) {
2372 I915_WRITE(reg, temp & ~TRANS_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002373 /* wait for PCH transcoder off, transcoder state */
Chris Wilson5eddb702010-09-11 13:48:45 +01002374 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes6be4a602010-09-10 10:26:01 -07002375 DRM_ERROR("failed to disable transcoder\n");
2376 }
2377
Jesse Barnes6be4a602010-09-10 10:26:01 -07002378 if (HAS_PCH_CPT(dev)) {
2379 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002380 reg = TRANS_DP_CTL(pipe);
2381 temp = I915_READ(reg);
2382 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
2383 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002384
2385 /* disable DPLL_SEL */
2386 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002387 if (pipe == 0)
Jesse Barnes6be4a602010-09-10 10:26:01 -07002388 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2389 else
2390 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2391 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002392 }
2393
2394 /* disable PCH DPLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002395 reg = PCH_DPLL(pipe);
2396 temp = I915_READ(reg);
2397 I915_WRITE(reg, temp & ~DPLL_VCO_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002398
2399 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002400 reg = FDI_RX_CTL(pipe);
2401 temp = I915_READ(reg);
2402 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002403
2404 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002405 reg = FDI_TX_CTL(pipe);
2406 temp = I915_READ(reg);
2407 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2408
2409 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002410 udelay(100);
2411
Chris Wilson5eddb702010-09-11 13:48:45 +01002412 reg = FDI_RX_CTL(pipe);
2413 temp = I915_READ(reg);
2414 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002415
2416 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002417 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002418 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01002419
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002420 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002421 intel_update_watermarks(dev);
2422 intel_update_fbc(dev);
2423 intel_clear_scanline_wait(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002424}
2425
2426static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
2427{
2428 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2429 int pipe = intel_crtc->pipe;
2430 int plane = intel_crtc->plane;
2431
Zhenyu Wang2c072452009-06-05 15:38:42 +08002432 /* XXX: When our outputs are all unaware of DPMS modes other than off
2433 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2434 */
2435 switch (mode) {
2436 case DRM_MODE_DPMS_ON:
2437 case DRM_MODE_DPMS_STANDBY:
2438 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01002439 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002440 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01002441 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002442
Zhenyu Wang2c072452009-06-05 15:38:42 +08002443 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01002444 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002445 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002446 break;
2447 }
2448}
2449
Daniel Vetter02e792f2009-09-15 22:57:34 +02002450static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2451{
Daniel Vetter02e792f2009-09-15 22:57:34 +02002452 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01002453 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002454
Chris Wilson23f09ce2010-08-12 13:53:37 +01002455 mutex_lock(&dev->struct_mutex);
2456 (void) intel_overlay_switch_off(intel_crtc->overlay, false);
2457 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002458 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002459
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01002460 /* Let userspace switch the overlay on again. In most cases userspace
2461 * has to recompute where to put it anyway.
2462 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002463}
2464
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002465static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002466{
2467 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002468 struct drm_i915_private *dev_priv = dev->dev_private;
2469 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2470 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002471 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002472 u32 reg, temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08002473
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002474 if (intel_crtc->active)
2475 return;
2476
2477 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01002478 intel_update_watermarks(dev);
2479
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002480 /* Enable the DPLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002481 reg = DPLL(pipe);
2482 temp = I915_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002483 if ((temp & DPLL_VCO_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002484 I915_WRITE(reg, temp);
2485
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002486 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002487 POSTING_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002488 udelay(150);
Chris Wilson5eddb702010-09-11 13:48:45 +01002489
2490 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2491
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002492 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002493 POSTING_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002494 udelay(150);
Chris Wilson5eddb702010-09-11 13:48:45 +01002495
2496 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2497
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002498 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002499 POSTING_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002500 udelay(150);
2501 }
2502
2503 /* Enable the pipe */
Chris Wilson5eddb702010-09-11 13:48:45 +01002504 reg = PIPECONF(pipe);
2505 temp = I915_READ(reg);
2506 if ((temp & PIPECONF_ENABLE) == 0)
2507 I915_WRITE(reg, temp | PIPECONF_ENABLE);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002508
2509 /* Enable the plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002510 reg = DSPCNTR(plane);
2511 temp = I915_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002512 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002513 I915_WRITE(reg, temp | DISPLAY_PLANE_ENABLE);
2514 intel_flush_display_plane(dev, plane);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002515 }
2516
2517 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002518 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002519
2520 /* Give the overlay scaler a chance to enable if it's on this pipe */
2521 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01002522 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002523}
2524
2525static void i9xx_crtc_disable(struct drm_crtc *crtc)
2526{
2527 struct drm_device *dev = crtc->dev;
2528 struct drm_i915_private *dev_priv = dev->dev_private;
2529 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2530 int pipe = intel_crtc->pipe;
2531 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002532 u32 reg, temp;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002533
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002534 if (!intel_crtc->active)
2535 return;
2536
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002537 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002538 intel_crtc_wait_for_pending_flips(crtc);
2539 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002540 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01002541 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002542
2543 if (dev_priv->cfb_plane == plane &&
2544 dev_priv->display.disable_fbc)
2545 dev_priv->display.disable_fbc(dev);
2546
2547 /* Disable display plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002548 reg = DSPCNTR(plane);
2549 temp = I915_READ(reg);
2550 if (temp & DISPLAY_PLANE_ENABLE) {
2551 I915_WRITE(reg, temp & ~DISPLAY_PLANE_ENABLE);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002552 /* Flush the plane changes */
Chris Wilson5eddb702010-09-11 13:48:45 +01002553 intel_flush_display_plane(dev, plane);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002554
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002555 /* Wait for vblank for the disable to take effect */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002556 if (IS_GEN2(dev))
Chris Wilson58e10eb2010-10-03 10:56:11 +01002557 intel_wait_for_vblank(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002558 }
2559
2560 /* Don't disable pipe A or pipe A PLLs if needed */
Chris Wilson5eddb702010-09-11 13:48:45 +01002561 if (pipe == 0 && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
Chris Wilson6b383a72010-09-13 13:54:26 +01002562 goto done;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002563
2564 /* Next, disable display pipes */
Chris Wilson5eddb702010-09-11 13:48:45 +01002565 reg = PIPECONF(pipe);
2566 temp = I915_READ(reg);
2567 if (temp & PIPECONF_ENABLE) {
2568 I915_WRITE(reg, temp & ~PIPECONF_ENABLE);
2569
Chris Wilson58e10eb2010-10-03 10:56:11 +01002570 /* Wait for the pipe to turn off */
Chris Wilson5eddb702010-09-11 13:48:45 +01002571 POSTING_READ(reg);
Chris Wilson58e10eb2010-10-03 10:56:11 +01002572 intel_wait_for_pipe_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002573 }
2574
Chris Wilson5eddb702010-09-11 13:48:45 +01002575 reg = DPLL(pipe);
2576 temp = I915_READ(reg);
2577 if (temp & DPLL_VCO_ENABLE) {
2578 I915_WRITE(reg, temp & ~DPLL_VCO_ENABLE);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002579
Chris Wilson5eddb702010-09-11 13:48:45 +01002580 /* Wait for the clocks to turn off. */
2581 POSTING_READ(reg);
2582 udelay(150);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002583 }
Chris Wilson6b383a72010-09-13 13:54:26 +01002584
2585done:
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002586 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002587 intel_update_fbc(dev);
2588 intel_update_watermarks(dev);
2589 intel_clear_scanline_wait(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002590}
2591
2592static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2593{
Jesse Barnes79e53942008-11-07 14:24:08 -08002594 /* XXX: When our outputs are all unaware of DPMS modes other than off
2595 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2596 */
2597 switch (mode) {
2598 case DRM_MODE_DPMS_ON:
2599 case DRM_MODE_DPMS_STANDBY:
2600 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002601 i9xx_crtc_enable(crtc);
2602 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08002603 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002604 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002605 break;
2606 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002607}
2608
2609/**
2610 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08002611 */
2612static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2613{
2614 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002615 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002616 struct drm_i915_master_private *master_priv;
2617 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2618 int pipe = intel_crtc->pipe;
2619 bool enabled;
2620
Chris Wilson032d2a02010-09-06 16:17:22 +01002621 if (intel_crtc->dpms_mode == mode)
2622 return;
2623
Chris Wilsondebcadd2010-08-07 11:01:33 +01002624 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01002625
Jesse Barnese70236a2009-09-21 10:42:27 -07002626 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002627
2628 if (!dev->primary->master)
2629 return;
2630
2631 master_priv = dev->primary->master->driver_priv;
2632 if (!master_priv->sarea_priv)
2633 return;
2634
2635 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2636
2637 switch (pipe) {
2638 case 0:
2639 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2640 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2641 break;
2642 case 1:
2643 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2644 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2645 break;
2646 default:
2647 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2648 break;
2649 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002650}
2651
Chris Wilsoncdd59982010-09-08 16:30:16 +01002652static void intel_crtc_disable(struct drm_crtc *crtc)
2653{
2654 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2655 struct drm_device *dev = crtc->dev;
2656
2657 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2658
2659 if (crtc->fb) {
2660 mutex_lock(&dev->struct_mutex);
2661 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
2662 mutex_unlock(&dev->struct_mutex);
2663 }
2664}
2665
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002666/* Prepare for a mode set.
2667 *
2668 * Note we could be a lot smarter here. We need to figure out which outputs
2669 * will be enabled, which disabled (in short, how the config will changes)
2670 * and perform the minimum necessary steps to accomplish that, e.g. updating
2671 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
2672 * panel fitting is in the proper state, etc.
2673 */
2674static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002675{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002676 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002677}
2678
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002679static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002680{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002681 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002682}
2683
2684static void ironlake_crtc_prepare(struct drm_crtc *crtc)
2685{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002686 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002687}
2688
2689static void ironlake_crtc_commit(struct drm_crtc *crtc)
2690{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002691 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002692}
2693
2694void intel_encoder_prepare (struct drm_encoder *encoder)
2695{
2696 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2697 /* lvds has its own version of prepare see intel_lvds_prepare */
2698 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2699}
2700
2701void intel_encoder_commit (struct drm_encoder *encoder)
2702{
2703 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2704 /* lvds has its own version of commit see intel_lvds_commit */
2705 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2706}
2707
Chris Wilsonea5b2132010-08-04 13:50:23 +01002708void intel_encoder_destroy(struct drm_encoder *encoder)
2709{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002710 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002711
Chris Wilsonea5b2132010-08-04 13:50:23 +01002712 drm_encoder_cleanup(encoder);
2713 kfree(intel_encoder);
2714}
2715
Jesse Barnes79e53942008-11-07 14:24:08 -08002716static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2717 struct drm_display_mode *mode,
2718 struct drm_display_mode *adjusted_mode)
2719{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002720 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01002721
Eric Anholtbad720f2009-10-22 16:11:14 -07002722 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002723 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07002724 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
2725 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002726 }
Chris Wilson89749352010-09-12 18:25:19 +01002727
2728 /* XXX some encoders set the crtcinfo, others don't.
2729 * Obviously we need some form of conflict resolution here...
2730 */
2731 if (adjusted_mode->crtc_htotal == 0)
2732 drm_mode_set_crtcinfo(adjusted_mode, 0);
2733
Jesse Barnes79e53942008-11-07 14:24:08 -08002734 return true;
2735}
2736
Jesse Barnese70236a2009-09-21 10:42:27 -07002737static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002738{
Jesse Barnese70236a2009-09-21 10:42:27 -07002739 return 400000;
2740}
Jesse Barnes79e53942008-11-07 14:24:08 -08002741
Jesse Barnese70236a2009-09-21 10:42:27 -07002742static int i915_get_display_clock_speed(struct drm_device *dev)
2743{
2744 return 333000;
2745}
Jesse Barnes79e53942008-11-07 14:24:08 -08002746
Jesse Barnese70236a2009-09-21 10:42:27 -07002747static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2748{
2749 return 200000;
2750}
Jesse Barnes79e53942008-11-07 14:24:08 -08002751
Jesse Barnese70236a2009-09-21 10:42:27 -07002752static int i915gm_get_display_clock_speed(struct drm_device *dev)
2753{
2754 u16 gcfgc = 0;
2755
2756 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2757
2758 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002759 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002760 else {
2761 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2762 case GC_DISPLAY_CLOCK_333_MHZ:
2763 return 333000;
2764 default:
2765 case GC_DISPLAY_CLOCK_190_200_MHZ:
2766 return 190000;
2767 }
2768 }
2769}
Jesse Barnes79e53942008-11-07 14:24:08 -08002770
Jesse Barnese70236a2009-09-21 10:42:27 -07002771static int i865_get_display_clock_speed(struct drm_device *dev)
2772{
2773 return 266000;
2774}
2775
2776static int i855_get_display_clock_speed(struct drm_device *dev)
2777{
2778 u16 hpllcc = 0;
2779 /* Assume that the hardware is in the high speed state. This
2780 * should be the default.
2781 */
2782 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2783 case GC_CLOCK_133_200:
2784 case GC_CLOCK_100_200:
2785 return 200000;
2786 case GC_CLOCK_166_250:
2787 return 250000;
2788 case GC_CLOCK_100_133:
2789 return 133000;
2790 }
2791
2792 /* Shouldn't happen */
2793 return 0;
2794}
2795
2796static int i830_get_display_clock_speed(struct drm_device *dev)
2797{
2798 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002799}
2800
Zhenyu Wang2c072452009-06-05 15:38:42 +08002801struct fdi_m_n {
2802 u32 tu;
2803 u32 gmch_m;
2804 u32 gmch_n;
2805 u32 link_m;
2806 u32 link_n;
2807};
2808
2809static void
2810fdi_reduce_ratio(u32 *num, u32 *den)
2811{
2812 while (*num > 0xffffff || *den > 0xffffff) {
2813 *num >>= 1;
2814 *den >>= 1;
2815 }
2816}
2817
Zhenyu Wang2c072452009-06-05 15:38:42 +08002818static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002819ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2820 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002821{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002822 m_n->tu = 64; /* default size */
2823
Chris Wilson22ed1112010-12-04 01:01:29 +00002824 /* BUG_ON(pixel_clock > INT_MAX / 36); */
2825 m_n->gmch_m = bits_per_pixel * pixel_clock;
2826 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002827 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2828
Chris Wilson22ed1112010-12-04 01:01:29 +00002829 m_n->link_m = pixel_clock;
2830 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002831 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2832}
2833
2834
Shaohua Li7662c8b2009-06-26 11:23:55 +08002835struct intel_watermark_params {
2836 unsigned long fifo_size;
2837 unsigned long max_wm;
2838 unsigned long default_wm;
2839 unsigned long guard_size;
2840 unsigned long cacheline_size;
2841};
2842
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002843/* Pineview has different values for various configs */
2844static struct intel_watermark_params pineview_display_wm = {
2845 PINEVIEW_DISPLAY_FIFO,
2846 PINEVIEW_MAX_WM,
2847 PINEVIEW_DFT_WM,
2848 PINEVIEW_GUARD_WM,
2849 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002850};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002851static struct intel_watermark_params pineview_display_hplloff_wm = {
2852 PINEVIEW_DISPLAY_FIFO,
2853 PINEVIEW_MAX_WM,
2854 PINEVIEW_DFT_HPLLOFF_WM,
2855 PINEVIEW_GUARD_WM,
2856 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002857};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002858static struct intel_watermark_params pineview_cursor_wm = {
2859 PINEVIEW_CURSOR_FIFO,
2860 PINEVIEW_CURSOR_MAX_WM,
2861 PINEVIEW_CURSOR_DFT_WM,
2862 PINEVIEW_CURSOR_GUARD_WM,
2863 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002864};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002865static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2866 PINEVIEW_CURSOR_FIFO,
2867 PINEVIEW_CURSOR_MAX_WM,
2868 PINEVIEW_CURSOR_DFT_WM,
2869 PINEVIEW_CURSOR_GUARD_WM,
2870 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002871};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002872static struct intel_watermark_params g4x_wm_info = {
2873 G4X_FIFO_SIZE,
2874 G4X_MAX_WM,
2875 G4X_MAX_WM,
2876 2,
2877 G4X_FIFO_LINE_SIZE,
2878};
Zhao Yakui4fe5e612010-06-12 14:32:25 +08002879static struct intel_watermark_params g4x_cursor_wm_info = {
2880 I965_CURSOR_FIFO,
2881 I965_CURSOR_MAX_WM,
2882 I965_CURSOR_DFT_WM,
2883 2,
2884 G4X_FIFO_LINE_SIZE,
2885};
2886static struct intel_watermark_params i965_cursor_wm_info = {
2887 I965_CURSOR_FIFO,
2888 I965_CURSOR_MAX_WM,
2889 I965_CURSOR_DFT_WM,
2890 2,
2891 I915_FIFO_LINE_SIZE,
2892};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002893static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002894 I945_FIFO_SIZE,
2895 I915_MAX_WM,
2896 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002897 2,
2898 I915_FIFO_LINE_SIZE
2899};
2900static struct intel_watermark_params i915_wm_info = {
2901 I915_FIFO_SIZE,
2902 I915_MAX_WM,
2903 1,
2904 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002905 I915_FIFO_LINE_SIZE
2906};
2907static struct intel_watermark_params i855_wm_info = {
2908 I855GM_FIFO_SIZE,
2909 I915_MAX_WM,
2910 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002911 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002912 I830_FIFO_LINE_SIZE
2913};
2914static struct intel_watermark_params i830_wm_info = {
2915 I830_FIFO_SIZE,
2916 I915_MAX_WM,
2917 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002918 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002919 I830_FIFO_LINE_SIZE
2920};
2921
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002922static struct intel_watermark_params ironlake_display_wm_info = {
2923 ILK_DISPLAY_FIFO,
2924 ILK_DISPLAY_MAXWM,
2925 ILK_DISPLAY_DFTWM,
2926 2,
2927 ILK_FIFO_LINE_SIZE
2928};
2929
Zhao Yakuic936f442010-06-12 14:32:26 +08002930static struct intel_watermark_params ironlake_cursor_wm_info = {
2931 ILK_CURSOR_FIFO,
2932 ILK_CURSOR_MAXWM,
2933 ILK_CURSOR_DFTWM,
2934 2,
2935 ILK_FIFO_LINE_SIZE
2936};
2937
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002938static struct intel_watermark_params ironlake_display_srwm_info = {
2939 ILK_DISPLAY_SR_FIFO,
2940 ILK_DISPLAY_MAX_SRWM,
2941 ILK_DISPLAY_DFT_SRWM,
2942 2,
2943 ILK_FIFO_LINE_SIZE
2944};
2945
2946static struct intel_watermark_params ironlake_cursor_srwm_info = {
2947 ILK_CURSOR_SR_FIFO,
2948 ILK_CURSOR_MAX_SRWM,
2949 ILK_CURSOR_DFT_SRWM,
2950 2,
2951 ILK_FIFO_LINE_SIZE
2952};
2953
Yuanhan Liu13982612010-12-15 15:42:31 +08002954static struct intel_watermark_params sandybridge_display_wm_info = {
2955 SNB_DISPLAY_FIFO,
2956 SNB_DISPLAY_MAXWM,
2957 SNB_DISPLAY_DFTWM,
2958 2,
2959 SNB_FIFO_LINE_SIZE
2960};
2961
2962static struct intel_watermark_params sandybridge_cursor_wm_info = {
2963 SNB_CURSOR_FIFO,
2964 SNB_CURSOR_MAXWM,
2965 SNB_CURSOR_DFTWM,
2966 2,
2967 SNB_FIFO_LINE_SIZE
2968};
2969
2970static struct intel_watermark_params sandybridge_display_srwm_info = {
2971 SNB_DISPLAY_SR_FIFO,
2972 SNB_DISPLAY_MAX_SRWM,
2973 SNB_DISPLAY_DFT_SRWM,
2974 2,
2975 SNB_FIFO_LINE_SIZE
2976};
2977
2978static struct intel_watermark_params sandybridge_cursor_srwm_info = {
2979 SNB_CURSOR_SR_FIFO,
2980 SNB_CURSOR_MAX_SRWM,
2981 SNB_CURSOR_DFT_SRWM,
2982 2,
2983 SNB_FIFO_LINE_SIZE
2984};
2985
2986
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002987/**
2988 * intel_calculate_wm - calculate watermark level
2989 * @clock_in_khz: pixel clock
2990 * @wm: chip FIFO params
2991 * @pixel_size: display pixel size
2992 * @latency_ns: memory latency for the platform
2993 *
2994 * Calculate the watermark level (the level at which the display plane will
2995 * start fetching from memory again). Each chip has a different display
2996 * FIFO size and allocation, so the caller needs to figure that out and pass
2997 * in the correct intel_watermark_params structure.
2998 *
2999 * As the pixel clock runs, the FIFO will be drained at a rate that depends
3000 * on the pixel size. When it reaches the watermark level, it'll start
3001 * fetching FIFO line sized based chunks from memory until the FIFO fills
3002 * past the watermark point. If the FIFO drains completely, a FIFO underrun
3003 * will occur, and a display engine hang could result.
3004 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003005static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
3006 struct intel_watermark_params *wm,
3007 int pixel_size,
3008 unsigned long latency_ns)
3009{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07003010 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003011
Jesse Barnesd6604672009-09-11 12:25:56 -07003012 /*
3013 * Note: we need to make sure we don't overflow for various clock &
3014 * latency values.
3015 * clocks go from a few thousand to several hundred thousand.
3016 * latency is usually a few thousand
3017 */
3018 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
3019 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01003020 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003021
Zhao Yakui28c97732009-10-09 11:39:41 +08003022 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003023
3024 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
3025
Zhao Yakui28c97732009-10-09 11:39:41 +08003026 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003027
Jesse Barnes390c4dd2009-07-16 13:01:01 -07003028 /* Don't promote wm_size to unsigned... */
3029 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003030 wm_size = wm->max_wm;
Chris Wilsonc3add4b2010-09-08 09:14:08 +01003031 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003032 wm_size = wm->default_wm;
3033 return wm_size;
3034}
3035
3036struct cxsr_latency {
3037 int is_desktop;
Li Peng95534262010-05-18 18:58:44 +08003038 int is_ddr3;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003039 unsigned long fsb_freq;
3040 unsigned long mem_freq;
3041 unsigned long display_sr;
3042 unsigned long display_hpll_disable;
3043 unsigned long cursor_sr;
3044 unsigned long cursor_hpll_disable;
3045};
3046
Chris Wilson403c89f2010-08-04 15:25:31 +01003047static const struct cxsr_latency cxsr_latency_table[] = {
Li Peng95534262010-05-18 18:58:44 +08003048 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
3049 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
3050 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
3051 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
3052 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003053
Li Peng95534262010-05-18 18:58:44 +08003054 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
3055 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
3056 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
3057 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
3058 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003059
Li Peng95534262010-05-18 18:58:44 +08003060 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
3061 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
3062 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
3063 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
3064 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003065
Li Peng95534262010-05-18 18:58:44 +08003066 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
3067 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
3068 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
3069 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
3070 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003071
Li Peng95534262010-05-18 18:58:44 +08003072 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
3073 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
3074 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
3075 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
3076 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003077
Li Peng95534262010-05-18 18:58:44 +08003078 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
3079 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
3080 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
3081 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
3082 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003083};
3084
Chris Wilson403c89f2010-08-04 15:25:31 +01003085static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
3086 int is_ddr3,
3087 int fsb,
3088 int mem)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003089{
Chris Wilson403c89f2010-08-04 15:25:31 +01003090 const struct cxsr_latency *latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003091 int i;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003092
3093 if (fsb == 0 || mem == 0)
3094 return NULL;
3095
3096 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
3097 latency = &cxsr_latency_table[i];
3098 if (is_desktop == latency->is_desktop &&
Li Peng95534262010-05-18 18:58:44 +08003099 is_ddr3 == latency->is_ddr3 &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05303100 fsb == latency->fsb_freq && mem == latency->mem_freq)
3101 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003102 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05303103
Zhao Yakui28c97732009-10-09 11:39:41 +08003104 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05303105
3106 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003107}
3108
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003109static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003110{
3111 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003112
3113 /* deactivate cxsr */
Chris Wilson3e33d942010-08-04 11:17:25 +01003114 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003115}
3116
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07003117/*
3118 * Latency for FIFO fetches is dependent on several factors:
3119 * - memory configuration (speed, channels)
3120 * - chipset
3121 * - current MCH state
3122 * It can be fairly high in some situations, so here we assume a fairly
3123 * pessimal value. It's a tradeoff between extra memory fetches (if we
3124 * set this value too high, the FIFO will fetch frequently to stay full)
3125 * and power consumption (set it too low to save power and we might see
3126 * FIFO underruns and display "flicker").
3127 *
3128 * A value of 5us seems to be a good balance; safe for very low end
3129 * platforms but not overly aggressive on lower latency configs.
3130 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003131static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003132
Jesse Barnese70236a2009-09-21 10:42:27 -07003133static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003134{
3135 struct drm_i915_private *dev_priv = dev->dev_private;
3136 uint32_t dsparb = I915_READ(DSPARB);
3137 int size;
3138
Chris Wilson8de9b312010-07-19 19:59:52 +01003139 size = dsparb & 0x7f;
3140 if (plane)
3141 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003142
Zhao Yakui28c97732009-10-09 11:39:41 +08003143 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003144 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003145
3146 return size;
3147}
Shaohua Li7662c8b2009-06-26 11:23:55 +08003148
Jesse Barnese70236a2009-09-21 10:42:27 -07003149static int i85x_get_fifo_size(struct drm_device *dev, int plane)
3150{
3151 struct drm_i915_private *dev_priv = dev->dev_private;
3152 uint32_t dsparb = I915_READ(DSPARB);
3153 int size;
3154
Chris Wilson8de9b312010-07-19 19:59:52 +01003155 size = dsparb & 0x1ff;
3156 if (plane)
3157 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
Jesse Barnese70236a2009-09-21 10:42:27 -07003158 size >>= 1; /* Convert to cachelines */
3159
Zhao Yakui28c97732009-10-09 11:39:41 +08003160 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003161 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07003162
3163 return size;
3164}
3165
3166static int i845_get_fifo_size(struct drm_device *dev, int plane)
3167{
3168 struct drm_i915_private *dev_priv = dev->dev_private;
3169 uint32_t dsparb = I915_READ(DSPARB);
3170 int size;
3171
3172 size = dsparb & 0x7f;
3173 size >>= 2; /* Convert to cachelines */
3174
Zhao Yakui28c97732009-10-09 11:39:41 +08003175 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003176 plane ? "B" : "A",
3177 size);
Jesse Barnese70236a2009-09-21 10:42:27 -07003178
3179 return size;
3180}
3181
3182static int i830_get_fifo_size(struct drm_device *dev, int plane)
3183{
3184 struct drm_i915_private *dev_priv = dev->dev_private;
3185 uint32_t dsparb = I915_READ(DSPARB);
3186 int size;
3187
3188 size = dsparb & 0x7f;
3189 size >>= 1; /* Convert to cachelines */
3190
Zhao Yakui28c97732009-10-09 11:39:41 +08003191 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003192 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07003193
3194 return size;
3195}
3196
Zhao Yakuid4294342010-03-22 22:45:36 +08003197static void pineview_update_wm(struct drm_device *dev, int planea_clock,
Chris Wilson5eddb702010-09-11 13:48:45 +01003198 int planeb_clock, int sr_hdisplay, int unused,
3199 int pixel_size)
Zhao Yakuid4294342010-03-22 22:45:36 +08003200{
3201 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson403c89f2010-08-04 15:25:31 +01003202 const struct cxsr_latency *latency;
Zhao Yakuid4294342010-03-22 22:45:36 +08003203 u32 reg;
3204 unsigned long wm;
Zhao Yakuid4294342010-03-22 22:45:36 +08003205 int sr_clock;
3206
Chris Wilson403c89f2010-08-04 15:25:31 +01003207 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
Li Peng95534262010-05-18 18:58:44 +08003208 dev_priv->fsb_freq, dev_priv->mem_freq);
Zhao Yakuid4294342010-03-22 22:45:36 +08003209 if (!latency) {
3210 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
3211 pineview_disable_cxsr(dev);
3212 return;
3213 }
3214
3215 if (!planea_clock || !planeb_clock) {
3216 sr_clock = planea_clock ? planea_clock : planeb_clock;
3217
3218 /* Display SR */
3219 wm = intel_calculate_wm(sr_clock, &pineview_display_wm,
3220 pixel_size, latency->display_sr);
3221 reg = I915_READ(DSPFW1);
3222 reg &= ~DSPFW_SR_MASK;
3223 reg |= wm << DSPFW_SR_SHIFT;
3224 I915_WRITE(DSPFW1, reg);
3225 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
3226
3227 /* cursor SR */
3228 wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm,
3229 pixel_size, latency->cursor_sr);
3230 reg = I915_READ(DSPFW3);
3231 reg &= ~DSPFW_CURSOR_SR_MASK;
3232 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
3233 I915_WRITE(DSPFW3, reg);
3234
3235 /* Display HPLL off SR */
3236 wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm,
3237 pixel_size, latency->display_hpll_disable);
3238 reg = I915_READ(DSPFW3);
3239 reg &= ~DSPFW_HPLL_SR_MASK;
3240 reg |= wm & DSPFW_HPLL_SR_MASK;
3241 I915_WRITE(DSPFW3, reg);
3242
3243 /* cursor HPLL off SR */
3244 wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm,
3245 pixel_size, latency->cursor_hpll_disable);
3246 reg = I915_READ(DSPFW3);
3247 reg &= ~DSPFW_HPLL_CURSOR_MASK;
3248 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
3249 I915_WRITE(DSPFW3, reg);
3250 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
3251
3252 /* activate cxsr */
Chris Wilson3e33d942010-08-04 11:17:25 +01003253 I915_WRITE(DSPFW3,
3254 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
Zhao Yakuid4294342010-03-22 22:45:36 +08003255 DRM_DEBUG_KMS("Self-refresh is enabled\n");
3256 } else {
3257 pineview_disable_cxsr(dev);
3258 DRM_DEBUG_KMS("Self-refresh is disabled\n");
3259 }
3260}
3261
Jesse Barnes0e442c62009-10-19 10:09:33 +09003262static void g4x_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003263 int planeb_clock, int sr_hdisplay, int sr_htotal,
3264 int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07003265{
3266 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003267 int total_size, cacheline_size;
3268 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
3269 struct intel_watermark_params planea_params, planeb_params;
3270 unsigned long line_time_us;
3271 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07003272
Jesse Barnes0e442c62009-10-19 10:09:33 +09003273 /* Create copies of the base settings for each pipe */
3274 planea_params = planeb_params = g4x_wm_info;
3275
3276 /* Grab a couple of global values before we overwrite them */
3277 total_size = planea_params.fifo_size;
3278 cacheline_size = planea_params.cacheline_size;
3279
3280 /*
3281 * Note: we need to make sure we don't overflow for various clock &
3282 * latency values.
3283 * clocks go from a few thousand to several hundred thousand.
3284 * latency is usually a few thousand
3285 */
3286 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
3287 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01003288 entries_required = DIV_ROUND_UP(entries_required, G4X_FIFO_LINE_SIZE);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003289 planea_wm = entries_required + planea_params.guard_size;
3290
3291 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
3292 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01003293 entries_required = DIV_ROUND_UP(entries_required, G4X_FIFO_LINE_SIZE);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003294 planeb_wm = entries_required + planeb_params.guard_size;
3295
3296 cursora_wm = cursorb_wm = 16;
3297 cursor_sr = 32;
3298
3299 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
3300
3301 /* Calc sr entries for one plane configs */
3302 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3303 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003304 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003305
3306 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003307 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003308
3309 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003310 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003311 pixel_size * sr_hdisplay;
Chris Wilson8de9b312010-07-19 19:59:52 +01003312 sr_entries = DIV_ROUND_UP(sr_entries, cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003313
3314 entries_required = (((sr_latency_ns / line_time_us) +
3315 1000) / 1000) * pixel_size * 64;
Chris Wilson8de9b312010-07-19 19:59:52 +01003316 entries_required = DIV_ROUND_UP(entries_required,
Chris Wilson5eddb702010-09-11 13:48:45 +01003317 g4x_cursor_wm_info.cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003318 cursor_sr = entries_required + g4x_cursor_wm_info.guard_size;
3319
3320 if (cursor_sr > g4x_cursor_wm_info.max_wm)
3321 cursor_sr = g4x_cursor_wm_info.max_wm;
3322 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3323 "cursor %d\n", sr_entries, cursor_sr);
3324
Jesse Barnes0e442c62009-10-19 10:09:33 +09003325 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303326 } else {
3327 /* Turn off self refresh if both pipes are enabled */
3328 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
Chris Wilson5eddb702010-09-11 13:48:45 +01003329 & ~FW_BLC_SELF_EN);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003330 }
3331
3332 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
3333 planea_wm, planeb_wm, sr_entries);
3334
3335 planea_wm &= 0x3f;
3336 planeb_wm &= 0x3f;
3337
3338 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
3339 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
3340 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
3341 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
3342 (cursora_wm << DSPFW_CURSORA_SHIFT));
3343 /* HPLL off in SR has some issues on G4x... disable it */
3344 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
3345 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07003346}
3347
Jesse Barnes1dc75462009-10-19 10:08:17 +09003348static void i965_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003349 int planeb_clock, int sr_hdisplay, int sr_htotal,
3350 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003351{
3352 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003353 unsigned long line_time_us;
3354 int sr_clock, sr_entries, srwm = 1;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003355 int cursor_sr = 16;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003356
Jesse Barnes1dc75462009-10-19 10:08:17 +09003357 /* Calc sr entries for one plane configs */
3358 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3359 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003360 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003361
3362 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003363 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003364
3365 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003366 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003367 pixel_size * sr_hdisplay;
Chris Wilson8de9b312010-07-19 19:59:52 +01003368 sr_entries = DIV_ROUND_UP(sr_entries, I915_FIFO_LINE_SIZE);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003369 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
Zhao Yakui1b07e042010-06-12 14:32:24 +08003370 srwm = I965_FIFO_SIZE - sr_entries;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003371 if (srwm < 0)
3372 srwm = 1;
Zhao Yakui1b07e042010-06-12 14:32:24 +08003373 srwm &= 0x1ff;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003374
3375 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003376 pixel_size * 64;
Chris Wilson8de9b312010-07-19 19:59:52 +01003377 sr_entries = DIV_ROUND_UP(sr_entries,
3378 i965_cursor_wm_info.cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003379 cursor_sr = i965_cursor_wm_info.fifo_size -
Chris Wilson5eddb702010-09-11 13:48:45 +01003380 (sr_entries + i965_cursor_wm_info.guard_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003381
3382 if (cursor_sr > i965_cursor_wm_info.max_wm)
3383 cursor_sr = i965_cursor_wm_info.max_wm;
3384
3385 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3386 "cursor %d\n", srwm, cursor_sr);
3387
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003388 if (IS_CRESTLINE(dev))
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003389 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303390 } else {
3391 /* Turn off self refresh if both pipes are enabled */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003392 if (IS_CRESTLINE(dev))
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003393 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3394 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003395 }
3396
3397 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3398 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003399
3400 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09003401 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
3402 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003403 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003404 /* update cursor SR watermark */
3405 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003406}
3407
3408static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003409 int planeb_clock, int sr_hdisplay, int sr_htotal,
3410 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003411{
3412 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003413 uint32_t fwater_lo;
3414 uint32_t fwater_hi;
3415 int total_size, cacheline_size, cwm, srwm = 1;
3416 int planea_wm, planeb_wm;
3417 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003418 unsigned long line_time_us;
3419 int sr_clock, sr_entries = 0;
3420
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003421 /* Create copies of the base settings for each pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003422 if (IS_CRESTLINE(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003423 planea_params = planeb_params = i945_wm_info;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003424 else if (!IS_GEN2(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003425 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003426 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003427 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003428
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003429 /* Grab a couple of global values before we overwrite them */
3430 total_size = planea_params.fifo_size;
3431 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003432
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003433 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07003434 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3435 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003436
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003437 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
3438 pixel_size, latency_ns);
3439 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
3440 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08003441 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003442
3443 /*
3444 * Overlay gets an aggressive default since video jitter is bad.
3445 */
3446 cwm = 2;
3447
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003448 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07003449 if (HAS_FW_BLC(dev) && sr_hdisplay &&
3450 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003451 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003452 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003453
Shaohua Li7662c8b2009-06-26 11:23:55 +08003454 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003455 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003456
3457 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003458 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003459 pixel_size * sr_hdisplay;
Chris Wilson8de9b312010-07-19 19:59:52 +01003460 sr_entries = DIV_ROUND_UP(sr_entries, cacheline_size);
Zhao Yakui28c97732009-10-09 11:39:41 +08003461 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003462 srwm = total_size - sr_entries;
3463 if (srwm < 0)
3464 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08003465
3466 if (IS_I945G(dev) || IS_I945GM(dev))
3467 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3468 else if (IS_I915GM(dev)) {
3469 /* 915M has a smaller SRWM field */
3470 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
3471 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3472 }
David John33c5fd12010-01-27 15:19:08 +05303473 } else {
3474 /* Turn off self refresh if both pipes are enabled */
Li Pengee980b82010-01-27 19:01:11 +08003475 if (IS_I945G(dev) || IS_I945GM(dev)) {
3476 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3477 & ~FW_BLC_SELF_EN);
3478 } else if (IS_I915GM(dev)) {
3479 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3480 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08003481 }
3482
Zhao Yakui28c97732009-10-09 11:39:41 +08003483 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003484 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003485
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003486 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3487 fwater_hi = (cwm & 0x1f);
3488
3489 /* Set request length to 8 cachelines per fetch */
3490 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3491 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003492
3493 I915_WRITE(FW_BLC, fwater_lo);
3494 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003495}
3496
Jesse Barnese70236a2009-09-21 10:42:27 -07003497static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
Zhao Yakuifa143212010-06-12 14:32:23 +08003498 int unused2, int unused3, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003499{
3500 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07003501 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003502 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003503
Jesse Barnese70236a2009-09-21 10:42:27 -07003504 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003505
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003506 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
3507 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07003508 fwater_lo |= (3<<8) | planea_wm;
3509
Zhao Yakui28c97732009-10-09 11:39:41 +08003510 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003511
3512 I915_WRITE(FW_BLC, fwater_lo);
3513}
3514
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003515#define ILK_LP0_PLANE_LATENCY 700
Zhao Yakuic936f442010-06-12 14:32:26 +08003516#define ILK_LP0_CURSOR_LATENCY 1300
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003517
Chris Wilson4ed765f2010-09-11 10:46:47 +01003518static bool ironlake_compute_wm0(struct drm_device *dev,
3519 int pipe,
Yuanhan Liu13982612010-12-15 15:42:31 +08003520 const struct intel_watermark_params *display,
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08003521 int display_latency_ns,
Yuanhan Liu13982612010-12-15 15:42:31 +08003522 const struct intel_watermark_params *cursor,
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08003523 int cursor_latency_ns,
Chris Wilson4ed765f2010-09-11 10:46:47 +01003524 int *plane_wm,
3525 int *cursor_wm)
3526{
3527 struct drm_crtc *crtc;
Chris Wilsondb66e372011-01-08 09:02:21 +00003528 int htotal, hdisplay, clock, pixel_size;
3529 int line_time_us, line_count;
3530 int entries, tlb_miss;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003531
3532 crtc = intel_get_crtc_for_pipe(dev, pipe);
3533 if (crtc->fb == NULL || !crtc->enabled)
3534 return false;
3535
3536 htotal = crtc->mode.htotal;
3537 hdisplay = crtc->mode.hdisplay;
3538 clock = crtc->mode.clock;
3539 pixel_size = crtc->fb->bits_per_pixel / 8;
3540
3541 /* Use the small buffer method to calculate plane watermark */
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08003542 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
Chris Wilsondb66e372011-01-08 09:02:21 +00003543 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
3544 if (tlb_miss > 0)
3545 entries += tlb_miss;
Yuanhan Liu13982612010-12-15 15:42:31 +08003546 entries = DIV_ROUND_UP(entries, display->cacheline_size);
3547 *plane_wm = entries + display->guard_size;
3548 if (*plane_wm > (int)display->max_wm)
3549 *plane_wm = display->max_wm;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003550
3551 /* Use the large buffer method to calculate cursor watermark */
3552 line_time_us = ((htotal * 1000) / clock);
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08003553 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003554 entries = line_count * 64 * pixel_size;
Chris Wilsondb66e372011-01-08 09:02:21 +00003555 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
3556 if (tlb_miss > 0)
3557 entries += tlb_miss;
Yuanhan Liu13982612010-12-15 15:42:31 +08003558 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
3559 *cursor_wm = entries + cursor->guard_size;
3560 if (*cursor_wm > (int)cursor->max_wm)
3561 *cursor_wm = (int)cursor->max_wm;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003562
3563 return true;
3564}
3565
Jesse Barnesb79d4992010-12-21 13:10:23 -08003566/*
3567 * Check the wm result.
3568 *
3569 * If any calculated watermark values is larger than the maximum value that
3570 * can be programmed into the associated watermark register, that watermark
3571 * must be disabled.
3572 */
3573static bool ironlake_check_srwm(struct drm_device *dev, int level,
3574 int fbc_wm, int display_wm, int cursor_wm,
3575 const struct intel_watermark_params *display,
3576 const struct intel_watermark_params *cursor)
3577{
3578 struct drm_i915_private *dev_priv = dev->dev_private;
3579
3580 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
3581 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
3582
3583 if (fbc_wm > SNB_FBC_MAX_SRWM) {
3584 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
3585 fbc_wm, SNB_FBC_MAX_SRWM, level);
3586
3587 /* fbc has it's own way to disable FBC WM */
3588 I915_WRITE(DISP_ARB_CTL,
3589 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
3590 return false;
3591 }
3592
3593 if (display_wm > display->max_wm) {
3594 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
3595 display_wm, SNB_DISPLAY_MAX_SRWM, level);
3596 return false;
3597 }
3598
3599 if (cursor_wm > cursor->max_wm) {
3600 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
3601 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
3602 return false;
3603 }
3604
3605 if (!(fbc_wm || display_wm || cursor_wm)) {
3606 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
3607 return false;
3608 }
3609
3610 return true;
3611}
3612
3613/*
3614 * Compute watermark values of WM[1-3],
3615 */
3616static bool ironlake_compute_srwm(struct drm_device *dev, int level,
3617 int hdisplay, int htotal,
3618 int pixel_size, int clock, int latency_ns,
3619 const struct intel_watermark_params *display,
3620 const struct intel_watermark_params *cursor,
3621 int *fbc_wm, int *display_wm, int *cursor_wm)
3622{
3623
3624 unsigned long line_time_us;
3625 int line_count, line_size;
3626 int small, large;
3627 int entries;
3628
3629 if (!latency_ns) {
3630 *fbc_wm = *display_wm = *cursor_wm = 0;
3631 return false;
3632 }
3633
3634 line_time_us = (htotal * 1000) / clock;
3635 line_count = (latency_ns / line_time_us + 1000) / 1000;
3636 line_size = hdisplay * pixel_size;
3637
3638 /* Use the minimum of the small and large buffer method for primary */
3639 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
3640 large = line_count * line_size;
3641
3642 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
3643 *display_wm = entries + display->guard_size;
3644
3645 /*
3646 * Spec says:
3647 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
3648 */
3649 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
3650
3651 /* calculate the self-refresh watermark for display cursor */
3652 entries = line_count * pixel_size * 64;
3653 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
3654 *cursor_wm = entries + cursor->guard_size;
3655
3656 return ironlake_check_srwm(dev, level,
3657 *fbc_wm, *display_wm, *cursor_wm,
3658 display, cursor);
3659}
3660
Chris Wilson4ed765f2010-09-11 10:46:47 +01003661static void ironlake_update_wm(struct drm_device *dev,
3662 int planea_clock, int planeb_clock,
Jesse Barnesb79d4992010-12-21 13:10:23 -08003663 int hdisplay, int htotal,
Chris Wilson4ed765f2010-09-11 10:46:47 +01003664 int pixel_size)
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003665{
3666 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb79d4992010-12-21 13:10:23 -08003667 int fbc_wm, plane_wm, cursor_wm, enabled;
3668 int clock;
Zhao Yakuic936f442010-06-12 14:32:26 +08003669
Chris Wilson4ed765f2010-09-11 10:46:47 +01003670 enabled = 0;
Yuanhan Liu13982612010-12-15 15:42:31 +08003671 if (ironlake_compute_wm0(dev, 0,
3672 &ironlake_display_wm_info,
3673 ILK_LP0_PLANE_LATENCY,
3674 &ironlake_cursor_wm_info,
3675 ILK_LP0_CURSOR_LATENCY,
3676 &plane_wm, &cursor_wm)) {
Chris Wilson4ed765f2010-09-11 10:46:47 +01003677 I915_WRITE(WM0_PIPEA_ILK,
3678 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3679 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
3680 " plane %d, " "cursor: %d\n",
3681 plane_wm, cursor_wm);
3682 enabled++;
Zhao Yakuic936f442010-06-12 14:32:26 +08003683 }
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003684
Yuanhan Liu13982612010-12-15 15:42:31 +08003685 if (ironlake_compute_wm0(dev, 1,
3686 &ironlake_display_wm_info,
3687 ILK_LP0_PLANE_LATENCY,
3688 &ironlake_cursor_wm_info,
3689 ILK_LP0_CURSOR_LATENCY,
3690 &plane_wm, &cursor_wm)) {
Chris Wilson4ed765f2010-09-11 10:46:47 +01003691 I915_WRITE(WM0_PIPEB_ILK,
3692 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3693 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
3694 " plane %d, cursor: %d\n",
3695 plane_wm, cursor_wm);
3696 enabled++;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003697 }
3698
3699 /*
3700 * Calculate and update the self-refresh watermark only when one
3701 * display plane is used.
3702 */
Jesse Barnesb79d4992010-12-21 13:10:23 -08003703 I915_WRITE(WM3_LP_ILK, 0);
3704 I915_WRITE(WM2_LP_ILK, 0);
3705 I915_WRITE(WM1_LP_ILK, 0);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003706
Jesse Barnesb79d4992010-12-21 13:10:23 -08003707 if (enabled != 1)
3708 return;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003709
Jesse Barnesb79d4992010-12-21 13:10:23 -08003710 clock = planea_clock ? planea_clock : planeb_clock;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003711
Jesse Barnesb79d4992010-12-21 13:10:23 -08003712 /* WM1 */
3713 if (!ironlake_compute_srwm(dev, 1, hdisplay, htotal, pixel_size,
3714 clock, ILK_READ_WM1_LATENCY() * 500,
3715 &ironlake_display_srwm_info,
3716 &ironlake_cursor_srwm_info,
3717 &fbc_wm, &plane_wm, &cursor_wm))
3718 return;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003719
Jesse Barnesb79d4992010-12-21 13:10:23 -08003720 I915_WRITE(WM1_LP_ILK,
3721 WM1_LP_SR_EN |
3722 (ILK_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3723 (fbc_wm << WM1_LP_FBC_SHIFT) |
3724 (plane_wm << WM1_LP_SR_SHIFT) |
3725 cursor_wm);
Chris Wilson4ed765f2010-09-11 10:46:47 +01003726
Jesse Barnesb79d4992010-12-21 13:10:23 -08003727 /* WM2 */
3728 if (!ironlake_compute_srwm(dev, 2, hdisplay, htotal, pixel_size,
3729 clock, ILK_READ_WM2_LATENCY() * 500,
3730 &ironlake_display_srwm_info,
3731 &ironlake_cursor_srwm_info,
3732 &fbc_wm, &plane_wm, &cursor_wm))
3733 return;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003734
Jesse Barnesb79d4992010-12-21 13:10:23 -08003735 I915_WRITE(WM2_LP_ILK,
3736 WM2_LP_EN |
3737 (ILK_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3738 (fbc_wm << WM1_LP_FBC_SHIFT) |
3739 (plane_wm << WM1_LP_SR_SHIFT) |
3740 cursor_wm);
Yuanhan Liu13982612010-12-15 15:42:31 +08003741
3742 /*
Jesse Barnesb79d4992010-12-21 13:10:23 -08003743 * WM3 is unsupported on ILK, probably because we don't have latency
3744 * data for that power state
Yuanhan Liu13982612010-12-15 15:42:31 +08003745 */
Yuanhan Liu13982612010-12-15 15:42:31 +08003746}
3747
3748static void sandybridge_update_wm(struct drm_device *dev,
3749 int planea_clock, int planeb_clock,
3750 int hdisplay, int htotal,
3751 int pixel_size)
3752{
3753 struct drm_i915_private *dev_priv = dev->dev_private;
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08003754 int latency = SNB_READ_WM0_LATENCY() * 100; /* In unit 0.1us */
Yuanhan Liu13982612010-12-15 15:42:31 +08003755 int fbc_wm, plane_wm, cursor_wm, enabled;
3756 int clock;
3757
3758 enabled = 0;
3759 if (ironlake_compute_wm0(dev, 0,
3760 &sandybridge_display_wm_info, latency,
3761 &sandybridge_cursor_wm_info, latency,
3762 &plane_wm, &cursor_wm)) {
3763 I915_WRITE(WM0_PIPEA_ILK,
3764 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3765 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
3766 " plane %d, " "cursor: %d\n",
3767 plane_wm, cursor_wm);
3768 enabled++;
3769 }
3770
3771 if (ironlake_compute_wm0(dev, 1,
3772 &sandybridge_display_wm_info, latency,
3773 &sandybridge_cursor_wm_info, latency,
3774 &plane_wm, &cursor_wm)) {
3775 I915_WRITE(WM0_PIPEB_ILK,
3776 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3777 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
3778 " plane %d, cursor: %d\n",
3779 plane_wm, cursor_wm);
3780 enabled++;
3781 }
3782
3783 /*
3784 * Calculate and update the self-refresh watermark only when one
3785 * display plane is used.
3786 *
3787 * SNB support 3 levels of watermark.
3788 *
3789 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
3790 * and disabled in the descending order
3791 *
3792 */
3793 I915_WRITE(WM3_LP_ILK, 0);
3794 I915_WRITE(WM2_LP_ILK, 0);
3795 I915_WRITE(WM1_LP_ILK, 0);
3796
3797 if (enabled != 1)
3798 return;
3799
3800 clock = planea_clock ? planea_clock : planeb_clock;
3801
3802 /* WM1 */
Jesse Barnesb79d4992010-12-21 13:10:23 -08003803 if (!ironlake_compute_srwm(dev, 1, hdisplay, htotal, pixel_size,
3804 clock, SNB_READ_WM1_LATENCY() * 500,
3805 &sandybridge_display_srwm_info,
3806 &sandybridge_cursor_srwm_info,
3807 &fbc_wm, &plane_wm, &cursor_wm))
Yuanhan Liu13982612010-12-15 15:42:31 +08003808 return;
3809
3810 I915_WRITE(WM1_LP_ILK,
3811 WM1_LP_SR_EN |
3812 (SNB_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3813 (fbc_wm << WM1_LP_FBC_SHIFT) |
3814 (plane_wm << WM1_LP_SR_SHIFT) |
3815 cursor_wm);
3816
3817 /* WM2 */
Jesse Barnesb79d4992010-12-21 13:10:23 -08003818 if (!ironlake_compute_srwm(dev, 2,
3819 hdisplay, htotal, pixel_size,
3820 clock, SNB_READ_WM2_LATENCY() * 500,
3821 &sandybridge_display_srwm_info,
3822 &sandybridge_cursor_srwm_info,
3823 &fbc_wm, &plane_wm, &cursor_wm))
Yuanhan Liu13982612010-12-15 15:42:31 +08003824 return;
3825
3826 I915_WRITE(WM2_LP_ILK,
3827 WM2_LP_EN |
3828 (SNB_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3829 (fbc_wm << WM1_LP_FBC_SHIFT) |
3830 (plane_wm << WM1_LP_SR_SHIFT) |
3831 cursor_wm);
3832
3833 /* WM3 */
Jesse Barnesb79d4992010-12-21 13:10:23 -08003834 if (!ironlake_compute_srwm(dev, 3,
3835 hdisplay, htotal, pixel_size,
3836 clock, SNB_READ_WM3_LATENCY() * 500,
3837 &sandybridge_display_srwm_info,
3838 &sandybridge_cursor_srwm_info,
3839 &fbc_wm, &plane_wm, &cursor_wm))
Yuanhan Liu13982612010-12-15 15:42:31 +08003840 return;
3841
3842 I915_WRITE(WM3_LP_ILK,
3843 WM3_LP_EN |
3844 (SNB_READ_WM3_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3845 (fbc_wm << WM1_LP_FBC_SHIFT) |
3846 (plane_wm << WM1_LP_SR_SHIFT) |
3847 cursor_wm);
3848}
3849
Shaohua Li7662c8b2009-06-26 11:23:55 +08003850/**
3851 * intel_update_watermarks - update FIFO watermark values based on current modes
3852 *
3853 * Calculate watermark values for the various WM regs based on current mode
3854 * and plane configuration.
3855 *
3856 * There are several cases to deal with here:
3857 * - normal (i.e. non-self-refresh)
3858 * - self-refresh (SR) mode
3859 * - lines are large relative to FIFO size (buffer can hold up to 2)
3860 * - lines are small relative to FIFO size (buffer can hold more than 2
3861 * lines), so need to account for TLB latency
3862 *
3863 * The normal calculation is:
3864 * watermark = dotclock * bytes per pixel * latency
3865 * where latency is platform & configuration dependent (we assume pessimal
3866 * values here).
3867 *
3868 * The SR calculation is:
3869 * watermark = (trunc(latency/line time)+1) * surface width *
3870 * bytes per pixel
3871 * where
3872 * line time = htotal / dotclock
Zhao Yakuifa143212010-06-12 14:32:23 +08003873 * surface width = hdisplay for normal plane and 64 for cursor
Shaohua Li7662c8b2009-06-26 11:23:55 +08003874 * and latency is assumed to be high, as above.
3875 *
3876 * The final value programmed to the register should always be rounded up,
3877 * and include an extra 2 entries to account for clock crossings.
3878 *
3879 * We don't use the sprite, so we can ignore that. And on Crestline we have
3880 * to set the non-SR watermarks to 8.
Chris Wilson5eddb702010-09-11 13:48:45 +01003881 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003882static void intel_update_watermarks(struct drm_device *dev)
3883{
Jesse Barnese70236a2009-09-21 10:42:27 -07003884 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003885 struct drm_crtc *crtc;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003886 int sr_hdisplay = 0;
3887 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3888 int enabled = 0, pixel_size = 0;
Zhao Yakuifa143212010-06-12 14:32:23 +08003889 int sr_htotal = 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003890
Zhenyu Wangc03342f2009-09-29 11:01:23 +08003891 if (!dev_priv->display.update_wm)
3892 return;
3893
Shaohua Li7662c8b2009-06-26 11:23:55 +08003894 /* Get the clock config from both planes */
3895 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilsondebcadd2010-08-07 11:01:33 +01003896 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003897 if (intel_crtc->active) {
Shaohua Li7662c8b2009-06-26 11:23:55 +08003898 enabled++;
3899 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003900 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003901 intel_crtc->pipe, crtc->mode.clock);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003902 planea_clock = crtc->mode.clock;
3903 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08003904 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003905 intel_crtc->pipe, crtc->mode.clock);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003906 planeb_clock = crtc->mode.clock;
3907 }
3908 sr_hdisplay = crtc->mode.hdisplay;
3909 sr_clock = crtc->mode.clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003910 sr_htotal = crtc->mode.htotal;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003911 if (crtc->fb)
3912 pixel_size = crtc->fb->bits_per_pixel / 8;
3913 else
3914 pixel_size = 4; /* by default */
3915 }
3916 }
3917
3918 if (enabled <= 0)
3919 return;
3920
Jesse Barnese70236a2009-09-21 10:42:27 -07003921 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003922 sr_hdisplay, sr_htotal, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003923}
3924
Chris Wilsona7615032011-01-12 17:04:08 +00003925static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3926{
3927 return dev_priv->lvds_use_ssc && i915_panel_use_ssc;
3928}
3929
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003930static int intel_crtc_mode_set(struct drm_crtc *crtc,
3931 struct drm_display_mode *mode,
3932 struct drm_display_mode *adjusted_mode,
3933 int x, int y,
3934 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003935{
3936 struct drm_device *dev = crtc->dev;
3937 struct drm_i915_private *dev_priv = dev->dev_private;
3938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3939 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003940 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003941 u32 fp_reg, dpll_reg;
Eric Anholtc751ce42010-03-25 11:48:48 -07003942 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003943 intel_clock_t clock, reduced_clock;
Chris Wilson5eddb702010-09-11 13:48:45 +01003944 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Jesse Barnes652c3932009-08-17 13:31:43 -07003945 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003946 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson8e647a22010-08-22 10:54:23 +01003947 struct intel_encoder *has_edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003948 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01003949 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003950 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003951 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003952 struct fdi_m_n m_n = {0};
Chris Wilson5eddb702010-09-11 13:48:45 +01003953 u32 reg, temp;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003954 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08003955
3956 drm_vblank_pre_modeset(dev, pipe);
3957
Chris Wilson5eddb702010-09-11 13:48:45 +01003958 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3959 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003960 continue;
3961
Chris Wilson5eddb702010-09-11 13:48:45 +01003962 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003963 case INTEL_OUTPUT_LVDS:
3964 is_lvds = true;
3965 break;
3966 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003967 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003968 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01003969 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003970 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003971 break;
3972 case INTEL_OUTPUT_DVO:
3973 is_dvo = true;
3974 break;
3975 case INTEL_OUTPUT_TVOUT:
3976 is_tv = true;
3977 break;
3978 case INTEL_OUTPUT_ANALOG:
3979 is_crt = true;
3980 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003981 case INTEL_OUTPUT_DISPLAYPORT:
3982 is_dp = true;
3983 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003984 case INTEL_OUTPUT_EDP:
Chris Wilson5eddb702010-09-11 13:48:45 +01003985 has_edp_encoder = encoder;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003986 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003987 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003988
Eric Anholtc751ce42010-03-25 11:48:48 -07003989 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003990 }
3991
Chris Wilsona7615032011-01-12 17:04:08 +00003992 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003993 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08003994 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003995 refclk / 1000);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003996 } else if (!IS_GEN2(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003997 refclk = 96000;
Jesse Barnes1cb1b752010-10-07 16:01:17 -07003998 if (HAS_PCH_SPLIT(dev) &&
3999 (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004000 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08004001 } else {
4002 refclk = 48000;
4003 }
4004
Ma Lingd4906092009-03-18 20:13:27 +08004005 /*
4006 * Returns a set of divisors for the desired target clock with the given
4007 * refclk, or FALSE. The returned values represent the clock equation:
4008 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4009 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004010 limit = intel_limit(crtc, refclk);
Ma Lingd4906092009-03-18 20:13:27 +08004011 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004012 if (!ok) {
4013 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01004014 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004015 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004016 }
4017
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004018 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004019 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004020
Zhao Yakuiddc90032010-01-06 22:05:56 +08004021 if (is_lvds && dev_priv->lvds_downclock_avail) {
4022 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01004023 dev_priv->lvds_downclock,
4024 refclk,
4025 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00004026 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
4027 /*
4028 * If the different P is found, it means that we can't
4029 * switch the display clock by using the FP0/FP1.
4030 * In such case we will disable the LVDS downclock
4031 * feature.
4032 */
4033 DRM_DEBUG_KMS("Different P is found for "
Chris Wilson5eddb702010-09-11 13:48:45 +01004034 "LVDS clock/downclock\n");
Zhao Yakui18f9ed12009-11-20 03:24:16 +00004035 has_reduced_clock = 0;
4036 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004037 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004038 /* SDVO TV has fixed PLL values depend on its clock range,
4039 this mirrors vbios setting. */
4040 if (is_sdvo && is_tv) {
4041 if (adjusted_mode->clock >= 100000
Chris Wilson5eddb702010-09-11 13:48:45 +01004042 && adjusted_mode->clock < 140500) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004043 clock.p1 = 2;
4044 clock.p2 = 10;
4045 clock.n = 3;
4046 clock.m1 = 16;
4047 clock.m2 = 8;
4048 } else if (adjusted_mode->clock >= 140500
Chris Wilson5eddb702010-09-11 13:48:45 +01004049 && adjusted_mode->clock <= 200000) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004050 clock.p1 = 1;
4051 clock.p2 = 10;
4052 clock.n = 6;
4053 clock.m1 = 12;
4054 clock.m2 = 8;
4055 }
4056 }
4057
Zhenyu Wang2c072452009-06-05 15:38:42 +08004058 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07004059 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson49078f72010-12-04 07:45:57 +00004060 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
Adam Jackson77ffb592010-04-12 11:38:44 -04004061 int lane = 0, link_bw, bpp;
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004062 /* CPU eDP doesn't require FDI link, so just set DP M/N
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004063 according to current link config */
Jesse Barnes858bc212011-01-04 10:46:49 -08004064 if (has_edp_encoder && !intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004065 target_clock = mode->clock;
Chris Wilson8e647a22010-08-22 10:54:23 +01004066 intel_edp_link_config(has_edp_encoder,
4067 &lane, &link_bw);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004068 } else {
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004069 /* [e]DP over FDI requires target mode clock
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004070 instead of link clock */
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004071 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004072 target_clock = mode->clock;
4073 else
4074 target_clock = adjusted_mode->clock;
Chris Wilson021357a2010-09-07 20:54:59 +01004075
4076 /* FDI is a binary signal running at ~2.7GHz, encoding
4077 * each output octet as 10 bits. The actual frequency
4078 * is stored as a divider into a 100MHz clock, and the
4079 * mode pixel clock is stored in units of 1KHz.
4080 * Hence the bw of each lane in terms of the mode signal
4081 * is:
4082 */
4083 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004084 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00004085
4086 /* determine panel color depth */
Chris Wilson5eddb702010-09-11 13:48:45 +01004087 temp = I915_READ(PIPECONF(pipe));
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004088 temp &= ~PIPE_BPC_MASK;
4089 if (is_lvds) {
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004090 /* the BPC will be 6 if it is 18-bit LVDS panel */
Chris Wilson5eddb702010-09-11 13:48:45 +01004091 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004092 temp |= PIPE_8BPC;
4093 else
4094 temp |= PIPE_6BPC;
Jesse Barnes1d850362010-10-07 16:01:10 -07004095 } else if (has_edp_encoder) {
Chris Wilson5ceb0f92010-09-24 10:24:28 +01004096 switch (dev_priv->edp.bpp/3) {
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08004097 case 8:
4098 temp |= PIPE_8BPC;
4099 break;
4100 case 10:
4101 temp |= PIPE_10BPC;
4102 break;
4103 case 6:
4104 temp |= PIPE_6BPC;
4105 break;
4106 case 12:
4107 temp |= PIPE_12BPC;
4108 break;
4109 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004110 } else
4111 temp |= PIPE_8BPC;
Chris Wilson5eddb702010-09-11 13:48:45 +01004112 I915_WRITE(PIPECONF(pipe), temp);
Zhenyu Wang58a27472009-09-25 08:01:28 +00004113
4114 switch (temp & PIPE_BPC_MASK) {
4115 case PIPE_8BPC:
4116 bpp = 24;
4117 break;
4118 case PIPE_10BPC:
4119 bpp = 30;
4120 break;
4121 case PIPE_6BPC:
4122 bpp = 18;
4123 break;
4124 case PIPE_12BPC:
4125 bpp = 36;
4126 break;
4127 default:
4128 DRM_ERROR("unknown pipe bpc value\n");
4129 bpp = 24;
4130 }
4131
Adam Jackson77ffb592010-04-12 11:38:44 -04004132 if (!lane) {
4133 /*
4134 * Account for spread spectrum to avoid
4135 * oversubscribing the link. Max center spread
4136 * is 2.5%; use 5% for safety's sake.
4137 */
4138 u32 bps = target_clock * bpp * 21 / 20;
4139 lane = bps / (link_bw * 8) + 1;
4140 }
4141
4142 intel_crtc->fdi_lanes = lane;
4143
Chris Wilson49078f72010-12-04 07:45:57 +00004144 if (pixel_multiplier > 1)
4145 link_bw *= pixel_multiplier;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004146 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004147 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004148
Zhenyu Wangc038e512009-10-19 15:43:48 +08004149 /* Ironlake: try to setup display ref clock before DPLL
4150 * enabling. This is only under driver's control after
4151 * PCH B stepping, previous chipset stepping should be
4152 * ignoring this setting.
4153 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004154 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08004155 temp = I915_READ(PCH_DREF_CONTROL);
4156 /* Always enable nonspread source */
4157 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
4158 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004159 temp &= ~DREF_SSC_SOURCE_MASK;
4160 temp |= DREF_SSC_SOURCE_ENABLE;
4161 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004162
Chris Wilson5eddb702010-09-11 13:48:45 +01004163 POSTING_READ(PCH_DREF_CONTROL);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004164 udelay(200);
4165
Chris Wilson8e647a22010-08-22 10:54:23 +01004166 if (has_edp_encoder) {
Chris Wilsona7615032011-01-12 17:04:08 +00004167 if (intel_panel_use_ssc(dev_priv)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08004168 temp |= DREF_SSC1_ENABLE;
4169 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004170
Chris Wilson5eddb702010-09-11 13:48:45 +01004171 POSTING_READ(PCH_DREF_CONTROL);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004172 udelay(200);
Jesse Barnes7f823282010-10-07 16:01:16 -07004173 }
4174 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004175
Jesse Barnes7f823282010-10-07 16:01:16 -07004176 /* Enable CPU source on CPU attached eDP */
4177 if (!intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Chris Wilsona7615032011-01-12 17:04:08 +00004178 if (intel_panel_use_ssc(dev_priv))
Jesse Barnes7f823282010-10-07 16:01:16 -07004179 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
4180 else
4181 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004182 } else {
Jesse Barnes7f823282010-10-07 16:01:16 -07004183 /* Enable SSC on PCH eDP if needed */
Chris Wilsona7615032011-01-12 17:04:08 +00004184 if (intel_panel_use_ssc(dev_priv)) {
Jesse Barnes7f823282010-10-07 16:01:16 -07004185 DRM_ERROR("enabling SSC on PCH\n");
4186 temp |= DREF_SUPERSPREAD_SOURCE_ENABLE;
4187 }
Zhenyu Wangc038e512009-10-19 15:43:48 +08004188 }
Chris Wilson5eddb702010-09-11 13:48:45 +01004189 I915_WRITE(PCH_DREF_CONTROL, temp);
Jesse Barnes7f823282010-10-07 16:01:16 -07004190 POSTING_READ(PCH_DREF_CONTROL);
4191 udelay(200);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004192 }
4193 }
4194
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004195 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08004196 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07004197 if (has_reduced_clock)
4198 fp2 = (1 << reduced_clock.n) << 16 |
4199 reduced_clock.m1 << 8 | reduced_clock.m2;
4200 } else {
Shaohua Li21778322009-02-23 15:19:16 +08004201 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07004202 if (has_reduced_clock)
4203 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4204 reduced_clock.m2;
4205 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004206
Chris Wilsonc1858122010-12-03 21:35:48 +00004207 /* Enable autotuning of the PLL clock (if permissible) */
4208 if (HAS_PCH_SPLIT(dev)) {
4209 int factor = 21;
4210
4211 if (is_lvds) {
Chris Wilsona7615032011-01-12 17:04:08 +00004212 if ((intel_panel_use_ssc(dev_priv) &&
Chris Wilsonc1858122010-12-03 21:35:48 +00004213 dev_priv->lvds_ssc_freq == 100) ||
4214 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4215 factor = 25;
4216 } else if (is_sdvo && is_tv)
4217 factor = 20;
4218
4219 if (clock.m1 < factor * clock.n)
4220 fp |= FP_CB_TUNE;
4221 }
4222
Chris Wilson5eddb702010-09-11 13:48:45 +01004223 dpll = 0;
Eric Anholtbad720f2009-10-22 16:11:14 -07004224 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004225 dpll = DPLL_VGA_MODE_DIS;
4226
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004227 if (!IS_GEN2(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004228 if (is_lvds)
4229 dpll |= DPLLB_MODE_LVDS;
4230 else
4231 dpll |= DPLLB_MODE_DAC_SERIAL;
4232 if (is_sdvo) {
Chris Wilson6c9547f2010-08-25 10:05:17 +01004233 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4234 if (pixel_multiplier > 1) {
4235 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4236 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4237 else if (HAS_PCH_SPLIT(dev))
4238 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
4239 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004240 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004241 }
Jesse Barnes83240122010-10-07 16:01:18 -07004242 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004243 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004244
4245 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004246 if (IS_PINEVIEW(dev))
4247 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004248 else {
Shaohua Li21778322009-02-23 15:19:16 +08004249 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004250 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004251 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004252 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07004253 if (IS_G4X(dev) && has_reduced_clock)
4254 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004255 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004256 switch (clock.p2) {
4257 case 5:
4258 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4259 break;
4260 case 7:
4261 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4262 break;
4263 case 10:
4264 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4265 break;
4266 case 14:
4267 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4268 break;
4269 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004270 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004271 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4272 } else {
4273 if (is_lvds) {
4274 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4275 } else {
4276 if (clock.p1 == 2)
4277 dpll |= PLL_P1_DIVIDE_BY_TWO;
4278 else
4279 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4280 if (clock.p2 == 4)
4281 dpll |= PLL_P2_DIVIDE_BY_4;
4282 }
4283 }
4284
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004285 if (is_sdvo && is_tv)
4286 dpll |= PLL_REF_INPUT_TVCLKINBC;
4287 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08004288 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004289 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08004290 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00004291 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004292 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08004293 else
4294 dpll |= PLL_REF_INPUT_DREFCLK;
4295
4296 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01004297 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004298
4299 /* Set up the display plane register */
4300 dspcntr = DISPPLANE_GAMMA_ENABLE;
4301
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004302 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08004303 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07004304 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004305 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07004306 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004307 else
4308 dspcntr |= DISPPLANE_SEL_PIPE_B;
4309 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004310
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004311 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004312 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4313 * core speed.
4314 *
4315 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4316 * pipe == 0 check?
4317 */
Jesse Barnese70236a2009-09-21 10:42:27 -07004318 if (mode->clock >
4319 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Chris Wilson5eddb702010-09-11 13:48:45 +01004320 pipeconf |= PIPECONF_DOUBLE_WIDE;
Jesse Barnes79e53942008-11-07 14:24:08 -08004321 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004322 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
Jesse Barnes79e53942008-11-07 14:24:08 -08004323 }
4324
Linus Torvalds8d86dc62010-06-08 20:16:28 -07004325 dspcntr |= DISPLAY_PLANE_ENABLE;
Chris Wilson5eddb702010-09-11 13:48:45 +01004326 pipeconf |= PIPECONF_ENABLE;
Linus Torvalds8d86dc62010-06-08 20:16:28 -07004327 dpll |= DPLL_VCO_ENABLE;
4328
Zhao Yakui28c97732009-10-09 11:39:41 +08004329 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08004330 drm_mode_debug_printmodeline(mode);
4331
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004332 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07004333 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004334 fp_reg = PCH_FP0(pipe);
4335 dpll_reg = PCH_DPLL(pipe);
4336 } else {
4337 fp_reg = FP0(pipe);
4338 dpll_reg = DPLL(pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004339 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004340
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004341 /* PCH eDP needs FDI, but CPU eDP does not */
4342 if (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004343 I915_WRITE(fp_reg, fp);
4344 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01004345
4346 POSTING_READ(dpll_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08004347 udelay(150);
4348 }
4349
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004350 /* enable transcoder DPLL */
4351 if (HAS_PCH_CPT(dev)) {
4352 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01004353 if (pipe == 0)
4354 temp |= TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004355 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004356 temp |= TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004357 I915_WRITE(PCH_DPLL_SEL, temp);
Chris Wilson5eddb702010-09-11 13:48:45 +01004358
4359 POSTING_READ(PCH_DPLL_SEL);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004360 udelay(150);
4361 }
4362
Jesse Barnes79e53942008-11-07 14:24:08 -08004363 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4364 * This is an exception to the general rule that mode_set doesn't turn
4365 * things on.
4366 */
4367 if (is_lvds) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004368 reg = LVDS;
Eric Anholtbad720f2009-10-22 16:11:14 -07004369 if (HAS_PCH_SPLIT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01004370 reg = PCH_LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +08004371
Chris Wilson5eddb702010-09-11 13:48:45 +01004372 temp = I915_READ(reg);
4373 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004374 if (pipe == 1) {
4375 if (HAS_PCH_CPT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01004376 temp |= PORT_TRANS_B_SEL_CPT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004377 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004378 temp |= LVDS_PIPEB_SELECT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004379 } else {
4380 if (HAS_PCH_CPT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01004381 temp &= ~PORT_TRANS_SEL_MASK;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004382 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004383 temp &= ~LVDS_PIPEB_SELECT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004384 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08004385 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01004386 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08004387 /* Set the B0-B3 data pairs corresponding to whether we're going to
4388 * set the DPLLs for dual-channel mode or not.
4389 */
4390 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01004391 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08004392 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004393 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08004394
4395 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4396 * appropriately here, but we need to look more thoroughly into how
4397 * panels behave in the two modes.
4398 */
Jesse Barnes434ed092010-09-07 14:48:06 -07004399 /* set the dithering flag on non-PCH LVDS as needed */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004400 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
Jesse Barnes434ed092010-09-07 14:48:06 -07004401 if (dev_priv->lvds_dither)
Chris Wilson5eddb702010-09-11 13:48:45 +01004402 temp |= LVDS_ENABLE_DITHER;
Jesse Barnes434ed092010-09-07 14:48:06 -07004403 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004404 temp &= ~LVDS_ENABLE_DITHER;
Zhao Yakui898822c2010-01-04 16:29:30 +08004405 }
Chris Wilson5eddb702010-09-11 13:48:45 +01004406 I915_WRITE(reg, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08004407 }
Jesse Barnes434ed092010-09-07 14:48:06 -07004408
4409 /* set the dithering flag and clear for anything other than a panel. */
4410 if (HAS_PCH_SPLIT(dev)) {
4411 pipeconf &= ~PIPECONF_DITHER_EN;
4412 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
4413 if (dev_priv->lvds_dither && (is_lvds || has_edp_encoder)) {
4414 pipeconf |= PIPECONF_DITHER_EN;
4415 pipeconf |= PIPECONF_DITHER_TYPE_ST1;
4416 }
4417 }
4418
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004419 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004420 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004421 } else if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004422 /* For non-DP output, clear any trans DP clock recovery setting.*/
4423 if (pipe == 0) {
4424 I915_WRITE(TRANSA_DATA_M1, 0);
4425 I915_WRITE(TRANSA_DATA_N1, 0);
4426 I915_WRITE(TRANSA_DP_LINK_M1, 0);
4427 I915_WRITE(TRANSA_DP_LINK_N1, 0);
4428 } else {
4429 I915_WRITE(TRANSB_DATA_M1, 0);
4430 I915_WRITE(TRANSB_DATA_N1, 0);
4431 I915_WRITE(TRANSB_DP_LINK_M1, 0);
4432 I915_WRITE(TRANSB_DP_LINK_N1, 0);
4433 }
4434 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004435
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004436 if (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004437 I915_WRITE(dpll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01004438
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004439 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01004440 POSTING_READ(dpll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004441 udelay(150);
4442
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004443 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004444 temp = 0;
Zhao Yakuibb66c512009-09-10 15:45:49 +08004445 if (is_sdvo) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004446 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4447 if (temp > 1)
4448 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Chris Wilson6c9547f2010-08-25 10:05:17 +01004449 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004450 temp = 0;
4451 }
4452 I915_WRITE(DPLL_MD(pipe), temp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004453 } else {
Chris Wilsona589b9f2010-12-03 21:13:16 +00004454 /* The pixel multiplier can only be updated once the
4455 * DPLL is enabled and the clocks are stable.
4456 *
4457 * So write it again.
4458 */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004459 I915_WRITE(dpll_reg, dpll);
4460 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004461 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004462
Chris Wilson5eddb702010-09-11 13:48:45 +01004463 intel_crtc->lowfreq_avail = false;
Jesse Barnes652c3932009-08-17 13:31:43 -07004464 if (is_lvds && has_reduced_clock && i915_powersave) {
4465 I915_WRITE(fp_reg + 4, fp2);
4466 intel_crtc->lowfreq_avail = true;
4467 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004468 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004469 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4470 }
4471 } else {
4472 I915_WRITE(fp_reg + 4, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07004473 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004474 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004475 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4476 }
4477 }
4478
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004479 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4480 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4481 /* the chip adds 2 halflines automatically */
4482 adjusted_mode->crtc_vdisplay -= 1;
4483 adjusted_mode->crtc_vtotal -= 1;
4484 adjusted_mode->crtc_vblank_start -= 1;
4485 adjusted_mode->crtc_vblank_end -= 1;
4486 adjusted_mode->crtc_vsync_end -= 1;
4487 adjusted_mode->crtc_vsync_start -= 1;
4488 } else
4489 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
4490
Chris Wilson5eddb702010-09-11 13:48:45 +01004491 I915_WRITE(HTOTAL(pipe),
4492 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004493 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004494 I915_WRITE(HBLANK(pipe),
4495 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004496 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004497 I915_WRITE(HSYNC(pipe),
4498 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004499 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004500
4501 I915_WRITE(VTOTAL(pipe),
4502 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004503 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004504 I915_WRITE(VBLANK(pipe),
4505 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004506 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004507 I915_WRITE(VSYNC(pipe),
4508 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004509 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004510
4511 /* pipesrc and dspsize control the size that is scaled from,
4512 * which should always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08004513 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004514 if (!HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004515 I915_WRITE(DSPSIZE(plane),
4516 ((mode->vdisplay - 1) << 16) |
4517 (mode->hdisplay - 1));
4518 I915_WRITE(DSPPOS(plane), 0);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004519 }
Chris Wilson5eddb702010-09-11 13:48:45 +01004520 I915_WRITE(PIPESRC(pipe),
4521 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004522
Eric Anholtbad720f2009-10-22 16:11:14 -07004523 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004524 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4525 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4526 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4527 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004528
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004529 if (has_edp_encoder && !intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004530 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004531 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004532 }
4533
Chris Wilson5eddb702010-09-11 13:48:45 +01004534 I915_WRITE(PIPECONF(pipe), pipeconf);
4535 POSTING_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004536
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004537 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004538
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01004539 if (IS_GEN5(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08004540 /* enable address swizzle for tiling buffer */
4541 temp = I915_READ(DISP_ARB_CTL);
4542 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
4543 }
4544
Chris Wilson5eddb702010-09-11 13:48:45 +01004545 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnes79e53942008-11-07 14:24:08 -08004546
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004547 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004548
4549 intel_update_watermarks(dev);
4550
Jesse Barnes79e53942008-11-07 14:24:08 -08004551 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004552
Chris Wilson1f803ee2009-06-06 09:45:59 +01004553 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004554}
4555
4556/** Loads the palette/gamma unit for the CRTC with the prepared values */
4557void intel_crtc_load_lut(struct drm_crtc *crtc)
4558{
4559 struct drm_device *dev = crtc->dev;
4560 struct drm_i915_private *dev_priv = dev->dev_private;
4561 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4562 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
4563 int i;
4564
4565 /* The clocks have to be on to load the palette. */
4566 if (!crtc->enabled)
4567 return;
4568
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004569 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004570 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004571 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
4572 LGC_PALETTE_B;
4573
Jesse Barnes79e53942008-11-07 14:24:08 -08004574 for (i = 0; i < 256; i++) {
4575 I915_WRITE(palreg + 4 * i,
4576 (intel_crtc->lut_r[i] << 16) |
4577 (intel_crtc->lut_g[i] << 8) |
4578 intel_crtc->lut_b[i]);
4579 }
4580}
4581
Chris Wilson560b85b2010-08-07 11:01:38 +01004582static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4583{
4584 struct drm_device *dev = crtc->dev;
4585 struct drm_i915_private *dev_priv = dev->dev_private;
4586 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4587 bool visible = base != 0;
4588 u32 cntl;
4589
4590 if (intel_crtc->cursor_visible == visible)
4591 return;
4592
4593 cntl = I915_READ(CURACNTR);
4594 if (visible) {
4595 /* On these chipsets we can only modify the base whilst
4596 * the cursor is disabled.
4597 */
4598 I915_WRITE(CURABASE, base);
4599
4600 cntl &= ~(CURSOR_FORMAT_MASK);
4601 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4602 cntl |= CURSOR_ENABLE |
4603 CURSOR_GAMMA_ENABLE |
4604 CURSOR_FORMAT_ARGB;
4605 } else
4606 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
4607 I915_WRITE(CURACNTR, cntl);
4608
4609 intel_crtc->cursor_visible = visible;
4610}
4611
4612static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4613{
4614 struct drm_device *dev = crtc->dev;
4615 struct drm_i915_private *dev_priv = dev->dev_private;
4616 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4617 int pipe = intel_crtc->pipe;
4618 bool visible = base != 0;
4619
4620 if (intel_crtc->cursor_visible != visible) {
4621 uint32_t cntl = I915_READ(pipe == 0 ? CURACNTR : CURBCNTR);
4622 if (base) {
4623 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4624 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4625 cntl |= pipe << 28; /* Connect to correct pipe */
4626 } else {
4627 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4628 cntl |= CURSOR_MODE_DISABLE;
4629 }
4630 I915_WRITE(pipe == 0 ? CURACNTR : CURBCNTR, cntl);
4631
4632 intel_crtc->cursor_visible = visible;
4633 }
4634 /* and commit changes on next vblank */
4635 I915_WRITE(pipe == 0 ? CURABASE : CURBBASE, base);
4636}
4637
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004638/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004639static void intel_crtc_update_cursor(struct drm_crtc *crtc,
4640 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004641{
4642 struct drm_device *dev = crtc->dev;
4643 struct drm_i915_private *dev_priv = dev->dev_private;
4644 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4645 int pipe = intel_crtc->pipe;
4646 int x = intel_crtc->cursor_x;
4647 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01004648 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004649 bool visible;
4650
4651 pos = 0;
4652
Chris Wilson6b383a72010-09-13 13:54:26 +01004653 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004654 base = intel_crtc->cursor_addr;
4655 if (x > (int) crtc->fb->width)
4656 base = 0;
4657
4658 if (y > (int) crtc->fb->height)
4659 base = 0;
4660 } else
4661 base = 0;
4662
4663 if (x < 0) {
4664 if (x + intel_crtc->cursor_width < 0)
4665 base = 0;
4666
4667 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
4668 x = -x;
4669 }
4670 pos |= x << CURSOR_X_SHIFT;
4671
4672 if (y < 0) {
4673 if (y + intel_crtc->cursor_height < 0)
4674 base = 0;
4675
4676 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
4677 y = -y;
4678 }
4679 pos |= y << CURSOR_Y_SHIFT;
4680
4681 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01004682 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004683 return;
4684
4685 I915_WRITE(pipe == 0 ? CURAPOS : CURBPOS, pos);
Chris Wilson560b85b2010-08-07 11:01:38 +01004686 if (IS_845G(dev) || IS_I865G(dev))
4687 i845_update_cursor(crtc, base);
4688 else
4689 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004690
4691 if (visible)
4692 intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj);
4693}
4694
Jesse Barnes79e53942008-11-07 14:24:08 -08004695static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00004696 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08004697 uint32_t handle,
4698 uint32_t width, uint32_t height)
4699{
4700 struct drm_device *dev = crtc->dev;
4701 struct drm_i915_private *dev_priv = dev->dev_private;
4702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00004703 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004704 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004705 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004706
Zhao Yakui28c97732009-10-09 11:39:41 +08004707 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08004708
4709 /* if we want to turn off the cursor ignore width and height */
4710 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004711 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004712 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004713 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004714 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004715 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004716 }
4717
4718 /* Currently we only support 64x64 cursors */
4719 if (width != 64 || height != 64) {
4720 DRM_ERROR("we currently only support 64x64 cursors\n");
4721 return -EINVAL;
4722 }
4723
Chris Wilson05394f32010-11-08 19:18:58 +00004724 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
4725 if (!obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08004726 return -ENOENT;
4727
Chris Wilson05394f32010-11-08 19:18:58 +00004728 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004729 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004730 ret = -ENOMEM;
4731 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004732 }
4733
Dave Airlie71acb5e2008-12-30 20:31:46 +10004734 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004735 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004736 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00004737 if (obj->tiling_mode) {
4738 DRM_ERROR("cursor cannot be tiled\n");
4739 ret = -EINVAL;
4740 goto fail_locked;
4741 }
4742
Chris Wilson05394f32010-11-08 19:18:58 +00004743 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004744 if (ret) {
4745 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004746 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004747 }
Chris Wilsone7b526b2010-06-02 08:30:48 +01004748
Chris Wilson05394f32010-11-08 19:18:58 +00004749 ret = i915_gem_object_set_to_gtt_domain(obj, 0);
Chris Wilsone7b526b2010-06-02 08:30:48 +01004750 if (ret) {
4751 DRM_ERROR("failed to move cursor bo into the GTT\n");
4752 goto fail_unpin;
4753 }
4754
Chris Wilsond9e86c02010-11-10 16:40:20 +00004755 ret = i915_gem_object_put_fence(obj);
4756 if (ret) {
4757 DRM_ERROR("failed to move cursor bo into the GTT\n");
4758 goto fail_unpin;
4759 }
4760
Chris Wilson05394f32010-11-08 19:18:58 +00004761 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004762 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004763 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00004764 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004765 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
4766 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004767 if (ret) {
4768 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004769 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004770 }
Chris Wilson05394f32010-11-08 19:18:58 +00004771 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004772 }
4773
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004774 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04004775 I915_WRITE(CURSIZE, (height << 12) | width);
4776
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004777 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004778 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004779 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00004780 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004781 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4782 } else
4783 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00004784 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004785 }
Jesse Barnes80824002009-09-10 15:28:06 -07004786
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004787 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004788
4789 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00004790 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004791 intel_crtc->cursor_width = width;
4792 intel_crtc->cursor_height = height;
4793
Chris Wilson6b383a72010-09-13 13:54:26 +01004794 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004795
Jesse Barnes79e53942008-11-07 14:24:08 -08004796 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004797fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00004798 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004799fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004800 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004801fail:
Chris Wilson05394f32010-11-08 19:18:58 +00004802 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004803 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004804}
4805
4806static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4807{
Jesse Barnes79e53942008-11-07 14:24:08 -08004808 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004809
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004810 intel_crtc->cursor_x = x;
4811 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07004812
Chris Wilson6b383a72010-09-13 13:54:26 +01004813 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08004814
4815 return 0;
4816}
4817
4818/** Sets the color ramps on behalf of RandR */
4819void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4820 u16 blue, int regno)
4821{
4822 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4823
4824 intel_crtc->lut_r[regno] = red >> 8;
4825 intel_crtc->lut_g[regno] = green >> 8;
4826 intel_crtc->lut_b[regno] = blue >> 8;
4827}
4828
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004829void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4830 u16 *blue, int regno)
4831{
4832 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4833
4834 *red = intel_crtc->lut_r[regno] << 8;
4835 *green = intel_crtc->lut_g[regno] << 8;
4836 *blue = intel_crtc->lut_b[regno] << 8;
4837}
4838
Jesse Barnes79e53942008-11-07 14:24:08 -08004839static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01004840 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08004841{
James Simmons72034252010-08-03 01:33:19 +01004842 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08004843 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004844
James Simmons72034252010-08-03 01:33:19 +01004845 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004846 intel_crtc->lut_r[i] = red[i] >> 8;
4847 intel_crtc->lut_g[i] = green[i] >> 8;
4848 intel_crtc->lut_b[i] = blue[i] >> 8;
4849 }
4850
4851 intel_crtc_load_lut(crtc);
4852}
4853
4854/**
4855 * Get a pipe with a simple mode set on it for doing load-based monitor
4856 * detection.
4857 *
4858 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07004859 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08004860 *
Eric Anholtc751ce42010-03-25 11:48:48 -07004861 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08004862 * configured for it. In the future, it could choose to temporarily disable
4863 * some outputs to free up a pipe for its use.
4864 *
4865 * \return crtc, or NULL if no pipes are available.
4866 */
4867
4868/* VESA 640x480x72Hz mode to set on the pipe */
4869static struct drm_display_mode load_detect_mode = {
4870 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4871 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4872};
4873
Eric Anholt21d40d32010-03-25 11:11:14 -07004874struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004875 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08004876 struct drm_display_mode *mode,
4877 int *dpms_mode)
4878{
4879 struct intel_crtc *intel_crtc;
4880 struct drm_crtc *possible_crtc;
4881 struct drm_crtc *supported_crtc =NULL;
Chris Wilson4ef69c72010-09-09 15:14:28 +01004882 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08004883 struct drm_crtc *crtc = NULL;
4884 struct drm_device *dev = encoder->dev;
4885 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4886 struct drm_crtc_helper_funcs *crtc_funcs;
4887 int i = -1;
4888
4889 /*
4890 * Algorithm gets a little messy:
4891 * - if the connector already has an assigned crtc, use it (but make
4892 * sure it's on first)
4893 * - try to find the first unused crtc that can drive this connector,
4894 * and use that if we find one
4895 * - if there are no unused crtcs available, try to use the first
4896 * one we found that supports the connector
4897 */
4898
4899 /* See if we already have a CRTC for this connector */
4900 if (encoder->crtc) {
4901 crtc = encoder->crtc;
4902 /* Make sure the crtc and connector are running */
4903 intel_crtc = to_intel_crtc(crtc);
4904 *dpms_mode = intel_crtc->dpms_mode;
4905 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4906 crtc_funcs = crtc->helper_private;
4907 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4908 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
4909 }
4910 return crtc;
4911 }
4912
4913 /* Find an unused one (if possible) */
4914 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
4915 i++;
4916 if (!(encoder->possible_crtcs & (1 << i)))
4917 continue;
4918 if (!possible_crtc->enabled) {
4919 crtc = possible_crtc;
4920 break;
4921 }
4922 if (!supported_crtc)
4923 supported_crtc = possible_crtc;
4924 }
4925
4926 /*
4927 * If we didn't find an unused CRTC, don't use any.
4928 */
4929 if (!crtc) {
4930 return NULL;
4931 }
4932
4933 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004934 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07004935 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004936
4937 intel_crtc = to_intel_crtc(crtc);
4938 *dpms_mode = intel_crtc->dpms_mode;
4939
4940 if (!crtc->enabled) {
4941 if (!mode)
4942 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05004943 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004944 } else {
4945 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4946 crtc_funcs = crtc->helper_private;
4947 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4948 }
4949
4950 /* Add this connector to the crtc */
4951 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
4952 encoder_funcs->commit(encoder);
4953 }
4954 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004955 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004956
4957 return crtc;
4958}
4959
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004960void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
4961 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08004962{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004963 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08004964 struct drm_device *dev = encoder->dev;
4965 struct drm_crtc *crtc = encoder->crtc;
4966 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4967 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
4968
Eric Anholt21d40d32010-03-25 11:11:14 -07004969 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004970 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004971 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004972 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004973 crtc->enabled = drm_helper_crtc_in_use(crtc);
4974 drm_helper_disable_unused_functions(dev);
4975 }
4976
Eric Anholtc751ce42010-03-25 11:48:48 -07004977 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08004978 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4979 if (encoder->crtc == crtc)
4980 encoder_funcs->dpms(encoder, dpms_mode);
4981 crtc_funcs->dpms(crtc, dpms_mode);
4982 }
4983}
4984
4985/* Returns the clock of the currently programmed mode of the given pipe. */
4986static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4987{
4988 struct drm_i915_private *dev_priv = dev->dev_private;
4989 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4990 int pipe = intel_crtc->pipe;
4991 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4992 u32 fp;
4993 intel_clock_t clock;
4994
4995 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4996 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4997 else
4998 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4999
5000 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005001 if (IS_PINEVIEW(dev)) {
5002 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5003 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08005004 } else {
5005 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5006 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5007 }
5008
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005009 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005010 if (IS_PINEVIEW(dev))
5011 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5012 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08005013 else
5014 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08005015 DPLL_FPA01_P1_POST_DIV_SHIFT);
5016
5017 switch (dpll & DPLL_MODE_MASK) {
5018 case DPLLB_MODE_DAC_SERIAL:
5019 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5020 5 : 10;
5021 break;
5022 case DPLLB_MODE_LVDS:
5023 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5024 7 : 14;
5025 break;
5026 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08005027 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08005028 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5029 return 0;
5030 }
5031
5032 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08005033 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005034 } else {
5035 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5036
5037 if (is_lvds) {
5038 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5039 DPLL_FPA01_P1_POST_DIV_SHIFT);
5040 clock.p2 = 14;
5041
5042 if ((dpll & PLL_REF_INPUT_MASK) ==
5043 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5044 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08005045 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005046 } else
Shaohua Li21778322009-02-23 15:19:16 +08005047 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005048 } else {
5049 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5050 clock.p1 = 2;
5051 else {
5052 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5053 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5054 }
5055 if (dpll & PLL_P2_DIVIDE_BY_4)
5056 clock.p2 = 4;
5057 else
5058 clock.p2 = 2;
5059
Shaohua Li21778322009-02-23 15:19:16 +08005060 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005061 }
5062 }
5063
5064 /* XXX: It would be nice to validate the clocks, but we can't reuse
5065 * i830PllIsValid() because it relies on the xf86_config connector
5066 * configuration being accurate, which it isn't necessarily.
5067 */
5068
5069 return clock.dot;
5070}
5071
5072/** Returns the currently programmed mode of the given pipe. */
5073struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5074 struct drm_crtc *crtc)
5075{
5076 struct drm_i915_private *dev_priv = dev->dev_private;
5077 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5078 int pipe = intel_crtc->pipe;
5079 struct drm_display_mode *mode;
5080 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
5081 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
5082 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
5083 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
5084
5085 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5086 if (!mode)
5087 return NULL;
5088
5089 mode->clock = intel_crtc_clock_get(dev, crtc);
5090 mode->hdisplay = (htot & 0xffff) + 1;
5091 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5092 mode->hsync_start = (hsync & 0xffff) + 1;
5093 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5094 mode->vdisplay = (vtot & 0xffff) + 1;
5095 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5096 mode->vsync_start = (vsync & 0xffff) + 1;
5097 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5098
5099 drm_mode_set_name(mode);
5100 drm_mode_set_crtcinfo(mode, 0);
5101
5102 return mode;
5103}
5104
Jesse Barnes652c3932009-08-17 13:31:43 -07005105#define GPU_IDLE_TIMEOUT 500 /* ms */
5106
5107/* When this timer fires, we've been idle for awhile */
5108static void intel_gpu_idle_timer(unsigned long arg)
5109{
5110 struct drm_device *dev = (struct drm_device *)arg;
5111 drm_i915_private_t *dev_priv = dev->dev_private;
5112
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005113 if (!list_empty(&dev_priv->mm.active_list)) {
5114 /* Still processing requests, so just re-arm the timer. */
5115 mod_timer(&dev_priv->idle_timer, jiffies +
5116 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5117 return;
5118 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005119
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005120 dev_priv->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005121 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005122}
5123
Jesse Barnes652c3932009-08-17 13:31:43 -07005124#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5125
5126static void intel_crtc_idle_timer(unsigned long arg)
5127{
5128 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5129 struct drm_crtc *crtc = &intel_crtc->base;
5130 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005131 struct intel_framebuffer *intel_fb;
5132
5133 intel_fb = to_intel_framebuffer(crtc->fb);
5134 if (intel_fb && intel_fb->obj->active) {
5135 /* The framebuffer is still being accessed by the GPU. */
5136 mod_timer(&intel_crtc->idle_timer, jiffies +
5137 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5138 return;
5139 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005140
Jesse Barnes652c3932009-08-17 13:31:43 -07005141 intel_crtc->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005142 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005143}
5144
Daniel Vetter3dec0092010-08-20 21:40:52 +02005145static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07005146{
5147 struct drm_device *dev = crtc->dev;
5148 drm_i915_private_t *dev_priv = dev->dev_private;
5149 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5150 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005151 int dpll_reg = DPLL(pipe);
5152 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07005153
Eric Anholtbad720f2009-10-22 16:11:14 -07005154 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005155 return;
5156
5157 if (!dev_priv->lvds_downclock_avail)
5158 return;
5159
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005160 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005161 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005162 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005163
5164 /* Unlock panel regs */
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005165 I915_WRITE(PP_CONTROL,
5166 I915_READ(PP_CONTROL) | PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07005167
5168 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5169 I915_WRITE(dpll_reg, dpll);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005170 POSTING_READ(dpll_reg);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005171 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005172
Jesse Barnes652c3932009-08-17 13:31:43 -07005173 dpll = I915_READ(dpll_reg);
5174 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08005175 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005176
5177 /* ...and lock them again */
5178 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
5179 }
5180
5181 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005182 mod_timer(&intel_crtc->idle_timer, jiffies +
5183 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005184}
5185
5186static void intel_decrease_pllclock(struct drm_crtc *crtc)
5187{
5188 struct drm_device *dev = crtc->dev;
5189 drm_i915_private_t *dev_priv = dev->dev_private;
5190 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5191 int pipe = intel_crtc->pipe;
5192 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
5193 int dpll = I915_READ(dpll_reg);
5194
Eric Anholtbad720f2009-10-22 16:11:14 -07005195 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005196 return;
5197
5198 if (!dev_priv->lvds_downclock_avail)
5199 return;
5200
5201 /*
5202 * Since this is called by a timer, we should never get here in
5203 * the manual case.
5204 */
5205 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005206 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005207
5208 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07005209 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
5210 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07005211
5212 dpll |= DISPLAY_RATE_SELECT_FPA1;
5213 I915_WRITE(dpll_reg, dpll);
5214 dpll = I915_READ(dpll_reg);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005215 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005216 dpll = I915_READ(dpll_reg);
5217 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08005218 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005219
5220 /* ...and lock them again */
5221 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
5222 }
5223
5224}
5225
5226/**
5227 * intel_idle_update - adjust clocks for idleness
5228 * @work: work struct
5229 *
5230 * Either the GPU or display (or both) went idle. Check the busy status
5231 * here and adjust the CRTC and GPU clocks as necessary.
5232 */
5233static void intel_idle_update(struct work_struct *work)
5234{
5235 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5236 idle_work);
5237 struct drm_device *dev = dev_priv->dev;
5238 struct drm_crtc *crtc;
5239 struct intel_crtc *intel_crtc;
Li Peng45ac22c2010-06-12 23:38:35 +08005240 int enabled = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005241
5242 if (!i915_powersave)
5243 return;
5244
5245 mutex_lock(&dev->struct_mutex);
5246
Jesse Barnes7648fa92010-05-20 14:28:11 -07005247 i915_update_gfx_val(dev_priv);
5248
Jesse Barnes652c3932009-08-17 13:31:43 -07005249 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5250 /* Skip inactive CRTCs */
5251 if (!crtc->fb)
5252 continue;
5253
Li Peng45ac22c2010-06-12 23:38:35 +08005254 enabled++;
Jesse Barnes652c3932009-08-17 13:31:43 -07005255 intel_crtc = to_intel_crtc(crtc);
5256 if (!intel_crtc->busy)
5257 intel_decrease_pllclock(crtc);
5258 }
5259
Li Peng45ac22c2010-06-12 23:38:35 +08005260 if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) {
5261 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
5262 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
5263 }
5264
Jesse Barnes652c3932009-08-17 13:31:43 -07005265 mutex_unlock(&dev->struct_mutex);
5266}
5267
5268/**
5269 * intel_mark_busy - mark the GPU and possibly the display busy
5270 * @dev: drm device
5271 * @obj: object we're operating on
5272 *
5273 * Callers can use this function to indicate that the GPU is busy processing
5274 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5275 * buffer), we'll also mark the display as busy, so we know to increase its
5276 * clock frequency.
5277 */
Chris Wilson05394f32010-11-08 19:18:58 +00005278void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07005279{
5280 drm_i915_private_t *dev_priv = dev->dev_private;
5281 struct drm_crtc *crtc = NULL;
5282 struct intel_framebuffer *intel_fb;
5283 struct intel_crtc *intel_crtc;
5284
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08005285 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5286 return;
5287
Li Peng060e6452010-02-10 01:54:24 +08005288 if (!dev_priv->busy) {
5289 if (IS_I945G(dev) || IS_I945GM(dev)) {
5290 u32 fw_blc_self;
Li Pengee980b82010-01-27 19:01:11 +08005291
Li Peng060e6452010-02-10 01:54:24 +08005292 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
5293 fw_blc_self = I915_READ(FW_BLC_SELF);
5294 fw_blc_self &= ~FW_BLC_SELF_EN;
5295 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
5296 }
Chris Wilson28cf7982009-11-30 01:08:56 +00005297 dev_priv->busy = true;
Li Peng060e6452010-02-10 01:54:24 +08005298 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00005299 mod_timer(&dev_priv->idle_timer, jiffies +
5300 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005301
5302 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5303 if (!crtc->fb)
5304 continue;
5305
5306 intel_crtc = to_intel_crtc(crtc);
5307 intel_fb = to_intel_framebuffer(crtc->fb);
5308 if (intel_fb->obj == obj) {
5309 if (!intel_crtc->busy) {
Li Peng060e6452010-02-10 01:54:24 +08005310 if (IS_I945G(dev) || IS_I945GM(dev)) {
5311 u32 fw_blc_self;
5312
5313 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
5314 fw_blc_self = I915_READ(FW_BLC_SELF);
5315 fw_blc_self &= ~FW_BLC_SELF_EN;
5316 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
5317 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005318 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005319 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005320 intel_crtc->busy = true;
5321 } else {
5322 /* Busy -> busy, put off timer */
5323 mod_timer(&intel_crtc->idle_timer, jiffies +
5324 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5325 }
5326 }
5327 }
5328}
5329
Jesse Barnes79e53942008-11-07 14:24:08 -08005330static void intel_crtc_destroy(struct drm_crtc *crtc)
5331{
5332 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005333 struct drm_device *dev = crtc->dev;
5334 struct intel_unpin_work *work;
5335 unsigned long flags;
5336
5337 spin_lock_irqsave(&dev->event_lock, flags);
5338 work = intel_crtc->unpin_work;
5339 intel_crtc->unpin_work = NULL;
5340 spin_unlock_irqrestore(&dev->event_lock, flags);
5341
5342 if (work) {
5343 cancel_work_sync(&work->work);
5344 kfree(work);
5345 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005346
5347 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005348
Jesse Barnes79e53942008-11-07 14:24:08 -08005349 kfree(intel_crtc);
5350}
5351
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005352static void intel_unpin_work_fn(struct work_struct *__work)
5353{
5354 struct intel_unpin_work *work =
5355 container_of(__work, struct intel_unpin_work, work);
5356
5357 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005358 i915_gem_object_unpin(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00005359 drm_gem_object_unreference(&work->pending_flip_obj->base);
5360 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005361
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005362 mutex_unlock(&work->dev->struct_mutex);
5363 kfree(work);
5364}
5365
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005366static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01005367 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005368{
5369 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5371 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00005372 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005373 struct drm_pending_vblank_event *e;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005374 struct timeval tnow, tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005375 unsigned long flags;
5376
5377 /* Ignore early vblank irqs */
5378 if (intel_crtc == NULL)
5379 return;
5380
Mario Kleiner49b14a52010-12-09 07:00:07 +01005381 do_gettimeofday(&tnow);
5382
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005383 spin_lock_irqsave(&dev->event_lock, flags);
5384 work = intel_crtc->unpin_work;
5385 if (work == NULL || !work->pending) {
5386 spin_unlock_irqrestore(&dev->event_lock, flags);
5387 return;
5388 }
5389
5390 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005391
5392 if (work->event) {
5393 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005394 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005395
5396 /* Called before vblank count and timestamps have
5397 * been updated for the vblank interval of flip
5398 * completion? Need to increment vblank count and
5399 * add one videorefresh duration to returned timestamp
Mario Kleiner49b14a52010-12-09 07:00:07 +01005400 * to account for this. We assume this happened if we
5401 * get called over 0.9 frame durations after the last
5402 * timestamped vblank.
5403 *
5404 * This calculation can not be used with vrefresh rates
5405 * below 5Hz (10Hz to be on the safe side) without
5406 * promoting to 64 integers.
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005407 */
Mario Kleiner49b14a52010-12-09 07:00:07 +01005408 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5409 9 * crtc->framedur_ns) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005410 e->event.sequence++;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005411 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5412 crtc->framedur_ns);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005413 }
5414
Mario Kleiner49b14a52010-12-09 07:00:07 +01005415 e->event.tv_sec = tvbl.tv_sec;
5416 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005417
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005418 list_add_tail(&e->base.link,
5419 &e->base.file_priv->event_list);
5420 wake_up_interruptible(&e->base.file_priv->event_wait);
5421 }
5422
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005423 drm_vblank_put(dev, intel_crtc->pipe);
5424
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005425 spin_unlock_irqrestore(&dev->event_lock, flags);
5426
Chris Wilson05394f32010-11-08 19:18:58 +00005427 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00005428
Chris Wilsone59f2ba2010-10-07 17:28:15 +01005429 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00005430 &obj->pending_flip.counter);
5431 if (atomic_read(&obj->pending_flip) == 0)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005432 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005433
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005434 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07005435
5436 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005437}
5438
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005439void intel_finish_page_flip(struct drm_device *dev, int pipe)
5440{
5441 drm_i915_private_t *dev_priv = dev->dev_private;
5442 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5443
Mario Kleiner49b14a52010-12-09 07:00:07 +01005444 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005445}
5446
5447void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5448{
5449 drm_i915_private_t *dev_priv = dev->dev_private;
5450 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5451
Mario Kleiner49b14a52010-12-09 07:00:07 +01005452 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005453}
5454
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005455void intel_prepare_page_flip(struct drm_device *dev, int plane)
5456{
5457 drm_i915_private_t *dev_priv = dev->dev_private;
5458 struct intel_crtc *intel_crtc =
5459 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5460 unsigned long flags;
5461
5462 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08005463 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005464 if ((++intel_crtc->unpin_work->pending) > 1)
5465 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08005466 } else {
5467 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5468 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005469 spin_unlock_irqrestore(&dev->event_lock, flags);
5470}
5471
5472static int intel_crtc_page_flip(struct drm_crtc *crtc,
5473 struct drm_framebuffer *fb,
5474 struct drm_pending_vblank_event *event)
5475{
5476 struct drm_device *dev = crtc->dev;
5477 struct drm_i915_private *dev_priv = dev->dev_private;
5478 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00005479 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005480 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5481 struct intel_unpin_work *work;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07005482 unsigned long flags, offset;
Chris Wilson52e68632010-08-08 10:15:59 +01005483 int pipe = intel_crtc->pipe;
Chris Wilson20f0cd52010-09-23 11:00:38 +01005484 u32 pf, pipesrc;
Chris Wilson52e68632010-08-08 10:15:59 +01005485 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005486
5487 work = kzalloc(sizeof *work, GFP_KERNEL);
5488 if (work == NULL)
5489 return -ENOMEM;
5490
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005491 work->event = event;
5492 work->dev = crtc->dev;
5493 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005494 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005495 INIT_WORK(&work->work, intel_unpin_work_fn);
5496
5497 /* We borrow the event spin lock for protecting unpin_work */
5498 spin_lock_irqsave(&dev->event_lock, flags);
5499 if (intel_crtc->unpin_work) {
5500 spin_unlock_irqrestore(&dev->event_lock, flags);
5501 kfree(work);
Chris Wilson468f0b42010-05-27 13:18:13 +01005502
5503 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005504 return -EBUSY;
5505 }
5506 intel_crtc->unpin_work = work;
5507 spin_unlock_irqrestore(&dev->event_lock, flags);
5508
5509 intel_fb = to_intel_framebuffer(fb);
5510 obj = intel_fb->obj;
5511
Chris Wilson468f0b42010-05-27 13:18:13 +01005512 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005513 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
Chris Wilson96b099f2010-06-07 14:03:04 +01005514 if (ret)
5515 goto cleanup_work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005516
Jesse Barnes75dfca82010-02-10 15:09:44 -08005517 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00005518 drm_gem_object_reference(&work->old_fb_obj->base);
5519 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005520
5521 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01005522
5523 ret = drm_vblank_get(dev, intel_crtc->pipe);
5524 if (ret)
5525 goto cleanup_objs;
5526
Chris Wilsonc7f9f9a2010-09-19 15:05:13 +01005527 if (IS_GEN3(dev) || IS_GEN2(dev)) {
5528 u32 flip_mask;
5529
5530 /* Can't queue multiple flips, so wait for the previous
5531 * one to finish before executing the next.
5532 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005533 ret = BEGIN_LP_RING(2);
5534 if (ret)
5535 goto cleanup_objs;
5536
Chris Wilsonc7f9f9a2010-09-19 15:05:13 +01005537 if (intel_crtc->plane)
5538 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5539 else
5540 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
5541 OUT_RING(MI_WAIT_FOR_EVENT | flip_mask);
5542 OUT_RING(MI_NOOP);
Daniel Vetter6146b3d2010-08-04 21:22:10 +02005543 ADVANCE_LP_RING();
5544 }
Jesse Barnes83f7fd02010-04-05 14:03:51 -07005545
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005546 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005547
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005548 work->enable_stall_check = true;
5549
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07005550 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Chris Wilson52e68632010-08-08 10:15:59 +01005551 offset = crtc->y * fb->pitch + crtc->x * fb->bits_per_pixel/8;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07005552
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005553 ret = BEGIN_LP_RING(4);
5554 if (ret)
5555 goto cleanup_objs;
5556
5557 /* Block clients from rendering to the new back buffer until
5558 * the flip occurs and the object is no longer visible.
5559 */
Chris Wilson05394f32010-11-08 19:18:58 +00005560 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005561
5562 switch (INTEL_INFO(dev)->gen) {
Chris Wilson52e68632010-08-08 10:15:59 +01005563 case 2:
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005564 OUT_RING(MI_DISPLAY_FLIP |
5565 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5566 OUT_RING(fb->pitch);
Chris Wilson05394f32010-11-08 19:18:58 +00005567 OUT_RING(obj->gtt_offset + offset);
Chris Wilson52e68632010-08-08 10:15:59 +01005568 OUT_RING(MI_NOOP);
5569 break;
5570
5571 case 3:
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005572 OUT_RING(MI_DISPLAY_FLIP_I915 |
5573 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5574 OUT_RING(fb->pitch);
Chris Wilson05394f32010-11-08 19:18:58 +00005575 OUT_RING(obj->gtt_offset + offset);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005576 OUT_RING(MI_NOOP);
Chris Wilson52e68632010-08-08 10:15:59 +01005577 break;
5578
5579 case 4:
5580 case 5:
5581 /* i965+ uses the linear or tiled offsets from the
5582 * Display Registers (which do not change across a page-flip)
5583 * so we need only reprogram the base address.
5584 */
Daniel Vetter69d0b962010-08-04 21:22:09 +02005585 OUT_RING(MI_DISPLAY_FLIP |
5586 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5587 OUT_RING(fb->pitch);
Chris Wilson05394f32010-11-08 19:18:58 +00005588 OUT_RING(obj->gtt_offset | obj->tiling_mode);
Chris Wilson52e68632010-08-08 10:15:59 +01005589
5590 /* XXX Enabling the panel-fitter across page-flip is so far
5591 * untested on non-native modes, so ignore it for now.
5592 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5593 */
5594 pf = 0;
5595 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
5596 OUT_RING(pf | pipesrc);
5597 break;
5598
5599 case 6:
5600 OUT_RING(MI_DISPLAY_FLIP |
5601 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Chris Wilson05394f32010-11-08 19:18:58 +00005602 OUT_RING(fb->pitch | obj->tiling_mode);
5603 OUT_RING(obj->gtt_offset);
Chris Wilson52e68632010-08-08 10:15:59 +01005604
5605 pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5606 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
5607 OUT_RING(pf | pipesrc);
5608 break;
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005609 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005610 ADVANCE_LP_RING();
5611
5612 mutex_unlock(&dev->struct_mutex);
5613
Jesse Barnese5510fa2010-07-01 16:48:37 -07005614 trace_i915_flip_request(intel_crtc->plane, obj);
5615
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005616 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01005617
5618cleanup_objs:
Chris Wilson05394f32010-11-08 19:18:58 +00005619 drm_gem_object_unreference(&work->old_fb_obj->base);
5620 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01005621cleanup_work:
5622 mutex_unlock(&dev->struct_mutex);
5623
5624 spin_lock_irqsave(&dev->event_lock, flags);
5625 intel_crtc->unpin_work = NULL;
5626 spin_unlock_irqrestore(&dev->event_lock, flags);
5627
5628 kfree(work);
5629
5630 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005631}
5632
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00005633static void intel_crtc_reset(struct drm_crtc *crtc)
5634{
5635 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5636
5637 /* Reset flags back to the 'unknown' status so that they
5638 * will be correctly set on the initial modeset.
5639 */
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00005640 intel_crtc->dpms_mode = -1;
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00005641}
5642
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07005643static struct drm_crtc_helper_funcs intel_helper_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08005644 .dpms = intel_crtc_dpms,
5645 .mode_fixup = intel_crtc_mode_fixup,
5646 .mode_set = intel_crtc_mode_set,
5647 .mode_set_base = intel_pipe_set_base,
Jesse Barnes81255562010-08-02 12:07:50 -07005648 .mode_set_base_atomic = intel_pipe_set_base_atomic,
Dave Airlie068143d2009-10-05 09:58:02 +10005649 .load_lut = intel_crtc_load_lut,
Chris Wilsoncdd59982010-09-08 16:30:16 +01005650 .disable = intel_crtc_disable,
Jesse Barnes79e53942008-11-07 14:24:08 -08005651};
5652
5653static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00005654 .reset = intel_crtc_reset,
Jesse Barnes79e53942008-11-07 14:24:08 -08005655 .cursor_set = intel_crtc_cursor_set,
5656 .cursor_move = intel_crtc_cursor_move,
5657 .gamma_set = intel_crtc_gamma_set,
5658 .set_config = drm_crtc_helper_set_config,
5659 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005660 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08005661};
5662
Chris Wilson47f1c6c2010-12-03 15:37:31 +00005663static void intel_sanitize_modesetting(struct drm_device *dev,
5664 int pipe, int plane)
5665{
5666 struct drm_i915_private *dev_priv = dev->dev_private;
5667 u32 reg, val;
5668
5669 if (HAS_PCH_SPLIT(dev))
5670 return;
5671
5672 /* Who knows what state these registers were left in by the BIOS or
5673 * grub?
5674 *
5675 * If we leave the registers in a conflicting state (e.g. with the
5676 * display plane reading from the other pipe than the one we intend
5677 * to use) then when we attempt to teardown the active mode, we will
5678 * not disable the pipes and planes in the correct order -- leaving
5679 * a plane reading from a disabled pipe and possibly leading to
5680 * undefined behaviour.
5681 */
5682
5683 reg = DSPCNTR(plane);
5684 val = I915_READ(reg);
5685
5686 if ((val & DISPLAY_PLANE_ENABLE) == 0)
5687 return;
5688 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
5689 return;
5690
5691 /* This display plane is active and attached to the other CPU pipe. */
5692 pipe = !pipe;
5693
5694 /* Disable the plane and wait for it to stop reading from the pipe. */
5695 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
5696 intel_flush_display_plane(dev, plane);
5697
5698 if (IS_GEN2(dev))
5699 intel_wait_for_vblank(dev, pipe);
5700
5701 if (pipe == 0 && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
5702 return;
5703
5704 /* Switch off the pipe. */
5705 reg = PIPECONF(pipe);
5706 val = I915_READ(reg);
5707 if (val & PIPECONF_ENABLE) {
5708 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
5709 intel_wait_for_pipe_off(dev, pipe);
5710 }
5711}
Jesse Barnes79e53942008-11-07 14:24:08 -08005712
Hannes Ederb358d0a2008-12-18 21:18:47 +01005713static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08005714{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005715 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005716 struct intel_crtc *intel_crtc;
5717 int i;
5718
5719 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
5720 if (intel_crtc == NULL)
5721 return;
5722
5723 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
5724
5725 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08005726 for (i = 0; i < 256; i++) {
5727 intel_crtc->lut_r[i] = i;
5728 intel_crtc->lut_g[i] = i;
5729 intel_crtc->lut_b[i] = i;
5730 }
5731
Jesse Barnes80824002009-09-10 15:28:06 -07005732 /* Swap pipes & planes for FBC on pre-965 */
5733 intel_crtc->pipe = pipe;
5734 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01005735 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005736 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01005737 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07005738 }
5739
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005740 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
5741 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
5742 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
5743 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
5744
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00005745 intel_crtc_reset(&intel_crtc->base);
Chris Wilson04dbff52011-02-10 17:38:35 +00005746 intel_crtc->active = true; /* force the pipe off on setup_init_config */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07005747
5748 if (HAS_PCH_SPLIT(dev)) {
5749 intel_helper_funcs.prepare = ironlake_crtc_prepare;
5750 intel_helper_funcs.commit = ironlake_crtc_commit;
5751 } else {
5752 intel_helper_funcs.prepare = i9xx_crtc_prepare;
5753 intel_helper_funcs.commit = i9xx_crtc_commit;
5754 }
5755
Jesse Barnes79e53942008-11-07 14:24:08 -08005756 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
5757
Jesse Barnes652c3932009-08-17 13:31:43 -07005758 intel_crtc->busy = false;
5759
5760 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
5761 (unsigned long)intel_crtc);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00005762
5763 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
Jesse Barnes79e53942008-11-07 14:24:08 -08005764}
5765
Carl Worth08d7b3d2009-04-29 14:43:54 -07005766int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00005767 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07005768{
5769 drm_i915_private_t *dev_priv = dev->dev_private;
5770 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02005771 struct drm_mode_object *drmmode_obj;
5772 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005773
5774 if (!dev_priv) {
5775 DRM_ERROR("called with no initialization\n");
5776 return -EINVAL;
5777 }
5778
Daniel Vetterc05422d2009-08-11 16:05:30 +02005779 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
5780 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07005781
Daniel Vetterc05422d2009-08-11 16:05:30 +02005782 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07005783 DRM_ERROR("no such CRTC id\n");
5784 return -EINVAL;
5785 }
5786
Daniel Vetterc05422d2009-08-11 16:05:30 +02005787 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
5788 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005789
Daniel Vetterc05422d2009-08-11 16:05:30 +02005790 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005791}
5792
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005793static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005794{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005795 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005796 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005797 int entry = 0;
5798
Chris Wilson4ef69c72010-09-09 15:14:28 +01005799 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
5800 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005801 index_mask |= (1 << entry);
5802 entry++;
5803 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01005804
Jesse Barnes79e53942008-11-07 14:24:08 -08005805 return index_mask;
5806}
5807
Chris Wilson4d302442010-12-14 19:21:29 +00005808static bool has_edp_a(struct drm_device *dev)
5809{
5810 struct drm_i915_private *dev_priv = dev->dev_private;
5811
5812 if (!IS_MOBILE(dev))
5813 return false;
5814
5815 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
5816 return false;
5817
5818 if (IS_GEN5(dev) &&
5819 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
5820 return false;
5821
5822 return true;
5823}
5824
Jesse Barnes79e53942008-11-07 14:24:08 -08005825static void intel_setup_outputs(struct drm_device *dev)
5826{
Eric Anholt725e30a2009-01-22 13:01:02 -08005827 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005828 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005829 bool dpd_is_edp = false;
Chris Wilsonc5d1b512010-11-29 18:00:23 +00005830 bool has_lvds = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005831
Zhenyu Wang541998a2009-06-05 15:38:44 +08005832 if (IS_MOBILE(dev) && !IS_I830(dev))
Chris Wilsonc5d1b512010-11-29 18:00:23 +00005833 has_lvds = intel_lvds_init(dev);
5834 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
5835 /* disable the panel fitter on everything but LVDS */
5836 I915_WRITE(PFIT_CONTROL, 0);
5837 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005838
Eric Anholtbad720f2009-10-22 16:11:14 -07005839 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005840 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005841
Chris Wilson4d302442010-12-14 19:21:29 +00005842 if (has_edp_a(dev))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005843 intel_dp_init(dev, DP_A);
5844
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005845 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
5846 intel_dp_init(dev, PCH_DP_D);
5847 }
5848
5849 intel_crt_init(dev);
5850
5851 if (HAS_PCH_SPLIT(dev)) {
5852 int found;
5853
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005854 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08005855 /* PCH SDVOB multiplex with HDMIB */
5856 found = intel_sdvo_init(dev, PCH_SDVOB);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005857 if (!found)
5858 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005859 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
5860 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005861 }
5862
5863 if (I915_READ(HDMIC) & PORT_DETECTED)
5864 intel_hdmi_init(dev, HDMIC);
5865
5866 if (I915_READ(HDMID) & PORT_DETECTED)
5867 intel_hdmi_init(dev, HDMID);
5868
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005869 if (I915_READ(PCH_DP_C) & DP_DETECTED)
5870 intel_dp_init(dev, PCH_DP_C);
5871
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005872 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005873 intel_dp_init(dev, PCH_DP_D);
5874
Zhenyu Wang103a1962009-11-27 11:44:36 +08005875 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08005876 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08005877
Eric Anholt725e30a2009-01-22 13:01:02 -08005878 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005879 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005880 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005881 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
5882 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005883 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005884 }
Ma Ling27185ae2009-08-24 13:50:23 +08005885
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005886 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
5887 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005888 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005889 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005890 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005891
5892 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005893
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005894 if (I915_READ(SDVOB) & SDVO_DETECTED) {
5895 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005896 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005897 }
Ma Ling27185ae2009-08-24 13:50:23 +08005898
5899 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
5900
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005901 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
5902 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005903 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005904 }
5905 if (SUPPORTS_INTEGRATED_DP(dev)) {
5906 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005907 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005908 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005909 }
Ma Ling27185ae2009-08-24 13:50:23 +08005910
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005911 if (SUPPORTS_INTEGRATED_DP(dev) &&
5912 (I915_READ(DP_D) & DP_DETECTED)) {
5913 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005914 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005915 }
Eric Anholtbad720f2009-10-22 16:11:14 -07005916 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005917 intel_dvo_init(dev);
5918
Zhenyu Wang103a1962009-11-27 11:44:36 +08005919 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005920 intel_tv_init(dev);
5921
Chris Wilson4ef69c72010-09-09 15:14:28 +01005922 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
5923 encoder->base.possible_crtcs = encoder->crtc_mask;
5924 encoder->base.possible_clones =
5925 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08005926 }
Chris Wilson47356eb2011-01-11 17:06:04 +00005927
5928 intel_panel_setup_backlight(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005929}
5930
5931static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
5932{
5933 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005934
5935 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00005936 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08005937
5938 kfree(intel_fb);
5939}
5940
5941static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00005942 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08005943 unsigned int *handle)
5944{
5945 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00005946 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08005947
Chris Wilson05394f32010-11-08 19:18:58 +00005948 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08005949}
5950
5951static const struct drm_framebuffer_funcs intel_fb_funcs = {
5952 .destroy = intel_user_framebuffer_destroy,
5953 .create_handle = intel_user_framebuffer_create_handle,
5954};
5955
Dave Airlie38651672010-03-30 05:34:13 +00005956int intel_framebuffer_init(struct drm_device *dev,
5957 struct intel_framebuffer *intel_fb,
5958 struct drm_mode_fb_cmd *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00005959 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08005960{
Jesse Barnes79e53942008-11-07 14:24:08 -08005961 int ret;
5962
Chris Wilson05394f32010-11-08 19:18:58 +00005963 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01005964 return -EINVAL;
5965
5966 if (mode_cmd->pitch & 63)
5967 return -EINVAL;
5968
5969 switch (mode_cmd->bpp) {
5970 case 8:
5971 case 16:
5972 case 24:
5973 case 32:
5974 break;
5975 default:
5976 return -EINVAL;
5977 }
5978
Jesse Barnes79e53942008-11-07 14:24:08 -08005979 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
5980 if (ret) {
5981 DRM_ERROR("framebuffer init failed %d\n", ret);
5982 return ret;
5983 }
5984
5985 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08005986 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08005987 return 0;
5988}
5989
Jesse Barnes79e53942008-11-07 14:24:08 -08005990static struct drm_framebuffer *
5991intel_user_framebuffer_create(struct drm_device *dev,
5992 struct drm_file *filp,
5993 struct drm_mode_fb_cmd *mode_cmd)
5994{
Chris Wilson05394f32010-11-08 19:18:58 +00005995 struct drm_i915_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00005996 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005997 int ret;
5998
Chris Wilson05394f32010-11-08 19:18:58 +00005999 obj = to_intel_bo(drm_gem_object_lookup(dev, filp, mode_cmd->handle));
Jesse Barnes79e53942008-11-07 14:24:08 -08006000 if (!obj)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006001 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08006002
Dave Airlie38651672010-03-30 05:34:13 +00006003 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6004 if (!intel_fb)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006005 return ERR_PTR(-ENOMEM);
Dave Airlie38651672010-03-30 05:34:13 +00006006
Chris Wilson05394f32010-11-08 19:18:58 +00006007 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08006008 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00006009 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie38651672010-03-30 05:34:13 +00006010 kfree(intel_fb);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006011 return ERR_PTR(ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08006012 }
6013
Dave Airlie38651672010-03-30 05:34:13 +00006014 return &intel_fb->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006015}
6016
Jesse Barnes79e53942008-11-07 14:24:08 -08006017static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006018 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006019 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08006020};
6021
Chris Wilson05394f32010-11-08 19:18:58 +00006022static struct drm_i915_gem_object *
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006023intel_alloc_context_page(struct drm_device *dev)
Chris Wilson9ea8d052010-01-04 18:57:56 +00006024{
Chris Wilson05394f32010-11-08 19:18:58 +00006025 struct drm_i915_gem_object *ctx;
Chris Wilson9ea8d052010-01-04 18:57:56 +00006026 int ret;
6027
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006028 ctx = i915_gem_alloc_object(dev, 4096);
6029 if (!ctx) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00006030 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
6031 return NULL;
6032 }
6033
6034 mutex_lock(&dev->struct_mutex);
Daniel Vetter75e9e912010-11-04 17:11:09 +01006035 ret = i915_gem_object_pin(ctx, 4096, true);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006036 if (ret) {
6037 DRM_ERROR("failed to pin power context: %d\n", ret);
6038 goto err_unref;
6039 }
6040
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006041 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006042 if (ret) {
6043 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
6044 goto err_unpin;
6045 }
6046 mutex_unlock(&dev->struct_mutex);
6047
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006048 return ctx;
Chris Wilson9ea8d052010-01-04 18:57:56 +00006049
6050err_unpin:
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006051 i915_gem_object_unpin(ctx);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006052err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00006053 drm_gem_object_unreference(&ctx->base);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006054 mutex_unlock(&dev->struct_mutex);
6055 return NULL;
6056}
6057
Jesse Barnes7648fa92010-05-20 14:28:11 -07006058bool ironlake_set_drps(struct drm_device *dev, u8 val)
6059{
6060 struct drm_i915_private *dev_priv = dev->dev_private;
6061 u16 rgvswctl;
6062
6063 rgvswctl = I915_READ16(MEMSWCTL);
6064 if (rgvswctl & MEMCTL_CMD_STS) {
6065 DRM_DEBUG("gpu busy, RCS change rejected\n");
6066 return false; /* still busy with another command */
6067 }
6068
6069 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
6070 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
6071 I915_WRITE16(MEMSWCTL, rgvswctl);
6072 POSTING_READ16(MEMSWCTL);
6073
6074 rgvswctl |= MEMCTL_CMD_STS;
6075 I915_WRITE16(MEMSWCTL, rgvswctl);
6076
6077 return true;
6078}
6079
Jesse Barnesf97108d2010-01-29 11:27:07 -08006080void ironlake_enable_drps(struct drm_device *dev)
6081{
6082 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07006083 u32 rgvmodectl = I915_READ(MEMMODECTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006084 u8 fmax, fmin, fstart, vstart;
Jesse Barnesf97108d2010-01-29 11:27:07 -08006085
Jesse Barnesea056c12010-09-10 10:02:13 -07006086 /* Enable temp reporting */
6087 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
6088 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
6089
Jesse Barnesf97108d2010-01-29 11:27:07 -08006090 /* 100ms RC evaluation intervals */
6091 I915_WRITE(RCUPEI, 100000);
6092 I915_WRITE(RCDNEI, 100000);
6093
6094 /* Set max/min thresholds to 90ms and 80ms respectively */
6095 I915_WRITE(RCBMAXAVG, 90000);
6096 I915_WRITE(RCBMINAVG, 80000);
6097
6098 I915_WRITE(MEMIHYST, 1);
6099
6100 /* Set up min, max, and cur for interrupt handling */
6101 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
6102 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
6103 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
6104 MEMMODE_FSTART_SHIFT;
Jesse Barnes7648fa92010-05-20 14:28:11 -07006105
Jesse Barnesf97108d2010-01-29 11:27:07 -08006106 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
6107 PXVFREQ_PX_SHIFT;
6108
Jesse Barnes80dbf4b2010-11-01 14:12:01 -07006109 dev_priv->fmax = fmax; /* IPS callback will increase this */
Jesse Barnes7648fa92010-05-20 14:28:11 -07006110 dev_priv->fstart = fstart;
6111
Jesse Barnes80dbf4b2010-11-01 14:12:01 -07006112 dev_priv->max_delay = fstart;
Jesse Barnesf97108d2010-01-29 11:27:07 -08006113 dev_priv->min_delay = fmin;
6114 dev_priv->cur_delay = fstart;
6115
Jesse Barnes80dbf4b2010-11-01 14:12:01 -07006116 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
6117 fmax, fmin, fstart);
Jesse Barnes7648fa92010-05-20 14:28:11 -07006118
Jesse Barnesf97108d2010-01-29 11:27:07 -08006119 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
6120
6121 /*
6122 * Interrupts will be enabled in ironlake_irq_postinstall
6123 */
6124
6125 I915_WRITE(VIDSTART, vstart);
6126 POSTING_READ(VIDSTART);
6127
6128 rgvmodectl |= MEMMODE_SWMODE_EN;
6129 I915_WRITE(MEMMODECTL, rgvmodectl);
6130
Chris Wilson481b6af2010-08-23 17:43:35 +01006131 if (wait_for((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Chris Wilson913d8d12010-08-07 11:01:35 +01006132 DRM_ERROR("stuck trying to change perf mode\n");
Jesse Barnesf97108d2010-01-29 11:27:07 -08006133 msleep(1);
6134
Jesse Barnes7648fa92010-05-20 14:28:11 -07006135 ironlake_set_drps(dev, fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006136
Jesse Barnes7648fa92010-05-20 14:28:11 -07006137 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
6138 I915_READ(0x112e0);
6139 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
6140 dev_priv->last_count2 = I915_READ(0x112f4);
6141 getrawmonotonic(&dev_priv->last_time2);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006142}
6143
6144void ironlake_disable_drps(struct drm_device *dev)
6145{
6146 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07006147 u16 rgvswctl = I915_READ16(MEMSWCTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006148
6149 /* Ack interrupts, disable EFC interrupt */
6150 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
6151 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
6152 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
6153 I915_WRITE(DEIIR, DE_PCU_EVENT);
6154 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
6155
6156 /* Go back to the starting frequency */
Jesse Barnes7648fa92010-05-20 14:28:11 -07006157 ironlake_set_drps(dev, dev_priv->fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006158 msleep(1);
6159 rgvswctl |= MEMCTL_CMD_STS;
6160 I915_WRITE(MEMSWCTL, rgvswctl);
6161 msleep(1);
6162
6163}
6164
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006165void gen6_set_rps(struct drm_device *dev, u8 val)
6166{
6167 struct drm_i915_private *dev_priv = dev->dev_private;
6168 u32 swreq;
6169
6170 swreq = (val & 0x3ff) << 25;
6171 I915_WRITE(GEN6_RPNSWREQ, swreq);
6172}
6173
6174void gen6_disable_rps(struct drm_device *dev)
6175{
6176 struct drm_i915_private *dev_priv = dev->dev_private;
6177
6178 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
6179 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
6180 I915_WRITE(GEN6_PMIER, 0);
6181 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
6182}
6183
Jesse Barnes7648fa92010-05-20 14:28:11 -07006184static unsigned long intel_pxfreq(u32 vidfreq)
6185{
6186 unsigned long freq;
6187 int div = (vidfreq & 0x3f0000) >> 16;
6188 int post = (vidfreq & 0x3000) >> 12;
6189 int pre = (vidfreq & 0x7);
6190
6191 if (!pre)
6192 return 0;
6193
6194 freq = ((div * 133333) / ((1<<post) * pre));
6195
6196 return freq;
6197}
6198
6199void intel_init_emon(struct drm_device *dev)
6200{
6201 struct drm_i915_private *dev_priv = dev->dev_private;
6202 u32 lcfuse;
6203 u8 pxw[16];
6204 int i;
6205
6206 /* Disable to program */
6207 I915_WRITE(ECR, 0);
6208 POSTING_READ(ECR);
6209
6210 /* Program energy weights for various events */
6211 I915_WRITE(SDEW, 0x15040d00);
6212 I915_WRITE(CSIEW0, 0x007f0000);
6213 I915_WRITE(CSIEW1, 0x1e220004);
6214 I915_WRITE(CSIEW2, 0x04000004);
6215
6216 for (i = 0; i < 5; i++)
6217 I915_WRITE(PEW + (i * 4), 0);
6218 for (i = 0; i < 3; i++)
6219 I915_WRITE(DEW + (i * 4), 0);
6220
6221 /* Program P-state weights to account for frequency power adjustment */
6222 for (i = 0; i < 16; i++) {
6223 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
6224 unsigned long freq = intel_pxfreq(pxvidfreq);
6225 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6226 PXVFREQ_PX_SHIFT;
6227 unsigned long val;
6228
6229 val = vid * vid;
6230 val *= (freq / 1000);
6231 val *= 255;
6232 val /= (127*127*900);
6233 if (val > 0xff)
6234 DRM_ERROR("bad pxval: %ld\n", val);
6235 pxw[i] = val;
6236 }
6237 /* Render standby states get 0 weight */
6238 pxw[14] = 0;
6239 pxw[15] = 0;
6240
6241 for (i = 0; i < 4; i++) {
6242 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6243 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
6244 I915_WRITE(PXW + (i * 4), val);
6245 }
6246
6247 /* Adjust magic regs to magic values (more experimental results) */
6248 I915_WRITE(OGW0, 0);
6249 I915_WRITE(OGW1, 0);
6250 I915_WRITE(EG0, 0x00007f00);
6251 I915_WRITE(EG1, 0x0000000e);
6252 I915_WRITE(EG2, 0x000e0000);
6253 I915_WRITE(EG3, 0x68000300);
6254 I915_WRITE(EG4, 0x42000000);
6255 I915_WRITE(EG5, 0x00140031);
6256 I915_WRITE(EG6, 0);
6257 I915_WRITE(EG7, 0);
6258
6259 for (i = 0; i < 8; i++)
6260 I915_WRITE(PXWL + (i * 4), 0);
6261
6262 /* Enable PMON + select events */
6263 I915_WRITE(ECR, 0x80000019);
6264
6265 lcfuse = I915_READ(LCFUSE02);
6266
6267 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
6268}
6269
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006270void gen6_enable_rps(struct drm_i915_private *dev_priv)
Chris Wilson8fd26852010-12-08 18:40:43 +00006271{
Jesse Barnesa6044e22010-12-20 11:34:20 -08006272 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
6273 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
6274 u32 pcu_mbox;
6275 int cur_freq, min_freq, max_freq;
Chris Wilson8fd26852010-12-08 18:40:43 +00006276 int i;
6277
6278 /* Here begins a magic sequence of register writes to enable
6279 * auto-downclocking.
6280 *
6281 * Perhaps there might be some value in exposing these to
6282 * userspace...
6283 */
6284 I915_WRITE(GEN6_RC_STATE, 0);
6285 __gen6_force_wake_get(dev_priv);
6286
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006287 /* disable the counters and set deterministic thresholds */
Chris Wilson8fd26852010-12-08 18:40:43 +00006288 I915_WRITE(GEN6_RC_CONTROL, 0);
6289
6290 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6291 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6292 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6293 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6294 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6295
6296 for (i = 0; i < I915_NUM_RINGS; i++)
6297 I915_WRITE(RING_MAX_IDLE(dev_priv->ring[i].mmio_base), 10);
6298
6299 I915_WRITE(GEN6_RC_SLEEP, 0);
6300 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
6301 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
6302 I915_WRITE(GEN6_RC6p_THRESHOLD, 100000);
6303 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6304
6305 I915_WRITE(GEN6_RC_CONTROL,
6306 GEN6_RC_CTL_RC6p_ENABLE |
6307 GEN6_RC_CTL_RC6_ENABLE |
Chris Wilson9c3d2f72010-12-17 10:54:26 +00006308 GEN6_RC_CTL_EI_MODE(1) |
Chris Wilson8fd26852010-12-08 18:40:43 +00006309 GEN6_RC_CTL_HW_ENABLE);
6310
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006311 I915_WRITE(GEN6_RPNSWREQ,
Chris Wilson8fd26852010-12-08 18:40:43 +00006312 GEN6_FREQUENCY(10) |
6313 GEN6_OFFSET(0) |
6314 GEN6_AGGRESSIVE_TURBO);
6315 I915_WRITE(GEN6_RC_VIDEO_FREQ,
6316 GEN6_FREQUENCY(12));
6317
6318 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
6319 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
6320 18 << 24 |
6321 6 << 16);
6322 I915_WRITE(GEN6_RP_UP_THRESHOLD, 90000);
6323 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 100000);
6324 I915_WRITE(GEN6_RP_UP_EI, 100000);
6325 I915_WRITE(GEN6_RP_DOWN_EI, 300000);
6326 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6327 I915_WRITE(GEN6_RP_CONTROL,
6328 GEN6_RP_MEDIA_TURBO |
6329 GEN6_RP_USE_NORMAL_FREQ |
6330 GEN6_RP_MEDIA_IS_GFX |
6331 GEN6_RP_ENABLE |
6332 GEN6_RP_UP_BUSY_MAX |
6333 GEN6_RP_DOWN_BUSY_MIN);
6334
6335 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6336 500))
6337 DRM_ERROR("timeout waiting for pcode mailbox to become idle\n");
6338
6339 I915_WRITE(GEN6_PCODE_DATA, 0);
6340 I915_WRITE(GEN6_PCODE_MAILBOX,
6341 GEN6_PCODE_READY |
6342 GEN6_PCODE_WRITE_MIN_FREQ_TABLE);
6343 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6344 500))
6345 DRM_ERROR("timeout waiting for pcode mailbox to finish\n");
6346
Jesse Barnesa6044e22010-12-20 11:34:20 -08006347 min_freq = (rp_state_cap & 0xff0000) >> 16;
6348 max_freq = rp_state_cap & 0xff;
6349 cur_freq = (gt_perf_status & 0xff00) >> 8;
6350
6351 /* Check for overclock support */
6352 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6353 500))
6354 DRM_ERROR("timeout waiting for pcode mailbox to become idle\n");
6355 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_READ_OC_PARAMS);
6356 pcu_mbox = I915_READ(GEN6_PCODE_DATA);
6357 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6358 500))
6359 DRM_ERROR("timeout waiting for pcode mailbox to finish\n");
6360 if (pcu_mbox & (1<<31)) { /* OC supported */
6361 max_freq = pcu_mbox & 0xff;
6362 DRM_DEBUG_DRIVER("overclocking supported, adjusting frequency max to %dMHz\n", pcu_mbox * 100);
6363 }
6364
6365 /* In units of 100MHz */
6366 dev_priv->max_delay = max_freq;
6367 dev_priv->min_delay = min_freq;
6368 dev_priv->cur_delay = cur_freq;
6369
Chris Wilson8fd26852010-12-08 18:40:43 +00006370 /* requires MSI enabled */
6371 I915_WRITE(GEN6_PMIER,
6372 GEN6_PM_MBOX_EVENT |
6373 GEN6_PM_THERMAL_EVENT |
6374 GEN6_PM_RP_DOWN_TIMEOUT |
6375 GEN6_PM_RP_UP_THRESHOLD |
6376 GEN6_PM_RP_DOWN_THRESHOLD |
6377 GEN6_PM_RP_UP_EI_EXPIRED |
6378 GEN6_PM_RP_DOWN_EI_EXPIRED);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006379 I915_WRITE(GEN6_PMIMR, 0);
6380 /* enable all PM interrupts */
6381 I915_WRITE(GEN6_PMINTRMSK, 0);
Chris Wilson8fd26852010-12-08 18:40:43 +00006382
6383 __gen6_force_wake_put(dev_priv);
6384}
6385
Chris Wilson0cdab212010-12-05 17:27:06 +00006386void intel_enable_clock_gating(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07006387{
6388 struct drm_i915_private *dev_priv = dev->dev_private;
6389
6390 /*
6391 * Disable clock gating reported to work incorrectly according to the
6392 * specs, but enable as much else as we can.
6393 */
Eric Anholtbad720f2009-10-22 16:11:14 -07006394 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07006395 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
6396
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006397 if (IS_GEN5(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07006398 /* Required for FBC */
Jesse Barnes1ffa3252011-01-17 13:35:57 -08006399 dspclk_gate |= DPFCUNIT_CLOCK_GATE_DISABLE |
6400 DPFCRUNIT_CLOCK_GATE_DISABLE |
6401 DPFDUNIT_CLOCK_GATE_DISABLE;
Eric Anholt8956c8b2010-03-18 13:21:14 -07006402 /* Required for CxSR */
6403 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
6404
6405 I915_WRITE(PCH_3DCGDIS0,
6406 MARIUNIT_CLOCK_GATE_DISABLE |
6407 SVSMUNIT_CLOCK_GATE_DISABLE);
Eric Anholt06f37752010-12-14 10:06:46 -08006408 I915_WRITE(PCH_3DCGDIS1,
6409 VFMUNIT_CLOCK_GATE_DISABLE);
Eric Anholt8956c8b2010-03-18 13:21:14 -07006410 }
6411
6412 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006413
6414 /*
Jesse Barnes382b0932010-10-07 16:01:25 -07006415 * On Ibex Peak and Cougar Point, we need to disable clock
6416 * gating for the panel power sequencer or it will fail to
6417 * start up when no ports are active.
6418 */
6419 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6420
6421 /*
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006422 * According to the spec the following bits should be set in
6423 * order to enable memory self-refresh
6424 * The bit 22/21 of 0x42004
6425 * The bit 5 of 0x42020
6426 * The bit 15 of 0x45000
6427 */
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006428 if (IS_GEN5(dev)) {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006429 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6430 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6431 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
6432 I915_WRITE(ILK_DSPCLK_GATE,
6433 (I915_READ(ILK_DSPCLK_GATE) |
6434 ILK_DPARB_CLK_GATE));
6435 I915_WRITE(DISP_ARB_CTL,
6436 (I915_READ(DISP_ARB_CTL) |
6437 DISP_FBC_WM_DIS));
Yuanhan Liu13982612010-12-15 15:42:31 +08006438 I915_WRITE(WM3_LP_ILK, 0);
6439 I915_WRITE(WM2_LP_ILK, 0);
6440 I915_WRITE(WM1_LP_ILK, 0);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006441 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08006442 /*
6443 * Based on the document from hardware guys the following bits
6444 * should be set unconditionally in order to enable FBC.
6445 * The bit 22 of 0x42000
6446 * The bit 22 of 0x42004
6447 * The bit 7,8,9 of 0x42020.
6448 */
6449 if (IS_IRONLAKE_M(dev)) {
6450 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6451 I915_READ(ILK_DISPLAY_CHICKEN1) |
6452 ILK_FBCQ_DIS);
6453 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6454 I915_READ(ILK_DISPLAY_CHICKEN2) |
6455 ILK_DPARB_GATE);
6456 I915_WRITE(ILK_DSPCLK_GATE,
6457 I915_READ(ILK_DSPCLK_GATE) |
6458 ILK_DPFC_DIS1 |
6459 ILK_DPFC_DIS2 |
6460 ILK_CLK_FBC);
6461 }
Eric Anholtde6e2ea2010-11-06 14:53:32 -07006462
Eric Anholt67e92af2010-11-06 14:53:33 -07006463 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6464 I915_READ(ILK_DISPLAY_CHICKEN2) |
6465 ILK_ELPIN_409_SELECT);
6466
Eric Anholtde6e2ea2010-11-06 14:53:32 -07006467 if (IS_GEN5(dev)) {
6468 I915_WRITE(_3D_CHICKEN2,
6469 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6470 _3D_CHICKEN2_WM_READ_PIPELINED);
6471 }
Chris Wilson8fd26852010-12-08 18:40:43 +00006472
Yuanhan Liu13982612010-12-15 15:42:31 +08006473 if (IS_GEN6(dev)) {
6474 I915_WRITE(WM3_LP_ILK, 0);
6475 I915_WRITE(WM2_LP_ILK, 0);
6476 I915_WRITE(WM1_LP_ILK, 0);
6477
6478 /*
6479 * According to the spec the following bits should be
6480 * set in order to enable memory self-refresh and fbc:
6481 * The bit21 and bit22 of 0x42000
6482 * The bit21 and bit22 of 0x42004
6483 * The bit5 and bit7 of 0x42020
6484 * The bit14 of 0x70180
6485 * The bit14 of 0x71180
6486 */
6487 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6488 I915_READ(ILK_DISPLAY_CHICKEN1) |
6489 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6490 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6491 I915_READ(ILK_DISPLAY_CHICKEN2) |
6492 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
6493 I915_WRITE(ILK_DSPCLK_GATE,
6494 I915_READ(ILK_DSPCLK_GATE) |
6495 ILK_DPARB_CLK_GATE |
6496 ILK_DPFD_CLK_GATE);
6497
6498 I915_WRITE(DSPACNTR,
6499 I915_READ(DSPACNTR) |
6500 DISPPLANE_TRICKLE_FEED_DISABLE);
6501 I915_WRITE(DSPBCNTR,
6502 I915_READ(DSPBCNTR) |
6503 DISPPLANE_TRICKLE_FEED_DISABLE);
6504 }
Zhenyu Wangc03342f2009-09-29 11:01:23 +08006505 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006506 uint32_t dspclk_gate;
6507 I915_WRITE(RENCLK_GATE_D1, 0);
6508 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6509 GS_UNIT_CLOCK_GATE_DISABLE |
6510 CL_UNIT_CLOCK_GATE_DISABLE);
6511 I915_WRITE(RAMCLK_GATE_D, 0);
6512 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6513 OVRUNIT_CLOCK_GATE_DISABLE |
6514 OVCUNIT_CLOCK_GATE_DISABLE;
6515 if (IS_GM45(dev))
6516 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6517 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006518 } else if (IS_CRESTLINE(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006519 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6520 I915_WRITE(RENCLK_GATE_D2, 0);
6521 I915_WRITE(DSPCLK_GATE_D, 0);
6522 I915_WRITE(RAMCLK_GATE_D, 0);
6523 I915_WRITE16(DEUC, 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006524 } else if (IS_BROADWATER(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006525 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6526 I965_RCC_CLOCK_GATE_DISABLE |
6527 I965_RCPB_CLOCK_GATE_DISABLE |
6528 I965_ISC_CLOCK_GATE_DISABLE |
6529 I965_FBC_CLOCK_GATE_DISABLE);
6530 I915_WRITE(RENCLK_GATE_D2, 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006531 } else if (IS_GEN3(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006532 u32 dstate = I915_READ(D_STATE);
6533
6534 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6535 DSTATE_DOT_CLOCK_GATING;
6536 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02006537 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006538 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
6539 } else if (IS_I830(dev)) {
6540 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
6541 }
6542}
6543
Chris Wilsonac668082011-02-09 16:15:32 +00006544static void ironlake_teardown_rc6(struct drm_device *dev)
Chris Wilson0cdab212010-12-05 17:27:06 +00006545{
6546 struct drm_i915_private *dev_priv = dev->dev_private;
6547
6548 if (dev_priv->renderctx) {
Chris Wilsonac668082011-02-09 16:15:32 +00006549 i915_gem_object_unpin(dev_priv->renderctx);
6550 drm_gem_object_unreference(&dev_priv->renderctx->base);
Chris Wilson0cdab212010-12-05 17:27:06 +00006551 dev_priv->renderctx = NULL;
6552 }
6553
6554 if (dev_priv->pwrctx) {
Chris Wilsonac668082011-02-09 16:15:32 +00006555 i915_gem_object_unpin(dev_priv->pwrctx);
6556 drm_gem_object_unreference(&dev_priv->pwrctx->base);
Chris Wilson0cdab212010-12-05 17:27:06 +00006557 dev_priv->pwrctx = NULL;
6558 }
6559}
6560
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006561static void ironlake_disable_rc6(struct drm_device *dev)
6562{
6563 struct drm_i915_private *dev_priv = dev->dev_private;
6564
Chris Wilsonac668082011-02-09 16:15:32 +00006565 if (I915_READ(PWRCTXA)) {
6566 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
6567 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
6568 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
6569 50);
6570
6571 I915_WRITE(PWRCTXA, 0);
6572 POSTING_READ(PWRCTXA);
6573
6574 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
6575 POSTING_READ(RSTDBYCTL);
6576 }
6577
Chris Wilson99507302011-02-24 09:42:52 +00006578 ironlake_teardown_rc6(dev);
Chris Wilsonac668082011-02-09 16:15:32 +00006579}
6580
6581static int ironlake_setup_rc6(struct drm_device *dev)
6582{
6583 struct drm_i915_private *dev_priv = dev->dev_private;
6584
6585 if (dev_priv->renderctx == NULL)
6586 dev_priv->renderctx = intel_alloc_context_page(dev);
6587 if (!dev_priv->renderctx)
6588 return -ENOMEM;
6589
6590 if (dev_priv->pwrctx == NULL)
6591 dev_priv->pwrctx = intel_alloc_context_page(dev);
6592 if (!dev_priv->pwrctx) {
6593 ironlake_teardown_rc6(dev);
6594 return -ENOMEM;
6595 }
6596
6597 return 0;
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006598}
6599
6600void ironlake_enable_rc6(struct drm_device *dev)
6601{
6602 struct drm_i915_private *dev_priv = dev->dev_private;
6603 int ret;
6604
Chris Wilsonac668082011-02-09 16:15:32 +00006605 /* rc6 disabled by default due to repeated reports of hanging during
6606 * boot and resume.
6607 */
6608 if (!i915_enable_rc6)
6609 return;
6610
6611 ret = ironlake_setup_rc6(dev);
6612 if (ret)
6613 return;
6614
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006615 /*
6616 * GPU can automatically power down the render unit if given a page
6617 * to save state.
6618 */
6619 ret = BEGIN_LP_RING(6);
6620 if (ret) {
Chris Wilsonac668082011-02-09 16:15:32 +00006621 ironlake_teardown_rc6(dev);
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006622 return;
6623 }
Chris Wilsonac668082011-02-09 16:15:32 +00006624
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006625 OUT_RING(MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
6626 OUT_RING(MI_SET_CONTEXT);
6627 OUT_RING(dev_priv->renderctx->gtt_offset |
6628 MI_MM_SPACE_GTT |
6629 MI_SAVE_EXT_STATE_EN |
6630 MI_RESTORE_EXT_STATE_EN |
6631 MI_RESTORE_INHIBIT);
6632 OUT_RING(MI_SUSPEND_FLUSH);
6633 OUT_RING(MI_NOOP);
6634 OUT_RING(MI_FLUSH);
6635 ADVANCE_LP_RING();
6636
6637 I915_WRITE(PWRCTXA, dev_priv->pwrctx->gtt_offset | PWRCTX_EN);
6638 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
6639}
6640
Chris Wilsonac668082011-02-09 16:15:32 +00006641
Jesse Barnese70236a2009-09-21 10:42:27 -07006642/* Set up chip specific display functions */
6643static void intel_init_display(struct drm_device *dev)
6644{
6645 struct drm_i915_private *dev_priv = dev->dev_private;
6646
6647 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07006648 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006649 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07006650 else
6651 dev_priv->display.dpms = i9xx_crtc_dpms;
6652
Adam Jacksonee5382a2010-04-23 11:17:39 -04006653 if (I915_HAS_FBC(dev)) {
Yuanhan Liu9c04f012010-12-15 15:42:32 +08006654 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08006655 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
6656 dev_priv->display.enable_fbc = ironlake_enable_fbc;
6657 dev_priv->display.disable_fbc = ironlake_disable_fbc;
6658 } else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07006659 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
6660 dev_priv->display.enable_fbc = g4x_enable_fbc;
6661 dev_priv->display.disable_fbc = g4x_disable_fbc;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006662 } else if (IS_CRESTLINE(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07006663 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
6664 dev_priv->display.enable_fbc = i8xx_enable_fbc;
6665 dev_priv->display.disable_fbc = i8xx_disable_fbc;
6666 }
Jesse Barnes74dff282009-09-14 15:39:40 -07006667 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07006668 }
6669
6670 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006671 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07006672 dev_priv->display.get_display_clock_speed =
6673 i945_get_display_clock_speed;
6674 else if (IS_I915G(dev))
6675 dev_priv->display.get_display_clock_speed =
6676 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006677 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006678 dev_priv->display.get_display_clock_speed =
6679 i9xx_misc_get_display_clock_speed;
6680 else if (IS_I915GM(dev))
6681 dev_priv->display.get_display_clock_speed =
6682 i915gm_get_display_clock_speed;
6683 else if (IS_I865G(dev))
6684 dev_priv->display.get_display_clock_speed =
6685 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02006686 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006687 dev_priv->display.get_display_clock_speed =
6688 i855_get_display_clock_speed;
6689 else /* 852, 830 */
6690 dev_priv->display.get_display_clock_speed =
6691 i830_get_display_clock_speed;
6692
6693 /* For FIFO watermark updates */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006694 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006695 if (IS_GEN5(dev)) {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006696 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
6697 dev_priv->display.update_wm = ironlake_update_wm;
6698 else {
6699 DRM_DEBUG_KMS("Failed to get proper latency. "
6700 "Disable CxSR\n");
6701 dev_priv->display.update_wm = NULL;
6702 }
Yuanhan Liu13982612010-12-15 15:42:31 +08006703 } else if (IS_GEN6(dev)) {
6704 if (SNB_READ_WM0_LATENCY()) {
6705 dev_priv->display.update_wm = sandybridge_update_wm;
6706 } else {
6707 DRM_DEBUG_KMS("Failed to read display plane latency. "
6708 "Disable CxSR\n");
6709 dev_priv->display.update_wm = NULL;
6710 }
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006711 } else
6712 dev_priv->display.update_wm = NULL;
6713 } else if (IS_PINEVIEW(dev)) {
Zhao Yakuid4294342010-03-22 22:45:36 +08006714 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
Li Peng95534262010-05-18 18:58:44 +08006715 dev_priv->is_ddr3,
Zhao Yakuid4294342010-03-22 22:45:36 +08006716 dev_priv->fsb_freq,
6717 dev_priv->mem_freq)) {
6718 DRM_INFO("failed to find known CxSR latency "
Li Peng95534262010-05-18 18:58:44 +08006719 "(found ddr%s fsb freq %d, mem freq %d), "
Zhao Yakuid4294342010-03-22 22:45:36 +08006720 "disabling CxSR\n",
Li Peng95534262010-05-18 18:58:44 +08006721 (dev_priv->is_ddr3 == 1) ? "3": "2",
Zhao Yakuid4294342010-03-22 22:45:36 +08006722 dev_priv->fsb_freq, dev_priv->mem_freq);
6723 /* Disable CxSR and never update its watermark again */
6724 pineview_disable_cxsr(dev);
6725 dev_priv->display.update_wm = NULL;
6726 } else
6727 dev_priv->display.update_wm = pineview_update_wm;
6728 } else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006729 dev_priv->display.update_wm = g4x_update_wm;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006730 else if (IS_GEN4(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006731 dev_priv->display.update_wm = i965_update_wm;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006732 else if (IS_GEN3(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07006733 dev_priv->display.update_wm = i9xx_update_wm;
6734 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Adam Jackson8f4695e2010-04-16 18:20:57 -04006735 } else if (IS_I85X(dev)) {
6736 dev_priv->display.update_wm = i9xx_update_wm;
6737 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07006738 } else {
Adam Jackson8f4695e2010-04-16 18:20:57 -04006739 dev_priv->display.update_wm = i830_update_wm;
6740 if (IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006741 dev_priv->display.get_fifo_size = i845_get_fifo_size;
6742 else
6743 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07006744 }
6745}
6746
Jesse Barnesb690e962010-07-19 13:53:12 -07006747/*
6748 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
6749 * resume, or other times. This quirk makes sure that's the case for
6750 * affected systems.
6751 */
6752static void quirk_pipea_force (struct drm_device *dev)
6753{
6754 struct drm_i915_private *dev_priv = dev->dev_private;
6755
6756 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
6757 DRM_DEBUG_DRIVER("applying pipe a force quirk\n");
6758}
6759
6760struct intel_quirk {
6761 int device;
6762 int subsystem_vendor;
6763 int subsystem_device;
6764 void (*hook)(struct drm_device *dev);
6765};
6766
6767struct intel_quirk intel_quirks[] = {
6768 /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */
6769 { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force },
6770 /* HP Mini needs pipe A force quirk (LP: #322104) */
6771 { 0x27ae,0x103c, 0x361a, quirk_pipea_force },
6772
6773 /* Thinkpad R31 needs pipe A force quirk */
6774 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
6775 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
6776 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
6777
6778 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
6779 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
6780 /* ThinkPad X40 needs pipe A force quirk */
6781
6782 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
6783 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
6784
6785 /* 855 & before need to leave pipe A & dpll A up */
6786 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6787 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6788};
6789
6790static void intel_init_quirks(struct drm_device *dev)
6791{
6792 struct pci_dev *d = dev->pdev;
6793 int i;
6794
6795 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
6796 struct intel_quirk *q = &intel_quirks[i];
6797
6798 if (d->device == q->device &&
6799 (d->subsystem_vendor == q->subsystem_vendor ||
6800 q->subsystem_vendor == PCI_ANY_ID) &&
6801 (d->subsystem_device == q->subsystem_device ||
6802 q->subsystem_device == PCI_ANY_ID))
6803 q->hook(dev);
6804 }
6805}
6806
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006807/* Disable the VGA plane that we never use */
6808static void i915_disable_vga(struct drm_device *dev)
6809{
6810 struct drm_i915_private *dev_priv = dev->dev_private;
6811 u8 sr1;
6812 u32 vga_reg;
6813
6814 if (HAS_PCH_SPLIT(dev))
6815 vga_reg = CPU_VGACNTRL;
6816 else
6817 vga_reg = VGACNTRL;
6818
6819 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
6820 outb(1, VGA_SR_INDEX);
6821 sr1 = inb(VGA_SR_DATA);
6822 outb(sr1 | 1<<5, VGA_SR_DATA);
6823 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
6824 udelay(300);
6825
6826 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6827 POSTING_READ(vga_reg);
6828}
6829
Jesse Barnes79e53942008-11-07 14:24:08 -08006830void intel_modeset_init(struct drm_device *dev)
6831{
Jesse Barnes652c3932009-08-17 13:31:43 -07006832 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006833 int i;
6834
6835 drm_mode_config_init(dev);
6836
6837 dev->mode_config.min_width = 0;
6838 dev->mode_config.min_height = 0;
6839
6840 dev->mode_config.funcs = (void *)&intel_mode_funcs;
6841
Jesse Barnesb690e962010-07-19 13:53:12 -07006842 intel_init_quirks(dev);
6843
Jesse Barnese70236a2009-09-21 10:42:27 -07006844 intel_init_display(dev);
6845
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006846 if (IS_GEN2(dev)) {
6847 dev->mode_config.max_width = 2048;
6848 dev->mode_config.max_height = 2048;
6849 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07006850 dev->mode_config.max_width = 4096;
6851 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08006852 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006853 dev->mode_config.max_width = 8192;
6854 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08006855 }
Chris Wilson35c30472010-12-22 14:07:12 +00006856 dev->mode_config.fb_base = dev->agp->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006857
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006858 if (IS_MOBILE(dev) || !IS_GEN2(dev))
Dave Airliea3524f12010-06-06 18:59:41 +10006859 dev_priv->num_pipe = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08006860 else
Dave Airliea3524f12010-06-06 18:59:41 +10006861 dev_priv->num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08006862 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10006863 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08006864
Dave Airliea3524f12010-06-06 18:59:41 +10006865 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006866 intel_crtc_init(dev, i);
6867 }
6868
6869 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006870
Chris Wilson0cdab212010-12-05 17:27:06 +00006871 intel_enable_clock_gating(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006872
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006873 /* Just disable it once at startup */
6874 i915_disable_vga(dev);
6875
Jesse Barnes7648fa92010-05-20 14:28:11 -07006876 if (IS_IRONLAKE_M(dev)) {
Jesse Barnesf97108d2010-01-29 11:27:07 -08006877 ironlake_enable_drps(dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07006878 intel_init_emon(dev);
6879 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08006880
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006881 if (IS_GEN6(dev))
6882 gen6_enable_rps(dev_priv);
6883
Chris Wilsonac668082011-02-09 16:15:32 +00006884 if (IS_IRONLAKE_M(dev))
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006885 ironlake_enable_rc6(dev);
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006886
Jesse Barnes652c3932009-08-17 13:31:43 -07006887 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6888 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6889 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02006890
6891 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006892}
6893
6894void intel_modeset_cleanup(struct drm_device *dev)
6895{
Jesse Barnes652c3932009-08-17 13:31:43 -07006896 struct drm_i915_private *dev_priv = dev->dev_private;
6897 struct drm_crtc *crtc;
6898 struct intel_crtc *intel_crtc;
6899
Keith Packardf87ea762010-10-03 19:36:26 -07006900 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006901 mutex_lock(&dev->struct_mutex);
6902
Jesse Barnes723bfd72010-10-07 16:01:13 -07006903 intel_unregister_dsm_handler();
6904
6905
Jesse Barnes652c3932009-08-17 13:31:43 -07006906 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6907 /* Skip inactive CRTCs */
6908 if (!crtc->fb)
6909 continue;
6910
6911 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02006912 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006913 }
6914
Jesse Barnese70236a2009-09-21 10:42:27 -07006915 if (dev_priv->display.disable_fbc)
6916 dev_priv->display.disable_fbc(dev);
6917
Jesse Barnesf97108d2010-01-29 11:27:07 -08006918 if (IS_IRONLAKE_M(dev))
6919 ironlake_disable_drps(dev);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006920 if (IS_GEN6(dev))
6921 gen6_disable_rps(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006922
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006923 if (IS_IRONLAKE_M(dev))
6924 ironlake_disable_rc6(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00006925
Kristian Høgsberg69341a52009-11-11 12:19:17 -05006926 mutex_unlock(&dev->struct_mutex);
6927
Daniel Vetter6c0d93502010-08-20 18:26:46 +02006928 /* Disable the irq before mode object teardown, for the irq might
6929 * enqueue unpin/hotplug work. */
6930 drm_irq_uninstall(dev);
6931 cancel_work_sync(&dev_priv->hotplug_work);
6932
Daniel Vetter3dec0092010-08-20 21:40:52 +02006933 /* Shut off idle work before the crtcs get freed. */
6934 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6935 intel_crtc = to_intel_crtc(crtc);
6936 del_timer_sync(&intel_crtc->idle_timer);
6937 }
6938 del_timer_sync(&dev_priv->idle_timer);
6939 cancel_work_sync(&dev_priv->idle_work);
6940
Jesse Barnes79e53942008-11-07 14:24:08 -08006941 drm_mode_config_cleanup(dev);
6942}
6943
Dave Airlie28d52042009-09-21 14:33:58 +10006944/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08006945 * Return which encoder is currently attached for connector.
6946 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01006947struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08006948{
Chris Wilsondf0e9242010-09-09 16:20:55 +01006949 return &intel_attached_encoder(connector)->base;
6950}
Jesse Barnes79e53942008-11-07 14:24:08 -08006951
Chris Wilsondf0e9242010-09-09 16:20:55 +01006952void intel_connector_attach_encoder(struct intel_connector *connector,
6953 struct intel_encoder *encoder)
6954{
6955 connector->encoder = encoder;
6956 drm_mode_connector_attach_encoder(&connector->base,
6957 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006958}
Dave Airlie28d52042009-09-21 14:33:58 +10006959
6960/*
6961 * set vga decode state - true == enable VGA decode
6962 */
6963int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
6964{
6965 struct drm_i915_private *dev_priv = dev->dev_private;
6966 u16 gmch_ctrl;
6967
6968 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
6969 if (state)
6970 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
6971 else
6972 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
6973 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
6974 return 0;
6975}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006976
6977#ifdef CONFIG_DEBUG_FS
6978#include <linux/seq_file.h>
6979
6980struct intel_display_error_state {
6981 struct intel_cursor_error_state {
6982 u32 control;
6983 u32 position;
6984 u32 base;
6985 u32 size;
6986 } cursor[2];
6987
6988 struct intel_pipe_error_state {
6989 u32 conf;
6990 u32 source;
6991
6992 u32 htotal;
6993 u32 hblank;
6994 u32 hsync;
6995 u32 vtotal;
6996 u32 vblank;
6997 u32 vsync;
6998 } pipe[2];
6999
7000 struct intel_plane_error_state {
7001 u32 control;
7002 u32 stride;
7003 u32 size;
7004 u32 pos;
7005 u32 addr;
7006 u32 surface;
7007 u32 tile_offset;
7008 } plane[2];
7009};
7010
7011struct intel_display_error_state *
7012intel_display_capture_error_state(struct drm_device *dev)
7013{
7014 drm_i915_private_t *dev_priv = dev->dev_private;
7015 struct intel_display_error_state *error;
7016 int i;
7017
7018 error = kmalloc(sizeof(*error), GFP_ATOMIC);
7019 if (error == NULL)
7020 return NULL;
7021
7022 for (i = 0; i < 2; i++) {
7023 error->cursor[i].control = I915_READ(CURCNTR(i));
7024 error->cursor[i].position = I915_READ(CURPOS(i));
7025 error->cursor[i].base = I915_READ(CURBASE(i));
7026
7027 error->plane[i].control = I915_READ(DSPCNTR(i));
7028 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
7029 error->plane[i].size = I915_READ(DSPSIZE(i));
7030 error->plane[i].pos= I915_READ(DSPPOS(i));
7031 error->plane[i].addr = I915_READ(DSPADDR(i));
7032 if (INTEL_INFO(dev)->gen >= 4) {
7033 error->plane[i].surface = I915_READ(DSPSURF(i));
7034 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
7035 }
7036
7037 error->pipe[i].conf = I915_READ(PIPECONF(i));
7038 error->pipe[i].source = I915_READ(PIPESRC(i));
7039 error->pipe[i].htotal = I915_READ(HTOTAL(i));
7040 error->pipe[i].hblank = I915_READ(HBLANK(i));
7041 error->pipe[i].hsync = I915_READ(HSYNC(i));
7042 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
7043 error->pipe[i].vblank = I915_READ(VBLANK(i));
7044 error->pipe[i].vsync = I915_READ(VSYNC(i));
7045 }
7046
7047 return error;
7048}
7049
7050void
7051intel_display_print_error_state(struct seq_file *m,
7052 struct drm_device *dev,
7053 struct intel_display_error_state *error)
7054{
7055 int i;
7056
7057 for (i = 0; i < 2; i++) {
7058 seq_printf(m, "Pipe [%d]:\n", i);
7059 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
7060 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
7061 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
7062 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
7063 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
7064 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
7065 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
7066 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
7067
7068 seq_printf(m, "Plane [%d]:\n", i);
7069 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
7070 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
7071 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
7072 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
7073 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
7074 if (INTEL_INFO(dev)->gen >= 4) {
7075 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
7076 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
7077 }
7078
7079 seq_printf(m, "Cursor [%d]:\n", i);
7080 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
7081 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
7082 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
7083 }
7084}
7085#endif