blob: b5f7acf5a9dbccf862bfa953827193e58c0e24fb [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 Barnesb24e7172011-01-04 15:09:30 -08001061static const char *state_string(bool enabled)
1062{
1063 return enabled ? "on" : "off";
1064}
1065
1066/* Only for pre-ILK configs */
1067static void assert_pll(struct drm_i915_private *dev_priv,
1068 enum pipe pipe, bool state)
1069{
1070 int reg;
1071 u32 val;
1072 bool cur_state;
1073
1074 reg = DPLL(pipe);
1075 val = I915_READ(reg);
1076 cur_state = !!(val & DPLL_VCO_ENABLE);
1077 WARN(cur_state != state,
1078 "PLL state assertion failure (expected %s, current %s)\n",
1079 state_string(state), state_string(cur_state));
1080}
1081#define assert_pll_enabled(d, p) assert_pll(d, p, true)
1082#define assert_pll_disabled(d, p) assert_pll(d, p, false)
1083
Jesse Barnes040484a2011-01-03 12:14:26 -08001084/* For ILK+ */
1085static void assert_pch_pll(struct drm_i915_private *dev_priv,
1086 enum pipe pipe, bool state)
1087{
1088 int reg;
1089 u32 val;
1090 bool cur_state;
1091
1092 reg = PCH_DPLL(pipe);
1093 val = I915_READ(reg);
1094 cur_state = !!(val & DPLL_VCO_ENABLE);
1095 WARN(cur_state != state,
1096 "PCH PLL state assertion failure (expected %s, current %s)\n",
1097 state_string(state), state_string(cur_state));
1098}
1099#define assert_pch_pll_enabled(d, p) assert_pch_pll(d, p, true)
1100#define assert_pch_pll_disabled(d, p) assert_pch_pll(d, p, false)
1101
1102static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1103 enum pipe pipe, bool state)
1104{
1105 int reg;
1106 u32 val;
1107 bool cur_state;
1108
1109 reg = FDI_TX_CTL(pipe);
1110 val = I915_READ(reg);
1111 cur_state = !!(val & FDI_TX_ENABLE);
1112 WARN(cur_state != state,
1113 "FDI TX state assertion failure (expected %s, current %s)\n",
1114 state_string(state), state_string(cur_state));
1115}
1116#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1117#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1118
1119static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1120 enum pipe pipe, bool state)
1121{
1122 int reg;
1123 u32 val;
1124 bool cur_state;
1125
1126 reg = FDI_RX_CTL(pipe);
1127 val = I915_READ(reg);
1128 cur_state = !!(val & FDI_RX_ENABLE);
1129 WARN(cur_state != state,
1130 "FDI RX state assertion failure (expected %s, current %s)\n",
1131 state_string(state), state_string(cur_state));
1132}
1133#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1134#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1135
1136static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1137 enum pipe pipe)
1138{
1139 int reg;
1140 u32 val;
1141
1142 /* ILK FDI PLL is always enabled */
1143 if (dev_priv->info->gen == 5)
1144 return;
1145
1146 reg = FDI_TX_CTL(pipe);
1147 val = I915_READ(reg);
1148 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1149}
1150
1151static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1152 enum pipe pipe)
1153{
1154 int reg;
1155 u32 val;
1156
1157 reg = FDI_RX_CTL(pipe);
1158 val = I915_READ(reg);
1159 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1160}
1161
Jesse Barnesea0760c2011-01-04 15:09:32 -08001162static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1163 enum pipe pipe)
1164{
1165 int pp_reg, lvds_reg;
1166 u32 val;
1167 enum pipe panel_pipe = PIPE_A;
1168 bool locked = locked;
1169
1170 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1171 pp_reg = PCH_PP_CONTROL;
1172 lvds_reg = PCH_LVDS;
1173 } else {
1174 pp_reg = PP_CONTROL;
1175 lvds_reg = LVDS;
1176 }
1177
1178 val = I915_READ(pp_reg);
1179 if (!(val & PANEL_POWER_ON) ||
1180 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1181 locked = false;
1182
1183 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1184 panel_pipe = PIPE_B;
1185
1186 WARN(panel_pipe == pipe && locked,
1187 "panel assertion failure, pipe %c regs locked\n",
1188 pipe ? 'B' : 'A');
1189}
1190
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001191static void assert_pipe(struct drm_i915_private *dev_priv,
1192 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001193{
1194 int reg;
1195 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001196 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001197
1198 reg = PIPECONF(pipe);
1199 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001200 cur_state = !!(val & PIPECONF_ENABLE);
1201 WARN(cur_state != state,
1202 "pipe %c assertion failure (expected %s, current %s)\n",
1203 pipe ? 'B' : 'A', state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001204}
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001205#define assert_pipe_enabled(d, p) assert_pipe(d, p, true)
1206#define assert_pipe_disabled(d, p) assert_pipe(d, p, false)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001207
1208static void assert_plane_enabled(struct drm_i915_private *dev_priv,
1209 enum plane plane)
1210{
1211 int reg;
1212 u32 val;
1213
1214 reg = DSPCNTR(plane);
1215 val = I915_READ(reg);
1216 WARN(!(val & DISPLAY_PLANE_ENABLE),
1217 "plane %c assertion failure, should be active but is disabled\n",
1218 plane ? 'B' : 'A');
1219}
1220
1221static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1222 enum pipe pipe)
1223{
1224 int reg, i;
1225 u32 val;
1226 int cur_pipe;
1227
1228 /* Need to check both planes against the pipe */
1229 for (i = 0; i < 2; i++) {
1230 reg = DSPCNTR(i);
1231 val = I915_READ(reg);
1232 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1233 DISPPLANE_SEL_PIPE_SHIFT;
1234 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
1235 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1236 i, pipe ? 'B' : 'A');
1237 }
1238}
1239
Jesse Barnes92f25842011-01-04 15:09:34 -08001240static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1241{
1242 u32 val;
1243 bool enabled;
1244
1245 val = I915_READ(PCH_DREF_CONTROL);
1246 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1247 DREF_SUPERSPREAD_SOURCE_MASK));
1248 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1249}
1250
1251static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1252 enum pipe pipe)
1253{
1254 int reg;
1255 u32 val;
1256 bool enabled;
1257
1258 reg = TRANSCONF(pipe);
1259 val = I915_READ(reg);
1260 enabled = !!(val & TRANS_ENABLE);
1261 WARN(enabled, "transcoder assertion failed, should be off on pipe %c but is still active\n", pipe ? 'B' :'A');
1262}
1263
Jesse Barnesb24e7172011-01-04 15:09:30 -08001264/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001265 * intel_enable_pll - enable a PLL
1266 * @dev_priv: i915 private structure
1267 * @pipe: pipe PLL to enable
1268 *
1269 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1270 * make sure the PLL reg is writable first though, since the panel write
1271 * protect mechanism may be enabled.
1272 *
1273 * Note! This is for pre-ILK only.
1274 */
1275static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1276{
1277 int reg;
1278 u32 val;
1279
1280 /* No really, not for ILK+ */
1281 BUG_ON(dev_priv->info->gen >= 5);
1282
1283 /* PLL is protected by panel, make sure we can write it */
1284 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1285 assert_panel_unlocked(dev_priv, pipe);
1286
1287 reg = DPLL(pipe);
1288 val = I915_READ(reg);
1289 val |= DPLL_VCO_ENABLE;
1290
1291 /* We do this three times for luck */
1292 I915_WRITE(reg, val);
1293 POSTING_READ(reg);
1294 udelay(150); /* wait for warmup */
1295 I915_WRITE(reg, val);
1296 POSTING_READ(reg);
1297 udelay(150); /* wait for warmup */
1298 I915_WRITE(reg, val);
1299 POSTING_READ(reg);
1300 udelay(150); /* wait for warmup */
1301}
1302
1303/**
1304 * intel_disable_pll - disable a PLL
1305 * @dev_priv: i915 private structure
1306 * @pipe: pipe PLL to disable
1307 *
1308 * Disable the PLL for @pipe, making sure the pipe is off first.
1309 *
1310 * Note! This is for pre-ILK only.
1311 */
1312static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1313{
1314 int reg;
1315 u32 val;
1316
1317 /* Don't disable pipe A or pipe A PLLs if needed */
1318 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1319 return;
1320
1321 /* Make sure the pipe isn't still relying on us */
1322 assert_pipe_disabled(dev_priv, pipe);
1323
1324 reg = DPLL(pipe);
1325 val = I915_READ(reg);
1326 val &= ~DPLL_VCO_ENABLE;
1327 I915_WRITE(reg, val);
1328 POSTING_READ(reg);
1329}
1330
1331/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001332 * intel_enable_pch_pll - enable PCH PLL
1333 * @dev_priv: i915 private structure
1334 * @pipe: pipe PLL to enable
1335 *
1336 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1337 * drives the transcoder clock.
1338 */
1339static void intel_enable_pch_pll(struct drm_i915_private *dev_priv,
1340 enum pipe pipe)
1341{
1342 int reg;
1343 u32 val;
1344
1345 /* PCH only available on ILK+ */
1346 BUG_ON(dev_priv->info->gen < 5);
1347
1348 /* PCH refclock must be enabled first */
1349 assert_pch_refclk_enabled(dev_priv);
1350
1351 reg = PCH_DPLL(pipe);
1352 val = I915_READ(reg);
1353 val |= DPLL_VCO_ENABLE;
1354 I915_WRITE(reg, val);
1355 POSTING_READ(reg);
1356 udelay(200);
1357}
1358
1359static void intel_disable_pch_pll(struct drm_i915_private *dev_priv,
1360 enum pipe pipe)
1361{
1362 int reg;
1363 u32 val;
1364
1365 /* PCH only available on ILK+ */
1366 BUG_ON(dev_priv->info->gen < 5);
1367
1368 /* Make sure transcoder isn't still depending on us */
1369 assert_transcoder_disabled(dev_priv, pipe);
1370
1371 reg = PCH_DPLL(pipe);
1372 val = I915_READ(reg);
1373 val &= ~DPLL_VCO_ENABLE;
1374 I915_WRITE(reg, val);
1375 POSTING_READ(reg);
1376 udelay(200);
1377}
1378
Jesse Barnes040484a2011-01-03 12:14:26 -08001379static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1380 enum pipe pipe)
1381{
1382 int reg;
1383 u32 val;
1384
1385 /* PCH only available on ILK+ */
1386 BUG_ON(dev_priv->info->gen < 5);
1387
1388 /* Make sure PCH DPLL is enabled */
1389 assert_pch_pll_enabled(dev_priv, pipe);
1390
1391 /* FDI must be feeding us bits for PCH ports */
1392 assert_fdi_tx_enabled(dev_priv, pipe);
1393 assert_fdi_rx_enabled(dev_priv, pipe);
1394
1395 reg = TRANSCONF(pipe);
1396 val = I915_READ(reg);
1397 /*
1398 * make the BPC in transcoder be consistent with
1399 * that in pipeconf reg.
1400 */
1401 val &= ~PIPE_BPC_MASK;
1402 val |= I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK;
1403 I915_WRITE(reg, val | TRANS_ENABLE);
1404 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1405 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1406}
1407
1408static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1409 enum pipe pipe)
1410{
1411 int reg;
1412 u32 val;
1413
1414 /* FDI relies on the transcoder */
1415 assert_fdi_tx_disabled(dev_priv, pipe);
1416 assert_fdi_rx_disabled(dev_priv, pipe);
1417
1418 reg = TRANSCONF(pipe);
1419 val = I915_READ(reg);
1420 val &= ~TRANS_ENABLE;
1421 I915_WRITE(reg, val);
1422 /* wait for PCH transcoder off, transcoder state */
1423 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
1424 DRM_ERROR("failed to disable transcoder\n");
1425}
1426
Jesse Barnes92f25842011-01-04 15:09:34 -08001427/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001428 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001429 * @dev_priv: i915 private structure
1430 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001431 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001432 *
1433 * Enable @pipe, making sure that various hardware specific requirements
1434 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1435 *
1436 * @pipe should be %PIPE_A or %PIPE_B.
1437 *
1438 * Will wait until the pipe is actually running (i.e. first vblank) before
1439 * returning.
1440 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001441static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1442 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001443{
1444 int reg;
1445 u32 val;
1446
1447 /*
1448 * A pipe without a PLL won't actually be able to drive bits from
1449 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1450 * need the check.
1451 */
1452 if (!HAS_PCH_SPLIT(dev_priv->dev))
1453 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001454 else {
1455 if (pch_port) {
1456 /* if driving the PCH, we need FDI enabled */
1457 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1458 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1459 }
1460 /* FIXME: assert CPU port conditions for SNB+ */
1461 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001462
1463 reg = PIPECONF(pipe);
1464 val = I915_READ(reg);
1465 val |= PIPECONF_ENABLE;
1466 I915_WRITE(reg, val);
1467 POSTING_READ(reg);
1468 intel_wait_for_vblank(dev_priv->dev, pipe);
1469}
1470
1471/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001472 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001473 * @dev_priv: i915 private structure
1474 * @pipe: pipe to disable
1475 *
1476 * Disable @pipe, making sure that various hardware specific requirements
1477 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1478 *
1479 * @pipe should be %PIPE_A or %PIPE_B.
1480 *
1481 * Will wait until the pipe has shut down before returning.
1482 */
1483static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1484 enum pipe pipe)
1485{
1486 int reg;
1487 u32 val;
1488
1489 /*
1490 * Make sure planes won't keep trying to pump pixels to us,
1491 * or we might hang the display.
1492 */
1493 assert_planes_disabled(dev_priv, pipe);
1494
1495 /* Don't disable pipe A or pipe A PLLs if needed */
1496 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1497 return;
1498
1499 reg = PIPECONF(pipe);
1500 val = I915_READ(reg);
1501 val &= ~PIPECONF_ENABLE;
1502 I915_WRITE(reg, val);
1503 POSTING_READ(reg);
1504 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1505}
1506
1507/**
1508 * intel_enable_plane - enable a display plane on a given pipe
1509 * @dev_priv: i915 private structure
1510 * @plane: plane to enable
1511 * @pipe: pipe being fed
1512 *
1513 * Enable @plane on @pipe, making sure that @pipe is running first.
1514 */
1515static void intel_enable_plane(struct drm_i915_private *dev_priv,
1516 enum plane plane, enum pipe pipe)
1517{
1518 int reg;
1519 u32 val;
1520
1521 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1522 assert_pipe_enabled(dev_priv, pipe);
1523
1524 reg = DSPCNTR(plane);
1525 val = I915_READ(reg);
1526 val |= DISPLAY_PLANE_ENABLE;
1527 I915_WRITE(reg, val);
1528 POSTING_READ(reg);
1529 intel_wait_for_vblank(dev_priv->dev, pipe);
1530}
1531
1532/*
1533 * Plane regs are double buffered, going from enabled->disabled needs a
1534 * trigger in order to latch. The display address reg provides this.
1535 */
1536static void intel_flush_display_plane(struct drm_i915_private *dev_priv,
1537 enum plane plane)
1538{
1539 u32 reg = DSPADDR(plane);
1540 I915_WRITE(reg, I915_READ(reg));
1541}
1542
1543/**
1544 * intel_disable_plane - disable a display plane
1545 * @dev_priv: i915 private structure
1546 * @plane: plane to disable
1547 * @pipe: pipe consuming the data
1548 *
1549 * Disable @plane; should be an independent operation.
1550 */
1551static void intel_disable_plane(struct drm_i915_private *dev_priv,
1552 enum plane plane, enum pipe pipe)
1553{
1554 int reg;
1555 u32 val;
1556
1557 reg = DSPCNTR(plane);
1558 val = I915_READ(reg);
1559 val &= ~DISPLAY_PLANE_ENABLE;
1560 I915_WRITE(reg, val);
1561 POSTING_READ(reg);
1562 intel_flush_display_plane(dev_priv, plane);
1563 intel_wait_for_vblank(dev_priv->dev, pipe);
1564}
1565
Jesse Barnes80824002009-09-10 15:28:06 -07001566static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1567{
1568 struct drm_device *dev = crtc->dev;
1569 struct drm_i915_private *dev_priv = dev->dev_private;
1570 struct drm_framebuffer *fb = crtc->fb;
1571 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001572 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes80824002009-09-10 15:28:06 -07001573 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1574 int plane, i;
1575 u32 fbc_ctl, fbc_ctl2;
1576
Chris Wilsonbed4a672010-09-11 10:47:47 +01001577 if (fb->pitch == dev_priv->cfb_pitch &&
Chris Wilson05394f32010-11-08 19:18:58 +00001578 obj->fence_reg == dev_priv->cfb_fence &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001579 intel_crtc->plane == dev_priv->cfb_plane &&
1580 I915_READ(FBC_CONTROL) & FBC_CTL_EN)
1581 return;
1582
1583 i8xx_disable_fbc(dev);
1584
Jesse Barnes80824002009-09-10 15:28:06 -07001585 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
1586
1587 if (fb->pitch < dev_priv->cfb_pitch)
1588 dev_priv->cfb_pitch = fb->pitch;
1589
1590 /* FBC_CTL wants 64B units */
1591 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
Chris Wilson05394f32010-11-08 19:18:58 +00001592 dev_priv->cfb_fence = obj->fence_reg;
Jesse Barnes80824002009-09-10 15:28:06 -07001593 dev_priv->cfb_plane = intel_crtc->plane;
1594 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1595
1596 /* Clear old tags */
1597 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1598 I915_WRITE(FBC_TAG + (i * 4), 0);
1599
1600 /* Set it up... */
1601 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
Chris Wilson05394f32010-11-08 19:18:58 +00001602 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes80824002009-09-10 15:28:06 -07001603 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1604 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1605 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1606
1607 /* enable it... */
1608 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001609 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001610 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001611 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1612 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
Chris Wilson05394f32010-11-08 19:18:58 +00001613 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes80824002009-09-10 15:28:06 -07001614 fbc_ctl |= dev_priv->cfb_fence;
1615 I915_WRITE(FBC_CONTROL, fbc_ctl);
1616
Zhao Yakui28c97732009-10-09 11:39:41 +08001617 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Chris Wilson5eddb702010-09-11 13:48:45 +01001618 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
Jesse Barnes80824002009-09-10 15:28:06 -07001619}
1620
1621void i8xx_disable_fbc(struct drm_device *dev)
1622{
1623 struct drm_i915_private *dev_priv = dev->dev_private;
1624 u32 fbc_ctl;
1625
1626 /* Disable compression */
1627 fbc_ctl = I915_READ(FBC_CONTROL);
Chris Wilsona5cad622010-09-22 13:15:10 +01001628 if ((fbc_ctl & FBC_CTL_EN) == 0)
1629 return;
1630
Jesse Barnes80824002009-09-10 15:28:06 -07001631 fbc_ctl &= ~FBC_CTL_EN;
1632 I915_WRITE(FBC_CONTROL, fbc_ctl);
1633
1634 /* Wait for compressing bit to clear */
Chris Wilson481b6af2010-08-23 17:43:35 +01001635 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
Chris Wilson913d8d12010-08-07 11:01:35 +01001636 DRM_DEBUG_KMS("FBC idle timed out\n");
1637 return;
Jesse Barnes9517a922010-05-21 09:40:45 -07001638 }
Jesse Barnes80824002009-09-10 15:28:06 -07001639
Zhao Yakui28c97732009-10-09 11:39:41 +08001640 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001641}
1642
Adam Jacksonee5382a2010-04-23 11:17:39 -04001643static bool i8xx_fbc_enabled(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001644{
Jesse Barnes80824002009-09-10 15:28:06 -07001645 struct drm_i915_private *dev_priv = dev->dev_private;
1646
1647 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1648}
1649
Jesse Barnes74dff282009-09-14 15:39:40 -07001650static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1651{
1652 struct drm_device *dev = crtc->dev;
1653 struct drm_i915_private *dev_priv = dev->dev_private;
1654 struct drm_framebuffer *fb = crtc->fb;
1655 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001656 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes74dff282009-09-14 15:39:40 -07001657 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5eddb702010-09-11 13:48:45 +01001658 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Jesse Barnes74dff282009-09-14 15:39:40 -07001659 unsigned long stall_watermark = 200;
1660 u32 dpfc_ctl;
1661
Chris Wilsonbed4a672010-09-11 10:47:47 +01001662 dpfc_ctl = I915_READ(DPFC_CONTROL);
1663 if (dpfc_ctl & DPFC_CTL_EN) {
1664 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
Chris Wilson05394f32010-11-08 19:18:58 +00001665 dev_priv->cfb_fence == obj->fence_reg &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001666 dev_priv->cfb_plane == intel_crtc->plane &&
1667 dev_priv->cfb_y == crtc->y)
1668 return;
1669
1670 I915_WRITE(DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1671 POSTING_READ(DPFC_CONTROL);
1672 intel_wait_for_vblank(dev, intel_crtc->pipe);
1673 }
1674
Jesse Barnes74dff282009-09-14 15:39:40 -07001675 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
Chris Wilson05394f32010-11-08 19:18:58 +00001676 dev_priv->cfb_fence = obj->fence_reg;
Jesse Barnes74dff282009-09-14 15:39:40 -07001677 dev_priv->cfb_plane = intel_crtc->plane;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001678 dev_priv->cfb_y = crtc->y;
Jesse Barnes74dff282009-09-14 15:39:40 -07001679
1680 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
Chris Wilson05394f32010-11-08 19:18:58 +00001681 if (obj->tiling_mode != I915_TILING_NONE) {
Jesse Barnes74dff282009-09-14 15:39:40 -07001682 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1683 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1684 } else {
1685 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1686 }
1687
Jesse Barnes74dff282009-09-14 15:39:40 -07001688 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1689 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1690 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1691 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1692
1693 /* enable it... */
1694 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1695
Zhao Yakui28c97732009-10-09 11:39:41 +08001696 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001697}
1698
1699void g4x_disable_fbc(struct drm_device *dev)
1700{
1701 struct drm_i915_private *dev_priv = dev->dev_private;
1702 u32 dpfc_ctl;
1703
1704 /* Disable compression */
1705 dpfc_ctl = I915_READ(DPFC_CONTROL);
Chris Wilsonbed4a672010-09-11 10:47:47 +01001706 if (dpfc_ctl & DPFC_CTL_EN) {
1707 dpfc_ctl &= ~DPFC_CTL_EN;
1708 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
Jesse Barnes74dff282009-09-14 15:39:40 -07001709
Chris Wilsonbed4a672010-09-11 10:47:47 +01001710 DRM_DEBUG_KMS("disabled FBC\n");
1711 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001712}
1713
Adam Jacksonee5382a2010-04-23 11:17:39 -04001714static bool g4x_fbc_enabled(struct drm_device *dev)
Jesse Barnes74dff282009-09-14 15:39:40 -07001715{
Jesse Barnes74dff282009-09-14 15:39:40 -07001716 struct drm_i915_private *dev_priv = dev->dev_private;
1717
1718 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1719}
1720
Jesse Barnes4efe0702011-01-18 11:25:41 -08001721static void sandybridge_blit_fbc_update(struct drm_device *dev)
1722{
1723 struct drm_i915_private *dev_priv = dev->dev_private;
1724 u32 blt_ecoskpd;
1725
1726 /* Make sure blitter notifies FBC of writes */
1727 __gen6_force_wake_get(dev_priv);
1728 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
1729 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
1730 GEN6_BLITTER_LOCK_SHIFT;
1731 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1732 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
1733 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1734 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
1735 GEN6_BLITTER_LOCK_SHIFT);
1736 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1737 POSTING_READ(GEN6_BLITTER_ECOSKPD);
1738 __gen6_force_wake_put(dev_priv);
1739}
1740
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001741static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1742{
1743 struct drm_device *dev = crtc->dev;
1744 struct drm_i915_private *dev_priv = dev->dev_private;
1745 struct drm_framebuffer *fb = crtc->fb;
1746 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001747 struct drm_i915_gem_object *obj = intel_fb->obj;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001748 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5eddb702010-09-11 13:48:45 +01001749 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001750 unsigned long stall_watermark = 200;
1751 u32 dpfc_ctl;
1752
Chris Wilsonbed4a672010-09-11 10:47:47 +01001753 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
1754 if (dpfc_ctl & DPFC_CTL_EN) {
1755 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
Chris Wilson05394f32010-11-08 19:18:58 +00001756 dev_priv->cfb_fence == obj->fence_reg &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001757 dev_priv->cfb_plane == intel_crtc->plane &&
Chris Wilson05394f32010-11-08 19:18:58 +00001758 dev_priv->cfb_offset == obj->gtt_offset &&
Chris Wilsonbed4a672010-09-11 10:47:47 +01001759 dev_priv->cfb_y == crtc->y)
1760 return;
1761
1762 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1763 POSTING_READ(ILK_DPFC_CONTROL);
1764 intel_wait_for_vblank(dev, intel_crtc->pipe);
1765 }
1766
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001767 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
Chris Wilson05394f32010-11-08 19:18:58 +00001768 dev_priv->cfb_fence = obj->fence_reg;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001769 dev_priv->cfb_plane = intel_crtc->plane;
Chris Wilson05394f32010-11-08 19:18:58 +00001770 dev_priv->cfb_offset = obj->gtt_offset;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001771 dev_priv->cfb_y = crtc->y;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001772
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001773 dpfc_ctl &= DPFC_RESERVED;
1774 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
Chris Wilson05394f32010-11-08 19:18:58 +00001775 if (obj->tiling_mode != I915_TILING_NONE) {
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001776 dpfc_ctl |= (DPFC_CTL_FENCE_EN | dev_priv->cfb_fence);
1777 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
1778 } else {
1779 I915_WRITE(ILK_DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1780 }
1781
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001782 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1783 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1784 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1785 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
Chris Wilson05394f32010-11-08 19:18:58 +00001786 I915_WRITE(ILK_FBC_RT_BASE, obj->gtt_offset | ILK_FBC_RT_VALID);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001787 /* enable it... */
Chris Wilsonbed4a672010-09-11 10:47:47 +01001788 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001789
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001790 if (IS_GEN6(dev)) {
1791 I915_WRITE(SNB_DPFC_CTL_SA,
1792 SNB_CPU_FENCE_ENABLE | dev_priv->cfb_fence);
1793 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
Jesse Barnes4efe0702011-01-18 11:25:41 -08001794 sandybridge_blit_fbc_update(dev);
Yuanhan Liu9c04f012010-12-15 15:42:32 +08001795 }
1796
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001797 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
1798}
1799
1800void ironlake_disable_fbc(struct drm_device *dev)
1801{
1802 struct drm_i915_private *dev_priv = dev->dev_private;
1803 u32 dpfc_ctl;
1804
1805 /* Disable compression */
1806 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
Chris Wilsonbed4a672010-09-11 10:47:47 +01001807 if (dpfc_ctl & DPFC_CTL_EN) {
1808 dpfc_ctl &= ~DPFC_CTL_EN;
1809 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001810
Chris Wilsonbed4a672010-09-11 10:47:47 +01001811 DRM_DEBUG_KMS("disabled FBC\n");
1812 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001813}
1814
1815static bool ironlake_fbc_enabled(struct drm_device *dev)
1816{
1817 struct drm_i915_private *dev_priv = dev->dev_private;
1818
1819 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
1820}
1821
Adam Jacksonee5382a2010-04-23 11:17:39 -04001822bool intel_fbc_enabled(struct drm_device *dev)
1823{
1824 struct drm_i915_private *dev_priv = dev->dev_private;
1825
1826 if (!dev_priv->display.fbc_enabled)
1827 return false;
1828
1829 return dev_priv->display.fbc_enabled(dev);
1830}
1831
1832void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1833{
1834 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1835
1836 if (!dev_priv->display.enable_fbc)
1837 return;
1838
1839 dev_priv->display.enable_fbc(crtc, interval);
1840}
1841
1842void intel_disable_fbc(struct drm_device *dev)
1843{
1844 struct drm_i915_private *dev_priv = dev->dev_private;
1845
1846 if (!dev_priv->display.disable_fbc)
1847 return;
1848
1849 dev_priv->display.disable_fbc(dev);
1850}
1851
Jesse Barnes80824002009-09-10 15:28:06 -07001852/**
1853 * intel_update_fbc - enable/disable FBC as needed
Chris Wilsonbed4a672010-09-11 10:47:47 +01001854 * @dev: the drm_device
Jesse Barnes80824002009-09-10 15:28:06 -07001855 *
1856 * Set up the framebuffer compression hardware at mode set time. We
1857 * enable it if possible:
1858 * - plane A only (on pre-965)
1859 * - no pixel mulitply/line duplication
1860 * - no alpha buffer discard
1861 * - no dual wide
1862 * - framebuffer <= 2048 in width, 1536 in height
1863 *
1864 * We can't assume that any compression will take place (worst case),
1865 * so the compressed buffer has to be the same size as the uncompressed
1866 * one. It also must reside (along with the line length buffer) in
1867 * stolen memory.
1868 *
1869 * We need to enable/disable FBC on a global basis.
1870 */
Chris Wilsonbed4a672010-09-11 10:47:47 +01001871static void intel_update_fbc(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001872{
Jesse Barnes80824002009-09-10 15:28:06 -07001873 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001874 struct drm_crtc *crtc = NULL, *tmp_crtc;
1875 struct intel_crtc *intel_crtc;
1876 struct drm_framebuffer *fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001877 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001878 struct drm_i915_gem_object *obj;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001879
1880 DRM_DEBUG_KMS("\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001881
1882 if (!i915_powersave)
1883 return;
1884
Adam Jacksonee5382a2010-04-23 11:17:39 -04001885 if (!I915_HAS_FBC(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07001886 return;
1887
Jesse Barnes80824002009-09-10 15:28:06 -07001888 /*
1889 * If FBC is already on, we just have to verify that we can
1890 * keep it that way...
1891 * Need to disable if:
Jesse Barnes9c928d12010-07-23 15:20:00 -07001892 * - more than one pipe is active
Jesse Barnes80824002009-09-10 15:28:06 -07001893 * - changing FBC params (stride, fence, mode)
1894 * - new fb is too large to fit in compressed buffer
1895 * - going to an unsupported config (interlace, pixel multiply, etc.)
1896 */
Jesse Barnes9c928d12010-07-23 15:20:00 -07001897 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilsond2102462011-01-24 17:43:27 +00001898 if (tmp_crtc->enabled && tmp_crtc->fb) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001899 if (crtc) {
1900 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
1901 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
1902 goto out_disable;
1903 }
1904 crtc = tmp_crtc;
1905 }
Jesse Barnes9c928d12010-07-23 15:20:00 -07001906 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001907
1908 if (!crtc || crtc->fb == NULL) {
1909 DRM_DEBUG_KMS("no output, disabling\n");
1910 dev_priv->no_fbc_reason = FBC_NO_OUTPUT;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001911 goto out_disable;
1912 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001913
1914 intel_crtc = to_intel_crtc(crtc);
1915 fb = crtc->fb;
1916 intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00001917 obj = intel_fb->obj;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001918
Chris Wilson05394f32010-11-08 19:18:58 +00001919 if (intel_fb->obj->base.size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001920 DRM_DEBUG_KMS("framebuffer too large, disabling "
Chris Wilson5eddb702010-09-11 13:48:45 +01001921 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001922 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001923 goto out_disable;
1924 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001925 if ((crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) ||
1926 (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001927 DRM_DEBUG_KMS("mode incompatible with compression, "
Chris Wilson5eddb702010-09-11 13:48:45 +01001928 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001929 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001930 goto out_disable;
1931 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001932 if ((crtc->mode.hdisplay > 2048) ||
1933 (crtc->mode.vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001934 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001935 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001936 goto out_disable;
1937 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001938 if ((IS_I915GM(dev) || IS_I945GM(dev)) && intel_crtc->plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001939 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001940 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001941 goto out_disable;
1942 }
Chris Wilson05394f32010-11-08 19:18:58 +00001943 if (obj->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001944 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001945 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001946 goto out_disable;
1947 }
1948
Jason Wesselc924b932010-08-05 09:22:32 -05001949 /* If the kernel debugger is active, always disable compression */
1950 if (in_dbg_master())
1951 goto out_disable;
1952
Chris Wilsonbed4a672010-09-11 10:47:47 +01001953 intel_enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001954 return;
1955
1956out_disable:
Jesse Barnes80824002009-09-10 15:28:06 -07001957 /* Multiple disables should be harmless */
Chris Wilsona9394062010-05-27 13:18:16 +01001958 if (intel_fbc_enabled(dev)) {
1959 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Adam Jacksonee5382a2010-04-23 11:17:39 -04001960 intel_disable_fbc(dev);
Chris Wilsona9394062010-05-27 13:18:16 +01001961 }
Jesse Barnes80824002009-09-10 15:28:06 -07001962}
1963
Chris Wilson127bd2a2010-07-23 23:32:05 +01001964int
Chris Wilson48b956c2010-09-14 12:50:34 +01001965intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001966 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001967 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001968{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001969 u32 alignment;
1970 int ret;
1971
Chris Wilson05394f32010-11-08 19:18:58 +00001972 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001973 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001974 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1975 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001976 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001977 alignment = 4 * 1024;
1978 else
1979 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001980 break;
1981 case I915_TILING_X:
1982 /* pin() will align the object as required by fence */
1983 alignment = 0;
1984 break;
1985 case I915_TILING_Y:
1986 /* FIXME: Is this true? */
1987 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1988 return -EINVAL;
1989 default:
1990 BUG();
1991 }
1992
Daniel Vetter75e9e912010-11-04 17:11:09 +01001993 ret = i915_gem_object_pin(obj, alignment, true);
Chris Wilson48b956c2010-09-14 12:50:34 +01001994 if (ret)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001995 return ret;
1996
Chris Wilson48b956c2010-09-14 12:50:34 +01001997 ret = i915_gem_object_set_to_display_plane(obj, pipelined);
1998 if (ret)
1999 goto err_unpin;
Chris Wilson72133422010-09-13 23:56:38 +01002000
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002001 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2002 * fence, whereas 965+ only requires a fence if using
2003 * framebuffer compression. For simplicity, we always install
2004 * a fence as the cost is not that onerous.
2005 */
Chris Wilson05394f32010-11-08 19:18:58 +00002006 if (obj->tiling_mode != I915_TILING_NONE) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00002007 ret = i915_gem_object_get_fence(obj, pipelined, false);
Chris Wilson48b956c2010-09-14 12:50:34 +01002008 if (ret)
2009 goto err_unpin;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002010 }
2011
2012 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002013
2014err_unpin:
2015 i915_gem_object_unpin(obj);
2016 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002017}
2018
Jesse Barnes81255562010-08-02 12:07:50 -07002019/* Assume fb object is pinned & idle & fenced and just update base pointers */
2020static int
2021intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -05002022 int x, int y, enum mode_set_atomic state)
Jesse Barnes81255562010-08-02 12:07:50 -07002023{
2024 struct drm_device *dev = crtc->dev;
2025 struct drm_i915_private *dev_priv = dev->dev_private;
2026 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2027 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002028 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002029 int plane = intel_crtc->plane;
2030 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002031 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002032 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002033
2034 switch (plane) {
2035 case 0:
2036 case 1:
2037 break;
2038 default:
2039 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
2040 return -EINVAL;
2041 }
2042
2043 intel_fb = to_intel_framebuffer(fb);
2044 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002045
Chris Wilson5eddb702010-09-11 13:48:45 +01002046 reg = DSPCNTR(plane);
2047 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002048 /* Mask out pixel format bits in case we change it */
2049 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
2050 switch (fb->bits_per_pixel) {
2051 case 8:
2052 dspcntr |= DISPPLANE_8BPP;
2053 break;
2054 case 16:
2055 if (fb->depth == 15)
2056 dspcntr |= DISPPLANE_15_16BPP;
2057 else
2058 dspcntr |= DISPPLANE_16BPP;
2059 break;
2060 case 24:
2061 case 32:
2062 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
2063 break;
2064 default:
2065 DRM_ERROR("Unknown color depth\n");
2066 return -EINVAL;
2067 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002068 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002069 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002070 dspcntr |= DISPPLANE_TILED;
2071 else
2072 dspcntr &= ~DISPPLANE_TILED;
2073 }
2074
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002075 if (HAS_PCH_SPLIT(dev))
Jesse Barnes81255562010-08-02 12:07:50 -07002076 /* must disable */
2077 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2078
Chris Wilson5eddb702010-09-11 13:48:45 +01002079 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002080
Chris Wilson05394f32010-11-08 19:18:58 +00002081 Start = obj->gtt_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002082 Offset = y * fb->pitch + x * (fb->bits_per_pixel / 8);
2083
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002084 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2085 Start, Offset, x, y, fb->pitch);
Chris Wilson5eddb702010-09-11 13:48:45 +01002086 I915_WRITE(DSPSTRIDE(plane), fb->pitch);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002087 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002088 I915_WRITE(DSPSURF(plane), Start);
2089 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2090 I915_WRITE(DSPADDR(plane), Offset);
2091 } else
2092 I915_WRITE(DSPADDR(plane), Start + Offset);
2093 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002094
Chris Wilsonbed4a672010-09-11 10:47:47 +01002095 intel_update_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002096 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002097
2098 return 0;
2099}
2100
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002101static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002102intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
2103 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002104{
2105 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002106 struct drm_i915_master_private *master_priv;
2107 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002108 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002109
2110 /* no fb bound */
2111 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08002112 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002113 return 0;
2114 }
2115
Chris Wilson265db952010-09-20 15:41:01 +01002116 switch (intel_crtc->plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002117 case 0:
2118 case 1:
2119 break;
2120 default:
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002121 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002122 }
2123
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002124 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002125 ret = intel_pin_and_fence_fb_obj(dev,
2126 to_intel_framebuffer(crtc->fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002127 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002128 if (ret != 0) {
2129 mutex_unlock(&dev->struct_mutex);
2130 return ret;
2131 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002132
Chris Wilson265db952010-09-20 15:41:01 +01002133 if (old_fb) {
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002134 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002135 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
Chris Wilson265db952010-09-20 15:41:01 +01002136
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002137 wait_event(dev_priv->pending_flip_queue,
Chris Wilson05394f32010-11-08 19:18:58 +00002138 atomic_read(&obj->pending_flip) == 0);
Chris Wilson85345512010-11-13 09:49:11 +00002139
2140 /* Big Hammer, we also need to ensure that any pending
2141 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2142 * current scanout is retired before unpinning the old
2143 * framebuffer.
2144 */
Chris Wilson05394f32010-11-08 19:18:58 +00002145 ret = i915_gem_object_flush_gpu(obj, false);
Chris Wilson85345512010-11-13 09:49:11 +00002146 if (ret) {
2147 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
2148 mutex_unlock(&dev->struct_mutex);
2149 return ret;
2150 }
Chris Wilson265db952010-09-20 15:41:01 +01002151 }
2152
Jason Wessel21c74a82010-10-13 14:09:44 -05002153 ret = intel_pipe_set_base_atomic(crtc, crtc->fb, x, y,
2154 LEAVE_ATOMIC_MODE_SET);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002155 if (ret) {
Chris Wilson265db952010-09-20 15:41:01 +01002156 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002157 mutex_unlock(&dev->struct_mutex);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002158 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002159 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002160
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002161 if (old_fb) {
2162 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson265db952010-09-20 15:41:01 +01002163 i915_gem_object_unpin(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002164 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002165
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002166 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002167
2168 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002169 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002170
2171 master_priv = dev->primary->master->driver_priv;
2172 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002173 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002174
Chris Wilson265db952010-09-20 15:41:01 +01002175 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08002176 master_priv->sarea_priv->pipeB_x = x;
2177 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002178 } else {
2179 master_priv->sarea_priv->pipeA_x = x;
2180 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08002181 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002182
2183 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002184}
2185
Chris Wilson5eddb702010-09-11 13:48:45 +01002186static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002187{
2188 struct drm_device *dev = crtc->dev;
2189 struct drm_i915_private *dev_priv = dev->dev_private;
2190 u32 dpa_ctl;
2191
Zhao Yakui28c97732009-10-09 11:39:41 +08002192 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002193 dpa_ctl = I915_READ(DP_A);
2194 dpa_ctl &= ~DP_PLL_FREQ_MASK;
2195
2196 if (clock < 200000) {
2197 u32 temp;
2198 dpa_ctl |= DP_PLL_FREQ_160MHZ;
2199 /* workaround for 160Mhz:
2200 1) program 0x4600c bits 15:0 = 0x8124
2201 2) program 0x46010 bit 0 = 1
2202 3) program 0x46034 bit 24 = 1
2203 4) program 0x64000 bit 14 = 1
2204 */
2205 temp = I915_READ(0x4600c);
2206 temp &= 0xffff0000;
2207 I915_WRITE(0x4600c, temp | 0x8124);
2208
2209 temp = I915_READ(0x46010);
2210 I915_WRITE(0x46010, temp | 1);
2211
2212 temp = I915_READ(0x46034);
2213 I915_WRITE(0x46034, temp | (1 << 24));
2214 } else {
2215 dpa_ctl |= DP_PLL_FREQ_270MHZ;
2216 }
2217 I915_WRITE(DP_A, dpa_ctl);
2218
Chris Wilson5eddb702010-09-11 13:48:45 +01002219 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002220 udelay(500);
2221}
2222
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002223static void intel_fdi_normal_train(struct drm_crtc *crtc)
2224{
2225 struct drm_device *dev = crtc->dev;
2226 struct drm_i915_private *dev_priv = dev->dev_private;
2227 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2228 int pipe = intel_crtc->pipe;
2229 u32 reg, temp;
2230
2231 /* enable normal train */
2232 reg = FDI_TX_CTL(pipe);
2233 temp = I915_READ(reg);
2234 temp &= ~FDI_LINK_TRAIN_NONE;
2235 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
2236 I915_WRITE(reg, temp);
2237
2238 reg = FDI_RX_CTL(pipe);
2239 temp = I915_READ(reg);
2240 if (HAS_PCH_CPT(dev)) {
2241 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2242 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2243 } else {
2244 temp &= ~FDI_LINK_TRAIN_NONE;
2245 temp |= FDI_LINK_TRAIN_NONE;
2246 }
2247 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2248
2249 /* wait one idle pattern time */
2250 POSTING_READ(reg);
2251 udelay(1000);
2252}
2253
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002254/* The FDI link training functions for ILK/Ibexpeak. */
2255static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2256{
2257 struct drm_device *dev = crtc->dev;
2258 struct drm_i915_private *dev_priv = dev->dev_private;
2259 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2260 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002261 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002262 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002263
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002264 /* FDI needs bits from pipe & plane first */
2265 assert_pipe_enabled(dev_priv, pipe);
2266 assert_plane_enabled(dev_priv, plane);
2267
Adam Jacksone1a44742010-06-25 15:32:14 -04002268 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2269 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002270 reg = FDI_RX_IMR(pipe);
2271 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002272 temp &= ~FDI_RX_SYMBOL_LOCK;
2273 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002274 I915_WRITE(reg, temp);
2275 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002276 udelay(150);
2277
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002278 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002279 reg = FDI_TX_CTL(pipe);
2280 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002281 temp &= ~(7 << 19);
2282 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002283 temp &= ~FDI_LINK_TRAIN_NONE;
2284 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002285 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002286
Chris Wilson5eddb702010-09-11 13:48:45 +01002287 reg = FDI_RX_CTL(pipe);
2288 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002289 temp &= ~FDI_LINK_TRAIN_NONE;
2290 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002291 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2292
2293 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002294 udelay(150);
2295
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002296 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002297 if (HAS_PCH_IBX(dev)) {
2298 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2299 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2300 FDI_RX_PHASE_SYNC_POINTER_EN);
2301 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002302
Chris Wilson5eddb702010-09-11 13:48:45 +01002303 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002304 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002305 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002306 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2307
2308 if ((temp & FDI_RX_BIT_LOCK)) {
2309 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002310 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002311 break;
2312 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002313 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002314 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002315 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002316
2317 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002318 reg = FDI_TX_CTL(pipe);
2319 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002320 temp &= ~FDI_LINK_TRAIN_NONE;
2321 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002322 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002323
Chris Wilson5eddb702010-09-11 13:48:45 +01002324 reg = FDI_RX_CTL(pipe);
2325 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002326 temp &= ~FDI_LINK_TRAIN_NONE;
2327 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002328 I915_WRITE(reg, temp);
2329
2330 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002331 udelay(150);
2332
Chris Wilson5eddb702010-09-11 13:48:45 +01002333 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002334 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002335 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002336 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2337
2338 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002339 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002340 DRM_DEBUG_KMS("FDI train 2 done.\n");
2341 break;
2342 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002343 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002344 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002345 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002346
2347 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002348
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002349}
2350
Chris Wilson311bd682011-01-13 19:06:50 +00002351static const int snb_b_fdi_train_param [] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002352 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2353 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2354 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2355 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2356};
2357
2358/* The FDI link training functions for SNB/Cougarpoint. */
2359static void gen6_fdi_link_train(struct drm_crtc *crtc)
2360{
2361 struct drm_device *dev = crtc->dev;
2362 struct drm_i915_private *dev_priv = dev->dev_private;
2363 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2364 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002365 u32 reg, temp, i;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002366
Adam Jacksone1a44742010-06-25 15:32:14 -04002367 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2368 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002369 reg = FDI_RX_IMR(pipe);
2370 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002371 temp &= ~FDI_RX_SYMBOL_LOCK;
2372 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002373 I915_WRITE(reg, temp);
2374
2375 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002376 udelay(150);
2377
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002378 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002379 reg = FDI_TX_CTL(pipe);
2380 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002381 temp &= ~(7 << 19);
2382 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002383 temp &= ~FDI_LINK_TRAIN_NONE;
2384 temp |= FDI_LINK_TRAIN_PATTERN_1;
2385 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2386 /* SNB-B */
2387 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002388 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002389
Chris Wilson5eddb702010-09-11 13:48:45 +01002390 reg = FDI_RX_CTL(pipe);
2391 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002392 if (HAS_PCH_CPT(dev)) {
2393 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2394 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2395 } else {
2396 temp &= ~FDI_LINK_TRAIN_NONE;
2397 temp |= FDI_LINK_TRAIN_PATTERN_1;
2398 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002399 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2400
2401 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002402 udelay(150);
2403
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002404 for (i = 0; i < 4; i++ ) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002405 reg = FDI_TX_CTL(pipe);
2406 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002407 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2408 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002409 I915_WRITE(reg, temp);
2410
2411 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002412 udelay(500);
2413
Chris Wilson5eddb702010-09-11 13:48:45 +01002414 reg = FDI_RX_IIR(pipe);
2415 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002416 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2417
2418 if (temp & FDI_RX_BIT_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002419 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002420 DRM_DEBUG_KMS("FDI train 1 done.\n");
2421 break;
2422 }
2423 }
2424 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002425 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002426
2427 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002428 reg = FDI_TX_CTL(pipe);
2429 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002430 temp &= ~FDI_LINK_TRAIN_NONE;
2431 temp |= FDI_LINK_TRAIN_PATTERN_2;
2432 if (IS_GEN6(dev)) {
2433 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2434 /* SNB-B */
2435 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2436 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002437 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002438
Chris Wilson5eddb702010-09-11 13:48:45 +01002439 reg = FDI_RX_CTL(pipe);
2440 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002441 if (HAS_PCH_CPT(dev)) {
2442 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2443 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2444 } else {
2445 temp &= ~FDI_LINK_TRAIN_NONE;
2446 temp |= FDI_LINK_TRAIN_PATTERN_2;
2447 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002448 I915_WRITE(reg, temp);
2449
2450 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002451 udelay(150);
2452
2453 for (i = 0; i < 4; i++ ) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002454 reg = FDI_TX_CTL(pipe);
2455 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002456 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2457 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002458 I915_WRITE(reg, temp);
2459
2460 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002461 udelay(500);
2462
Chris Wilson5eddb702010-09-11 13:48:45 +01002463 reg = FDI_RX_IIR(pipe);
2464 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002465 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2466
2467 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002468 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002469 DRM_DEBUG_KMS("FDI train 2 done.\n");
2470 break;
2471 }
2472 }
2473 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002474 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002475
2476 DRM_DEBUG_KMS("FDI train done.\n");
2477}
2478
Jesse Barnes0e23b992010-09-10 11:10:00 -07002479static void ironlake_fdi_enable(struct drm_crtc *crtc)
2480{
2481 struct drm_device *dev = crtc->dev;
2482 struct drm_i915_private *dev_priv = dev->dev_private;
2483 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2484 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002485 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002486
Jesse Barnesc64e3112010-09-10 11:27:03 -07002487 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002488 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2489 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002490
Jesse Barnes0e23b992010-09-10 11:10:00 -07002491 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002492 reg = FDI_RX_CTL(pipe);
2493 temp = I915_READ(reg);
2494 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002495 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002496 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2497 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2498
2499 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002500 udelay(200);
2501
2502 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002503 temp = I915_READ(reg);
2504 I915_WRITE(reg, temp | FDI_PCDCLK);
2505
2506 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002507 udelay(200);
2508
2509 /* Enable CPU FDI TX PLL, always on for Ironlake */
Chris Wilson5eddb702010-09-11 13:48:45 +01002510 reg = FDI_TX_CTL(pipe);
2511 temp = I915_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002512 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002513 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
2514
2515 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002516 udelay(100);
2517 }
2518}
2519
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002520static void ironlake_fdi_disable(struct drm_crtc *crtc)
2521{
2522 struct drm_device *dev = crtc->dev;
2523 struct drm_i915_private *dev_priv = dev->dev_private;
2524 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2525 int pipe = intel_crtc->pipe;
2526 u32 reg, temp;
2527
2528 /* disable CPU FDI tx and PCH FDI rx */
2529 reg = FDI_TX_CTL(pipe);
2530 temp = I915_READ(reg);
2531 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2532 POSTING_READ(reg);
2533
2534 reg = FDI_RX_CTL(pipe);
2535 temp = I915_READ(reg);
2536 temp &= ~(0x7 << 16);
2537 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2538 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2539
2540 POSTING_READ(reg);
2541 udelay(100);
2542
2543 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002544 if (HAS_PCH_IBX(dev)) {
2545 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002546 I915_WRITE(FDI_RX_CHICKEN(pipe),
2547 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002548 ~FDI_RX_PHASE_SYNC_POINTER_EN));
2549 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002550
2551 /* still set train pattern 1 */
2552 reg = FDI_TX_CTL(pipe);
2553 temp = I915_READ(reg);
2554 temp &= ~FDI_LINK_TRAIN_NONE;
2555 temp |= FDI_LINK_TRAIN_PATTERN_1;
2556 I915_WRITE(reg, temp);
2557
2558 reg = FDI_RX_CTL(pipe);
2559 temp = I915_READ(reg);
2560 if (HAS_PCH_CPT(dev)) {
2561 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2562 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2563 } else {
2564 temp &= ~FDI_LINK_TRAIN_NONE;
2565 temp |= FDI_LINK_TRAIN_PATTERN_1;
2566 }
2567 /* BPC in FDI rx is consistent with that in PIPECONF */
2568 temp &= ~(0x07 << 16);
2569 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2570 I915_WRITE(reg, temp);
2571
2572 POSTING_READ(reg);
2573 udelay(100);
2574}
2575
Chris Wilson6b383a72010-09-13 13:54:26 +01002576/*
2577 * When we disable a pipe, we need to clear any pending scanline wait events
2578 * to avoid hanging the ring, which we assume we are waiting on.
2579 */
2580static void intel_clear_scanline_wait(struct drm_device *dev)
2581{
2582 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8168bd42010-11-11 17:54:52 +00002583 struct intel_ring_buffer *ring;
Chris Wilson6b383a72010-09-13 13:54:26 +01002584 u32 tmp;
2585
2586 if (IS_GEN2(dev))
2587 /* Can't break the hang on i8xx */
2588 return;
2589
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002590 ring = LP_RING(dev_priv);
Chris Wilson8168bd42010-11-11 17:54:52 +00002591 tmp = I915_READ_CTL(ring);
2592 if (tmp & RING_WAIT)
2593 I915_WRITE_CTL(ring, tmp);
Chris Wilson6b383a72010-09-13 13:54:26 +01002594}
2595
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002596static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2597{
Chris Wilson05394f32010-11-08 19:18:58 +00002598 struct drm_i915_gem_object *obj;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002599 struct drm_i915_private *dev_priv;
2600
2601 if (crtc->fb == NULL)
2602 return;
2603
Chris Wilson05394f32010-11-08 19:18:58 +00002604 obj = to_intel_framebuffer(crtc->fb)->obj;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002605 dev_priv = crtc->dev->dev_private;
2606 wait_event(dev_priv->pending_flip_queue,
Chris Wilson05394f32010-11-08 19:18:58 +00002607 atomic_read(&obj->pending_flip) == 0);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002608}
2609
Jesse Barnes040484a2011-01-03 12:14:26 -08002610static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2611{
2612 struct drm_device *dev = crtc->dev;
2613 struct drm_mode_config *mode_config = &dev->mode_config;
2614 struct intel_encoder *encoder;
2615
2616 /*
2617 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2618 * must be driven by its own crtc; no sharing is possible.
2619 */
2620 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2621 if (encoder->base.crtc != crtc)
2622 continue;
2623
2624 switch (encoder->type) {
2625 case INTEL_OUTPUT_EDP:
2626 if (!intel_encoder_is_pch_edp(&encoder->base))
2627 return false;
2628 continue;
2629 }
2630 }
2631
2632 return true;
2633}
2634
Jesse Barnesf67a5592011-01-05 10:31:48 -08002635/*
2636 * Enable PCH resources required for PCH ports:
2637 * - PCH PLLs
2638 * - FDI training & RX/TX
2639 * - update transcoder timings
2640 * - DP transcoding bits
2641 * - transcoder
2642 */
2643static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002644{
2645 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002646 struct drm_i915_private *dev_priv = dev->dev_private;
2647 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2648 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002649 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002650
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002651 /* For PCH output, training FDI link */
2652 if (IS_GEN6(dev))
2653 gen6_fdi_link_train(crtc);
2654 else
2655 ironlake_fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002656
Jesse Barnes92f25842011-01-04 15:09:34 -08002657 intel_enable_pch_pll(dev_priv, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002658
2659 if (HAS_PCH_CPT(dev)) {
2660 /* Be sure PCH DPLL SEL is set */
2661 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002662 if (pipe == 0 && (temp & TRANSA_DPLL_ENABLE) == 0)
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002663 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002664 else if (pipe == 1 && (temp & TRANSB_DPLL_ENABLE) == 0)
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002665 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2666 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002667 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002668
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08002669 /* set transcoder timing, panel must allow it */
2670 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01002671 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2672 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2673 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2674
2675 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2676 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2677 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002678
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002679 intel_fdi_normal_train(crtc);
2680
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002681 /* For PCH DP, enable TRANS_DP_CTL */
2682 if (HAS_PCH_CPT(dev) &&
2683 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002684 reg = TRANS_DP_CTL(pipe);
2685 temp = I915_READ(reg);
2686 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08002687 TRANS_DP_SYNC_MASK |
2688 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01002689 temp |= (TRANS_DP_OUTPUT_ENABLE |
2690 TRANS_DP_ENH_FRAMING);
Eric Anholt220cad32010-11-18 09:32:58 +08002691 temp |= TRANS_DP_8BPC;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002692
2693 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002694 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002695 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002696 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002697
2698 switch (intel_trans_dp_port_sel(crtc)) {
2699 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002700 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002701 break;
2702 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002703 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002704 break;
2705 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002706 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002707 break;
2708 default:
2709 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002710 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002711 break;
2712 }
2713
Chris Wilson5eddb702010-09-11 13:48:45 +01002714 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002715 }
2716
Jesse Barnes040484a2011-01-03 12:14:26 -08002717 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002718}
2719
2720static void ironlake_crtc_enable(struct drm_crtc *crtc)
2721{
2722 struct drm_device *dev = crtc->dev;
2723 struct drm_i915_private *dev_priv = dev->dev_private;
2724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2725 int pipe = intel_crtc->pipe;
2726 int plane = intel_crtc->plane;
2727 u32 temp;
2728 bool is_pch_port;
2729
2730 if (intel_crtc->active)
2731 return;
2732
2733 intel_crtc->active = true;
2734 intel_update_watermarks(dev);
2735
2736 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2737 temp = I915_READ(PCH_LVDS);
2738 if ((temp & LVDS_PORT_EN) == 0)
2739 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
2740 }
2741
2742 is_pch_port = intel_crtc_driving_pch(crtc);
2743
2744 if (is_pch_port)
2745 ironlake_fdi_enable(crtc);
2746 else
2747 ironlake_fdi_disable(crtc);
2748
2749 /* Enable panel fitting for LVDS */
2750 if (dev_priv->pch_pf_size &&
2751 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
2752 /* Force use of hard-coded filter coefficients
2753 * as some pre-programmed values are broken,
2754 * e.g. x201.
2755 */
2756 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1,
2757 PF_ENABLE | PF_FILTER_MED_3x3);
2758 I915_WRITE(pipe ? PFB_WIN_POS : PFA_WIN_POS,
2759 dev_priv->pch_pf_pos);
2760 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ,
2761 dev_priv->pch_pf_size);
2762 }
2763
2764 intel_enable_pipe(dev_priv, pipe, is_pch_port);
2765 intel_enable_plane(dev_priv, plane, pipe);
2766
2767 if (is_pch_port)
2768 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002769
2770 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002771 intel_update_fbc(dev);
Chris Wilson6b383a72010-09-13 13:54:26 +01002772 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002773}
2774
2775static void ironlake_crtc_disable(struct drm_crtc *crtc)
2776{
2777 struct drm_device *dev = crtc->dev;
2778 struct drm_i915_private *dev_priv = dev->dev_private;
2779 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2780 int pipe = intel_crtc->pipe;
2781 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002782 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002783
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002784 if (!intel_crtc->active)
2785 return;
2786
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002787 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002788 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01002789 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01002790
Jesse Barnesb24e7172011-01-04 15:09:30 -08002791 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002792
2793 if (dev_priv->cfb_plane == plane &&
2794 dev_priv->display.disable_fbc)
2795 dev_priv->display.disable_fbc(dev);
2796
Jesse Barnesb24e7172011-01-04 15:09:30 -08002797 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002798
Jesse Barnes6be4a602010-09-10 10:26:01 -07002799 /* Disable PF */
2800 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1, 0);
2801 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ, 0);
2802
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002803 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002804
2805 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2806 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01002807 if (temp & LVDS_PORT_EN) {
2808 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2809 POSTING_READ(PCH_LVDS);
2810 udelay(100);
2811 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002812 }
2813
Jesse Barnes040484a2011-01-03 12:14:26 -08002814 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002815
Jesse Barnes6be4a602010-09-10 10:26:01 -07002816 if (HAS_PCH_CPT(dev)) {
2817 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002818 reg = TRANS_DP_CTL(pipe);
2819 temp = I915_READ(reg);
2820 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08002821 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01002822 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002823
2824 /* disable DPLL_SEL */
2825 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002826 if (pipe == 0)
Jesse Barnes6be4a602010-09-10 10:26:01 -07002827 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2828 else
2829 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2830 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002831 }
2832
2833 /* disable PCH DPLL */
Jesse Barnes92f25842011-01-04 15:09:34 -08002834 intel_disable_pch_pll(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002835
2836 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002837 reg = FDI_RX_CTL(pipe);
2838 temp = I915_READ(reg);
2839 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002840
2841 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002842 reg = FDI_TX_CTL(pipe);
2843 temp = I915_READ(reg);
2844 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2845
2846 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002847 udelay(100);
2848
Chris Wilson5eddb702010-09-11 13:48:45 +01002849 reg = FDI_RX_CTL(pipe);
2850 temp = I915_READ(reg);
2851 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002852
2853 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002854 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002855 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01002856
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002857 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002858 intel_update_watermarks(dev);
2859 intel_update_fbc(dev);
2860 intel_clear_scanline_wait(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002861}
2862
2863static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
2864{
2865 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2866 int pipe = intel_crtc->pipe;
2867 int plane = intel_crtc->plane;
2868
Zhenyu Wang2c072452009-06-05 15:38:42 +08002869 /* XXX: When our outputs are all unaware of DPMS modes other than off
2870 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2871 */
2872 switch (mode) {
2873 case DRM_MODE_DPMS_ON:
2874 case DRM_MODE_DPMS_STANDBY:
2875 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01002876 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002877 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01002878 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002879
Zhenyu Wang2c072452009-06-05 15:38:42 +08002880 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01002881 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002882 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002883 break;
2884 }
2885}
2886
Daniel Vetter02e792f2009-09-15 22:57:34 +02002887static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2888{
Daniel Vetter02e792f2009-09-15 22:57:34 +02002889 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01002890 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002891
Chris Wilson23f09ce2010-08-12 13:53:37 +01002892 mutex_lock(&dev->struct_mutex);
2893 (void) intel_overlay_switch_off(intel_crtc->overlay, false);
2894 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002895 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002896
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01002897 /* Let userspace switch the overlay on again. In most cases userspace
2898 * has to recompute where to put it anyway.
2899 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002900}
2901
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002902static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002903{
2904 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002905 struct drm_i915_private *dev_priv = dev->dev_private;
2906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2907 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002908 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002909
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002910 if (intel_crtc->active)
2911 return;
2912
2913 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01002914 intel_update_watermarks(dev);
2915
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08002916 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002917 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002918 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002919
2920 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002921 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002922
2923 /* Give the overlay scaler a chance to enable if it's on this pipe */
2924 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01002925 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002926}
2927
2928static void i9xx_crtc_disable(struct drm_crtc *crtc)
2929{
2930 struct drm_device *dev = crtc->dev;
2931 struct drm_i915_private *dev_priv = dev->dev_private;
2932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2933 int pipe = intel_crtc->pipe;
2934 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002935
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002936 if (!intel_crtc->active)
2937 return;
2938
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002939 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002940 intel_crtc_wait_for_pending_flips(crtc);
2941 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002942 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01002943 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002944
2945 if (dev_priv->cfb_plane == plane &&
2946 dev_priv->display.disable_fbc)
2947 dev_priv->display.disable_fbc(dev);
2948
Jesse Barnesb24e7172011-01-04 15:09:30 -08002949 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002950 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08002951 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002952
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002953 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002954 intel_update_fbc(dev);
2955 intel_update_watermarks(dev);
2956 intel_clear_scanline_wait(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002957}
2958
2959static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2960{
Jesse Barnes79e53942008-11-07 14:24:08 -08002961 /* XXX: When our outputs are all unaware of DPMS modes other than off
2962 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2963 */
2964 switch (mode) {
2965 case DRM_MODE_DPMS_ON:
2966 case DRM_MODE_DPMS_STANDBY:
2967 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002968 i9xx_crtc_enable(crtc);
2969 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08002970 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002971 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002972 break;
2973 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002974}
2975
2976/**
2977 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08002978 */
2979static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2980{
2981 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002982 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002983 struct drm_i915_master_private *master_priv;
2984 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2985 int pipe = intel_crtc->pipe;
2986 bool enabled;
2987
Chris Wilson032d2a02010-09-06 16:17:22 +01002988 if (intel_crtc->dpms_mode == mode)
2989 return;
2990
Chris Wilsondebcadd2010-08-07 11:01:33 +01002991 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01002992
Jesse Barnese70236a2009-09-21 10:42:27 -07002993 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002994
2995 if (!dev->primary->master)
2996 return;
2997
2998 master_priv = dev->primary->master->driver_priv;
2999 if (!master_priv->sarea_priv)
3000 return;
3001
3002 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
3003
3004 switch (pipe) {
3005 case 0:
3006 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3007 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3008 break;
3009 case 1:
3010 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3011 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3012 break;
3013 default:
3014 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
3015 break;
3016 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003017}
3018
Chris Wilsoncdd59982010-09-08 16:30:16 +01003019static void intel_crtc_disable(struct drm_crtc *crtc)
3020{
3021 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
3022 struct drm_device *dev = crtc->dev;
3023
3024 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
3025
3026 if (crtc->fb) {
3027 mutex_lock(&dev->struct_mutex);
3028 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
3029 mutex_unlock(&dev->struct_mutex);
3030 }
3031}
3032
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003033/* Prepare for a mode set.
3034 *
3035 * Note we could be a lot smarter here. We need to figure out which outputs
3036 * will be enabled, which disabled (in short, how the config will changes)
3037 * and perform the minimum necessary steps to accomplish that, e.g. updating
3038 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
3039 * panel fitting is in the proper state, etc.
3040 */
3041static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003042{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003043 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003044}
3045
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003046static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003047{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003048 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003049}
3050
3051static void ironlake_crtc_prepare(struct drm_crtc *crtc)
3052{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003053 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003054}
3055
3056static void ironlake_crtc_commit(struct drm_crtc *crtc)
3057{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003058 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003059}
3060
3061void intel_encoder_prepare (struct drm_encoder *encoder)
3062{
3063 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3064 /* lvds has its own version of prepare see intel_lvds_prepare */
3065 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
3066}
3067
3068void intel_encoder_commit (struct drm_encoder *encoder)
3069{
3070 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3071 /* lvds has its own version of commit see intel_lvds_commit */
3072 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
3073}
3074
Chris Wilsonea5b2132010-08-04 13:50:23 +01003075void intel_encoder_destroy(struct drm_encoder *encoder)
3076{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003077 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003078
Chris Wilsonea5b2132010-08-04 13:50:23 +01003079 drm_encoder_cleanup(encoder);
3080 kfree(intel_encoder);
3081}
3082
Jesse Barnes79e53942008-11-07 14:24:08 -08003083static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
3084 struct drm_display_mode *mode,
3085 struct drm_display_mode *adjusted_mode)
3086{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003087 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003088
Eric Anholtbad720f2009-10-22 16:11:14 -07003089 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003090 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003091 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3092 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003093 }
Chris Wilson89749352010-09-12 18:25:19 +01003094
3095 /* XXX some encoders set the crtcinfo, others don't.
3096 * Obviously we need some form of conflict resolution here...
3097 */
3098 if (adjusted_mode->crtc_htotal == 0)
3099 drm_mode_set_crtcinfo(adjusted_mode, 0);
3100
Jesse Barnes79e53942008-11-07 14:24:08 -08003101 return true;
3102}
3103
Jesse Barnese70236a2009-09-21 10:42:27 -07003104static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003105{
Jesse Barnese70236a2009-09-21 10:42:27 -07003106 return 400000;
3107}
Jesse Barnes79e53942008-11-07 14:24:08 -08003108
Jesse Barnese70236a2009-09-21 10:42:27 -07003109static int i915_get_display_clock_speed(struct drm_device *dev)
3110{
3111 return 333000;
3112}
Jesse Barnes79e53942008-11-07 14:24:08 -08003113
Jesse Barnese70236a2009-09-21 10:42:27 -07003114static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3115{
3116 return 200000;
3117}
Jesse Barnes79e53942008-11-07 14:24:08 -08003118
Jesse Barnese70236a2009-09-21 10:42:27 -07003119static int i915gm_get_display_clock_speed(struct drm_device *dev)
3120{
3121 u16 gcfgc = 0;
3122
3123 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3124
3125 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003126 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003127 else {
3128 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3129 case GC_DISPLAY_CLOCK_333_MHZ:
3130 return 333000;
3131 default:
3132 case GC_DISPLAY_CLOCK_190_200_MHZ:
3133 return 190000;
3134 }
3135 }
3136}
Jesse Barnes79e53942008-11-07 14:24:08 -08003137
Jesse Barnese70236a2009-09-21 10:42:27 -07003138static int i865_get_display_clock_speed(struct drm_device *dev)
3139{
3140 return 266000;
3141}
3142
3143static int i855_get_display_clock_speed(struct drm_device *dev)
3144{
3145 u16 hpllcc = 0;
3146 /* Assume that the hardware is in the high speed state. This
3147 * should be the default.
3148 */
3149 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3150 case GC_CLOCK_133_200:
3151 case GC_CLOCK_100_200:
3152 return 200000;
3153 case GC_CLOCK_166_250:
3154 return 250000;
3155 case GC_CLOCK_100_133:
3156 return 133000;
3157 }
3158
3159 /* Shouldn't happen */
3160 return 0;
3161}
3162
3163static int i830_get_display_clock_speed(struct drm_device *dev)
3164{
3165 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003166}
3167
Zhenyu Wang2c072452009-06-05 15:38:42 +08003168struct fdi_m_n {
3169 u32 tu;
3170 u32 gmch_m;
3171 u32 gmch_n;
3172 u32 link_m;
3173 u32 link_n;
3174};
3175
3176static void
3177fdi_reduce_ratio(u32 *num, u32 *den)
3178{
3179 while (*num > 0xffffff || *den > 0xffffff) {
3180 *num >>= 1;
3181 *den >>= 1;
3182 }
3183}
3184
Zhenyu Wang2c072452009-06-05 15:38:42 +08003185static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003186ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3187 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003188{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003189 m_n->tu = 64; /* default size */
3190
Chris Wilson22ed1112010-12-04 01:01:29 +00003191 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3192 m_n->gmch_m = bits_per_pixel * pixel_clock;
3193 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003194 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3195
Chris Wilson22ed1112010-12-04 01:01:29 +00003196 m_n->link_m = pixel_clock;
3197 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003198 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3199}
3200
3201
Shaohua Li7662c8b2009-06-26 11:23:55 +08003202struct intel_watermark_params {
3203 unsigned long fifo_size;
3204 unsigned long max_wm;
3205 unsigned long default_wm;
3206 unsigned long guard_size;
3207 unsigned long cacheline_size;
3208};
3209
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003210/* Pineview has different values for various configs */
Chris Wilsond2102462011-01-24 17:43:27 +00003211static const struct intel_watermark_params pineview_display_wm = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003212 PINEVIEW_DISPLAY_FIFO,
3213 PINEVIEW_MAX_WM,
3214 PINEVIEW_DFT_WM,
3215 PINEVIEW_GUARD_WM,
3216 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08003217};
Chris Wilsond2102462011-01-24 17:43:27 +00003218static const struct intel_watermark_params pineview_display_hplloff_wm = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003219 PINEVIEW_DISPLAY_FIFO,
3220 PINEVIEW_MAX_WM,
3221 PINEVIEW_DFT_HPLLOFF_WM,
3222 PINEVIEW_GUARD_WM,
3223 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08003224};
Chris Wilsond2102462011-01-24 17:43:27 +00003225static const struct intel_watermark_params pineview_cursor_wm = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003226 PINEVIEW_CURSOR_FIFO,
3227 PINEVIEW_CURSOR_MAX_WM,
3228 PINEVIEW_CURSOR_DFT_WM,
3229 PINEVIEW_CURSOR_GUARD_WM,
3230 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08003231};
Chris Wilsond2102462011-01-24 17:43:27 +00003232static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003233 PINEVIEW_CURSOR_FIFO,
3234 PINEVIEW_CURSOR_MAX_WM,
3235 PINEVIEW_CURSOR_DFT_WM,
3236 PINEVIEW_CURSOR_GUARD_WM,
3237 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08003238};
Chris Wilsond2102462011-01-24 17:43:27 +00003239static const struct intel_watermark_params g4x_wm_info = {
Jesse Barnes0e442c62009-10-19 10:09:33 +09003240 G4X_FIFO_SIZE,
3241 G4X_MAX_WM,
3242 G4X_MAX_WM,
3243 2,
3244 G4X_FIFO_LINE_SIZE,
3245};
Chris Wilsond2102462011-01-24 17:43:27 +00003246static const struct intel_watermark_params g4x_cursor_wm_info = {
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003247 I965_CURSOR_FIFO,
3248 I965_CURSOR_MAX_WM,
3249 I965_CURSOR_DFT_WM,
3250 2,
3251 G4X_FIFO_LINE_SIZE,
3252};
Chris Wilsond2102462011-01-24 17:43:27 +00003253static const struct intel_watermark_params i965_cursor_wm_info = {
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003254 I965_CURSOR_FIFO,
3255 I965_CURSOR_MAX_WM,
3256 I965_CURSOR_DFT_WM,
3257 2,
3258 I915_FIFO_LINE_SIZE,
3259};
Chris Wilsond2102462011-01-24 17:43:27 +00003260static const struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08003261 I945_FIFO_SIZE,
3262 I915_MAX_WM,
3263 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003264 2,
3265 I915_FIFO_LINE_SIZE
3266};
Chris Wilsond2102462011-01-24 17:43:27 +00003267static const struct intel_watermark_params i915_wm_info = {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003268 I915_FIFO_SIZE,
3269 I915_MAX_WM,
3270 1,
3271 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08003272 I915_FIFO_LINE_SIZE
3273};
Chris Wilsond2102462011-01-24 17:43:27 +00003274static const struct intel_watermark_params i855_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08003275 I855GM_FIFO_SIZE,
3276 I915_MAX_WM,
3277 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003278 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08003279 I830_FIFO_LINE_SIZE
3280};
Chris Wilsond2102462011-01-24 17:43:27 +00003281static const struct intel_watermark_params i830_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08003282 I830_FIFO_SIZE,
3283 I915_MAX_WM,
3284 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003285 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08003286 I830_FIFO_LINE_SIZE
3287};
3288
Chris Wilsond2102462011-01-24 17:43:27 +00003289static const struct intel_watermark_params ironlake_display_wm_info = {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003290 ILK_DISPLAY_FIFO,
3291 ILK_DISPLAY_MAXWM,
3292 ILK_DISPLAY_DFTWM,
3293 2,
3294 ILK_FIFO_LINE_SIZE
3295};
Chris Wilsond2102462011-01-24 17:43:27 +00003296static const struct intel_watermark_params ironlake_cursor_wm_info = {
Zhao Yakuic936f442010-06-12 14:32:26 +08003297 ILK_CURSOR_FIFO,
3298 ILK_CURSOR_MAXWM,
3299 ILK_CURSOR_DFTWM,
3300 2,
3301 ILK_FIFO_LINE_SIZE
3302};
Chris Wilsond2102462011-01-24 17:43:27 +00003303static const struct intel_watermark_params ironlake_display_srwm_info = {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003304 ILK_DISPLAY_SR_FIFO,
3305 ILK_DISPLAY_MAX_SRWM,
3306 ILK_DISPLAY_DFT_SRWM,
3307 2,
3308 ILK_FIFO_LINE_SIZE
3309};
Chris Wilsond2102462011-01-24 17:43:27 +00003310static const struct intel_watermark_params ironlake_cursor_srwm_info = {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003311 ILK_CURSOR_SR_FIFO,
3312 ILK_CURSOR_MAX_SRWM,
3313 ILK_CURSOR_DFT_SRWM,
3314 2,
3315 ILK_FIFO_LINE_SIZE
3316};
3317
Chris Wilsond2102462011-01-24 17:43:27 +00003318static const struct intel_watermark_params sandybridge_display_wm_info = {
Yuanhan Liu13982612010-12-15 15:42:31 +08003319 SNB_DISPLAY_FIFO,
3320 SNB_DISPLAY_MAXWM,
3321 SNB_DISPLAY_DFTWM,
3322 2,
3323 SNB_FIFO_LINE_SIZE
3324};
Chris Wilsond2102462011-01-24 17:43:27 +00003325static const struct intel_watermark_params sandybridge_cursor_wm_info = {
Yuanhan Liu13982612010-12-15 15:42:31 +08003326 SNB_CURSOR_FIFO,
3327 SNB_CURSOR_MAXWM,
3328 SNB_CURSOR_DFTWM,
3329 2,
3330 SNB_FIFO_LINE_SIZE
3331};
Chris Wilsond2102462011-01-24 17:43:27 +00003332static const struct intel_watermark_params sandybridge_display_srwm_info = {
Yuanhan Liu13982612010-12-15 15:42:31 +08003333 SNB_DISPLAY_SR_FIFO,
3334 SNB_DISPLAY_MAX_SRWM,
3335 SNB_DISPLAY_DFT_SRWM,
3336 2,
3337 SNB_FIFO_LINE_SIZE
3338};
Chris Wilsond2102462011-01-24 17:43:27 +00003339static const struct intel_watermark_params sandybridge_cursor_srwm_info = {
Yuanhan Liu13982612010-12-15 15:42:31 +08003340 SNB_CURSOR_SR_FIFO,
3341 SNB_CURSOR_MAX_SRWM,
3342 SNB_CURSOR_DFT_SRWM,
3343 2,
3344 SNB_FIFO_LINE_SIZE
3345};
3346
3347
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003348/**
3349 * intel_calculate_wm - calculate watermark level
3350 * @clock_in_khz: pixel clock
3351 * @wm: chip FIFO params
3352 * @pixel_size: display pixel size
3353 * @latency_ns: memory latency for the platform
3354 *
3355 * Calculate the watermark level (the level at which the display plane will
3356 * start fetching from memory again). Each chip has a different display
3357 * FIFO size and allocation, so the caller needs to figure that out and pass
3358 * in the correct intel_watermark_params structure.
3359 *
3360 * As the pixel clock runs, the FIFO will be drained at a rate that depends
3361 * on the pixel size. When it reaches the watermark level, it'll start
3362 * fetching FIFO line sized based chunks from memory until the FIFO fills
3363 * past the watermark point. If the FIFO drains completely, a FIFO underrun
3364 * will occur, and a display engine hang could result.
3365 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003366static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
Chris Wilsond2102462011-01-24 17:43:27 +00003367 const struct intel_watermark_params *wm,
3368 int fifo_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08003369 int pixel_size,
3370 unsigned long latency_ns)
3371{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07003372 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003373
Jesse Barnesd6604672009-09-11 12:25:56 -07003374 /*
3375 * Note: we need to make sure we don't overflow for various clock &
3376 * latency values.
3377 * clocks go from a few thousand to several hundred thousand.
3378 * latency is usually a few thousand
3379 */
3380 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
3381 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01003382 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003383
Zhao Yakui28c97732009-10-09 11:39:41 +08003384 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003385
Chris Wilsond2102462011-01-24 17:43:27 +00003386 wm_size = fifo_size - (entries_required + wm->guard_size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003387
Zhao Yakui28c97732009-10-09 11:39:41 +08003388 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003389
Jesse Barnes390c4dd2009-07-16 13:01:01 -07003390 /* Don't promote wm_size to unsigned... */
3391 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003392 wm_size = wm->max_wm;
Chris Wilsonc3add4b2010-09-08 09:14:08 +01003393 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003394 wm_size = wm->default_wm;
3395 return wm_size;
3396}
3397
3398struct cxsr_latency {
3399 int is_desktop;
Li Peng95534262010-05-18 18:58:44 +08003400 int is_ddr3;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003401 unsigned long fsb_freq;
3402 unsigned long mem_freq;
3403 unsigned long display_sr;
3404 unsigned long display_hpll_disable;
3405 unsigned long cursor_sr;
3406 unsigned long cursor_hpll_disable;
3407};
3408
Chris Wilson403c89f2010-08-04 15:25:31 +01003409static const struct cxsr_latency cxsr_latency_table[] = {
Li Peng95534262010-05-18 18:58:44 +08003410 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
3411 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
3412 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
3413 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
3414 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003415
Li Peng95534262010-05-18 18:58:44 +08003416 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
3417 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
3418 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
3419 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
3420 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003421
Li Peng95534262010-05-18 18:58:44 +08003422 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
3423 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
3424 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
3425 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
3426 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003427
Li Peng95534262010-05-18 18:58:44 +08003428 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
3429 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
3430 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
3431 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
3432 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003433
Li Peng95534262010-05-18 18:58:44 +08003434 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
3435 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
3436 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
3437 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
3438 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003439
Li Peng95534262010-05-18 18:58:44 +08003440 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
3441 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
3442 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
3443 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
3444 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003445};
3446
Chris Wilson403c89f2010-08-04 15:25:31 +01003447static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
3448 int is_ddr3,
3449 int fsb,
3450 int mem)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003451{
Chris Wilson403c89f2010-08-04 15:25:31 +01003452 const struct cxsr_latency *latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003453 int i;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003454
3455 if (fsb == 0 || mem == 0)
3456 return NULL;
3457
3458 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
3459 latency = &cxsr_latency_table[i];
3460 if (is_desktop == latency->is_desktop &&
Li Peng95534262010-05-18 18:58:44 +08003461 is_ddr3 == latency->is_ddr3 &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05303462 fsb == latency->fsb_freq && mem == latency->mem_freq)
3463 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003464 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05303465
Zhao Yakui28c97732009-10-09 11:39:41 +08003466 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05303467
3468 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003469}
3470
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003471static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003472{
3473 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003474
3475 /* deactivate cxsr */
Chris Wilson3e33d942010-08-04 11:17:25 +01003476 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003477}
3478
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07003479/*
3480 * Latency for FIFO fetches is dependent on several factors:
3481 * - memory configuration (speed, channels)
3482 * - chipset
3483 * - current MCH state
3484 * It can be fairly high in some situations, so here we assume a fairly
3485 * pessimal value. It's a tradeoff between extra memory fetches (if we
3486 * set this value too high, the FIFO will fetch frequently to stay full)
3487 * and power consumption (set it too low to save power and we might see
3488 * FIFO underruns and display "flicker").
3489 *
3490 * A value of 5us seems to be a good balance; safe for very low end
3491 * platforms but not overly aggressive on lower latency configs.
3492 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003493static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003494
Jesse Barnese70236a2009-09-21 10:42:27 -07003495static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003496{
3497 struct drm_i915_private *dev_priv = dev->dev_private;
3498 uint32_t dsparb = I915_READ(DSPARB);
3499 int size;
3500
Chris Wilson8de9b312010-07-19 19:59:52 +01003501 size = dsparb & 0x7f;
3502 if (plane)
3503 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003504
Zhao Yakui28c97732009-10-09 11:39:41 +08003505 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003506 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003507
3508 return size;
3509}
Shaohua Li7662c8b2009-06-26 11:23:55 +08003510
Jesse Barnese70236a2009-09-21 10:42:27 -07003511static int i85x_get_fifo_size(struct drm_device *dev, int plane)
3512{
3513 struct drm_i915_private *dev_priv = dev->dev_private;
3514 uint32_t dsparb = I915_READ(DSPARB);
3515 int size;
3516
Chris Wilson8de9b312010-07-19 19:59:52 +01003517 size = dsparb & 0x1ff;
3518 if (plane)
3519 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
Jesse Barnese70236a2009-09-21 10:42:27 -07003520 size >>= 1; /* Convert to cachelines */
3521
Zhao Yakui28c97732009-10-09 11:39:41 +08003522 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003523 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07003524
3525 return size;
3526}
3527
3528static int i845_get_fifo_size(struct drm_device *dev, int plane)
3529{
3530 struct drm_i915_private *dev_priv = dev->dev_private;
3531 uint32_t dsparb = I915_READ(DSPARB);
3532 int size;
3533
3534 size = dsparb & 0x7f;
3535 size >>= 2; /* Convert to cachelines */
3536
Zhao Yakui28c97732009-10-09 11:39:41 +08003537 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003538 plane ? "B" : "A",
3539 size);
Jesse Barnese70236a2009-09-21 10:42:27 -07003540
3541 return size;
3542}
3543
3544static int i830_get_fifo_size(struct drm_device *dev, int plane)
3545{
3546 struct drm_i915_private *dev_priv = dev->dev_private;
3547 uint32_t dsparb = I915_READ(DSPARB);
3548 int size;
3549
3550 size = dsparb & 0x7f;
3551 size >>= 1; /* Convert to cachelines */
3552
Zhao Yakui28c97732009-10-09 11:39:41 +08003553 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01003554 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07003555
3556 return size;
3557}
3558
Chris Wilsond2102462011-01-24 17:43:27 +00003559static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
3560{
3561 struct drm_crtc *crtc, *enabled = NULL;
3562
3563 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3564 if (crtc->enabled && crtc->fb) {
3565 if (enabled)
3566 return NULL;
3567 enabled = crtc;
3568 }
3569 }
3570
3571 return enabled;
3572}
3573
3574static void pineview_update_wm(struct drm_device *dev)
Zhao Yakuid4294342010-03-22 22:45:36 +08003575{
3576 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond2102462011-01-24 17:43:27 +00003577 struct drm_crtc *crtc;
Chris Wilson403c89f2010-08-04 15:25:31 +01003578 const struct cxsr_latency *latency;
Zhao Yakuid4294342010-03-22 22:45:36 +08003579 u32 reg;
3580 unsigned long wm;
Zhao Yakuid4294342010-03-22 22:45:36 +08003581
Chris Wilson403c89f2010-08-04 15:25:31 +01003582 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
Li Peng95534262010-05-18 18:58:44 +08003583 dev_priv->fsb_freq, dev_priv->mem_freq);
Zhao Yakuid4294342010-03-22 22:45:36 +08003584 if (!latency) {
3585 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
3586 pineview_disable_cxsr(dev);
3587 return;
3588 }
3589
Chris Wilsond2102462011-01-24 17:43:27 +00003590 crtc = single_enabled_crtc(dev);
3591 if (crtc) {
3592 int clock = crtc->mode.clock;
3593 int pixel_size = crtc->fb->bits_per_pixel / 8;
Zhao Yakuid4294342010-03-22 22:45:36 +08003594
3595 /* Display SR */
Chris Wilsond2102462011-01-24 17:43:27 +00003596 wm = intel_calculate_wm(clock, &pineview_display_wm,
3597 pineview_display_wm.fifo_size,
Zhao Yakuid4294342010-03-22 22:45:36 +08003598 pixel_size, latency->display_sr);
3599 reg = I915_READ(DSPFW1);
3600 reg &= ~DSPFW_SR_MASK;
3601 reg |= wm << DSPFW_SR_SHIFT;
3602 I915_WRITE(DSPFW1, reg);
3603 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
3604
3605 /* cursor SR */
Chris Wilsond2102462011-01-24 17:43:27 +00003606 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
3607 pineview_display_wm.fifo_size,
Zhao Yakuid4294342010-03-22 22:45:36 +08003608 pixel_size, latency->cursor_sr);
3609 reg = I915_READ(DSPFW3);
3610 reg &= ~DSPFW_CURSOR_SR_MASK;
3611 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
3612 I915_WRITE(DSPFW3, reg);
3613
3614 /* Display HPLL off SR */
Chris Wilsond2102462011-01-24 17:43:27 +00003615 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
3616 pineview_display_hplloff_wm.fifo_size,
Zhao Yakuid4294342010-03-22 22:45:36 +08003617 pixel_size, latency->display_hpll_disable);
3618 reg = I915_READ(DSPFW3);
3619 reg &= ~DSPFW_HPLL_SR_MASK;
3620 reg |= wm & DSPFW_HPLL_SR_MASK;
3621 I915_WRITE(DSPFW3, reg);
3622
3623 /* cursor HPLL off SR */
Chris Wilsond2102462011-01-24 17:43:27 +00003624 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
3625 pineview_display_hplloff_wm.fifo_size,
Zhao Yakuid4294342010-03-22 22:45:36 +08003626 pixel_size, latency->cursor_hpll_disable);
3627 reg = I915_READ(DSPFW3);
3628 reg &= ~DSPFW_HPLL_CURSOR_MASK;
3629 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
3630 I915_WRITE(DSPFW3, reg);
3631 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
3632
3633 /* activate cxsr */
Chris Wilson3e33d942010-08-04 11:17:25 +01003634 I915_WRITE(DSPFW3,
3635 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
Zhao Yakuid4294342010-03-22 22:45:36 +08003636 DRM_DEBUG_KMS("Self-refresh is enabled\n");
3637 } else {
3638 pineview_disable_cxsr(dev);
3639 DRM_DEBUG_KMS("Self-refresh is disabled\n");
3640 }
3641}
3642
Chris Wilson417ae142011-01-19 15:04:42 +00003643static bool g4x_compute_wm0(struct drm_device *dev,
3644 int plane,
3645 const struct intel_watermark_params *display,
3646 int display_latency_ns,
3647 const struct intel_watermark_params *cursor,
3648 int cursor_latency_ns,
3649 int *plane_wm,
3650 int *cursor_wm)
Jesse Barnes652c3932009-08-17 13:31:43 -07003651{
Chris Wilson417ae142011-01-19 15:04:42 +00003652 struct drm_crtc *crtc;
3653 int htotal, hdisplay, clock, pixel_size;
3654 int line_time_us, line_count;
3655 int entries, tlb_miss;
Jesse Barnes652c3932009-08-17 13:31:43 -07003656
Chris Wilson417ae142011-01-19 15:04:42 +00003657 crtc = intel_get_crtc_for_plane(dev, plane);
3658 if (crtc->fb == NULL || !crtc->enabled)
3659 return false;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003660
Chris Wilson417ae142011-01-19 15:04:42 +00003661 htotal = crtc->mode.htotal;
3662 hdisplay = crtc->mode.hdisplay;
3663 clock = crtc->mode.clock;
3664 pixel_size = crtc->fb->bits_per_pixel / 8;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003665
Chris Wilson417ae142011-01-19 15:04:42 +00003666 /* Use the small buffer method to calculate plane watermark */
3667 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
3668 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
3669 if (tlb_miss > 0)
3670 entries += tlb_miss;
3671 entries = DIV_ROUND_UP(entries, display->cacheline_size);
3672 *plane_wm = entries + display->guard_size;
3673 if (*plane_wm > (int)display->max_wm)
3674 *plane_wm = display->max_wm;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003675
Chris Wilson417ae142011-01-19 15:04:42 +00003676 /* Use the large buffer method to calculate cursor watermark */
3677 line_time_us = ((htotal * 1000) / clock);
3678 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
3679 entries = line_count * 64 * pixel_size;
3680 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
3681 if (tlb_miss > 0)
3682 entries += tlb_miss;
3683 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
3684 *cursor_wm = entries + cursor->guard_size;
3685 if (*cursor_wm > (int)cursor->max_wm)
3686 *cursor_wm = (int)cursor->max_wm;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003687
Chris Wilson417ae142011-01-19 15:04:42 +00003688 return true;
3689}
Jesse Barnes0e442c62009-10-19 10:09:33 +09003690
Chris Wilson417ae142011-01-19 15:04:42 +00003691/*
3692 * Check the wm result.
3693 *
3694 * If any calculated watermark values is larger than the maximum value that
3695 * can be programmed into the associated watermark register, that watermark
3696 * must be disabled.
3697 */
3698static bool g4x_check_srwm(struct drm_device *dev,
3699 int display_wm, int cursor_wm,
3700 const struct intel_watermark_params *display,
3701 const struct intel_watermark_params *cursor)
3702{
3703 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
3704 display_wm, cursor_wm);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003705
Chris Wilson417ae142011-01-19 15:04:42 +00003706 if (display_wm > display->max_wm) {
3707 DRM_DEBUG_KMS("display watermark is too large(%d), disabling\n",
3708 display_wm, display->max_wm);
3709 return false;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003710 }
3711
Chris Wilson417ae142011-01-19 15:04:42 +00003712 if (cursor_wm > cursor->max_wm) {
3713 DRM_DEBUG_KMS("cursor watermark is too large(%d), disabling\n",
3714 cursor_wm, cursor->max_wm);
3715 return false;
3716 }
Jesse Barnes0e442c62009-10-19 10:09:33 +09003717
Chris Wilson417ae142011-01-19 15:04:42 +00003718 if (!(display_wm || cursor_wm)) {
3719 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
3720 return false;
3721 }
Jesse Barnes0e442c62009-10-19 10:09:33 +09003722
Chris Wilson417ae142011-01-19 15:04:42 +00003723 return true;
3724}
3725
3726static bool g4x_compute_srwm(struct drm_device *dev,
Chris Wilsond2102462011-01-24 17:43:27 +00003727 int plane,
3728 int latency_ns,
Chris Wilson417ae142011-01-19 15:04:42 +00003729 const struct intel_watermark_params *display,
3730 const struct intel_watermark_params *cursor,
3731 int *display_wm, int *cursor_wm)
3732{
Chris Wilsond2102462011-01-24 17:43:27 +00003733 struct drm_crtc *crtc;
3734 int hdisplay, htotal, pixel_size, clock;
Chris Wilson417ae142011-01-19 15:04:42 +00003735 unsigned long line_time_us;
3736 int line_count, line_size;
3737 int small, large;
3738 int entries;
3739
3740 if (!latency_ns) {
3741 *display_wm = *cursor_wm = 0;
3742 return false;
3743 }
3744
Chris Wilsond2102462011-01-24 17:43:27 +00003745 crtc = intel_get_crtc_for_plane(dev, plane);
3746 hdisplay = crtc->mode.hdisplay;
3747 htotal = crtc->mode.htotal;
3748 clock = crtc->mode.clock;
3749 pixel_size = crtc->fb->bits_per_pixel / 8;
3750
Chris Wilson417ae142011-01-19 15:04:42 +00003751 line_time_us = (htotal * 1000) / clock;
3752 line_count = (latency_ns / line_time_us + 1000) / 1000;
3753 line_size = hdisplay * pixel_size;
3754
3755 /* Use the minimum of the small and large buffer method for primary */
3756 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
3757 large = line_count * line_size;
3758
3759 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
3760 *display_wm = entries + display->guard_size;
3761
3762 /* calculate the self-refresh watermark for display cursor */
3763 entries = line_count * pixel_size * 64;
3764 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
3765 *cursor_wm = entries + cursor->guard_size;
3766
3767 return g4x_check_srwm(dev,
3768 *display_wm, *cursor_wm,
3769 display, cursor);
3770}
3771
Chris Wilsond2102462011-01-24 17:43:27 +00003772static inline bool single_plane_enabled(unsigned int mask)
3773{
3774 return mask && (mask & -mask) == 0;
3775}
3776
3777static void g4x_update_wm(struct drm_device *dev)
Chris Wilson417ae142011-01-19 15:04:42 +00003778{
3779 static const int sr_latency_ns = 12000;
3780 struct drm_i915_private *dev_priv = dev->dev_private;
3781 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
Chris Wilsond2102462011-01-24 17:43:27 +00003782 int plane_sr, cursor_sr;
3783 unsigned int enabled = 0;
Chris Wilson417ae142011-01-19 15:04:42 +00003784
3785 if (g4x_compute_wm0(dev, 0,
3786 &g4x_wm_info, latency_ns,
3787 &g4x_cursor_wm_info, latency_ns,
3788 &planea_wm, &cursora_wm))
Chris Wilsond2102462011-01-24 17:43:27 +00003789 enabled |= 1;
Chris Wilson417ae142011-01-19 15:04:42 +00003790
3791 if (g4x_compute_wm0(dev, 1,
3792 &g4x_wm_info, latency_ns,
3793 &g4x_cursor_wm_info, latency_ns,
3794 &planeb_wm, &cursorb_wm))
Chris Wilsond2102462011-01-24 17:43:27 +00003795 enabled |= 2;
Chris Wilson417ae142011-01-19 15:04:42 +00003796
3797 plane_sr = cursor_sr = 0;
Chris Wilsond2102462011-01-24 17:43:27 +00003798 if (single_plane_enabled(enabled) &&
3799 g4x_compute_srwm(dev, ffs(enabled) - 1,
3800 sr_latency_ns,
Chris Wilson417ae142011-01-19 15:04:42 +00003801 &g4x_wm_info,
3802 &g4x_cursor_wm_info,
3803 &plane_sr, &cursor_sr))
3804 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
3805 else
3806 I915_WRITE(FW_BLC_SELF,
3807 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
3808
Chris Wilson308977a2011-02-02 10:41:20 +00003809 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
3810 planea_wm, cursora_wm,
3811 planeb_wm, cursorb_wm,
3812 plane_sr, cursor_sr);
Chris Wilson417ae142011-01-19 15:04:42 +00003813
3814 I915_WRITE(DSPFW1,
3815 (plane_sr << DSPFW_SR_SHIFT) |
Jesse Barnes0e442c62009-10-19 10:09:33 +09003816 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
Chris Wilson417ae142011-01-19 15:04:42 +00003817 (planeb_wm << DSPFW_PLANEB_SHIFT) |
3818 planea_wm);
3819 I915_WRITE(DSPFW2,
3820 (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
Jesse Barnes0e442c62009-10-19 10:09:33 +09003821 (cursora_wm << DSPFW_CURSORA_SHIFT));
3822 /* HPLL off in SR has some issues on G4x... disable it */
Chris Wilson417ae142011-01-19 15:04:42 +00003823 I915_WRITE(DSPFW3,
3824 (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
Jesse Barnes0e442c62009-10-19 10:09:33 +09003825 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07003826}
3827
Chris Wilsond2102462011-01-24 17:43:27 +00003828static void i965_update_wm(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003829{
3830 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond2102462011-01-24 17:43:27 +00003831 struct drm_crtc *crtc;
3832 int srwm = 1;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003833 int cursor_sr = 16;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003834
Jesse Barnes1dc75462009-10-19 10:08:17 +09003835 /* Calc sr entries for one plane configs */
Chris Wilsond2102462011-01-24 17:43:27 +00003836 crtc = single_enabled_crtc(dev);
3837 if (crtc) {
Jesse Barnes1dc75462009-10-19 10:08:17 +09003838 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003839 static const int sr_latency_ns = 12000;
Chris Wilsond2102462011-01-24 17:43:27 +00003840 int clock = crtc->mode.clock;
3841 int htotal = crtc->mode.htotal;
3842 int hdisplay = crtc->mode.hdisplay;
3843 int pixel_size = crtc->fb->bits_per_pixel / 8;
3844 unsigned long line_time_us;
3845 int entries;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003846
Chris Wilsond2102462011-01-24 17:43:27 +00003847 line_time_us = ((htotal * 1000) / clock);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003848
3849 /* Use ns/us then divide to preserve precision */
Chris Wilsond2102462011-01-24 17:43:27 +00003850 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3851 pixel_size * hdisplay;
3852 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
Chris Wilsond2102462011-01-24 17:43:27 +00003853 srwm = I965_FIFO_SIZE - entries;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003854 if (srwm < 0)
3855 srwm = 1;
Zhao Yakui1b07e042010-06-12 14:32:24 +08003856 srwm &= 0x1ff;
Chris Wilson308977a2011-02-02 10:41:20 +00003857 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
3858 entries, srwm);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003859
Chris Wilsond2102462011-01-24 17:43:27 +00003860 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003861 pixel_size * 64;
Chris Wilsond2102462011-01-24 17:43:27 +00003862 entries = DIV_ROUND_UP(entries,
Chris Wilson8de9b312010-07-19 19:59:52 +01003863 i965_cursor_wm_info.cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003864 cursor_sr = i965_cursor_wm_info.fifo_size -
Chris Wilsond2102462011-01-24 17:43:27 +00003865 (entries + i965_cursor_wm_info.guard_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003866
3867 if (cursor_sr > i965_cursor_wm_info.max_wm)
3868 cursor_sr = i965_cursor_wm_info.max_wm;
3869
3870 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3871 "cursor %d\n", srwm, cursor_sr);
3872
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003873 if (IS_CRESTLINE(dev))
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003874 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303875 } else {
3876 /* Turn off self refresh if both pipes are enabled */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003877 if (IS_CRESTLINE(dev))
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003878 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3879 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003880 }
3881
3882 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3883 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003884
3885 /* 965 has limitations... */
Chris Wilson417ae142011-01-19 15:04:42 +00003886 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
3887 (8 << 16) | (8 << 8) | (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003888 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003889 /* update cursor SR watermark */
3890 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003891}
3892
Chris Wilsond2102462011-01-24 17:43:27 +00003893static void i9xx_update_wm(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003894{
3895 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond2102462011-01-24 17:43:27 +00003896 const struct intel_watermark_params *wm_info;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003897 uint32_t fwater_lo;
3898 uint32_t fwater_hi;
Chris Wilsond2102462011-01-24 17:43:27 +00003899 int cwm, srwm = 1;
3900 int fifo_size;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003901 int planea_wm, planeb_wm;
Chris Wilsond2102462011-01-24 17:43:27 +00003902 struct drm_crtc *crtc, *enabled = NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003903
Chris Wilson72557b42011-01-31 10:29:55 +00003904 if (IS_I945GM(dev))
Chris Wilsond2102462011-01-24 17:43:27 +00003905 wm_info = &i945_wm_info;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003906 else if (!IS_GEN2(dev))
Chris Wilsond2102462011-01-24 17:43:27 +00003907 wm_info = &i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003908 else
Chris Wilsond2102462011-01-24 17:43:27 +00003909 wm_info = &i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003910
Chris Wilsond2102462011-01-24 17:43:27 +00003911 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3912 crtc = intel_get_crtc_for_plane(dev, 0);
3913 if (crtc->enabled && crtc->fb) {
3914 planea_wm = intel_calculate_wm(crtc->mode.clock,
3915 wm_info, fifo_size,
3916 crtc->fb->bits_per_pixel / 8,
3917 latency_ns);
3918 enabled = crtc;
3919 } else
3920 planea_wm = fifo_size - wm_info->guard_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003921
Chris Wilsond2102462011-01-24 17:43:27 +00003922 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
3923 crtc = intel_get_crtc_for_plane(dev, 1);
3924 if (crtc->enabled && crtc->fb) {
3925 planeb_wm = intel_calculate_wm(crtc->mode.clock,
3926 wm_info, fifo_size,
3927 crtc->fb->bits_per_pixel / 8,
3928 latency_ns);
3929 if (enabled == NULL)
3930 enabled = crtc;
3931 else
3932 enabled = NULL;
3933 } else
3934 planeb_wm = fifo_size - wm_info->guard_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003935
Zhao Yakui28c97732009-10-09 11:39:41 +08003936 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003937
3938 /*
3939 * Overlay gets an aggressive default since video jitter is bad.
3940 */
3941 cwm = 2;
3942
Alexander Lam18b21902011-01-03 13:28:56 -05003943 /* Play safe and disable self-refresh before adjusting watermarks. */
3944 if (IS_I945G(dev) || IS_I945GM(dev))
3945 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
3946 else if (IS_I915GM(dev))
3947 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3948
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003949 /* Calc sr entries for one plane configs */
Chris Wilsond2102462011-01-24 17:43:27 +00003950 if (HAS_FW_BLC(dev) && enabled) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003951 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003952 static const int sr_latency_ns = 6000;
Chris Wilsond2102462011-01-24 17:43:27 +00003953 int clock = enabled->mode.clock;
3954 int htotal = enabled->mode.htotal;
3955 int hdisplay = enabled->mode.hdisplay;
3956 int pixel_size = enabled->fb->bits_per_pixel / 8;
3957 unsigned long line_time_us;
3958 int entries;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003959
Chris Wilsond2102462011-01-24 17:43:27 +00003960 line_time_us = (htotal * 1000) / clock;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003961
3962 /* Use ns/us then divide to preserve precision */
Chris Wilsond2102462011-01-24 17:43:27 +00003963 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3964 pixel_size * hdisplay;
3965 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
3966 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
3967 srwm = wm_info->fifo_size - entries;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003968 if (srwm < 0)
3969 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08003970
3971 if (IS_I945G(dev) || IS_I945GM(dev))
Alexander Lam18b21902011-01-03 13:28:56 -05003972 I915_WRITE(FW_BLC_SELF,
3973 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3974 else if (IS_I915GM(dev))
Li Pengee980b82010-01-27 19:01:11 +08003975 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003976 }
3977
Zhao Yakui28c97732009-10-09 11:39:41 +08003978 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003979 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003980
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003981 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3982 fwater_hi = (cwm & 0x1f);
3983
3984 /* Set request length to 8 cachelines per fetch */
3985 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3986 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003987
3988 I915_WRITE(FW_BLC, fwater_lo);
3989 I915_WRITE(FW_BLC2, fwater_hi);
Alexander Lam18b21902011-01-03 13:28:56 -05003990
Chris Wilsond2102462011-01-24 17:43:27 +00003991 if (HAS_FW_BLC(dev)) {
3992 if (enabled) {
3993 if (IS_I945G(dev) || IS_I945GM(dev))
3994 I915_WRITE(FW_BLC_SELF,
3995 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
3996 else if (IS_I915GM(dev))
3997 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3998 DRM_DEBUG_KMS("memory self refresh enabled\n");
3999 } else
4000 DRM_DEBUG_KMS("memory self refresh disabled\n");
4001 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08004002}
4003
Chris Wilsond2102462011-01-24 17:43:27 +00004004static void i830_update_wm(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08004005{
4006 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond2102462011-01-24 17:43:27 +00004007 struct drm_crtc *crtc;
4008 uint32_t fwater_lo;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07004009 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004010
Chris Wilsond2102462011-01-24 17:43:27 +00004011 crtc = single_enabled_crtc(dev);
4012 if (crtc == NULL)
4013 return;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004014
Chris Wilsond2102462011-01-24 17:43:27 +00004015 planea_wm = intel_calculate_wm(crtc->mode.clock, &i830_wm_info,
4016 dev_priv->display.get_fifo_size(dev, 0),
4017 crtc->fb->bits_per_pixel / 8,
4018 latency_ns);
4019 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesf3601322009-07-22 12:54:59 -07004020 fwater_lo |= (3<<8) | planea_wm;
4021
Zhao Yakui28c97732009-10-09 11:39:41 +08004022 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004023
4024 I915_WRITE(FW_BLC, fwater_lo);
4025}
4026
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004027#define ILK_LP0_PLANE_LATENCY 700
Zhao Yakuic936f442010-06-12 14:32:26 +08004028#define ILK_LP0_CURSOR_LATENCY 1300
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004029
Chris Wilson4ed765f2010-09-11 10:46:47 +01004030static bool ironlake_compute_wm0(struct drm_device *dev,
4031 int pipe,
Yuanhan Liu13982612010-12-15 15:42:31 +08004032 const struct intel_watermark_params *display,
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08004033 int display_latency_ns,
Yuanhan Liu13982612010-12-15 15:42:31 +08004034 const struct intel_watermark_params *cursor,
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08004035 int cursor_latency_ns,
Chris Wilson4ed765f2010-09-11 10:46:47 +01004036 int *plane_wm,
4037 int *cursor_wm)
4038{
4039 struct drm_crtc *crtc;
Chris Wilsondb66e372011-01-08 09:02:21 +00004040 int htotal, hdisplay, clock, pixel_size;
4041 int line_time_us, line_count;
4042 int entries, tlb_miss;
Chris Wilson4ed765f2010-09-11 10:46:47 +01004043
4044 crtc = intel_get_crtc_for_pipe(dev, pipe);
4045 if (crtc->fb == NULL || !crtc->enabled)
4046 return false;
4047
4048 htotal = crtc->mode.htotal;
4049 hdisplay = crtc->mode.hdisplay;
4050 clock = crtc->mode.clock;
4051 pixel_size = crtc->fb->bits_per_pixel / 8;
4052
4053 /* Use the small buffer method to calculate plane watermark */
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08004054 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
Chris Wilsondb66e372011-01-08 09:02:21 +00004055 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
4056 if (tlb_miss > 0)
4057 entries += tlb_miss;
Yuanhan Liu13982612010-12-15 15:42:31 +08004058 entries = DIV_ROUND_UP(entries, display->cacheline_size);
4059 *plane_wm = entries + display->guard_size;
4060 if (*plane_wm > (int)display->max_wm)
4061 *plane_wm = display->max_wm;
Chris Wilson4ed765f2010-09-11 10:46:47 +01004062
4063 /* Use the large buffer method to calculate cursor watermark */
4064 line_time_us = ((htotal * 1000) / clock);
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08004065 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Chris Wilson4ed765f2010-09-11 10:46:47 +01004066 entries = line_count * 64 * pixel_size;
Chris Wilsondb66e372011-01-08 09:02:21 +00004067 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
4068 if (tlb_miss > 0)
4069 entries += tlb_miss;
Yuanhan Liu13982612010-12-15 15:42:31 +08004070 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
4071 *cursor_wm = entries + cursor->guard_size;
4072 if (*cursor_wm > (int)cursor->max_wm)
4073 *cursor_wm = (int)cursor->max_wm;
Chris Wilson4ed765f2010-09-11 10:46:47 +01004074
4075 return true;
4076}
4077
Jesse Barnesb79d4992010-12-21 13:10:23 -08004078/*
4079 * Check the wm result.
4080 *
4081 * If any calculated watermark values is larger than the maximum value that
4082 * can be programmed into the associated watermark register, that watermark
4083 * must be disabled.
4084 */
4085static bool ironlake_check_srwm(struct drm_device *dev, int level,
4086 int fbc_wm, int display_wm, int cursor_wm,
4087 const struct intel_watermark_params *display,
4088 const struct intel_watermark_params *cursor)
4089{
4090 struct drm_i915_private *dev_priv = dev->dev_private;
4091
4092 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
4093 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
4094
4095 if (fbc_wm > SNB_FBC_MAX_SRWM) {
4096 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
4097 fbc_wm, SNB_FBC_MAX_SRWM, level);
4098
4099 /* fbc has it's own way to disable FBC WM */
4100 I915_WRITE(DISP_ARB_CTL,
4101 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
4102 return false;
4103 }
4104
4105 if (display_wm > display->max_wm) {
4106 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
4107 display_wm, SNB_DISPLAY_MAX_SRWM, level);
4108 return false;
4109 }
4110
4111 if (cursor_wm > cursor->max_wm) {
4112 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
4113 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
4114 return false;
4115 }
4116
4117 if (!(fbc_wm || display_wm || cursor_wm)) {
4118 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
4119 return false;
4120 }
4121
4122 return true;
4123}
4124
4125/*
4126 * Compute watermark values of WM[1-3],
4127 */
Chris Wilsond2102462011-01-24 17:43:27 +00004128static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
4129 int latency_ns,
Jesse Barnesb79d4992010-12-21 13:10:23 -08004130 const struct intel_watermark_params *display,
4131 const struct intel_watermark_params *cursor,
4132 int *fbc_wm, int *display_wm, int *cursor_wm)
4133{
Chris Wilsond2102462011-01-24 17:43:27 +00004134 struct drm_crtc *crtc;
Jesse Barnesb79d4992010-12-21 13:10:23 -08004135 unsigned long line_time_us;
Chris Wilsond2102462011-01-24 17:43:27 +00004136 int hdisplay, htotal, pixel_size, clock;
Jesse Barnesb79d4992010-12-21 13:10:23 -08004137 int line_count, line_size;
4138 int small, large;
4139 int entries;
4140
4141 if (!latency_ns) {
4142 *fbc_wm = *display_wm = *cursor_wm = 0;
4143 return false;
4144 }
4145
Chris Wilsond2102462011-01-24 17:43:27 +00004146 crtc = intel_get_crtc_for_plane(dev, plane);
4147 hdisplay = crtc->mode.hdisplay;
4148 htotal = crtc->mode.htotal;
4149 clock = crtc->mode.clock;
4150 pixel_size = crtc->fb->bits_per_pixel / 8;
4151
Jesse Barnesb79d4992010-12-21 13:10:23 -08004152 line_time_us = (htotal * 1000) / clock;
4153 line_count = (latency_ns / line_time_us + 1000) / 1000;
4154 line_size = hdisplay * pixel_size;
4155
4156 /* Use the minimum of the small and large buffer method for primary */
4157 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
4158 large = line_count * line_size;
4159
4160 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
4161 *display_wm = entries + display->guard_size;
4162
4163 /*
4164 * Spec says:
4165 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
4166 */
4167 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
4168
4169 /* calculate the self-refresh watermark for display cursor */
4170 entries = line_count * pixel_size * 64;
4171 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
4172 *cursor_wm = entries + cursor->guard_size;
4173
4174 return ironlake_check_srwm(dev, level,
4175 *fbc_wm, *display_wm, *cursor_wm,
4176 display, cursor);
4177}
4178
Chris Wilsond2102462011-01-24 17:43:27 +00004179static void ironlake_update_wm(struct drm_device *dev)
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004180{
4181 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond2102462011-01-24 17:43:27 +00004182 int fbc_wm, plane_wm, cursor_wm;
4183 unsigned int enabled;
Zhao Yakuic936f442010-06-12 14:32:26 +08004184
Chris Wilson4ed765f2010-09-11 10:46:47 +01004185 enabled = 0;
Yuanhan Liu13982612010-12-15 15:42:31 +08004186 if (ironlake_compute_wm0(dev, 0,
4187 &ironlake_display_wm_info,
4188 ILK_LP0_PLANE_LATENCY,
4189 &ironlake_cursor_wm_info,
4190 ILK_LP0_CURSOR_LATENCY,
4191 &plane_wm, &cursor_wm)) {
Chris Wilson4ed765f2010-09-11 10:46:47 +01004192 I915_WRITE(WM0_PIPEA_ILK,
4193 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
4194 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
4195 " plane %d, " "cursor: %d\n",
4196 plane_wm, cursor_wm);
Chris Wilsond2102462011-01-24 17:43:27 +00004197 enabled |= 1;
Zhao Yakuic936f442010-06-12 14:32:26 +08004198 }
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004199
Yuanhan Liu13982612010-12-15 15:42:31 +08004200 if (ironlake_compute_wm0(dev, 1,
4201 &ironlake_display_wm_info,
4202 ILK_LP0_PLANE_LATENCY,
4203 &ironlake_cursor_wm_info,
4204 ILK_LP0_CURSOR_LATENCY,
4205 &plane_wm, &cursor_wm)) {
Chris Wilson4ed765f2010-09-11 10:46:47 +01004206 I915_WRITE(WM0_PIPEB_ILK,
4207 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
4208 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
4209 " plane %d, cursor: %d\n",
4210 plane_wm, cursor_wm);
Chris Wilsond2102462011-01-24 17:43:27 +00004211 enabled |= 2;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004212 }
4213
4214 /*
4215 * Calculate and update the self-refresh watermark only when one
4216 * display plane is used.
4217 */
Jesse Barnesb79d4992010-12-21 13:10:23 -08004218 I915_WRITE(WM3_LP_ILK, 0);
4219 I915_WRITE(WM2_LP_ILK, 0);
4220 I915_WRITE(WM1_LP_ILK, 0);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004221
Chris Wilsond2102462011-01-24 17:43:27 +00004222 if (!single_plane_enabled(enabled))
Jesse Barnesb79d4992010-12-21 13:10:23 -08004223 return;
Chris Wilsond2102462011-01-24 17:43:27 +00004224 enabled = ffs(enabled) - 1;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08004225
Jesse Barnesb79d4992010-12-21 13:10:23 -08004226 /* WM1 */
Chris Wilsond2102462011-01-24 17:43:27 +00004227 if (!ironlake_compute_srwm(dev, 1, enabled,
4228 ILK_READ_WM1_LATENCY() * 500,
Jesse Barnesb79d4992010-12-21 13:10:23 -08004229 &ironlake_display_srwm_info,
4230 &ironlake_cursor_srwm_info,
4231 &fbc_wm, &plane_wm, &cursor_wm))
4232 return;
Chris Wilson4ed765f2010-09-11 10:46:47 +01004233
Jesse Barnesb79d4992010-12-21 13:10:23 -08004234 I915_WRITE(WM1_LP_ILK,
4235 WM1_LP_SR_EN |
4236 (ILK_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
4237 (fbc_wm << WM1_LP_FBC_SHIFT) |
4238 (plane_wm << WM1_LP_SR_SHIFT) |
4239 cursor_wm);
Chris Wilson4ed765f2010-09-11 10:46:47 +01004240
Jesse Barnesb79d4992010-12-21 13:10:23 -08004241 /* WM2 */
Chris Wilsond2102462011-01-24 17:43:27 +00004242 if (!ironlake_compute_srwm(dev, 2, enabled,
4243 ILK_READ_WM2_LATENCY() * 500,
Jesse Barnesb79d4992010-12-21 13:10:23 -08004244 &ironlake_display_srwm_info,
4245 &ironlake_cursor_srwm_info,
4246 &fbc_wm, &plane_wm, &cursor_wm))
4247 return;
Chris Wilson4ed765f2010-09-11 10:46:47 +01004248
Jesse Barnesb79d4992010-12-21 13:10:23 -08004249 I915_WRITE(WM2_LP_ILK,
4250 WM2_LP_EN |
4251 (ILK_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
4252 (fbc_wm << WM1_LP_FBC_SHIFT) |
4253 (plane_wm << WM1_LP_SR_SHIFT) |
4254 cursor_wm);
Yuanhan Liu13982612010-12-15 15:42:31 +08004255
4256 /*
Jesse Barnesb79d4992010-12-21 13:10:23 -08004257 * WM3 is unsupported on ILK, probably because we don't have latency
4258 * data for that power state
Yuanhan Liu13982612010-12-15 15:42:31 +08004259 */
Yuanhan Liu13982612010-12-15 15:42:31 +08004260}
4261
Chris Wilsond2102462011-01-24 17:43:27 +00004262static void sandybridge_update_wm(struct drm_device *dev)
Yuanhan Liu13982612010-12-15 15:42:31 +08004263{
4264 struct drm_i915_private *dev_priv = dev->dev_private;
Yuanhan Liua0fa62d2010-12-23 16:35:40 +08004265 int latency = SNB_READ_WM0_LATENCY() * 100; /* In unit 0.1us */
Chris Wilsond2102462011-01-24 17:43:27 +00004266 int fbc_wm, plane_wm, cursor_wm;
4267 unsigned int enabled;
Yuanhan Liu13982612010-12-15 15:42:31 +08004268
4269 enabled = 0;
4270 if (ironlake_compute_wm0(dev, 0,
4271 &sandybridge_display_wm_info, latency,
4272 &sandybridge_cursor_wm_info, latency,
4273 &plane_wm, &cursor_wm)) {
4274 I915_WRITE(WM0_PIPEA_ILK,
4275 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
4276 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
4277 " plane %d, " "cursor: %d\n",
4278 plane_wm, cursor_wm);
Chris Wilsond2102462011-01-24 17:43:27 +00004279 enabled |= 1;
Yuanhan Liu13982612010-12-15 15:42:31 +08004280 }
4281
4282 if (ironlake_compute_wm0(dev, 1,
4283 &sandybridge_display_wm_info, latency,
4284 &sandybridge_cursor_wm_info, latency,
4285 &plane_wm, &cursor_wm)) {
4286 I915_WRITE(WM0_PIPEB_ILK,
4287 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
4288 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
4289 " plane %d, cursor: %d\n",
4290 plane_wm, cursor_wm);
Chris Wilsond2102462011-01-24 17:43:27 +00004291 enabled |= 2;
Yuanhan Liu13982612010-12-15 15:42:31 +08004292 }
4293
4294 /*
4295 * Calculate and update the self-refresh watermark only when one
4296 * display plane is used.
4297 *
4298 * SNB support 3 levels of watermark.
4299 *
4300 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
4301 * and disabled in the descending order
4302 *
4303 */
4304 I915_WRITE(WM3_LP_ILK, 0);
4305 I915_WRITE(WM2_LP_ILK, 0);
4306 I915_WRITE(WM1_LP_ILK, 0);
4307
Chris Wilsond2102462011-01-24 17:43:27 +00004308 if (!single_plane_enabled(enabled))
Yuanhan Liu13982612010-12-15 15:42:31 +08004309 return;
Chris Wilsond2102462011-01-24 17:43:27 +00004310 enabled = ffs(enabled) - 1;
Yuanhan Liu13982612010-12-15 15:42:31 +08004311
4312 /* WM1 */
Chris Wilsond2102462011-01-24 17:43:27 +00004313 if (!ironlake_compute_srwm(dev, 1, enabled,
4314 SNB_READ_WM1_LATENCY() * 500,
Jesse Barnesb79d4992010-12-21 13:10:23 -08004315 &sandybridge_display_srwm_info,
4316 &sandybridge_cursor_srwm_info,
4317 &fbc_wm, &plane_wm, &cursor_wm))
Yuanhan Liu13982612010-12-15 15:42:31 +08004318 return;
4319
4320 I915_WRITE(WM1_LP_ILK,
4321 WM1_LP_SR_EN |
4322 (SNB_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
4323 (fbc_wm << WM1_LP_FBC_SHIFT) |
4324 (plane_wm << WM1_LP_SR_SHIFT) |
4325 cursor_wm);
4326
4327 /* WM2 */
Chris Wilsond2102462011-01-24 17:43:27 +00004328 if (!ironlake_compute_srwm(dev, 2, enabled,
4329 SNB_READ_WM2_LATENCY() * 500,
Jesse Barnesb79d4992010-12-21 13:10:23 -08004330 &sandybridge_display_srwm_info,
4331 &sandybridge_cursor_srwm_info,
4332 &fbc_wm, &plane_wm, &cursor_wm))
Yuanhan Liu13982612010-12-15 15:42:31 +08004333 return;
4334
4335 I915_WRITE(WM2_LP_ILK,
4336 WM2_LP_EN |
4337 (SNB_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
4338 (fbc_wm << WM1_LP_FBC_SHIFT) |
4339 (plane_wm << WM1_LP_SR_SHIFT) |
4340 cursor_wm);
4341
4342 /* WM3 */
Chris Wilsond2102462011-01-24 17:43:27 +00004343 if (!ironlake_compute_srwm(dev, 3, enabled,
4344 SNB_READ_WM3_LATENCY() * 500,
Jesse Barnesb79d4992010-12-21 13:10:23 -08004345 &sandybridge_display_srwm_info,
4346 &sandybridge_cursor_srwm_info,
4347 &fbc_wm, &plane_wm, &cursor_wm))
Yuanhan Liu13982612010-12-15 15:42:31 +08004348 return;
4349
4350 I915_WRITE(WM3_LP_ILK,
4351 WM3_LP_EN |
4352 (SNB_READ_WM3_LATENCY() << WM1_LP_LATENCY_SHIFT) |
4353 (fbc_wm << WM1_LP_FBC_SHIFT) |
4354 (plane_wm << WM1_LP_SR_SHIFT) |
4355 cursor_wm);
4356}
4357
Shaohua Li7662c8b2009-06-26 11:23:55 +08004358/**
4359 * intel_update_watermarks - update FIFO watermark values based on current modes
4360 *
4361 * Calculate watermark values for the various WM regs based on current mode
4362 * and plane configuration.
4363 *
4364 * There are several cases to deal with here:
4365 * - normal (i.e. non-self-refresh)
4366 * - self-refresh (SR) mode
4367 * - lines are large relative to FIFO size (buffer can hold up to 2)
4368 * - lines are small relative to FIFO size (buffer can hold more than 2
4369 * lines), so need to account for TLB latency
4370 *
4371 * The normal calculation is:
4372 * watermark = dotclock * bytes per pixel * latency
4373 * where latency is platform & configuration dependent (we assume pessimal
4374 * values here).
4375 *
4376 * The SR calculation is:
4377 * watermark = (trunc(latency/line time)+1) * surface width *
4378 * bytes per pixel
4379 * where
4380 * line time = htotal / dotclock
Zhao Yakuifa143212010-06-12 14:32:23 +08004381 * surface width = hdisplay for normal plane and 64 for cursor
Shaohua Li7662c8b2009-06-26 11:23:55 +08004382 * and latency is assumed to be high, as above.
4383 *
4384 * The final value programmed to the register should always be rounded up,
4385 * and include an extra 2 entries to account for clock crossings.
4386 *
4387 * We don't use the sprite, so we can ignore that. And on Crestline we have
4388 * to set the non-SR watermarks to 8.
Chris Wilson5eddb702010-09-11 13:48:45 +01004389 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08004390static void intel_update_watermarks(struct drm_device *dev)
4391{
Jesse Barnese70236a2009-09-21 10:42:27 -07004392 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004393
Chris Wilsond2102462011-01-24 17:43:27 +00004394 if (dev_priv->display.update_wm)
4395 dev_priv->display.update_wm(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004396}
4397
Chris Wilsona7615032011-01-12 17:04:08 +00004398static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
4399{
4400 return dev_priv->lvds_use_ssc && i915_panel_use_ssc;
4401}
4402
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004403static int intel_crtc_mode_set(struct drm_crtc *crtc,
4404 struct drm_display_mode *mode,
4405 struct drm_display_mode *adjusted_mode,
4406 int x, int y,
4407 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004408{
4409 struct drm_device *dev = crtc->dev;
4410 struct drm_i915_private *dev_priv = dev->dev_private;
4411 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4412 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004413 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01004414 u32 fp_reg, dpll_reg;
Eric Anholtc751ce42010-03-25 11:48:48 -07004415 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004416 intel_clock_t clock, reduced_clock;
Chris Wilson5eddb702010-09-11 13:48:45 +01004417 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Jesse Barnes652c3932009-08-17 13:31:43 -07004418 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004419 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson8e647a22010-08-22 10:54:23 +01004420 struct intel_encoder *has_edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004421 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01004422 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004423 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004424 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004425 struct fdi_m_n m_n = {0};
Chris Wilson5eddb702010-09-11 13:48:45 +01004426 u32 reg, temp;
Bryan Freedaa9b5002011-01-12 13:43:19 -08004427 u32 lvds_sync = 0;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004428 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08004429
4430 drm_vblank_pre_modeset(dev, pipe);
4431
Chris Wilson5eddb702010-09-11 13:48:45 +01004432 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4433 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004434 continue;
4435
Chris Wilson5eddb702010-09-11 13:48:45 +01004436 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004437 case INTEL_OUTPUT_LVDS:
4438 is_lvds = true;
4439 break;
4440 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08004441 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08004442 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01004443 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08004444 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004445 break;
4446 case INTEL_OUTPUT_DVO:
4447 is_dvo = true;
4448 break;
4449 case INTEL_OUTPUT_TVOUT:
4450 is_tv = true;
4451 break;
4452 case INTEL_OUTPUT_ANALOG:
4453 is_crt = true;
4454 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004455 case INTEL_OUTPUT_DISPLAYPORT:
4456 is_dp = true;
4457 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004458 case INTEL_OUTPUT_EDP:
Chris Wilson5eddb702010-09-11 13:48:45 +01004459 has_edp_encoder = encoder;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004460 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004461 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004462
Eric Anholtc751ce42010-03-25 11:48:48 -07004463 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004464 }
4465
Chris Wilsona7615032011-01-12 17:04:08 +00004466 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004467 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08004468 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01004469 refclk / 1000);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004470 } else if (!IS_GEN2(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004471 refclk = 96000;
Jesse Barnes1cb1b752010-10-07 16:01:17 -07004472 if (HAS_PCH_SPLIT(dev) &&
4473 (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004474 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08004475 } else {
4476 refclk = 48000;
4477 }
4478
Ma Lingd4906092009-03-18 20:13:27 +08004479 /*
4480 * Returns a set of divisors for the desired target clock with the given
4481 * refclk, or FALSE. The returned values represent the clock equation:
4482 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4483 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004484 limit = intel_limit(crtc, refclk);
Ma Lingd4906092009-03-18 20:13:27 +08004485 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004486 if (!ok) {
4487 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01004488 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004489 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004490 }
4491
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004492 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004493 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004494
Zhao Yakuiddc90032010-01-06 22:05:56 +08004495 if (is_lvds && dev_priv->lvds_downclock_avail) {
4496 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01004497 dev_priv->lvds_downclock,
4498 refclk,
4499 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00004500 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
4501 /*
4502 * If the different P is found, it means that we can't
4503 * switch the display clock by using the FP0/FP1.
4504 * In such case we will disable the LVDS downclock
4505 * feature.
4506 */
4507 DRM_DEBUG_KMS("Different P is found for "
Chris Wilson5eddb702010-09-11 13:48:45 +01004508 "LVDS clock/downclock\n");
Zhao Yakui18f9ed12009-11-20 03:24:16 +00004509 has_reduced_clock = 0;
4510 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004511 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004512 /* SDVO TV has fixed PLL values depend on its clock range,
4513 this mirrors vbios setting. */
4514 if (is_sdvo && is_tv) {
4515 if (adjusted_mode->clock >= 100000
Chris Wilson5eddb702010-09-11 13:48:45 +01004516 && adjusted_mode->clock < 140500) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004517 clock.p1 = 2;
4518 clock.p2 = 10;
4519 clock.n = 3;
4520 clock.m1 = 16;
4521 clock.m2 = 8;
4522 } else if (adjusted_mode->clock >= 140500
Chris Wilson5eddb702010-09-11 13:48:45 +01004523 && adjusted_mode->clock <= 200000) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004524 clock.p1 = 1;
4525 clock.p2 = 10;
4526 clock.n = 6;
4527 clock.m1 = 12;
4528 clock.m2 = 8;
4529 }
4530 }
4531
Zhenyu Wang2c072452009-06-05 15:38:42 +08004532 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07004533 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson49078f72010-12-04 07:45:57 +00004534 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
Adam Jackson77ffb592010-04-12 11:38:44 -04004535 int lane = 0, link_bw, bpp;
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004536 /* CPU eDP doesn't require FDI link, so just set DP M/N
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004537 according to current link config */
Jesse Barnes858bc212011-01-04 10:46:49 -08004538 if (has_edp_encoder && !intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004539 target_clock = mode->clock;
Chris Wilson8e647a22010-08-22 10:54:23 +01004540 intel_edp_link_config(has_edp_encoder,
4541 &lane, &link_bw);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004542 } else {
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004543 /* [e]DP over FDI requires target mode clock
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004544 instead of link clock */
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004545 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004546 target_clock = mode->clock;
4547 else
4548 target_clock = adjusted_mode->clock;
Chris Wilson021357a2010-09-07 20:54:59 +01004549
4550 /* FDI is a binary signal running at ~2.7GHz, encoding
4551 * each output octet as 10 bits. The actual frequency
4552 * is stored as a divider into a 100MHz clock, and the
4553 * mode pixel clock is stored in units of 1KHz.
4554 * Hence the bw of each lane in terms of the mode signal
4555 * is:
4556 */
4557 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004558 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00004559
4560 /* determine panel color depth */
Chris Wilson5eddb702010-09-11 13:48:45 +01004561 temp = I915_READ(PIPECONF(pipe));
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004562 temp &= ~PIPE_BPC_MASK;
4563 if (is_lvds) {
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004564 /* the BPC will be 6 if it is 18-bit LVDS panel */
Chris Wilson5eddb702010-09-11 13:48:45 +01004565 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004566 temp |= PIPE_8BPC;
4567 else
4568 temp |= PIPE_6BPC;
Jesse Barnes1d850362010-10-07 16:01:10 -07004569 } else if (has_edp_encoder) {
Chris Wilson5ceb0f92010-09-24 10:24:28 +01004570 switch (dev_priv->edp.bpp/3) {
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08004571 case 8:
4572 temp |= PIPE_8BPC;
4573 break;
4574 case 10:
4575 temp |= PIPE_10BPC;
4576 break;
4577 case 6:
4578 temp |= PIPE_6BPC;
4579 break;
4580 case 12:
4581 temp |= PIPE_12BPC;
4582 break;
4583 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08004584 } else
4585 temp |= PIPE_8BPC;
Chris Wilson5eddb702010-09-11 13:48:45 +01004586 I915_WRITE(PIPECONF(pipe), temp);
Zhenyu Wang58a27472009-09-25 08:01:28 +00004587
4588 switch (temp & PIPE_BPC_MASK) {
4589 case PIPE_8BPC:
4590 bpp = 24;
4591 break;
4592 case PIPE_10BPC:
4593 bpp = 30;
4594 break;
4595 case PIPE_6BPC:
4596 bpp = 18;
4597 break;
4598 case PIPE_12BPC:
4599 bpp = 36;
4600 break;
4601 default:
4602 DRM_ERROR("unknown pipe bpc value\n");
4603 bpp = 24;
4604 }
4605
Adam Jackson77ffb592010-04-12 11:38:44 -04004606 if (!lane) {
4607 /*
4608 * Account for spread spectrum to avoid
4609 * oversubscribing the link. Max center spread
4610 * is 2.5%; use 5% for safety's sake.
4611 */
4612 u32 bps = target_clock * bpp * 21 / 20;
4613 lane = bps / (link_bw * 8) + 1;
4614 }
4615
4616 intel_crtc->fdi_lanes = lane;
4617
Chris Wilson49078f72010-12-04 07:45:57 +00004618 if (pixel_multiplier > 1)
4619 link_bw *= pixel_multiplier;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004620 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004621 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004622
Zhenyu Wangc038e512009-10-19 15:43:48 +08004623 /* Ironlake: try to setup display ref clock before DPLL
4624 * enabling. This is only under driver's control after
4625 * PCH B stepping, previous chipset stepping should be
4626 * ignoring this setting.
4627 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004628 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson633f2ea2011-01-19 13:29:42 +00004629 /*XXX BIOS treats 16:31 as a mask for 0:15 */
4630
Zhenyu Wangc038e512009-10-19 15:43:48 +08004631 temp = I915_READ(PCH_DREF_CONTROL);
Chris Wilson633f2ea2011-01-19 13:29:42 +00004632
4633 /* First clear the current state for output switching */
4634 temp &= ~DREF_SSC1_ENABLE;
4635 temp &= ~DREF_SSC4_ENABLE;
4636 temp &= ~DREF_SUPERSPREAD_SOURCE_MASK;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004637 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004638 temp &= ~DREF_SSC_SOURCE_MASK;
Chris Wilson633f2ea2011-01-19 13:29:42 +00004639 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004640 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004641
Chris Wilson5eddb702010-09-11 13:48:45 +01004642 POSTING_READ(PCH_DREF_CONTROL);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004643 udelay(200);
4644
Chris Wilson633f2ea2011-01-19 13:29:42 +00004645 if ((is_lvds || has_edp_encoder) &&
4646 intel_panel_use_ssc(dev_priv)) {
4647 temp |= DREF_SSC_SOURCE_ENABLE;
4648 if (has_edp_encoder) {
4649 if (!intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
4650 /* Enable CPU source on CPU attached eDP */
Jesse Barnes7f823282010-10-07 16:01:16 -07004651 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Chris Wilson633f2ea2011-01-19 13:29:42 +00004652 } else {
4653 /* Enable SSC on PCH eDP if needed */
Jesse Barnes7f823282010-10-07 16:01:16 -07004654 temp |= DREF_SUPERSPREAD_SOURCE_ENABLE;
4655 }
Chris Wilson633f2ea2011-01-19 13:29:42 +00004656 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004657 }
Chris Wilson633f2ea2011-01-19 13:29:42 +00004658 if (!dev_priv->display_clock_mode)
4659 temp |= DREF_SSC1_ENABLE;
4660 } else {
4661 if (dev_priv->display_clock_mode)
4662 temp |= DREF_NONSPREAD_CK505_ENABLE;
4663 else
4664 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
4665 if (has_edp_encoder &&
4666 !intel_encoder_is_pch_edp(&has_edp_encoder->base))
4667 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Zhenyu Wangc038e512009-10-19 15:43:48 +08004668 }
Chris Wilson633f2ea2011-01-19 13:29:42 +00004669
4670 I915_WRITE(PCH_DREF_CONTROL, temp);
4671 POSTING_READ(PCH_DREF_CONTROL);
4672 udelay(200);
Zhenyu Wangc038e512009-10-19 15:43:48 +08004673 }
4674
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004675 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08004676 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07004677 if (has_reduced_clock)
4678 fp2 = (1 << reduced_clock.n) << 16 |
4679 reduced_clock.m1 << 8 | reduced_clock.m2;
4680 } else {
Shaohua Li21778322009-02-23 15:19:16 +08004681 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07004682 if (has_reduced_clock)
4683 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4684 reduced_clock.m2;
4685 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004686
Chris Wilsonc1858122010-12-03 21:35:48 +00004687 /* Enable autotuning of the PLL clock (if permissible) */
4688 if (HAS_PCH_SPLIT(dev)) {
4689 int factor = 21;
4690
4691 if (is_lvds) {
Chris Wilsona7615032011-01-12 17:04:08 +00004692 if ((intel_panel_use_ssc(dev_priv) &&
Chris Wilsonc1858122010-12-03 21:35:48 +00004693 dev_priv->lvds_ssc_freq == 100) ||
4694 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4695 factor = 25;
4696 } else if (is_sdvo && is_tv)
4697 factor = 20;
4698
4699 if (clock.m1 < factor * clock.n)
4700 fp |= FP_CB_TUNE;
4701 }
4702
Chris Wilson5eddb702010-09-11 13:48:45 +01004703 dpll = 0;
Eric Anholtbad720f2009-10-22 16:11:14 -07004704 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004705 dpll = DPLL_VGA_MODE_DIS;
4706
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004707 if (!IS_GEN2(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004708 if (is_lvds)
4709 dpll |= DPLLB_MODE_LVDS;
4710 else
4711 dpll |= DPLLB_MODE_DAC_SERIAL;
4712 if (is_sdvo) {
Chris Wilson6c9547f2010-08-25 10:05:17 +01004713 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4714 if (pixel_multiplier > 1) {
4715 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4716 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4717 else if (HAS_PCH_SPLIT(dev))
4718 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
4719 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004720 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004721 }
Jesse Barnes83240122010-10-07 16:01:18 -07004722 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base))
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004723 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004724
4725 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004726 if (IS_PINEVIEW(dev))
4727 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004728 else {
Shaohua Li21778322009-02-23 15:19:16 +08004729 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004730 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004731 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004732 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07004733 if (IS_G4X(dev) && has_reduced_clock)
4734 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004735 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004736 switch (clock.p2) {
4737 case 5:
4738 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4739 break;
4740 case 7:
4741 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4742 break;
4743 case 10:
4744 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4745 break;
4746 case 14:
4747 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4748 break;
4749 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004750 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004751 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4752 } else {
4753 if (is_lvds) {
4754 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4755 } else {
4756 if (clock.p1 == 2)
4757 dpll |= PLL_P1_DIVIDE_BY_TWO;
4758 else
4759 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4760 if (clock.p2 == 4)
4761 dpll |= PLL_P2_DIVIDE_BY_4;
4762 }
4763 }
4764
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004765 if (is_sdvo && is_tv)
4766 dpll |= PLL_REF_INPUT_TVCLKINBC;
4767 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08004768 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004769 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08004770 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00004771 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004772 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08004773 else
4774 dpll |= PLL_REF_INPUT_DREFCLK;
4775
4776 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01004777 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004778
4779 /* Set up the display plane register */
4780 dspcntr = DISPPLANE_GAMMA_ENABLE;
4781
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004782 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08004783 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07004784 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004785 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07004786 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004787 else
4788 dspcntr |= DISPPLANE_SEL_PIPE_B;
4789 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004790
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004791 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004792 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4793 * core speed.
4794 *
4795 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4796 * pipe == 0 check?
4797 */
Jesse Barnese70236a2009-09-21 10:42:27 -07004798 if (mode->clock >
4799 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Chris Wilson5eddb702010-09-11 13:48:45 +01004800 pipeconf |= PIPECONF_DOUBLE_WIDE;
Jesse Barnes79e53942008-11-07 14:24:08 -08004801 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004802 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
Jesse Barnes79e53942008-11-07 14:24:08 -08004803 }
4804
Jesse Barnesb24e7172011-01-04 15:09:30 -08004805 if (!HAS_PCH_SPLIT(dev))
Jesse Barnes65993d62011-01-04 15:09:29 -08004806 dpll |= DPLL_VCO_ENABLE;
Linus Torvalds8d86dc62010-06-08 20:16:28 -07004807
Zhao Yakui28c97732009-10-09 11:39:41 +08004808 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08004809 drm_mode_debug_printmodeline(mode);
4810
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004811 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07004812 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004813 fp_reg = PCH_FP0(pipe);
4814 dpll_reg = PCH_DPLL(pipe);
4815 } else {
4816 fp_reg = FP0(pipe);
4817 dpll_reg = DPLL(pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004818 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004819
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004820 /* PCH eDP needs FDI, but CPU eDP does not */
4821 if (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004822 I915_WRITE(fp_reg, fp);
4823 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01004824
4825 POSTING_READ(dpll_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08004826 udelay(150);
4827 }
4828
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004829 /* enable transcoder DPLL */
4830 if (HAS_PCH_CPT(dev)) {
4831 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01004832 if (pipe == 0)
4833 temp |= TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004834 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004835 temp |= TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004836 I915_WRITE(PCH_DPLL_SEL, temp);
Chris Wilson5eddb702010-09-11 13:48:45 +01004837
4838 POSTING_READ(PCH_DPLL_SEL);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004839 udelay(150);
4840 }
4841
Jesse Barnes79e53942008-11-07 14:24:08 -08004842 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4843 * This is an exception to the general rule that mode_set doesn't turn
4844 * things on.
4845 */
4846 if (is_lvds) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004847 reg = LVDS;
Eric Anholtbad720f2009-10-22 16:11:14 -07004848 if (HAS_PCH_SPLIT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01004849 reg = PCH_LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +08004850
Chris Wilson5eddb702010-09-11 13:48:45 +01004851 temp = I915_READ(reg);
4852 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004853 if (pipe == 1) {
4854 if (HAS_PCH_CPT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01004855 temp |= PORT_TRANS_B_SEL_CPT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004856 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004857 temp |= LVDS_PIPEB_SELECT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004858 } else {
4859 if (HAS_PCH_CPT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01004860 temp &= ~PORT_TRANS_SEL_MASK;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004861 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004862 temp &= ~LVDS_PIPEB_SELECT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08004863 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08004864 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01004865 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08004866 /* Set the B0-B3 data pairs corresponding to whether we're going to
4867 * set the DPLLs for dual-channel mode or not.
4868 */
4869 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01004870 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08004871 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004872 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08004873
4874 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4875 * appropriately here, but we need to look more thoroughly into how
4876 * panels behave in the two modes.
4877 */
Jesse Barnes434ed092010-09-07 14:48:06 -07004878 /* set the dithering flag on non-PCH LVDS as needed */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004879 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
Jesse Barnes434ed092010-09-07 14:48:06 -07004880 if (dev_priv->lvds_dither)
Chris Wilson5eddb702010-09-11 13:48:45 +01004881 temp |= LVDS_ENABLE_DITHER;
Jesse Barnes434ed092010-09-07 14:48:06 -07004882 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004883 temp &= ~LVDS_ENABLE_DITHER;
Zhao Yakui898822c2010-01-04 16:29:30 +08004884 }
Bryan Freedaa9b5002011-01-12 13:43:19 -08004885 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
4886 lvds_sync |= LVDS_HSYNC_POLARITY;
4887 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
4888 lvds_sync |= LVDS_VSYNC_POLARITY;
4889 if ((temp & (LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY))
4890 != lvds_sync) {
4891 char flags[2] = "-+";
4892 DRM_INFO("Changing LVDS panel from "
4893 "(%chsync, %cvsync) to (%chsync, %cvsync)\n",
4894 flags[!(temp & LVDS_HSYNC_POLARITY)],
4895 flags[!(temp & LVDS_VSYNC_POLARITY)],
4896 flags[!(lvds_sync & LVDS_HSYNC_POLARITY)],
4897 flags[!(lvds_sync & LVDS_VSYNC_POLARITY)]);
4898 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
4899 temp |= lvds_sync;
4900 }
Chris Wilson5eddb702010-09-11 13:48:45 +01004901 I915_WRITE(reg, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08004902 }
Jesse Barnes434ed092010-09-07 14:48:06 -07004903
4904 /* set the dithering flag and clear for anything other than a panel. */
4905 if (HAS_PCH_SPLIT(dev)) {
4906 pipeconf &= ~PIPECONF_DITHER_EN;
4907 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
4908 if (dev_priv->lvds_dither && (is_lvds || has_edp_encoder)) {
4909 pipeconf |= PIPECONF_DITHER_EN;
4910 pipeconf |= PIPECONF_DITHER_TYPE_ST1;
4911 }
4912 }
4913
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004914 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004915 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004916 } else if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004917 /* For non-DP output, clear any trans DP clock recovery setting.*/
4918 if (pipe == 0) {
4919 I915_WRITE(TRANSA_DATA_M1, 0);
4920 I915_WRITE(TRANSA_DATA_N1, 0);
4921 I915_WRITE(TRANSA_DP_LINK_M1, 0);
4922 I915_WRITE(TRANSA_DP_LINK_N1, 0);
4923 } else {
4924 I915_WRITE(TRANSB_DATA_M1, 0);
4925 I915_WRITE(TRANSB_DATA_N1, 0);
4926 I915_WRITE(TRANSB_DP_LINK_M1, 0);
4927 I915_WRITE(TRANSB_DP_LINK_N1, 0);
4928 }
4929 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004930
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004931 if (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004932 I915_WRITE(dpll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01004933
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004934 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01004935 POSTING_READ(dpll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004936 udelay(150);
4937
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004938 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004939 temp = 0;
Zhao Yakuibb66c512009-09-10 15:45:49 +08004940 if (is_sdvo) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004941 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4942 if (temp > 1)
4943 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Chris Wilson6c9547f2010-08-25 10:05:17 +01004944 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004945 temp = 0;
4946 }
4947 I915_WRITE(DPLL_MD(pipe), temp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004948 } else {
Chris Wilsona589b9f2010-12-03 21:13:16 +00004949 /* The pixel multiplier can only be updated once the
4950 * DPLL is enabled and the clocks are stable.
4951 *
4952 * So write it again.
4953 */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004954 I915_WRITE(dpll_reg, dpll);
4955 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004956 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004957
Chris Wilson5eddb702010-09-11 13:48:45 +01004958 intel_crtc->lowfreq_avail = false;
Jesse Barnes652c3932009-08-17 13:31:43 -07004959 if (is_lvds && has_reduced_clock && i915_powersave) {
4960 I915_WRITE(fp_reg + 4, fp2);
4961 intel_crtc->lowfreq_avail = true;
4962 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004963 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004964 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4965 }
4966 } else {
4967 I915_WRITE(fp_reg + 4, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07004968 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004969 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004970 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4971 }
4972 }
4973
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004974 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4975 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4976 /* the chip adds 2 halflines automatically */
4977 adjusted_mode->crtc_vdisplay -= 1;
4978 adjusted_mode->crtc_vtotal -= 1;
4979 adjusted_mode->crtc_vblank_start -= 1;
4980 adjusted_mode->crtc_vblank_end -= 1;
4981 adjusted_mode->crtc_vsync_end -= 1;
4982 adjusted_mode->crtc_vsync_start -= 1;
4983 } else
4984 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
4985
Chris Wilson5eddb702010-09-11 13:48:45 +01004986 I915_WRITE(HTOTAL(pipe),
4987 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004988 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004989 I915_WRITE(HBLANK(pipe),
4990 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004991 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004992 I915_WRITE(HSYNC(pipe),
4993 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004994 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004995
4996 I915_WRITE(VTOTAL(pipe),
4997 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004998 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004999 I915_WRITE(VBLANK(pipe),
5000 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08005001 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01005002 I915_WRITE(VSYNC(pipe),
5003 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08005004 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01005005
5006 /* pipesrc and dspsize control the size that is scaled from,
5007 * which should always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08005008 */
Eric Anholtbad720f2009-10-22 16:11:14 -07005009 if (!HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005010 I915_WRITE(DSPSIZE(plane),
5011 ((mode->vdisplay - 1) << 16) |
5012 (mode->hdisplay - 1));
5013 I915_WRITE(DSPPOS(plane), 0);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005014 }
Chris Wilson5eddb702010-09-11 13:48:45 +01005015 I915_WRITE(PIPESRC(pipe),
5016 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08005017
Eric Anholtbad720f2009-10-22 16:11:14 -07005018 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005019 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
5020 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
5021 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
5022 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005023
Jesse Barnes5c5313c2010-10-07 16:01:11 -07005024 if (has_edp_encoder && !intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005025 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005026 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08005027 }
5028
Chris Wilson5eddb702010-09-11 13:48:45 +01005029 I915_WRITE(PIPECONF(pipe), pipeconf);
5030 POSTING_READ(PIPECONF(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08005031 if (!HAS_PCH_SPLIT(dev))
Jesse Barnes040484a2011-01-03 12:14:26 -08005032 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnes79e53942008-11-07 14:24:08 -08005033
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005034 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005035
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01005036 if (IS_GEN5(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08005037 /* enable address swizzle for tiling buffer */
5038 temp = I915_READ(DISP_ARB_CTL);
5039 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
5040 }
5041
Chris Wilson5eddb702010-09-11 13:48:45 +01005042 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005043 POSTING_READ(DSPCNTR(plane));
5044 if (!HAS_PCH_SPLIT(dev))
5045 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005046
Chris Wilson5c3b82e2009-02-11 13:25:09 +00005047 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005048
5049 intel_update_watermarks(dev);
5050
Jesse Barnes79e53942008-11-07 14:24:08 -08005051 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00005052
Chris Wilson1f803ee2009-06-06 09:45:59 +01005053 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005054}
5055
5056/** Loads the palette/gamma unit for the CRTC with the prepared values */
5057void intel_crtc_load_lut(struct drm_crtc *crtc)
5058{
5059 struct drm_device *dev = crtc->dev;
5060 struct drm_i915_private *dev_priv = dev->dev_private;
5061 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5062 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
5063 int i;
5064
5065 /* The clocks have to be on to load the palette. */
5066 if (!crtc->enabled)
5067 return;
5068
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005069 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07005070 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08005071 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
5072 LGC_PALETTE_B;
5073
Jesse Barnes79e53942008-11-07 14:24:08 -08005074 for (i = 0; i < 256; i++) {
5075 I915_WRITE(palreg + 4 * i,
5076 (intel_crtc->lut_r[i] << 16) |
5077 (intel_crtc->lut_g[i] << 8) |
5078 intel_crtc->lut_b[i]);
5079 }
5080}
5081
Chris Wilson560b85b2010-08-07 11:01:38 +01005082static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
5083{
5084 struct drm_device *dev = crtc->dev;
5085 struct drm_i915_private *dev_priv = dev->dev_private;
5086 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5087 bool visible = base != 0;
5088 u32 cntl;
5089
5090 if (intel_crtc->cursor_visible == visible)
5091 return;
5092
5093 cntl = I915_READ(CURACNTR);
5094 if (visible) {
5095 /* On these chipsets we can only modify the base whilst
5096 * the cursor is disabled.
5097 */
5098 I915_WRITE(CURABASE, base);
5099
5100 cntl &= ~(CURSOR_FORMAT_MASK);
5101 /* XXX width must be 64, stride 256 => 0x00 << 28 */
5102 cntl |= CURSOR_ENABLE |
5103 CURSOR_GAMMA_ENABLE |
5104 CURSOR_FORMAT_ARGB;
5105 } else
5106 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
5107 I915_WRITE(CURACNTR, cntl);
5108
5109 intel_crtc->cursor_visible = visible;
5110}
5111
5112static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
5113{
5114 struct drm_device *dev = crtc->dev;
5115 struct drm_i915_private *dev_priv = dev->dev_private;
5116 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5117 int pipe = intel_crtc->pipe;
5118 bool visible = base != 0;
5119
5120 if (intel_crtc->cursor_visible != visible) {
5121 uint32_t cntl = I915_READ(pipe == 0 ? CURACNTR : CURBCNTR);
5122 if (base) {
5123 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
5124 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5125 cntl |= pipe << 28; /* Connect to correct pipe */
5126 } else {
5127 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5128 cntl |= CURSOR_MODE_DISABLE;
5129 }
5130 I915_WRITE(pipe == 0 ? CURACNTR : CURBCNTR, cntl);
5131
5132 intel_crtc->cursor_visible = visible;
5133 }
5134 /* and commit changes on next vblank */
5135 I915_WRITE(pipe == 0 ? CURABASE : CURBBASE, base);
5136}
5137
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005138/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005139static void intel_crtc_update_cursor(struct drm_crtc *crtc,
5140 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005141{
5142 struct drm_device *dev = crtc->dev;
5143 struct drm_i915_private *dev_priv = dev->dev_private;
5144 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5145 int pipe = intel_crtc->pipe;
5146 int x = intel_crtc->cursor_x;
5147 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01005148 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005149 bool visible;
5150
5151 pos = 0;
5152
Chris Wilson6b383a72010-09-13 13:54:26 +01005153 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005154 base = intel_crtc->cursor_addr;
5155 if (x > (int) crtc->fb->width)
5156 base = 0;
5157
5158 if (y > (int) crtc->fb->height)
5159 base = 0;
5160 } else
5161 base = 0;
5162
5163 if (x < 0) {
5164 if (x + intel_crtc->cursor_width < 0)
5165 base = 0;
5166
5167 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
5168 x = -x;
5169 }
5170 pos |= x << CURSOR_X_SHIFT;
5171
5172 if (y < 0) {
5173 if (y + intel_crtc->cursor_height < 0)
5174 base = 0;
5175
5176 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
5177 y = -y;
5178 }
5179 pos |= y << CURSOR_Y_SHIFT;
5180
5181 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01005182 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005183 return;
5184
5185 I915_WRITE(pipe == 0 ? CURAPOS : CURBPOS, pos);
Chris Wilson560b85b2010-08-07 11:01:38 +01005186 if (IS_845G(dev) || IS_I865G(dev))
5187 i845_update_cursor(crtc, base);
5188 else
5189 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005190
5191 if (visible)
5192 intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj);
5193}
5194
Jesse Barnes79e53942008-11-07 14:24:08 -08005195static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00005196 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08005197 uint32_t handle,
5198 uint32_t width, uint32_t height)
5199{
5200 struct drm_device *dev = crtc->dev;
5201 struct drm_i915_private *dev_priv = dev->dev_private;
5202 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00005203 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005204 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005205 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005206
Zhao Yakui28c97732009-10-09 11:39:41 +08005207 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08005208
5209 /* if we want to turn off the cursor ignore width and height */
5210 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005211 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005212 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00005213 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10005214 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005215 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08005216 }
5217
5218 /* Currently we only support 64x64 cursors */
5219 if (width != 64 || height != 64) {
5220 DRM_ERROR("we currently only support 64x64 cursors\n");
5221 return -EINVAL;
5222 }
5223
Chris Wilson05394f32010-11-08 19:18:58 +00005224 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
5225 if (!obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08005226 return -ENOENT;
5227
Chris Wilson05394f32010-11-08 19:18:58 +00005228 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005229 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10005230 ret = -ENOMEM;
5231 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08005232 }
5233
Dave Airlie71acb5e2008-12-30 20:31:46 +10005234 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005235 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005236 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00005237 if (obj->tiling_mode) {
5238 DRM_ERROR("cursor cannot be tiled\n");
5239 ret = -EINVAL;
5240 goto fail_locked;
5241 }
5242
Chris Wilson05394f32010-11-08 19:18:58 +00005243 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005244 if (ret) {
5245 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005246 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005247 }
Chris Wilsone7b526b2010-06-02 08:30:48 +01005248
Chris Wilson05394f32010-11-08 19:18:58 +00005249 ret = i915_gem_object_set_to_gtt_domain(obj, 0);
Chris Wilsone7b526b2010-06-02 08:30:48 +01005250 if (ret) {
5251 DRM_ERROR("failed to move cursor bo into the GTT\n");
5252 goto fail_unpin;
5253 }
5254
Chris Wilsond9e86c02010-11-10 16:40:20 +00005255 ret = i915_gem_object_put_fence(obj);
5256 if (ret) {
5257 DRM_ERROR("failed to move cursor bo into the GTT\n");
5258 goto fail_unpin;
5259 }
5260
Chris Wilson05394f32010-11-08 19:18:58 +00005261 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005262 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005263 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00005264 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005265 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
5266 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005267 if (ret) {
5268 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005269 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005270 }
Chris Wilson05394f32010-11-08 19:18:58 +00005271 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005272 }
5273
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005274 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04005275 I915_WRITE(CURSIZE, (height << 12) | width);
5276
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005277 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005278 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005279 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00005280 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10005281 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
5282 } else
5283 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00005284 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005285 }
Jesse Barnes80824002009-09-10 15:28:06 -07005286
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005287 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005288
5289 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00005290 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005291 intel_crtc->cursor_width = width;
5292 intel_crtc->cursor_height = height;
5293
Chris Wilson6b383a72010-09-13 13:54:26 +01005294 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005295
Jesse Barnes79e53942008-11-07 14:24:08 -08005296 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01005297fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00005298 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005299fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10005300 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005301fail:
Chris Wilson05394f32010-11-08 19:18:58 +00005302 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10005303 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005304}
5305
5306static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
5307{
Jesse Barnes79e53942008-11-07 14:24:08 -08005308 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005309
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005310 intel_crtc->cursor_x = x;
5311 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07005312
Chris Wilson6b383a72010-09-13 13:54:26 +01005313 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08005314
5315 return 0;
5316}
5317
5318/** Sets the color ramps on behalf of RandR */
5319void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
5320 u16 blue, int regno)
5321{
5322 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5323
5324 intel_crtc->lut_r[regno] = red >> 8;
5325 intel_crtc->lut_g[regno] = green >> 8;
5326 intel_crtc->lut_b[regno] = blue >> 8;
5327}
5328
Dave Airlieb8c00ac2009-10-06 13:54:01 +10005329void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
5330 u16 *blue, int regno)
5331{
5332 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5333
5334 *red = intel_crtc->lut_r[regno] << 8;
5335 *green = intel_crtc->lut_g[regno] << 8;
5336 *blue = intel_crtc->lut_b[regno] << 8;
5337}
5338
Jesse Barnes79e53942008-11-07 14:24:08 -08005339static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01005340 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08005341{
James Simmons72034252010-08-03 01:33:19 +01005342 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08005343 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005344
James Simmons72034252010-08-03 01:33:19 +01005345 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005346 intel_crtc->lut_r[i] = red[i] >> 8;
5347 intel_crtc->lut_g[i] = green[i] >> 8;
5348 intel_crtc->lut_b[i] = blue[i] >> 8;
5349 }
5350
5351 intel_crtc_load_lut(crtc);
5352}
5353
5354/**
5355 * Get a pipe with a simple mode set on it for doing load-based monitor
5356 * detection.
5357 *
5358 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07005359 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08005360 *
Eric Anholtc751ce42010-03-25 11:48:48 -07005361 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08005362 * configured for it. In the future, it could choose to temporarily disable
5363 * some outputs to free up a pipe for its use.
5364 *
5365 * \return crtc, or NULL if no pipes are available.
5366 */
5367
5368/* VESA 640x480x72Hz mode to set on the pipe */
5369static struct drm_display_mode load_detect_mode = {
5370 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
5371 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
5372};
5373
Eric Anholt21d40d32010-03-25 11:11:14 -07005374struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005375 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08005376 struct drm_display_mode *mode,
5377 int *dpms_mode)
5378{
5379 struct intel_crtc *intel_crtc;
5380 struct drm_crtc *possible_crtc;
5381 struct drm_crtc *supported_crtc =NULL;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005382 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005383 struct drm_crtc *crtc = NULL;
5384 struct drm_device *dev = encoder->dev;
5385 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
5386 struct drm_crtc_helper_funcs *crtc_funcs;
5387 int i = -1;
5388
5389 /*
5390 * Algorithm gets a little messy:
5391 * - if the connector already has an assigned crtc, use it (but make
5392 * sure it's on first)
5393 * - try to find the first unused crtc that can drive this connector,
5394 * and use that if we find one
5395 * - if there are no unused crtcs available, try to use the first
5396 * one we found that supports the connector
5397 */
5398
5399 /* See if we already have a CRTC for this connector */
5400 if (encoder->crtc) {
5401 crtc = encoder->crtc;
5402 /* Make sure the crtc and connector are running */
5403 intel_crtc = to_intel_crtc(crtc);
5404 *dpms_mode = intel_crtc->dpms_mode;
5405 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
5406 crtc_funcs = crtc->helper_private;
5407 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
5408 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
5409 }
5410 return crtc;
5411 }
5412
5413 /* Find an unused one (if possible) */
5414 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
5415 i++;
5416 if (!(encoder->possible_crtcs & (1 << i)))
5417 continue;
5418 if (!possible_crtc->enabled) {
5419 crtc = possible_crtc;
5420 break;
5421 }
5422 if (!supported_crtc)
5423 supported_crtc = possible_crtc;
5424 }
5425
5426 /*
5427 * If we didn't find an unused CRTC, don't use any.
5428 */
5429 if (!crtc) {
5430 return NULL;
5431 }
5432
5433 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005434 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07005435 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005436
5437 intel_crtc = to_intel_crtc(crtc);
5438 *dpms_mode = intel_crtc->dpms_mode;
5439
5440 if (!crtc->enabled) {
5441 if (!mode)
5442 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05005443 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005444 } else {
5445 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
5446 crtc_funcs = crtc->helper_private;
5447 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
5448 }
5449
5450 /* Add this connector to the crtc */
5451 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
5452 encoder_funcs->commit(encoder);
5453 }
5454 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005455 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005456
5457 return crtc;
5458}
5459
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005460void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
5461 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08005462{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005463 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005464 struct drm_device *dev = encoder->dev;
5465 struct drm_crtc *crtc = encoder->crtc;
5466 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
5467 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
5468
Eric Anholt21d40d32010-03-25 11:11:14 -07005469 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005470 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005471 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07005472 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005473 crtc->enabled = drm_helper_crtc_in_use(crtc);
5474 drm_helper_disable_unused_functions(dev);
5475 }
5476
Eric Anholtc751ce42010-03-25 11:48:48 -07005477 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08005478 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
5479 if (encoder->crtc == crtc)
5480 encoder_funcs->dpms(encoder, dpms_mode);
5481 crtc_funcs->dpms(crtc, dpms_mode);
5482 }
5483}
5484
5485/* Returns the clock of the currently programmed mode of the given pipe. */
5486static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
5487{
5488 struct drm_i915_private *dev_priv = dev->dev_private;
5489 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5490 int pipe = intel_crtc->pipe;
5491 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
5492 u32 fp;
5493 intel_clock_t clock;
5494
5495 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
5496 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
5497 else
5498 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
5499
5500 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005501 if (IS_PINEVIEW(dev)) {
5502 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5503 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08005504 } else {
5505 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5506 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5507 }
5508
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005509 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005510 if (IS_PINEVIEW(dev))
5511 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5512 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08005513 else
5514 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08005515 DPLL_FPA01_P1_POST_DIV_SHIFT);
5516
5517 switch (dpll & DPLL_MODE_MASK) {
5518 case DPLLB_MODE_DAC_SERIAL:
5519 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5520 5 : 10;
5521 break;
5522 case DPLLB_MODE_LVDS:
5523 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5524 7 : 14;
5525 break;
5526 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08005527 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08005528 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5529 return 0;
5530 }
5531
5532 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08005533 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005534 } else {
5535 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5536
5537 if (is_lvds) {
5538 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5539 DPLL_FPA01_P1_POST_DIV_SHIFT);
5540 clock.p2 = 14;
5541
5542 if ((dpll & PLL_REF_INPUT_MASK) ==
5543 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5544 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08005545 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005546 } else
Shaohua Li21778322009-02-23 15:19:16 +08005547 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005548 } else {
5549 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5550 clock.p1 = 2;
5551 else {
5552 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5553 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5554 }
5555 if (dpll & PLL_P2_DIVIDE_BY_4)
5556 clock.p2 = 4;
5557 else
5558 clock.p2 = 2;
5559
Shaohua Li21778322009-02-23 15:19:16 +08005560 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005561 }
5562 }
5563
5564 /* XXX: It would be nice to validate the clocks, but we can't reuse
5565 * i830PllIsValid() because it relies on the xf86_config connector
5566 * configuration being accurate, which it isn't necessarily.
5567 */
5568
5569 return clock.dot;
5570}
5571
5572/** Returns the currently programmed mode of the given pipe. */
5573struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5574 struct drm_crtc *crtc)
5575{
5576 struct drm_i915_private *dev_priv = dev->dev_private;
5577 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5578 int pipe = intel_crtc->pipe;
5579 struct drm_display_mode *mode;
5580 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
5581 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
5582 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
5583 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
5584
5585 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5586 if (!mode)
5587 return NULL;
5588
5589 mode->clock = intel_crtc_clock_get(dev, crtc);
5590 mode->hdisplay = (htot & 0xffff) + 1;
5591 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5592 mode->hsync_start = (hsync & 0xffff) + 1;
5593 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5594 mode->vdisplay = (vtot & 0xffff) + 1;
5595 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5596 mode->vsync_start = (vsync & 0xffff) + 1;
5597 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5598
5599 drm_mode_set_name(mode);
5600 drm_mode_set_crtcinfo(mode, 0);
5601
5602 return mode;
5603}
5604
Jesse Barnes652c3932009-08-17 13:31:43 -07005605#define GPU_IDLE_TIMEOUT 500 /* ms */
5606
5607/* When this timer fires, we've been idle for awhile */
5608static void intel_gpu_idle_timer(unsigned long arg)
5609{
5610 struct drm_device *dev = (struct drm_device *)arg;
5611 drm_i915_private_t *dev_priv = dev->dev_private;
5612
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005613 if (!list_empty(&dev_priv->mm.active_list)) {
5614 /* Still processing requests, so just re-arm the timer. */
5615 mod_timer(&dev_priv->idle_timer, jiffies +
5616 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5617 return;
5618 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005619
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005620 dev_priv->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005621 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005622}
5623
Jesse Barnes652c3932009-08-17 13:31:43 -07005624#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5625
5626static void intel_crtc_idle_timer(unsigned long arg)
5627{
5628 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5629 struct drm_crtc *crtc = &intel_crtc->base;
5630 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005631 struct intel_framebuffer *intel_fb;
5632
5633 intel_fb = to_intel_framebuffer(crtc->fb);
5634 if (intel_fb && intel_fb->obj->active) {
5635 /* The framebuffer is still being accessed by the GPU. */
5636 mod_timer(&intel_crtc->idle_timer, jiffies +
5637 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5638 return;
5639 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005640
Jesse Barnes652c3932009-08-17 13:31:43 -07005641 intel_crtc->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005642 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005643}
5644
Daniel Vetter3dec0092010-08-20 21:40:52 +02005645static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07005646{
5647 struct drm_device *dev = crtc->dev;
5648 drm_i915_private_t *dev_priv = dev->dev_private;
5649 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5650 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005651 int dpll_reg = DPLL(pipe);
5652 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07005653
Eric Anholtbad720f2009-10-22 16:11:14 -07005654 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005655 return;
5656
5657 if (!dev_priv->lvds_downclock_avail)
5658 return;
5659
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005660 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005661 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005662 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005663
5664 /* Unlock panel regs */
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005665 I915_WRITE(PP_CONTROL,
5666 I915_READ(PP_CONTROL) | PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07005667
5668 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5669 I915_WRITE(dpll_reg, dpll);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005670 POSTING_READ(dpll_reg);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005671 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005672
Jesse Barnes652c3932009-08-17 13:31:43 -07005673 dpll = I915_READ(dpll_reg);
5674 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08005675 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005676
5677 /* ...and lock them again */
5678 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
5679 }
5680
5681 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005682 mod_timer(&intel_crtc->idle_timer, jiffies +
5683 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005684}
5685
5686static void intel_decrease_pllclock(struct drm_crtc *crtc)
5687{
5688 struct drm_device *dev = crtc->dev;
5689 drm_i915_private_t *dev_priv = dev->dev_private;
5690 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5691 int pipe = intel_crtc->pipe;
5692 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
5693 int dpll = I915_READ(dpll_reg);
5694
Eric Anholtbad720f2009-10-22 16:11:14 -07005695 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005696 return;
5697
5698 if (!dev_priv->lvds_downclock_avail)
5699 return;
5700
5701 /*
5702 * Since this is called by a timer, we should never get here in
5703 * the manual case.
5704 */
5705 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005706 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005707
5708 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07005709 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
5710 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07005711
5712 dpll |= DISPLAY_RATE_SELECT_FPA1;
5713 I915_WRITE(dpll_reg, dpll);
5714 dpll = I915_READ(dpll_reg);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005715 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005716 dpll = I915_READ(dpll_reg);
5717 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08005718 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005719
5720 /* ...and lock them again */
5721 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
5722 }
5723
5724}
5725
5726/**
5727 * intel_idle_update - adjust clocks for idleness
5728 * @work: work struct
5729 *
5730 * Either the GPU or display (or both) went idle. Check the busy status
5731 * here and adjust the CRTC and GPU clocks as necessary.
5732 */
5733static void intel_idle_update(struct work_struct *work)
5734{
5735 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5736 idle_work);
5737 struct drm_device *dev = dev_priv->dev;
5738 struct drm_crtc *crtc;
5739 struct intel_crtc *intel_crtc;
5740
5741 if (!i915_powersave)
5742 return;
5743
5744 mutex_lock(&dev->struct_mutex);
5745
Jesse Barnes7648fa92010-05-20 14:28:11 -07005746 i915_update_gfx_val(dev_priv);
5747
Jesse Barnes652c3932009-08-17 13:31:43 -07005748 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5749 /* Skip inactive CRTCs */
5750 if (!crtc->fb)
5751 continue;
5752
5753 intel_crtc = to_intel_crtc(crtc);
5754 if (!intel_crtc->busy)
5755 intel_decrease_pllclock(crtc);
5756 }
5757
Li Peng45ac22c2010-06-12 23:38:35 +08005758
Jesse Barnes652c3932009-08-17 13:31:43 -07005759 mutex_unlock(&dev->struct_mutex);
5760}
5761
5762/**
5763 * intel_mark_busy - mark the GPU and possibly the display busy
5764 * @dev: drm device
5765 * @obj: object we're operating on
5766 *
5767 * Callers can use this function to indicate that the GPU is busy processing
5768 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5769 * buffer), we'll also mark the display as busy, so we know to increase its
5770 * clock frequency.
5771 */
Chris Wilson05394f32010-11-08 19:18:58 +00005772void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07005773{
5774 drm_i915_private_t *dev_priv = dev->dev_private;
5775 struct drm_crtc *crtc = NULL;
5776 struct intel_framebuffer *intel_fb;
5777 struct intel_crtc *intel_crtc;
5778
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08005779 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5780 return;
5781
Alexander Lam18b21902011-01-03 13:28:56 -05005782 if (!dev_priv->busy)
Chris Wilson28cf7982009-11-30 01:08:56 +00005783 dev_priv->busy = true;
Alexander Lam18b21902011-01-03 13:28:56 -05005784 else
Chris Wilson28cf7982009-11-30 01:08:56 +00005785 mod_timer(&dev_priv->idle_timer, jiffies +
5786 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005787
5788 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5789 if (!crtc->fb)
5790 continue;
5791
5792 intel_crtc = to_intel_crtc(crtc);
5793 intel_fb = to_intel_framebuffer(crtc->fb);
5794 if (intel_fb->obj == obj) {
5795 if (!intel_crtc->busy) {
5796 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005797 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005798 intel_crtc->busy = true;
5799 } else {
5800 /* Busy -> busy, put off timer */
5801 mod_timer(&intel_crtc->idle_timer, jiffies +
5802 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5803 }
5804 }
5805 }
5806}
5807
Jesse Barnes79e53942008-11-07 14:24:08 -08005808static void intel_crtc_destroy(struct drm_crtc *crtc)
5809{
5810 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005811 struct drm_device *dev = crtc->dev;
5812 struct intel_unpin_work *work;
5813 unsigned long flags;
5814
5815 spin_lock_irqsave(&dev->event_lock, flags);
5816 work = intel_crtc->unpin_work;
5817 intel_crtc->unpin_work = NULL;
5818 spin_unlock_irqrestore(&dev->event_lock, flags);
5819
5820 if (work) {
5821 cancel_work_sync(&work->work);
5822 kfree(work);
5823 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005824
5825 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005826
Jesse Barnes79e53942008-11-07 14:24:08 -08005827 kfree(intel_crtc);
5828}
5829
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005830static void intel_unpin_work_fn(struct work_struct *__work)
5831{
5832 struct intel_unpin_work *work =
5833 container_of(__work, struct intel_unpin_work, work);
5834
5835 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005836 i915_gem_object_unpin(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00005837 drm_gem_object_unreference(&work->pending_flip_obj->base);
5838 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005839
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005840 mutex_unlock(&work->dev->struct_mutex);
5841 kfree(work);
5842}
5843
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005844static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01005845 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005846{
5847 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5849 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00005850 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005851 struct drm_pending_vblank_event *e;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005852 struct timeval tnow, tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005853 unsigned long flags;
5854
5855 /* Ignore early vblank irqs */
5856 if (intel_crtc == NULL)
5857 return;
5858
Mario Kleiner49b14a52010-12-09 07:00:07 +01005859 do_gettimeofday(&tnow);
5860
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005861 spin_lock_irqsave(&dev->event_lock, flags);
5862 work = intel_crtc->unpin_work;
5863 if (work == NULL || !work->pending) {
5864 spin_unlock_irqrestore(&dev->event_lock, flags);
5865 return;
5866 }
5867
5868 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005869
5870 if (work->event) {
5871 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005872 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005873
5874 /* Called before vblank count and timestamps have
5875 * been updated for the vblank interval of flip
5876 * completion? Need to increment vblank count and
5877 * add one videorefresh duration to returned timestamp
Mario Kleiner49b14a52010-12-09 07:00:07 +01005878 * to account for this. We assume this happened if we
5879 * get called over 0.9 frame durations after the last
5880 * timestamped vblank.
5881 *
5882 * This calculation can not be used with vrefresh rates
5883 * below 5Hz (10Hz to be on the safe side) without
5884 * promoting to 64 integers.
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005885 */
Mario Kleiner49b14a52010-12-09 07:00:07 +01005886 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5887 9 * crtc->framedur_ns) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005888 e->event.sequence++;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005889 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5890 crtc->framedur_ns);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005891 }
5892
Mario Kleiner49b14a52010-12-09 07:00:07 +01005893 e->event.tv_sec = tvbl.tv_sec;
5894 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005895
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005896 list_add_tail(&e->base.link,
5897 &e->base.file_priv->event_list);
5898 wake_up_interruptible(&e->base.file_priv->event_wait);
5899 }
5900
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005901 drm_vblank_put(dev, intel_crtc->pipe);
5902
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005903 spin_unlock_irqrestore(&dev->event_lock, flags);
5904
Chris Wilson05394f32010-11-08 19:18:58 +00005905 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00005906
Chris Wilsone59f2ba2010-10-07 17:28:15 +01005907 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00005908 &obj->pending_flip.counter);
5909 if (atomic_read(&obj->pending_flip) == 0)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005910 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005911
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005912 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07005913
5914 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005915}
5916
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005917void intel_finish_page_flip(struct drm_device *dev, int pipe)
5918{
5919 drm_i915_private_t *dev_priv = dev->dev_private;
5920 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5921
Mario Kleiner49b14a52010-12-09 07:00:07 +01005922 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005923}
5924
5925void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5926{
5927 drm_i915_private_t *dev_priv = dev->dev_private;
5928 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5929
Mario Kleiner49b14a52010-12-09 07:00:07 +01005930 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005931}
5932
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005933void intel_prepare_page_flip(struct drm_device *dev, int plane)
5934{
5935 drm_i915_private_t *dev_priv = dev->dev_private;
5936 struct intel_crtc *intel_crtc =
5937 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5938 unsigned long flags;
5939
5940 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08005941 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005942 if ((++intel_crtc->unpin_work->pending) > 1)
5943 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08005944 } else {
5945 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5946 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005947 spin_unlock_irqrestore(&dev->event_lock, flags);
5948}
5949
5950static int intel_crtc_page_flip(struct drm_crtc *crtc,
5951 struct drm_framebuffer *fb,
5952 struct drm_pending_vblank_event *event)
5953{
5954 struct drm_device *dev = crtc->dev;
5955 struct drm_i915_private *dev_priv = dev->dev_private;
5956 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00005957 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005958 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5959 struct intel_unpin_work *work;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07005960 unsigned long flags, offset;
Chris Wilson52e68632010-08-08 10:15:59 +01005961 int pipe = intel_crtc->pipe;
Chris Wilson20f0cd52010-09-23 11:00:38 +01005962 u32 pf, pipesrc;
Chris Wilson52e68632010-08-08 10:15:59 +01005963 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005964
5965 work = kzalloc(sizeof *work, GFP_KERNEL);
5966 if (work == NULL)
5967 return -ENOMEM;
5968
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005969 work->event = event;
5970 work->dev = crtc->dev;
5971 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005972 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005973 INIT_WORK(&work->work, intel_unpin_work_fn);
5974
5975 /* We borrow the event spin lock for protecting unpin_work */
5976 spin_lock_irqsave(&dev->event_lock, flags);
5977 if (intel_crtc->unpin_work) {
5978 spin_unlock_irqrestore(&dev->event_lock, flags);
5979 kfree(work);
Chris Wilson468f0b42010-05-27 13:18:13 +01005980
5981 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005982 return -EBUSY;
5983 }
5984 intel_crtc->unpin_work = work;
5985 spin_unlock_irqrestore(&dev->event_lock, flags);
5986
5987 intel_fb = to_intel_framebuffer(fb);
5988 obj = intel_fb->obj;
5989
Chris Wilson468f0b42010-05-27 13:18:13 +01005990 mutex_lock(&dev->struct_mutex);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005991 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
Chris Wilson96b099f2010-06-07 14:03:04 +01005992 if (ret)
5993 goto cleanup_work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005994
Jesse Barnes75dfca82010-02-10 15:09:44 -08005995 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00005996 drm_gem_object_reference(&work->old_fb_obj->base);
5997 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005998
5999 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01006000
6001 ret = drm_vblank_get(dev, intel_crtc->pipe);
6002 if (ret)
6003 goto cleanup_objs;
6004
Chris Wilsonc7f9f9a2010-09-19 15:05:13 +01006005 if (IS_GEN3(dev) || IS_GEN2(dev)) {
6006 u32 flip_mask;
6007
6008 /* Can't queue multiple flips, so wait for the previous
6009 * one to finish before executing the next.
6010 */
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006011 ret = BEGIN_LP_RING(2);
6012 if (ret)
6013 goto cleanup_objs;
6014
Chris Wilsonc7f9f9a2010-09-19 15:05:13 +01006015 if (intel_crtc->plane)
6016 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6017 else
6018 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6019 OUT_RING(MI_WAIT_FOR_EVENT | flip_mask);
6020 OUT_RING(MI_NOOP);
Daniel Vetter6146b3d2010-08-04 21:22:10 +02006021 ADVANCE_LP_RING();
6022 }
Jesse Barnes83f7fd02010-04-05 14:03:51 -07006023
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006024 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006025
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006026 work->enable_stall_check = true;
6027
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07006028 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Chris Wilson52e68632010-08-08 10:15:59 +01006029 offset = crtc->y * fb->pitch + crtc->x * fb->bits_per_pixel/8;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07006030
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006031 ret = BEGIN_LP_RING(4);
6032 if (ret)
6033 goto cleanup_objs;
6034
6035 /* Block clients from rendering to the new back buffer until
6036 * the flip occurs and the object is no longer visible.
6037 */
Chris Wilson05394f32010-11-08 19:18:58 +00006038 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006039
6040 switch (INTEL_INFO(dev)->gen) {
Chris Wilson52e68632010-08-08 10:15:59 +01006041 case 2:
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006042 OUT_RING(MI_DISPLAY_FLIP |
6043 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6044 OUT_RING(fb->pitch);
Chris Wilson05394f32010-11-08 19:18:58 +00006045 OUT_RING(obj->gtt_offset + offset);
Chris Wilson52e68632010-08-08 10:15:59 +01006046 OUT_RING(MI_NOOP);
6047 break;
6048
6049 case 3:
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006050 OUT_RING(MI_DISPLAY_FLIP_I915 |
6051 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6052 OUT_RING(fb->pitch);
Chris Wilson05394f32010-11-08 19:18:58 +00006053 OUT_RING(obj->gtt_offset + offset);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006054 OUT_RING(MI_NOOP);
Chris Wilson52e68632010-08-08 10:15:59 +01006055 break;
6056
6057 case 4:
6058 case 5:
6059 /* i965+ uses the linear or tiled offsets from the
6060 * Display Registers (which do not change across a page-flip)
6061 * so we need only reprogram the base address.
6062 */
Daniel Vetter69d0b962010-08-04 21:22:09 +02006063 OUT_RING(MI_DISPLAY_FLIP |
6064 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6065 OUT_RING(fb->pitch);
Chris Wilson05394f32010-11-08 19:18:58 +00006066 OUT_RING(obj->gtt_offset | obj->tiling_mode);
Chris Wilson52e68632010-08-08 10:15:59 +01006067
6068 /* XXX Enabling the panel-fitter across page-flip is so far
6069 * untested on non-native modes, so ignore it for now.
6070 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6071 */
6072 pf = 0;
6073 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
6074 OUT_RING(pf | pipesrc);
6075 break;
6076
6077 case 6:
6078 OUT_RING(MI_DISPLAY_FLIP |
6079 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Chris Wilson05394f32010-11-08 19:18:58 +00006080 OUT_RING(fb->pitch | obj->tiling_mode);
6081 OUT_RING(obj->gtt_offset);
Chris Wilson52e68632010-08-08 10:15:59 +01006082
6083 pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6084 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
6085 OUT_RING(pf | pipesrc);
6086 break;
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006087 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006088 ADVANCE_LP_RING();
6089
6090 mutex_unlock(&dev->struct_mutex);
6091
Jesse Barnese5510fa2010-07-01 16:48:37 -07006092 trace_i915_flip_request(intel_crtc->plane, obj);
6093
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006094 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01006095
6096cleanup_objs:
Chris Wilson05394f32010-11-08 19:18:58 +00006097 drm_gem_object_unreference(&work->old_fb_obj->base);
6098 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01006099cleanup_work:
6100 mutex_unlock(&dev->struct_mutex);
6101
6102 spin_lock_irqsave(&dev->event_lock, flags);
6103 intel_crtc->unpin_work = NULL;
6104 spin_unlock_irqrestore(&dev->event_lock, flags);
6105
6106 kfree(work);
6107
6108 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006109}
6110
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006111static void intel_crtc_reset(struct drm_crtc *crtc)
6112{
6113 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6114
6115 /* Reset flags back to the 'unknown' status so that they
6116 * will be correctly set on the initial modeset.
6117 */
6118 intel_crtc->cursor_addr = 0;
6119 intel_crtc->dpms_mode = -1;
6120 intel_crtc->active = true; /* force the pipe off on setup_init_config */
6121}
6122
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006123static struct drm_crtc_helper_funcs intel_helper_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006124 .dpms = intel_crtc_dpms,
6125 .mode_fixup = intel_crtc_mode_fixup,
6126 .mode_set = intel_crtc_mode_set,
6127 .mode_set_base = intel_pipe_set_base,
Jesse Barnes81255562010-08-02 12:07:50 -07006128 .mode_set_base_atomic = intel_pipe_set_base_atomic,
Dave Airlie068143d2009-10-05 09:58:02 +10006129 .load_lut = intel_crtc_load_lut,
Chris Wilsoncdd59982010-09-08 16:30:16 +01006130 .disable = intel_crtc_disable,
Jesse Barnes79e53942008-11-07 14:24:08 -08006131};
6132
6133static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006134 .reset = intel_crtc_reset,
Jesse Barnes79e53942008-11-07 14:24:08 -08006135 .cursor_set = intel_crtc_cursor_set,
6136 .cursor_move = intel_crtc_cursor_move,
6137 .gamma_set = intel_crtc_gamma_set,
6138 .set_config = drm_crtc_helper_set_config,
6139 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006140 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08006141};
6142
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006143static void intel_sanitize_modesetting(struct drm_device *dev,
6144 int pipe, int plane)
6145{
6146 struct drm_i915_private *dev_priv = dev->dev_private;
6147 u32 reg, val;
6148
6149 if (HAS_PCH_SPLIT(dev))
6150 return;
6151
6152 /* Who knows what state these registers were left in by the BIOS or
6153 * grub?
6154 *
6155 * If we leave the registers in a conflicting state (e.g. with the
6156 * display plane reading from the other pipe than the one we intend
6157 * to use) then when we attempt to teardown the active mode, we will
6158 * not disable the pipes and planes in the correct order -- leaving
6159 * a plane reading from a disabled pipe and possibly leading to
6160 * undefined behaviour.
6161 */
6162
6163 reg = DSPCNTR(plane);
6164 val = I915_READ(reg);
6165
6166 if ((val & DISPLAY_PLANE_ENABLE) == 0)
6167 return;
6168 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
6169 return;
6170
6171 /* This display plane is active and attached to the other CPU pipe. */
6172 pipe = !pipe;
6173
6174 /* Disable the plane and wait for it to stop reading from the pipe. */
Jesse Barnesb24e7172011-01-04 15:09:30 -08006175 intel_disable_plane(dev_priv, plane, pipe);
6176 intel_disable_pipe(dev_priv, pipe);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006177}
Jesse Barnes79e53942008-11-07 14:24:08 -08006178
Hannes Ederb358d0a2008-12-18 21:18:47 +01006179static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08006180{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006181 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006182 struct intel_crtc *intel_crtc;
6183 int i;
6184
6185 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
6186 if (intel_crtc == NULL)
6187 return;
6188
6189 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
6190
6191 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08006192 for (i = 0; i < 256; i++) {
6193 intel_crtc->lut_r[i] = i;
6194 intel_crtc->lut_g[i] = i;
6195 intel_crtc->lut_b[i] = i;
6196 }
6197
Jesse Barnes80824002009-09-10 15:28:06 -07006198 /* Swap pipes & planes for FBC on pre-965 */
6199 intel_crtc->pipe = pipe;
6200 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01006201 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006202 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01006203 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07006204 }
6205
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006206 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
6207 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
6208 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
6209 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
6210
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006211 intel_crtc_reset(&intel_crtc->base);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006212
6213 if (HAS_PCH_SPLIT(dev)) {
6214 intel_helper_funcs.prepare = ironlake_crtc_prepare;
6215 intel_helper_funcs.commit = ironlake_crtc_commit;
6216 } else {
6217 intel_helper_funcs.prepare = i9xx_crtc_prepare;
6218 intel_helper_funcs.commit = i9xx_crtc_commit;
6219 }
6220
Jesse Barnes79e53942008-11-07 14:24:08 -08006221 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
6222
Jesse Barnes652c3932009-08-17 13:31:43 -07006223 intel_crtc->busy = false;
6224
6225 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
6226 (unsigned long)intel_crtc);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006227
6228 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
Jesse Barnes79e53942008-11-07 14:24:08 -08006229}
6230
Carl Worth08d7b3d2009-04-29 14:43:54 -07006231int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00006232 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07006233{
6234 drm_i915_private_t *dev_priv = dev->dev_private;
6235 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02006236 struct drm_mode_object *drmmode_obj;
6237 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006238
6239 if (!dev_priv) {
6240 DRM_ERROR("called with no initialization\n");
6241 return -EINVAL;
6242 }
6243
Daniel Vetterc05422d2009-08-11 16:05:30 +02006244 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
6245 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07006246
Daniel Vetterc05422d2009-08-11 16:05:30 +02006247 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07006248 DRM_ERROR("no such CRTC id\n");
6249 return -EINVAL;
6250 }
6251
Daniel Vetterc05422d2009-08-11 16:05:30 +02006252 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
6253 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006254
Daniel Vetterc05422d2009-08-11 16:05:30 +02006255 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006256}
6257
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08006258static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006259{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006260 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006261 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006262 int entry = 0;
6263
Chris Wilson4ef69c72010-09-09 15:14:28 +01006264 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6265 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006266 index_mask |= (1 << entry);
6267 entry++;
6268 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01006269
Jesse Barnes79e53942008-11-07 14:24:08 -08006270 return index_mask;
6271}
6272
Chris Wilson4d302442010-12-14 19:21:29 +00006273static bool has_edp_a(struct drm_device *dev)
6274{
6275 struct drm_i915_private *dev_priv = dev->dev_private;
6276
6277 if (!IS_MOBILE(dev))
6278 return false;
6279
6280 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
6281 return false;
6282
6283 if (IS_GEN5(dev) &&
6284 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
6285 return false;
6286
6287 return true;
6288}
6289
Jesse Barnes79e53942008-11-07 14:24:08 -08006290static void intel_setup_outputs(struct drm_device *dev)
6291{
Eric Anholt725e30a2009-01-22 13:01:02 -08006292 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006293 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006294 bool dpd_is_edp = false;
Chris Wilsonc5d1b512010-11-29 18:00:23 +00006295 bool has_lvds = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006296
Zhenyu Wang541998a2009-06-05 15:38:44 +08006297 if (IS_MOBILE(dev) && !IS_I830(dev))
Chris Wilsonc5d1b512010-11-29 18:00:23 +00006298 has_lvds = intel_lvds_init(dev);
6299 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
6300 /* disable the panel fitter on everything but LVDS */
6301 I915_WRITE(PFIT_CONTROL, 0);
6302 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006303
Eric Anholtbad720f2009-10-22 16:11:14 -07006304 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006305 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006306
Chris Wilson4d302442010-12-14 19:21:29 +00006307 if (has_edp_a(dev))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006308 intel_dp_init(dev, DP_A);
6309
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006310 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
6311 intel_dp_init(dev, PCH_DP_D);
6312 }
6313
6314 intel_crt_init(dev);
6315
6316 if (HAS_PCH_SPLIT(dev)) {
6317 int found;
6318
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006319 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08006320 /* PCH SDVOB multiplex with HDMIB */
6321 found = intel_sdvo_init(dev, PCH_SDVOB);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006322 if (!found)
6323 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006324 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
6325 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006326 }
6327
6328 if (I915_READ(HDMIC) & PORT_DETECTED)
6329 intel_hdmi_init(dev, HDMIC);
6330
6331 if (I915_READ(HDMID) & PORT_DETECTED)
6332 intel_hdmi_init(dev, HDMID);
6333
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006334 if (I915_READ(PCH_DP_C) & DP_DETECTED)
6335 intel_dp_init(dev, PCH_DP_C);
6336
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006337 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006338 intel_dp_init(dev, PCH_DP_D);
6339
Zhenyu Wang103a1962009-11-27 11:44:36 +08006340 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08006341 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08006342
Eric Anholt725e30a2009-01-22 13:01:02 -08006343 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006344 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006345 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006346 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
6347 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006348 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006349 }
Ma Ling27185ae2009-08-24 13:50:23 +08006350
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006351 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
6352 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006353 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006354 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006355 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006356
6357 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006358
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006359 if (I915_READ(SDVOB) & SDVO_DETECTED) {
6360 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006361 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006362 }
Ma Ling27185ae2009-08-24 13:50:23 +08006363
6364 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
6365
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006366 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
6367 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006368 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006369 }
6370 if (SUPPORTS_INTEGRATED_DP(dev)) {
6371 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006372 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006373 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006374 }
Ma Ling27185ae2009-08-24 13:50:23 +08006375
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006376 if (SUPPORTS_INTEGRATED_DP(dev) &&
6377 (I915_READ(DP_D) & DP_DETECTED)) {
6378 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006379 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006380 }
Eric Anholtbad720f2009-10-22 16:11:14 -07006381 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006382 intel_dvo_init(dev);
6383
Zhenyu Wang103a1962009-11-27 11:44:36 +08006384 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006385 intel_tv_init(dev);
6386
Chris Wilson4ef69c72010-09-09 15:14:28 +01006387 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6388 encoder->base.possible_crtcs = encoder->crtc_mask;
6389 encoder->base.possible_clones =
6390 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08006391 }
Chris Wilson47356eb2011-01-11 17:06:04 +00006392
6393 intel_panel_setup_backlight(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006394}
6395
6396static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
6397{
6398 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08006399
6400 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006401 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006402
6403 kfree(intel_fb);
6404}
6405
6406static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00006407 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006408 unsigned int *handle)
6409{
6410 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006411 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006412
Chris Wilson05394f32010-11-08 19:18:58 +00006413 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08006414}
6415
6416static const struct drm_framebuffer_funcs intel_fb_funcs = {
6417 .destroy = intel_user_framebuffer_destroy,
6418 .create_handle = intel_user_framebuffer_create_handle,
6419};
6420
Dave Airlie38651672010-03-30 05:34:13 +00006421int intel_framebuffer_init(struct drm_device *dev,
6422 struct intel_framebuffer *intel_fb,
6423 struct drm_mode_fb_cmd *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00006424 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08006425{
Jesse Barnes79e53942008-11-07 14:24:08 -08006426 int ret;
6427
Chris Wilson05394f32010-11-08 19:18:58 +00006428 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01006429 return -EINVAL;
6430
6431 if (mode_cmd->pitch & 63)
6432 return -EINVAL;
6433
6434 switch (mode_cmd->bpp) {
6435 case 8:
6436 case 16:
6437 case 24:
6438 case 32:
6439 break;
6440 default:
6441 return -EINVAL;
6442 }
6443
Jesse Barnes79e53942008-11-07 14:24:08 -08006444 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
6445 if (ret) {
6446 DRM_ERROR("framebuffer init failed %d\n", ret);
6447 return ret;
6448 }
6449
6450 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08006451 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006452 return 0;
6453}
6454
Jesse Barnes79e53942008-11-07 14:24:08 -08006455static struct drm_framebuffer *
6456intel_user_framebuffer_create(struct drm_device *dev,
6457 struct drm_file *filp,
6458 struct drm_mode_fb_cmd *mode_cmd)
6459{
Chris Wilson05394f32010-11-08 19:18:58 +00006460 struct drm_i915_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00006461 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006462 int ret;
6463
Chris Wilson05394f32010-11-08 19:18:58 +00006464 obj = to_intel_bo(drm_gem_object_lookup(dev, filp, mode_cmd->handle));
Jesse Barnes79e53942008-11-07 14:24:08 -08006465 if (!obj)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006466 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08006467
Dave Airlie38651672010-03-30 05:34:13 +00006468 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6469 if (!intel_fb)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006470 return ERR_PTR(-ENOMEM);
Dave Airlie38651672010-03-30 05:34:13 +00006471
Chris Wilson05394f32010-11-08 19:18:58 +00006472 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08006473 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00006474 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie38651672010-03-30 05:34:13 +00006475 kfree(intel_fb);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006476 return ERR_PTR(ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08006477 }
6478
Dave Airlie38651672010-03-30 05:34:13 +00006479 return &intel_fb->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006480}
6481
Jesse Barnes79e53942008-11-07 14:24:08 -08006482static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006483 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006484 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08006485};
6486
Chris Wilson05394f32010-11-08 19:18:58 +00006487static struct drm_i915_gem_object *
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006488intel_alloc_context_page(struct drm_device *dev)
Chris Wilson9ea8d052010-01-04 18:57:56 +00006489{
Chris Wilson05394f32010-11-08 19:18:58 +00006490 struct drm_i915_gem_object *ctx;
Chris Wilson9ea8d052010-01-04 18:57:56 +00006491 int ret;
6492
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006493 ctx = i915_gem_alloc_object(dev, 4096);
6494 if (!ctx) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00006495 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
6496 return NULL;
6497 }
6498
6499 mutex_lock(&dev->struct_mutex);
Daniel Vetter75e9e912010-11-04 17:11:09 +01006500 ret = i915_gem_object_pin(ctx, 4096, true);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006501 if (ret) {
6502 DRM_ERROR("failed to pin power context: %d\n", ret);
6503 goto err_unref;
6504 }
6505
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006506 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006507 if (ret) {
6508 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
6509 goto err_unpin;
6510 }
6511 mutex_unlock(&dev->struct_mutex);
6512
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006513 return ctx;
Chris Wilson9ea8d052010-01-04 18:57:56 +00006514
6515err_unpin:
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006516 i915_gem_object_unpin(ctx);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006517err_unref:
Chris Wilson05394f32010-11-08 19:18:58 +00006518 drm_gem_object_unreference(&ctx->base);
Chris Wilson9ea8d052010-01-04 18:57:56 +00006519 mutex_unlock(&dev->struct_mutex);
6520 return NULL;
6521}
6522
Jesse Barnes7648fa92010-05-20 14:28:11 -07006523bool ironlake_set_drps(struct drm_device *dev, u8 val)
6524{
6525 struct drm_i915_private *dev_priv = dev->dev_private;
6526 u16 rgvswctl;
6527
6528 rgvswctl = I915_READ16(MEMSWCTL);
6529 if (rgvswctl & MEMCTL_CMD_STS) {
6530 DRM_DEBUG("gpu busy, RCS change rejected\n");
6531 return false; /* still busy with another command */
6532 }
6533
6534 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
6535 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
6536 I915_WRITE16(MEMSWCTL, rgvswctl);
6537 POSTING_READ16(MEMSWCTL);
6538
6539 rgvswctl |= MEMCTL_CMD_STS;
6540 I915_WRITE16(MEMSWCTL, rgvswctl);
6541
6542 return true;
6543}
6544
Jesse Barnesf97108d2010-01-29 11:27:07 -08006545void ironlake_enable_drps(struct drm_device *dev)
6546{
6547 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07006548 u32 rgvmodectl = I915_READ(MEMMODECTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006549 u8 fmax, fmin, fstart, vstart;
Jesse Barnesf97108d2010-01-29 11:27:07 -08006550
Jesse Barnesea056c12010-09-10 10:02:13 -07006551 /* Enable temp reporting */
6552 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
6553 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
6554
Jesse Barnesf97108d2010-01-29 11:27:07 -08006555 /* 100ms RC evaluation intervals */
6556 I915_WRITE(RCUPEI, 100000);
6557 I915_WRITE(RCDNEI, 100000);
6558
6559 /* Set max/min thresholds to 90ms and 80ms respectively */
6560 I915_WRITE(RCBMAXAVG, 90000);
6561 I915_WRITE(RCBMINAVG, 80000);
6562
6563 I915_WRITE(MEMIHYST, 1);
6564
6565 /* Set up min, max, and cur for interrupt handling */
6566 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
6567 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
6568 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
6569 MEMMODE_FSTART_SHIFT;
Jesse Barnes7648fa92010-05-20 14:28:11 -07006570
Jesse Barnesf97108d2010-01-29 11:27:07 -08006571 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
6572 PXVFREQ_PX_SHIFT;
6573
Jesse Barnes80dbf4b2010-11-01 14:12:01 -07006574 dev_priv->fmax = fmax; /* IPS callback will increase this */
Jesse Barnes7648fa92010-05-20 14:28:11 -07006575 dev_priv->fstart = fstart;
6576
Jesse Barnes80dbf4b2010-11-01 14:12:01 -07006577 dev_priv->max_delay = fstart;
Jesse Barnesf97108d2010-01-29 11:27:07 -08006578 dev_priv->min_delay = fmin;
6579 dev_priv->cur_delay = fstart;
6580
Jesse Barnes80dbf4b2010-11-01 14:12:01 -07006581 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
6582 fmax, fmin, fstart);
Jesse Barnes7648fa92010-05-20 14:28:11 -07006583
Jesse Barnesf97108d2010-01-29 11:27:07 -08006584 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
6585
6586 /*
6587 * Interrupts will be enabled in ironlake_irq_postinstall
6588 */
6589
6590 I915_WRITE(VIDSTART, vstart);
6591 POSTING_READ(VIDSTART);
6592
6593 rgvmodectl |= MEMMODE_SWMODE_EN;
6594 I915_WRITE(MEMMODECTL, rgvmodectl);
6595
Chris Wilson481b6af2010-08-23 17:43:35 +01006596 if (wait_for((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Chris Wilson913d8d12010-08-07 11:01:35 +01006597 DRM_ERROR("stuck trying to change perf mode\n");
Jesse Barnesf97108d2010-01-29 11:27:07 -08006598 msleep(1);
6599
Jesse Barnes7648fa92010-05-20 14:28:11 -07006600 ironlake_set_drps(dev, fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006601
Jesse Barnes7648fa92010-05-20 14:28:11 -07006602 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
6603 I915_READ(0x112e0);
6604 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
6605 dev_priv->last_count2 = I915_READ(0x112f4);
6606 getrawmonotonic(&dev_priv->last_time2);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006607}
6608
6609void ironlake_disable_drps(struct drm_device *dev)
6610{
6611 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07006612 u16 rgvswctl = I915_READ16(MEMSWCTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006613
6614 /* Ack interrupts, disable EFC interrupt */
6615 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
6616 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
6617 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
6618 I915_WRITE(DEIIR, DE_PCU_EVENT);
6619 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
6620
6621 /* Go back to the starting frequency */
Jesse Barnes7648fa92010-05-20 14:28:11 -07006622 ironlake_set_drps(dev, dev_priv->fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006623 msleep(1);
6624 rgvswctl |= MEMCTL_CMD_STS;
6625 I915_WRITE(MEMSWCTL, rgvswctl);
6626 msleep(1);
6627
6628}
6629
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006630void gen6_set_rps(struct drm_device *dev, u8 val)
6631{
6632 struct drm_i915_private *dev_priv = dev->dev_private;
6633 u32 swreq;
6634
6635 swreq = (val & 0x3ff) << 25;
6636 I915_WRITE(GEN6_RPNSWREQ, swreq);
6637}
6638
6639void gen6_disable_rps(struct drm_device *dev)
6640{
6641 struct drm_i915_private *dev_priv = dev->dev_private;
6642
6643 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
6644 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
6645 I915_WRITE(GEN6_PMIER, 0);
6646 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
6647}
6648
Jesse Barnes7648fa92010-05-20 14:28:11 -07006649static unsigned long intel_pxfreq(u32 vidfreq)
6650{
6651 unsigned long freq;
6652 int div = (vidfreq & 0x3f0000) >> 16;
6653 int post = (vidfreq & 0x3000) >> 12;
6654 int pre = (vidfreq & 0x7);
6655
6656 if (!pre)
6657 return 0;
6658
6659 freq = ((div * 133333) / ((1<<post) * pre));
6660
6661 return freq;
6662}
6663
6664void intel_init_emon(struct drm_device *dev)
6665{
6666 struct drm_i915_private *dev_priv = dev->dev_private;
6667 u32 lcfuse;
6668 u8 pxw[16];
6669 int i;
6670
6671 /* Disable to program */
6672 I915_WRITE(ECR, 0);
6673 POSTING_READ(ECR);
6674
6675 /* Program energy weights for various events */
6676 I915_WRITE(SDEW, 0x15040d00);
6677 I915_WRITE(CSIEW0, 0x007f0000);
6678 I915_WRITE(CSIEW1, 0x1e220004);
6679 I915_WRITE(CSIEW2, 0x04000004);
6680
6681 for (i = 0; i < 5; i++)
6682 I915_WRITE(PEW + (i * 4), 0);
6683 for (i = 0; i < 3; i++)
6684 I915_WRITE(DEW + (i * 4), 0);
6685
6686 /* Program P-state weights to account for frequency power adjustment */
6687 for (i = 0; i < 16; i++) {
6688 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
6689 unsigned long freq = intel_pxfreq(pxvidfreq);
6690 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6691 PXVFREQ_PX_SHIFT;
6692 unsigned long val;
6693
6694 val = vid * vid;
6695 val *= (freq / 1000);
6696 val *= 255;
6697 val /= (127*127*900);
6698 if (val > 0xff)
6699 DRM_ERROR("bad pxval: %ld\n", val);
6700 pxw[i] = val;
6701 }
6702 /* Render standby states get 0 weight */
6703 pxw[14] = 0;
6704 pxw[15] = 0;
6705
6706 for (i = 0; i < 4; i++) {
6707 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6708 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
6709 I915_WRITE(PXW + (i * 4), val);
6710 }
6711
6712 /* Adjust magic regs to magic values (more experimental results) */
6713 I915_WRITE(OGW0, 0);
6714 I915_WRITE(OGW1, 0);
6715 I915_WRITE(EG0, 0x00007f00);
6716 I915_WRITE(EG1, 0x0000000e);
6717 I915_WRITE(EG2, 0x000e0000);
6718 I915_WRITE(EG3, 0x68000300);
6719 I915_WRITE(EG4, 0x42000000);
6720 I915_WRITE(EG5, 0x00140031);
6721 I915_WRITE(EG6, 0);
6722 I915_WRITE(EG7, 0);
6723
6724 for (i = 0; i < 8; i++)
6725 I915_WRITE(PXWL + (i * 4), 0);
6726
6727 /* Enable PMON + select events */
6728 I915_WRITE(ECR, 0x80000019);
6729
6730 lcfuse = I915_READ(LCFUSE02);
6731
6732 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
6733}
6734
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006735void gen6_enable_rps(struct drm_i915_private *dev_priv)
Chris Wilson8fd26852010-12-08 18:40:43 +00006736{
Jesse Barnesa6044e22010-12-20 11:34:20 -08006737 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
6738 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
6739 u32 pcu_mbox;
6740 int cur_freq, min_freq, max_freq;
Chris Wilson8fd26852010-12-08 18:40:43 +00006741 int i;
6742
6743 /* Here begins a magic sequence of register writes to enable
6744 * auto-downclocking.
6745 *
6746 * Perhaps there might be some value in exposing these to
6747 * userspace...
6748 */
6749 I915_WRITE(GEN6_RC_STATE, 0);
6750 __gen6_force_wake_get(dev_priv);
6751
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006752 /* disable the counters and set deterministic thresholds */
Chris Wilson8fd26852010-12-08 18:40:43 +00006753 I915_WRITE(GEN6_RC_CONTROL, 0);
6754
6755 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6756 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6757 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6758 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6759 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6760
6761 for (i = 0; i < I915_NUM_RINGS; i++)
6762 I915_WRITE(RING_MAX_IDLE(dev_priv->ring[i].mmio_base), 10);
6763
6764 I915_WRITE(GEN6_RC_SLEEP, 0);
6765 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
6766 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
6767 I915_WRITE(GEN6_RC6p_THRESHOLD, 100000);
6768 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6769
6770 I915_WRITE(GEN6_RC_CONTROL,
6771 GEN6_RC_CTL_RC6p_ENABLE |
6772 GEN6_RC_CTL_RC6_ENABLE |
Chris Wilson9c3d2f72010-12-17 10:54:26 +00006773 GEN6_RC_CTL_EI_MODE(1) |
Chris Wilson8fd26852010-12-08 18:40:43 +00006774 GEN6_RC_CTL_HW_ENABLE);
6775
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006776 I915_WRITE(GEN6_RPNSWREQ,
Chris Wilson8fd26852010-12-08 18:40:43 +00006777 GEN6_FREQUENCY(10) |
6778 GEN6_OFFSET(0) |
6779 GEN6_AGGRESSIVE_TURBO);
6780 I915_WRITE(GEN6_RC_VIDEO_FREQ,
6781 GEN6_FREQUENCY(12));
6782
6783 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
6784 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
6785 18 << 24 |
6786 6 << 16);
Jesse Barnesccab5c82011-01-18 15:49:25 -08006787 I915_WRITE(GEN6_RP_UP_THRESHOLD, 10000);
6788 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 1000000);
Chris Wilson8fd26852010-12-08 18:40:43 +00006789 I915_WRITE(GEN6_RP_UP_EI, 100000);
Jesse Barnesccab5c82011-01-18 15:49:25 -08006790 I915_WRITE(GEN6_RP_DOWN_EI, 5000000);
Chris Wilson8fd26852010-12-08 18:40:43 +00006791 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6792 I915_WRITE(GEN6_RP_CONTROL,
6793 GEN6_RP_MEDIA_TURBO |
6794 GEN6_RP_USE_NORMAL_FREQ |
6795 GEN6_RP_MEDIA_IS_GFX |
6796 GEN6_RP_ENABLE |
Jesse Barnesccab5c82011-01-18 15:49:25 -08006797 GEN6_RP_UP_BUSY_AVG |
6798 GEN6_RP_DOWN_IDLE_CONT);
Chris Wilson8fd26852010-12-08 18:40:43 +00006799
6800 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6801 500))
6802 DRM_ERROR("timeout waiting for pcode mailbox to become idle\n");
6803
6804 I915_WRITE(GEN6_PCODE_DATA, 0);
6805 I915_WRITE(GEN6_PCODE_MAILBOX,
6806 GEN6_PCODE_READY |
6807 GEN6_PCODE_WRITE_MIN_FREQ_TABLE);
6808 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6809 500))
6810 DRM_ERROR("timeout waiting for pcode mailbox to finish\n");
6811
Jesse Barnesa6044e22010-12-20 11:34:20 -08006812 min_freq = (rp_state_cap & 0xff0000) >> 16;
6813 max_freq = rp_state_cap & 0xff;
6814 cur_freq = (gt_perf_status & 0xff00) >> 8;
6815
6816 /* Check for overclock support */
6817 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6818 500))
6819 DRM_ERROR("timeout waiting for pcode mailbox to become idle\n");
6820 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_READ_OC_PARAMS);
6821 pcu_mbox = I915_READ(GEN6_PCODE_DATA);
6822 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6823 500))
6824 DRM_ERROR("timeout waiting for pcode mailbox to finish\n");
6825 if (pcu_mbox & (1<<31)) { /* OC supported */
6826 max_freq = pcu_mbox & 0xff;
6827 DRM_DEBUG_DRIVER("overclocking supported, adjusting frequency max to %dMHz\n", pcu_mbox * 100);
6828 }
6829
6830 /* In units of 100MHz */
6831 dev_priv->max_delay = max_freq;
6832 dev_priv->min_delay = min_freq;
6833 dev_priv->cur_delay = cur_freq;
6834
Chris Wilson8fd26852010-12-08 18:40:43 +00006835 /* requires MSI enabled */
6836 I915_WRITE(GEN6_PMIER,
6837 GEN6_PM_MBOX_EVENT |
6838 GEN6_PM_THERMAL_EVENT |
6839 GEN6_PM_RP_DOWN_TIMEOUT |
6840 GEN6_PM_RP_UP_THRESHOLD |
6841 GEN6_PM_RP_DOWN_THRESHOLD |
6842 GEN6_PM_RP_UP_EI_EXPIRED |
6843 GEN6_PM_RP_DOWN_EI_EXPIRED);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006844 I915_WRITE(GEN6_PMIMR, 0);
6845 /* enable all PM interrupts */
6846 I915_WRITE(GEN6_PMINTRMSK, 0);
Chris Wilson8fd26852010-12-08 18:40:43 +00006847
6848 __gen6_force_wake_put(dev_priv);
6849}
6850
Chris Wilson0cdab212010-12-05 17:27:06 +00006851void intel_enable_clock_gating(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07006852{
6853 struct drm_i915_private *dev_priv = dev->dev_private;
6854
6855 /*
6856 * Disable clock gating reported to work incorrectly according to the
6857 * specs, but enable as much else as we can.
6858 */
Eric Anholtbad720f2009-10-22 16:11:14 -07006859 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07006860 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
6861
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006862 if (IS_GEN5(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07006863 /* Required for FBC */
Jesse Barnes1ffa3252011-01-17 13:35:57 -08006864 dspclk_gate |= DPFCUNIT_CLOCK_GATE_DISABLE |
6865 DPFCRUNIT_CLOCK_GATE_DISABLE |
6866 DPFDUNIT_CLOCK_GATE_DISABLE;
Eric Anholt8956c8b2010-03-18 13:21:14 -07006867 /* Required for CxSR */
6868 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
6869
6870 I915_WRITE(PCH_3DCGDIS0,
6871 MARIUNIT_CLOCK_GATE_DISABLE |
6872 SVSMUNIT_CLOCK_GATE_DISABLE);
Eric Anholt06f37752010-12-14 10:06:46 -08006873 I915_WRITE(PCH_3DCGDIS1,
6874 VFMUNIT_CLOCK_GATE_DISABLE);
Eric Anholt8956c8b2010-03-18 13:21:14 -07006875 }
6876
6877 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006878
6879 /*
Jesse Barnes382b0932010-10-07 16:01:25 -07006880 * On Ibex Peak and Cougar Point, we need to disable clock
6881 * gating for the panel power sequencer or it will fail to
6882 * start up when no ports are active.
6883 */
6884 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6885
6886 /*
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006887 * According to the spec the following bits should be set in
6888 * order to enable memory self-refresh
6889 * The bit 22/21 of 0x42004
6890 * The bit 5 of 0x42020
6891 * The bit 15 of 0x45000
6892 */
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006893 if (IS_GEN5(dev)) {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006894 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6895 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6896 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
6897 I915_WRITE(ILK_DSPCLK_GATE,
6898 (I915_READ(ILK_DSPCLK_GATE) |
6899 ILK_DPARB_CLK_GATE));
6900 I915_WRITE(DISP_ARB_CTL,
6901 (I915_READ(DISP_ARB_CTL) |
6902 DISP_FBC_WM_DIS));
Yuanhan Liu13982612010-12-15 15:42:31 +08006903 I915_WRITE(WM3_LP_ILK, 0);
6904 I915_WRITE(WM2_LP_ILK, 0);
6905 I915_WRITE(WM1_LP_ILK, 0);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006906 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08006907 /*
6908 * Based on the document from hardware guys the following bits
6909 * should be set unconditionally in order to enable FBC.
6910 * The bit 22 of 0x42000
6911 * The bit 22 of 0x42004
6912 * The bit 7,8,9 of 0x42020.
6913 */
6914 if (IS_IRONLAKE_M(dev)) {
6915 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6916 I915_READ(ILK_DISPLAY_CHICKEN1) |
6917 ILK_FBCQ_DIS);
6918 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6919 I915_READ(ILK_DISPLAY_CHICKEN2) |
6920 ILK_DPARB_GATE);
6921 I915_WRITE(ILK_DSPCLK_GATE,
6922 I915_READ(ILK_DSPCLK_GATE) |
6923 ILK_DPFC_DIS1 |
6924 ILK_DPFC_DIS2 |
6925 ILK_CLK_FBC);
6926 }
Eric Anholtde6e2ea2010-11-06 14:53:32 -07006927
Eric Anholt67e92af2010-11-06 14:53:33 -07006928 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6929 I915_READ(ILK_DISPLAY_CHICKEN2) |
6930 ILK_ELPIN_409_SELECT);
6931
Eric Anholtde6e2ea2010-11-06 14:53:32 -07006932 if (IS_GEN5(dev)) {
6933 I915_WRITE(_3D_CHICKEN2,
6934 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6935 _3D_CHICKEN2_WM_READ_PIPELINED);
6936 }
Chris Wilson8fd26852010-12-08 18:40:43 +00006937
Yuanhan Liu13982612010-12-15 15:42:31 +08006938 if (IS_GEN6(dev)) {
6939 I915_WRITE(WM3_LP_ILK, 0);
6940 I915_WRITE(WM2_LP_ILK, 0);
6941 I915_WRITE(WM1_LP_ILK, 0);
6942
6943 /*
6944 * According to the spec the following bits should be
6945 * set in order to enable memory self-refresh and fbc:
6946 * The bit21 and bit22 of 0x42000
6947 * The bit21 and bit22 of 0x42004
6948 * The bit5 and bit7 of 0x42020
6949 * The bit14 of 0x70180
6950 * The bit14 of 0x71180
6951 */
6952 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6953 I915_READ(ILK_DISPLAY_CHICKEN1) |
6954 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6955 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6956 I915_READ(ILK_DISPLAY_CHICKEN2) |
6957 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
6958 I915_WRITE(ILK_DSPCLK_GATE,
6959 I915_READ(ILK_DSPCLK_GATE) |
6960 ILK_DPARB_CLK_GATE |
6961 ILK_DPFD_CLK_GATE);
6962
6963 I915_WRITE(DSPACNTR,
6964 I915_READ(DSPACNTR) |
6965 DISPPLANE_TRICKLE_FEED_DISABLE);
6966 I915_WRITE(DSPBCNTR,
6967 I915_READ(DSPBCNTR) |
6968 DISPPLANE_TRICKLE_FEED_DISABLE);
6969 }
Zhenyu Wangc03342f2009-09-29 11:01:23 +08006970 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006971 uint32_t dspclk_gate;
6972 I915_WRITE(RENCLK_GATE_D1, 0);
6973 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6974 GS_UNIT_CLOCK_GATE_DISABLE |
6975 CL_UNIT_CLOCK_GATE_DISABLE);
6976 I915_WRITE(RAMCLK_GATE_D, 0);
6977 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6978 OVRUNIT_CLOCK_GATE_DISABLE |
6979 OVCUNIT_CLOCK_GATE_DISABLE;
6980 if (IS_GM45(dev))
6981 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6982 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006983 } else if (IS_CRESTLINE(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006984 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6985 I915_WRITE(RENCLK_GATE_D2, 0);
6986 I915_WRITE(DSPCLK_GATE_D, 0);
6987 I915_WRITE(RAMCLK_GATE_D, 0);
6988 I915_WRITE16(DEUC, 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006989 } else if (IS_BROADWATER(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006990 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6991 I965_RCC_CLOCK_GATE_DISABLE |
6992 I965_RCPB_CLOCK_GATE_DISABLE |
6993 I965_ISC_CLOCK_GATE_DISABLE |
6994 I965_FBC_CLOCK_GATE_DISABLE);
6995 I915_WRITE(RENCLK_GATE_D2, 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006996 } else if (IS_GEN3(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006997 u32 dstate = I915_READ(D_STATE);
6998
6999 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7000 DSTATE_DOT_CLOCK_GATING;
7001 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02007002 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07007003 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
7004 } else if (IS_I830(dev)) {
7005 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
7006 }
7007}
7008
Chris Wilson0cdab212010-12-05 17:27:06 +00007009void intel_disable_clock_gating(struct drm_device *dev)
7010{
7011 struct drm_i915_private *dev_priv = dev->dev_private;
7012
7013 if (dev_priv->renderctx) {
7014 struct drm_i915_gem_object *obj = dev_priv->renderctx;
7015
7016 I915_WRITE(CCID, 0);
7017 POSTING_READ(CCID);
7018
7019 i915_gem_object_unpin(obj);
7020 drm_gem_object_unreference(&obj->base);
7021 dev_priv->renderctx = NULL;
7022 }
7023
7024 if (dev_priv->pwrctx) {
7025 struct drm_i915_gem_object *obj = dev_priv->pwrctx;
7026
7027 I915_WRITE(PWRCTXA, 0);
7028 POSTING_READ(PWRCTXA);
7029
7030 i915_gem_object_unpin(obj);
7031 drm_gem_object_unreference(&obj->base);
7032 dev_priv->pwrctx = NULL;
7033 }
7034}
7035
Jesse Barnesd5bb0812011-01-05 12:01:26 -08007036static void ironlake_disable_rc6(struct drm_device *dev)
7037{
7038 struct drm_i915_private *dev_priv = dev->dev_private;
7039
7040 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
7041 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
7042 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
7043 10);
7044 POSTING_READ(CCID);
7045 I915_WRITE(PWRCTXA, 0);
7046 POSTING_READ(PWRCTXA);
7047 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
7048 POSTING_READ(RSTDBYCTL);
7049 i915_gem_object_unpin(dev_priv->renderctx);
7050 drm_gem_object_unreference(&dev_priv->renderctx->base);
7051 dev_priv->renderctx = NULL;
7052 i915_gem_object_unpin(dev_priv->pwrctx);
7053 drm_gem_object_unreference(&dev_priv->pwrctx->base);
7054 dev_priv->pwrctx = NULL;
7055}
7056
7057void ironlake_enable_rc6(struct drm_device *dev)
7058{
7059 struct drm_i915_private *dev_priv = dev->dev_private;
7060 int ret;
7061
7062 /*
7063 * GPU can automatically power down the render unit if given a page
7064 * to save state.
7065 */
7066 ret = BEGIN_LP_RING(6);
7067 if (ret) {
7068 ironlake_disable_rc6(dev);
7069 return;
7070 }
7071 OUT_RING(MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
7072 OUT_RING(MI_SET_CONTEXT);
7073 OUT_RING(dev_priv->renderctx->gtt_offset |
7074 MI_MM_SPACE_GTT |
7075 MI_SAVE_EXT_STATE_EN |
7076 MI_RESTORE_EXT_STATE_EN |
7077 MI_RESTORE_INHIBIT);
7078 OUT_RING(MI_SUSPEND_FLUSH);
7079 OUT_RING(MI_NOOP);
7080 OUT_RING(MI_FLUSH);
7081 ADVANCE_LP_RING();
7082
7083 I915_WRITE(PWRCTXA, dev_priv->pwrctx->gtt_offset | PWRCTX_EN);
7084 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
7085}
7086
Jesse Barnese70236a2009-09-21 10:42:27 -07007087/* Set up chip specific display functions */
7088static void intel_init_display(struct drm_device *dev)
7089{
7090 struct drm_i915_private *dev_priv = dev->dev_private;
7091
7092 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07007093 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05007094 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07007095 else
7096 dev_priv->display.dpms = i9xx_crtc_dpms;
7097
Adam Jacksonee5382a2010-04-23 11:17:39 -04007098 if (I915_HAS_FBC(dev)) {
Yuanhan Liu9c04f012010-12-15 15:42:32 +08007099 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08007100 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
7101 dev_priv->display.enable_fbc = ironlake_enable_fbc;
7102 dev_priv->display.disable_fbc = ironlake_disable_fbc;
7103 } else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07007104 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
7105 dev_priv->display.enable_fbc = g4x_enable_fbc;
7106 dev_priv->display.disable_fbc = g4x_disable_fbc;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007107 } else if (IS_CRESTLINE(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07007108 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
7109 dev_priv->display.enable_fbc = i8xx_enable_fbc;
7110 dev_priv->display.disable_fbc = i8xx_disable_fbc;
7111 }
Jesse Barnes74dff282009-09-14 15:39:40 -07007112 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07007113 }
7114
7115 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05007116 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07007117 dev_priv->display.get_display_clock_speed =
7118 i945_get_display_clock_speed;
7119 else if (IS_I915G(dev))
7120 dev_priv->display.get_display_clock_speed =
7121 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05007122 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07007123 dev_priv->display.get_display_clock_speed =
7124 i9xx_misc_get_display_clock_speed;
7125 else if (IS_I915GM(dev))
7126 dev_priv->display.get_display_clock_speed =
7127 i915gm_get_display_clock_speed;
7128 else if (IS_I865G(dev))
7129 dev_priv->display.get_display_clock_speed =
7130 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02007131 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07007132 dev_priv->display.get_display_clock_speed =
7133 i855_get_display_clock_speed;
7134 else /* 852, 830 */
7135 dev_priv->display.get_display_clock_speed =
7136 i830_get_display_clock_speed;
7137
7138 /* For FIFO watermark updates */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08007139 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01007140 if (IS_GEN5(dev)) {
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08007141 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
7142 dev_priv->display.update_wm = ironlake_update_wm;
7143 else {
7144 DRM_DEBUG_KMS("Failed to get proper latency. "
7145 "Disable CxSR\n");
7146 dev_priv->display.update_wm = NULL;
7147 }
Yuanhan Liu13982612010-12-15 15:42:31 +08007148 } else if (IS_GEN6(dev)) {
7149 if (SNB_READ_WM0_LATENCY()) {
7150 dev_priv->display.update_wm = sandybridge_update_wm;
7151 } else {
7152 DRM_DEBUG_KMS("Failed to read display plane latency. "
7153 "Disable CxSR\n");
7154 dev_priv->display.update_wm = NULL;
7155 }
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08007156 } else
7157 dev_priv->display.update_wm = NULL;
7158 } else if (IS_PINEVIEW(dev)) {
Zhao Yakuid4294342010-03-22 22:45:36 +08007159 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
Li Peng95534262010-05-18 18:58:44 +08007160 dev_priv->is_ddr3,
Zhao Yakuid4294342010-03-22 22:45:36 +08007161 dev_priv->fsb_freq,
7162 dev_priv->mem_freq)) {
7163 DRM_INFO("failed to find known CxSR latency "
Li Peng95534262010-05-18 18:58:44 +08007164 "(found ddr%s fsb freq %d, mem freq %d), "
Zhao Yakuid4294342010-03-22 22:45:36 +08007165 "disabling CxSR\n",
Li Peng95534262010-05-18 18:58:44 +08007166 (dev_priv->is_ddr3 == 1) ? "3": "2",
Zhao Yakuid4294342010-03-22 22:45:36 +08007167 dev_priv->fsb_freq, dev_priv->mem_freq);
7168 /* Disable CxSR and never update its watermark again */
7169 pineview_disable_cxsr(dev);
7170 dev_priv->display.update_wm = NULL;
7171 } else
7172 dev_priv->display.update_wm = pineview_update_wm;
7173 } else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07007174 dev_priv->display.update_wm = g4x_update_wm;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007175 else if (IS_GEN4(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07007176 dev_priv->display.update_wm = i965_update_wm;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007177 else if (IS_GEN3(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07007178 dev_priv->display.update_wm = i9xx_update_wm;
7179 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Adam Jackson8f4695e2010-04-16 18:20:57 -04007180 } else if (IS_I85X(dev)) {
7181 dev_priv->display.update_wm = i9xx_update_wm;
7182 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07007183 } else {
Adam Jackson8f4695e2010-04-16 18:20:57 -04007184 dev_priv->display.update_wm = i830_update_wm;
7185 if (IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07007186 dev_priv->display.get_fifo_size = i845_get_fifo_size;
7187 else
7188 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07007189 }
7190}
7191
Jesse Barnesb690e962010-07-19 13:53:12 -07007192/*
7193 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
7194 * resume, or other times. This quirk makes sure that's the case for
7195 * affected systems.
7196 */
7197static void quirk_pipea_force (struct drm_device *dev)
7198{
7199 struct drm_i915_private *dev_priv = dev->dev_private;
7200
7201 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
7202 DRM_DEBUG_DRIVER("applying pipe a force quirk\n");
7203}
7204
7205struct intel_quirk {
7206 int device;
7207 int subsystem_vendor;
7208 int subsystem_device;
7209 void (*hook)(struct drm_device *dev);
7210};
7211
7212struct intel_quirk intel_quirks[] = {
7213 /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */
7214 { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force },
7215 /* HP Mini needs pipe A force quirk (LP: #322104) */
7216 { 0x27ae,0x103c, 0x361a, quirk_pipea_force },
7217
7218 /* Thinkpad R31 needs pipe A force quirk */
7219 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
7220 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
7221 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
7222
7223 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
7224 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
7225 /* ThinkPad X40 needs pipe A force quirk */
7226
7227 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
7228 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
7229
7230 /* 855 & before need to leave pipe A & dpll A up */
7231 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
7232 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
7233};
7234
7235static void intel_init_quirks(struct drm_device *dev)
7236{
7237 struct pci_dev *d = dev->pdev;
7238 int i;
7239
7240 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
7241 struct intel_quirk *q = &intel_quirks[i];
7242
7243 if (d->device == q->device &&
7244 (d->subsystem_vendor == q->subsystem_vendor ||
7245 q->subsystem_vendor == PCI_ANY_ID) &&
7246 (d->subsystem_device == q->subsystem_device ||
7247 q->subsystem_device == PCI_ANY_ID))
7248 q->hook(dev);
7249 }
7250}
7251
Jesse Barnes9cce37f2010-08-13 15:11:26 -07007252/* Disable the VGA plane that we never use */
7253static void i915_disable_vga(struct drm_device *dev)
7254{
7255 struct drm_i915_private *dev_priv = dev->dev_private;
7256 u8 sr1;
7257 u32 vga_reg;
7258
7259 if (HAS_PCH_SPLIT(dev))
7260 vga_reg = CPU_VGACNTRL;
7261 else
7262 vga_reg = VGACNTRL;
7263
7264 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
7265 outb(1, VGA_SR_INDEX);
7266 sr1 = inb(VGA_SR_DATA);
7267 outb(sr1 | 1<<5, VGA_SR_DATA);
7268 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
7269 udelay(300);
7270
7271 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
7272 POSTING_READ(vga_reg);
7273}
7274
Jesse Barnes79e53942008-11-07 14:24:08 -08007275void intel_modeset_init(struct drm_device *dev)
7276{
Jesse Barnes652c3932009-08-17 13:31:43 -07007277 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08007278 int i;
7279
7280 drm_mode_config_init(dev);
7281
7282 dev->mode_config.min_width = 0;
7283 dev->mode_config.min_height = 0;
7284
7285 dev->mode_config.funcs = (void *)&intel_mode_funcs;
7286
Jesse Barnesb690e962010-07-19 13:53:12 -07007287 intel_init_quirks(dev);
7288
Jesse Barnese70236a2009-09-21 10:42:27 -07007289 intel_init_display(dev);
7290
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007291 if (IS_GEN2(dev)) {
7292 dev->mode_config.max_width = 2048;
7293 dev->mode_config.max_height = 2048;
7294 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07007295 dev->mode_config.max_width = 4096;
7296 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08007297 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007298 dev->mode_config.max_width = 8192;
7299 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08007300 }
Chris Wilson35c30472010-12-22 14:07:12 +00007301 dev->mode_config.fb_base = dev->agp->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08007302
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007303 if (IS_MOBILE(dev) || !IS_GEN2(dev))
Dave Airliea3524f12010-06-06 18:59:41 +10007304 dev_priv->num_pipe = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08007305 else
Dave Airliea3524f12010-06-06 18:59:41 +10007306 dev_priv->num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08007307 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10007308 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08007309
Dave Airliea3524f12010-06-06 18:59:41 +10007310 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007311 intel_crtc_init(dev, i);
7312 }
7313
7314 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07007315
Chris Wilson0cdab212010-12-05 17:27:06 +00007316 intel_enable_clock_gating(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07007317
Jesse Barnes9cce37f2010-08-13 15:11:26 -07007318 /* Just disable it once at startup */
7319 i915_disable_vga(dev);
7320
Jesse Barnes7648fa92010-05-20 14:28:11 -07007321 if (IS_IRONLAKE_M(dev)) {
Jesse Barnesf97108d2010-01-29 11:27:07 -08007322 ironlake_enable_drps(dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07007323 intel_init_emon(dev);
7324 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08007325
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08007326 if (IS_GEN6(dev))
7327 gen6_enable_rps(dev_priv);
7328
Jesse Barnesd5bb0812011-01-05 12:01:26 -08007329 if (IS_IRONLAKE_M(dev)) {
7330 dev_priv->renderctx = intel_alloc_context_page(dev);
7331 if (!dev_priv->renderctx)
7332 goto skip_rc6;
7333 dev_priv->pwrctx = intel_alloc_context_page(dev);
7334 if (!dev_priv->pwrctx) {
7335 i915_gem_object_unpin(dev_priv->renderctx);
7336 drm_gem_object_unreference(&dev_priv->renderctx->base);
7337 dev_priv->renderctx = NULL;
7338 goto skip_rc6;
7339 }
7340 ironlake_enable_rc6(dev);
7341 }
7342
7343skip_rc6:
Jesse Barnes652c3932009-08-17 13:31:43 -07007344 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
7345 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
7346 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02007347
7348 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08007349}
7350
7351void intel_modeset_cleanup(struct drm_device *dev)
7352{
Jesse Barnes652c3932009-08-17 13:31:43 -07007353 struct drm_i915_private *dev_priv = dev->dev_private;
7354 struct drm_crtc *crtc;
7355 struct intel_crtc *intel_crtc;
7356
Keith Packardf87ea762010-10-03 19:36:26 -07007357 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07007358 mutex_lock(&dev->struct_mutex);
7359
Jesse Barnes723bfd72010-10-07 16:01:13 -07007360 intel_unregister_dsm_handler();
7361
7362
Jesse Barnes652c3932009-08-17 13:31:43 -07007363 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7364 /* Skip inactive CRTCs */
7365 if (!crtc->fb)
7366 continue;
7367
7368 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02007369 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007370 }
7371
Jesse Barnese70236a2009-09-21 10:42:27 -07007372 if (dev_priv->display.disable_fbc)
7373 dev_priv->display.disable_fbc(dev);
7374
Jesse Barnesf97108d2010-01-29 11:27:07 -08007375 if (IS_IRONLAKE_M(dev))
7376 ironlake_disable_drps(dev);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08007377 if (IS_GEN6(dev))
7378 gen6_disable_rps(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08007379
Jesse Barnesd5bb0812011-01-05 12:01:26 -08007380 if (IS_IRONLAKE_M(dev))
7381 ironlake_disable_rc6(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00007382
Kristian Høgsberg69341a52009-11-11 12:19:17 -05007383 mutex_unlock(&dev->struct_mutex);
7384
Daniel Vetter6c0d93502010-08-20 18:26:46 +02007385 /* Disable the irq before mode object teardown, for the irq might
7386 * enqueue unpin/hotplug work. */
7387 drm_irq_uninstall(dev);
7388 cancel_work_sync(&dev_priv->hotplug_work);
7389
Daniel Vetter3dec0092010-08-20 21:40:52 +02007390 /* Shut off idle work before the crtcs get freed. */
7391 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7392 intel_crtc = to_intel_crtc(crtc);
7393 del_timer_sync(&intel_crtc->idle_timer);
7394 }
7395 del_timer_sync(&dev_priv->idle_timer);
7396 cancel_work_sync(&dev_priv->idle_work);
7397
Jesse Barnes79e53942008-11-07 14:24:08 -08007398 drm_mode_config_cleanup(dev);
7399}
7400
Dave Airlie28d52042009-09-21 14:33:58 +10007401/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08007402 * Return which encoder is currently attached for connector.
7403 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01007404struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08007405{
Chris Wilsondf0e9242010-09-09 16:20:55 +01007406 return &intel_attached_encoder(connector)->base;
7407}
Jesse Barnes79e53942008-11-07 14:24:08 -08007408
Chris Wilsondf0e9242010-09-09 16:20:55 +01007409void intel_connector_attach_encoder(struct intel_connector *connector,
7410 struct intel_encoder *encoder)
7411{
7412 connector->encoder = encoder;
7413 drm_mode_connector_attach_encoder(&connector->base,
7414 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08007415}
Dave Airlie28d52042009-09-21 14:33:58 +10007416
7417/*
7418 * set vga decode state - true == enable VGA decode
7419 */
7420int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
7421{
7422 struct drm_i915_private *dev_priv = dev->dev_private;
7423 u16 gmch_ctrl;
7424
7425 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
7426 if (state)
7427 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
7428 else
7429 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
7430 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
7431 return 0;
7432}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007433
7434#ifdef CONFIG_DEBUG_FS
7435#include <linux/seq_file.h>
7436
7437struct intel_display_error_state {
7438 struct intel_cursor_error_state {
7439 u32 control;
7440 u32 position;
7441 u32 base;
7442 u32 size;
7443 } cursor[2];
7444
7445 struct intel_pipe_error_state {
7446 u32 conf;
7447 u32 source;
7448
7449 u32 htotal;
7450 u32 hblank;
7451 u32 hsync;
7452 u32 vtotal;
7453 u32 vblank;
7454 u32 vsync;
7455 } pipe[2];
7456
7457 struct intel_plane_error_state {
7458 u32 control;
7459 u32 stride;
7460 u32 size;
7461 u32 pos;
7462 u32 addr;
7463 u32 surface;
7464 u32 tile_offset;
7465 } plane[2];
7466};
7467
7468struct intel_display_error_state *
7469intel_display_capture_error_state(struct drm_device *dev)
7470{
7471 drm_i915_private_t *dev_priv = dev->dev_private;
7472 struct intel_display_error_state *error;
7473 int i;
7474
7475 error = kmalloc(sizeof(*error), GFP_ATOMIC);
7476 if (error == NULL)
7477 return NULL;
7478
7479 for (i = 0; i < 2; i++) {
7480 error->cursor[i].control = I915_READ(CURCNTR(i));
7481 error->cursor[i].position = I915_READ(CURPOS(i));
7482 error->cursor[i].base = I915_READ(CURBASE(i));
7483
7484 error->plane[i].control = I915_READ(DSPCNTR(i));
7485 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
7486 error->plane[i].size = I915_READ(DSPSIZE(i));
7487 error->plane[i].pos= I915_READ(DSPPOS(i));
7488 error->plane[i].addr = I915_READ(DSPADDR(i));
7489 if (INTEL_INFO(dev)->gen >= 4) {
7490 error->plane[i].surface = I915_READ(DSPSURF(i));
7491 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
7492 }
7493
7494 error->pipe[i].conf = I915_READ(PIPECONF(i));
7495 error->pipe[i].source = I915_READ(PIPESRC(i));
7496 error->pipe[i].htotal = I915_READ(HTOTAL(i));
7497 error->pipe[i].hblank = I915_READ(HBLANK(i));
7498 error->pipe[i].hsync = I915_READ(HSYNC(i));
7499 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
7500 error->pipe[i].vblank = I915_READ(VBLANK(i));
7501 error->pipe[i].vsync = I915_READ(VSYNC(i));
7502 }
7503
7504 return error;
7505}
7506
7507void
7508intel_display_print_error_state(struct seq_file *m,
7509 struct drm_device *dev,
7510 struct intel_display_error_state *error)
7511{
7512 int i;
7513
7514 for (i = 0; i < 2; i++) {
7515 seq_printf(m, "Pipe [%d]:\n", i);
7516 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
7517 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
7518 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
7519 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
7520 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
7521 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
7522 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
7523 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
7524
7525 seq_printf(m, "Plane [%d]:\n", i);
7526 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
7527 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
7528 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
7529 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
7530 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
7531 if (INTEL_INFO(dev)->gen >= 4) {
7532 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
7533 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
7534 }
7535
7536 seq_printf(m, "Cursor [%d]:\n", i);
7537 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
7538 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
7539 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
7540 }
7541}
7542#endif