blob: ce96c3aea162720b13f01df7709858cf9dc0aa13 [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 Barnes79e53942008-11-07 14:24:08 -080032#include "drmP.h"
33#include "intel_drv.h"
34#include "i915_drm.h"
35#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070036#include "i915_trace.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100037#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080038
39#include "drm_crtc_helper.h"
40
Zhenyu Wang32f9d652009-07-24 01:00:32 +080041#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
42
Jesse Barnes79e53942008-11-07 14:24:08 -080043bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080044static void intel_update_watermarks(struct drm_device *dev);
Jesse Barnes652c3932009-08-17 13:31:43 -070045static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule);
Jesse Barnes79e53942008-11-07 14:24:08 -080046
47typedef struct {
48 /* given values */
49 int n;
50 int m1, m2;
51 int p1, p2;
52 /* derived values */
53 int dot;
54 int vco;
55 int m;
56 int p;
57} intel_clock_t;
58
59typedef struct {
60 int min, max;
61} intel_range_t;
62
63typedef struct {
64 int dot_limit;
65 int p2_slow, p2_fast;
66} intel_p2_t;
67
68#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080069typedef struct intel_limit intel_limit_t;
70struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080071 intel_range_t dot, vco, n, m, m1, m2, p, p1;
72 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080073 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
74 int, int, intel_clock_t *);
75};
Jesse Barnes79e53942008-11-07 14:24:08 -080076
77#define I8XX_DOT_MIN 25000
78#define I8XX_DOT_MAX 350000
79#define I8XX_VCO_MIN 930000
80#define I8XX_VCO_MAX 1400000
81#define I8XX_N_MIN 3
82#define I8XX_N_MAX 16
83#define I8XX_M_MIN 96
84#define I8XX_M_MAX 140
85#define I8XX_M1_MIN 18
86#define I8XX_M1_MAX 26
87#define I8XX_M2_MIN 6
88#define I8XX_M2_MAX 16
89#define I8XX_P_MIN 4
90#define I8XX_P_MAX 128
91#define I8XX_P1_MIN 2
92#define I8XX_P1_MAX 33
93#define I8XX_P1_LVDS_MIN 1
94#define I8XX_P1_LVDS_MAX 6
95#define I8XX_P2_SLOW 4
96#define I8XX_P2_FAST 2
97#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e3952009-07-17 11:44:30 +080098#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -080099#define I8XX_P2_SLOW_LIMIT 165000
100
101#define I9XX_DOT_MIN 20000
102#define I9XX_DOT_MAX 400000
103#define I9XX_VCO_MIN 1400000
104#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500105#define PINEVIEW_VCO_MIN 1700000
106#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500107#define I9XX_N_MIN 1
108#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500109/* Pineview's Ncounter is a ring counter */
110#define PINEVIEW_N_MIN 3
111#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800112#define I9XX_M_MIN 70
113#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500114#define PINEVIEW_M_MIN 2
115#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800116#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500117#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800118#define I9XX_M2_MIN 5
119#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500120/* Pineview M1 is reserved, and must be 0 */
121#define PINEVIEW_M1_MIN 0
122#define PINEVIEW_M1_MAX 0
123#define PINEVIEW_M2_MIN 0
124#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800125#define I9XX_P_SDVO_DAC_MIN 5
126#define I9XX_P_SDVO_DAC_MAX 80
127#define I9XX_P_LVDS_MIN 7
128#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500129#define PINEVIEW_P_LVDS_MIN 7
130#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800131#define I9XX_P1_MIN 1
132#define I9XX_P1_MAX 8
133#define I9XX_P2_SDVO_DAC_SLOW 10
134#define I9XX_P2_SDVO_DAC_FAST 5
135#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
136#define I9XX_P2_LVDS_SLOW 14
137#define I9XX_P2_LVDS_FAST 7
138#define I9XX_P2_LVDS_SLOW_LIMIT 112000
139
Ma Ling044c7c42009-03-18 20:13:23 +0800140/*The parameter is for SDVO on G4x platform*/
141#define G4X_DOT_SDVO_MIN 25000
142#define G4X_DOT_SDVO_MAX 270000
143#define G4X_VCO_MIN 1750000
144#define G4X_VCO_MAX 3500000
145#define G4X_N_SDVO_MIN 1
146#define G4X_N_SDVO_MAX 4
147#define G4X_M_SDVO_MIN 104
148#define G4X_M_SDVO_MAX 138
149#define G4X_M1_SDVO_MIN 17
150#define G4X_M1_SDVO_MAX 23
151#define G4X_M2_SDVO_MIN 5
152#define G4X_M2_SDVO_MAX 11
153#define G4X_P_SDVO_MIN 10
154#define G4X_P_SDVO_MAX 30
155#define G4X_P1_SDVO_MIN 1
156#define G4X_P1_SDVO_MAX 3
157#define G4X_P2_SDVO_SLOW 10
158#define G4X_P2_SDVO_FAST 10
159#define G4X_P2_SDVO_LIMIT 270000
160
161/*The parameter is for HDMI_DAC on G4x platform*/
162#define G4X_DOT_HDMI_DAC_MIN 22000
163#define G4X_DOT_HDMI_DAC_MAX 400000
164#define G4X_N_HDMI_DAC_MIN 1
165#define G4X_N_HDMI_DAC_MAX 4
166#define G4X_M_HDMI_DAC_MIN 104
167#define G4X_M_HDMI_DAC_MAX 138
168#define G4X_M1_HDMI_DAC_MIN 16
169#define G4X_M1_HDMI_DAC_MAX 23
170#define G4X_M2_HDMI_DAC_MIN 5
171#define G4X_M2_HDMI_DAC_MAX 11
172#define G4X_P_HDMI_DAC_MIN 5
173#define G4X_P_HDMI_DAC_MAX 80
174#define G4X_P1_HDMI_DAC_MIN 1
175#define G4X_P1_HDMI_DAC_MAX 8
176#define G4X_P2_HDMI_DAC_SLOW 10
177#define G4X_P2_HDMI_DAC_FAST 5
178#define G4X_P2_HDMI_DAC_LIMIT 165000
179
180/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
181#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
182#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
183#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
184#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
185#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
186#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
187#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
188#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
189#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
190#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
191#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
192#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
193#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
194#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
195#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
196#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
197#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
198
199/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
200#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
201#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
202#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
203#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
204#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
205#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
206#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
207#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
208#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
209#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
210#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
211#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
212#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
213#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
214#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
215#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
216#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
217
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700218/*The parameter is for DISPLAY PORT on G4x platform*/
219#define G4X_DOT_DISPLAY_PORT_MIN 161670
220#define G4X_DOT_DISPLAY_PORT_MAX 227000
221#define G4X_N_DISPLAY_PORT_MIN 1
222#define G4X_N_DISPLAY_PORT_MAX 2
223#define G4X_M_DISPLAY_PORT_MIN 97
224#define G4X_M_DISPLAY_PORT_MAX 108
225#define G4X_M1_DISPLAY_PORT_MIN 0x10
226#define G4X_M1_DISPLAY_PORT_MAX 0x12
227#define G4X_M2_DISPLAY_PORT_MIN 0x05
228#define G4X_M2_DISPLAY_PORT_MAX 0x06
229#define G4X_P_DISPLAY_PORT_MIN 10
230#define G4X_P_DISPLAY_PORT_MAX 20
231#define G4X_P1_DISPLAY_PORT_MIN 1
232#define G4X_P1_DISPLAY_PORT_MAX 2
233#define G4X_P2_DISPLAY_PORT_SLOW 10
234#define G4X_P2_DISPLAY_PORT_FAST 10
235#define G4X_P2_DISPLAY_PORT_LIMIT 0
236
Eric Anholtbad720f2009-10-22 16:11:14 -0700237/* Ironlake / Sandybridge */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800238/* as we calculate clock using (register_value + 2) for
239 N/M1/M2, so here the range value for them is (actual_value-2).
240 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500241#define IRONLAKE_DOT_MIN 25000
242#define IRONLAKE_DOT_MAX 350000
243#define IRONLAKE_VCO_MIN 1760000
244#define IRONLAKE_VCO_MAX 3510000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500245#define IRONLAKE_M1_MIN 12
Zhao Yakuia59e3852010-01-06 22:05:57 +0800246#define IRONLAKE_M1_MAX 22
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500247#define IRONLAKE_M2_MIN 5
248#define IRONLAKE_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500249#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800250
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800251/* We have parameter ranges for different type of outputs. */
252
253/* DAC & HDMI Refclk 120Mhz */
254#define IRONLAKE_DAC_N_MIN 1
255#define IRONLAKE_DAC_N_MAX 5
256#define IRONLAKE_DAC_M_MIN 79
257#define IRONLAKE_DAC_M_MAX 127
258#define IRONLAKE_DAC_P_MIN 5
259#define IRONLAKE_DAC_P_MAX 80
260#define IRONLAKE_DAC_P1_MIN 1
261#define IRONLAKE_DAC_P1_MAX 8
262#define IRONLAKE_DAC_P2_SLOW 10
263#define IRONLAKE_DAC_P2_FAST 5
264
265/* LVDS single-channel 120Mhz refclk */
266#define IRONLAKE_LVDS_S_N_MIN 1
267#define IRONLAKE_LVDS_S_N_MAX 3
268#define IRONLAKE_LVDS_S_M_MIN 79
269#define IRONLAKE_LVDS_S_M_MAX 118
270#define IRONLAKE_LVDS_S_P_MIN 28
271#define IRONLAKE_LVDS_S_P_MAX 112
272#define IRONLAKE_LVDS_S_P1_MIN 2
273#define IRONLAKE_LVDS_S_P1_MAX 8
274#define IRONLAKE_LVDS_S_P2_SLOW 14
275#define IRONLAKE_LVDS_S_P2_FAST 14
276
277/* LVDS dual-channel 120Mhz refclk */
278#define IRONLAKE_LVDS_D_N_MIN 1
279#define IRONLAKE_LVDS_D_N_MAX 3
280#define IRONLAKE_LVDS_D_M_MIN 79
281#define IRONLAKE_LVDS_D_M_MAX 127
282#define IRONLAKE_LVDS_D_P_MIN 14
283#define IRONLAKE_LVDS_D_P_MAX 56
284#define IRONLAKE_LVDS_D_P1_MIN 2
285#define IRONLAKE_LVDS_D_P1_MAX 8
286#define IRONLAKE_LVDS_D_P2_SLOW 7
287#define IRONLAKE_LVDS_D_P2_FAST 7
288
289/* LVDS single-channel 100Mhz refclk */
290#define IRONLAKE_LVDS_S_SSC_N_MIN 1
291#define IRONLAKE_LVDS_S_SSC_N_MAX 2
292#define IRONLAKE_LVDS_S_SSC_M_MIN 79
293#define IRONLAKE_LVDS_S_SSC_M_MAX 126
294#define IRONLAKE_LVDS_S_SSC_P_MIN 28
295#define IRONLAKE_LVDS_S_SSC_P_MAX 112
296#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
297#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
298#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
299#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
300
301/* LVDS dual-channel 100Mhz refclk */
302#define IRONLAKE_LVDS_D_SSC_N_MIN 1
303#define IRONLAKE_LVDS_D_SSC_N_MAX 3
304#define IRONLAKE_LVDS_D_SSC_M_MIN 79
305#define IRONLAKE_LVDS_D_SSC_M_MAX 126
306#define IRONLAKE_LVDS_D_SSC_P_MIN 14
307#define IRONLAKE_LVDS_D_SSC_P_MAX 42
308#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
309#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
310#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
311#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
312
313/* DisplayPort */
314#define IRONLAKE_DP_N_MIN 1
315#define IRONLAKE_DP_N_MAX 2
316#define IRONLAKE_DP_M_MIN 81
317#define IRONLAKE_DP_M_MAX 90
318#define IRONLAKE_DP_P_MIN 10
319#define IRONLAKE_DP_P_MAX 20
320#define IRONLAKE_DP_P2_FAST 10
321#define IRONLAKE_DP_P2_SLOW 10
322#define IRONLAKE_DP_P2_LIMIT 0
323#define IRONLAKE_DP_P1_MIN 1
324#define IRONLAKE_DP_P1_MAX 2
Zhao Yakui45476682009-12-31 16:06:04 +0800325
Jesse Barnes2377b742010-07-07 14:06:43 -0700326/* FDI */
327#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
328
Ma Lingd4906092009-03-18 20:13:27 +0800329static bool
330intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
331 int target, int refclk, intel_clock_t *best_clock);
332static bool
333intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
334 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800335
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700336static bool
337intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
338 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800339static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500340intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
341 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700342
Keith Packarde4b36692009-06-05 19:22:17 -0700343static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800344 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
345 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
346 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
347 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
348 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
349 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
350 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
351 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
352 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
353 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800354 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700355};
356
357static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800358 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
359 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
360 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
361 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
362 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
363 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
364 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
365 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
366 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
367 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800368 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700369};
370
371static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800372 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
373 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
374 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
375 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
376 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
377 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
378 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
379 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
380 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
381 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800382 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700383};
384
385static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800386 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
387 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
388 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
389 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
390 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
391 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
392 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
393 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
394 /* The single-channel range is 25-112Mhz, and dual-channel
395 * is 80-224Mhz. Prefer single channel as much as possible.
396 */
397 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
398 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800399 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700400};
401
Ma Ling044c7c42009-03-18 20:13:23 +0800402 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700403static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800404 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
405 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
406 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
407 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
408 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
409 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
410 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
411 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
412 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
413 .p2_slow = G4X_P2_SDVO_SLOW,
414 .p2_fast = G4X_P2_SDVO_FAST
415 },
Ma Lingd4906092009-03-18 20:13:27 +0800416 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700417};
418
419static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800420 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
421 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
422 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
423 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
424 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
425 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
426 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
427 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
428 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
429 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
430 .p2_fast = G4X_P2_HDMI_DAC_FAST
431 },
Ma Lingd4906092009-03-18 20:13:27 +0800432 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700433};
434
435static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800436 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
437 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
438 .vco = { .min = G4X_VCO_MIN,
439 .max = G4X_VCO_MAX },
440 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
441 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
442 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
443 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
444 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
445 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
446 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
447 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
448 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
449 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
450 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
451 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
452 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
453 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
454 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
455 },
Ma Lingd4906092009-03-18 20:13:27 +0800456 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700457};
458
459static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800460 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
461 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
462 .vco = { .min = G4X_VCO_MIN,
463 .max = G4X_VCO_MAX },
464 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
465 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
466 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
467 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
468 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
469 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
470 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
471 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
472 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
473 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
474 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
475 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
476 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
477 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
478 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
479 },
Ma Lingd4906092009-03-18 20:13:27 +0800480 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700481};
482
483static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700484 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
485 .max = G4X_DOT_DISPLAY_PORT_MAX },
486 .vco = { .min = G4X_VCO_MIN,
487 .max = G4X_VCO_MAX},
488 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
489 .max = G4X_N_DISPLAY_PORT_MAX },
490 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
491 .max = G4X_M_DISPLAY_PORT_MAX },
492 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
493 .max = G4X_M1_DISPLAY_PORT_MAX },
494 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
495 .max = G4X_M2_DISPLAY_PORT_MAX },
496 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
497 .max = G4X_P_DISPLAY_PORT_MAX },
498 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
499 .max = G4X_P1_DISPLAY_PORT_MAX},
500 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
501 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
502 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
503 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700504};
505
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500506static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800507 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500508 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
509 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
510 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
511 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
512 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800513 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
514 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
515 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
516 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800517 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700518};
519
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500520static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800521 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500522 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
523 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
524 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
525 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
526 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
527 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800528 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500529 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800530 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
531 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800532 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700533};
534
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800535static const intel_limit_t intel_limits_ironlake_dac = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500536 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
537 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800538 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
539 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500540 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
541 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800542 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
543 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500544 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800545 .p2_slow = IRONLAKE_DAC_P2_SLOW,
546 .p2_fast = IRONLAKE_DAC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800547 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700548};
549
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800550static const intel_limit_t intel_limits_ironlake_single_lvds = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500551 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
552 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800553 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
554 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500555 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
556 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800557 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
558 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500559 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800560 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
561 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
562 .find_pll = intel_g4x_find_best_PLL,
563};
564
565static const intel_limit_t intel_limits_ironlake_dual_lvds = {
566 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
567 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
568 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
569 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
570 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
571 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
572 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
573 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
574 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
575 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
576 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
577 .find_pll = intel_g4x_find_best_PLL,
578};
579
580static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
581 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
582 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
583 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
584 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
585 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
586 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
587 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
588 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
589 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
590 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
591 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
592 .find_pll = intel_g4x_find_best_PLL,
593};
594
595static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
596 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
597 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
598 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
599 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
600 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
601 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
602 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
603 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
604 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
605 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
606 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800607 .find_pll = intel_g4x_find_best_PLL,
608};
609
610static const intel_limit_t intel_limits_ironlake_display_port = {
611 .dot = { .min = IRONLAKE_DOT_MIN,
612 .max = IRONLAKE_DOT_MAX },
613 .vco = { .min = IRONLAKE_VCO_MIN,
614 .max = IRONLAKE_VCO_MAX},
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800615 .n = { .min = IRONLAKE_DP_N_MIN,
616 .max = IRONLAKE_DP_N_MAX },
617 .m = { .min = IRONLAKE_DP_M_MIN,
618 .max = IRONLAKE_DP_M_MAX },
Zhao Yakui45476682009-12-31 16:06:04 +0800619 .m1 = { .min = IRONLAKE_M1_MIN,
620 .max = IRONLAKE_M1_MAX },
621 .m2 = { .min = IRONLAKE_M2_MIN,
622 .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800623 .p = { .min = IRONLAKE_DP_P_MIN,
624 .max = IRONLAKE_DP_P_MAX },
625 .p1 = { .min = IRONLAKE_DP_P1_MIN,
626 .max = IRONLAKE_DP_P1_MAX},
627 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
628 .p2_slow = IRONLAKE_DP_P2_SLOW,
629 .p2_fast = IRONLAKE_DP_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800630 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800631};
632
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500633static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800634{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800635 struct drm_device *dev = crtc->dev;
636 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800637 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800638 int refclk = 120;
639
640 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
641 if (dev_priv->lvds_use_ssc && dev_priv->lvds_ssc_freq == 100)
642 refclk = 100;
643
644 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
645 LVDS_CLKB_POWER_UP) {
646 /* LVDS dual channel */
647 if (refclk == 100)
648 limit = &intel_limits_ironlake_dual_lvds_100m;
649 else
650 limit = &intel_limits_ironlake_dual_lvds;
651 } else {
652 if (refclk == 100)
653 limit = &intel_limits_ironlake_single_lvds_100m;
654 else
655 limit = &intel_limits_ironlake_single_lvds;
656 }
657 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800658 HAS_eDP)
659 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800660 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800661 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800662
663 return limit;
664}
665
Ma Ling044c7c42009-03-18 20:13:23 +0800666static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
667{
668 struct drm_device *dev = crtc->dev;
669 struct drm_i915_private *dev_priv = dev->dev_private;
670 const intel_limit_t *limit;
671
672 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
673 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
674 LVDS_CLKB_POWER_UP)
675 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700676 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800677 else
678 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700679 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800680 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
681 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700682 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800683 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700684 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700685 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700686 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800687 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700688 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800689
690 return limit;
691}
692
Jesse Barnes79e53942008-11-07 14:24:08 -0800693static const intel_limit_t *intel_limit(struct drm_crtc *crtc)
694{
695 struct drm_device *dev = crtc->dev;
696 const intel_limit_t *limit;
697
Eric Anholtbad720f2009-10-22 16:11:14 -0700698 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500699 limit = intel_ironlake_limit(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800700 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800701 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500702 } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800703 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700704 limit = &intel_limits_i9xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800705 else
Keith Packarde4b36692009-06-05 19:22:17 -0700706 limit = &intel_limits_i9xx_sdvo;
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500707 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800708 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500709 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800710 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500711 limit = &intel_limits_pineview_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800712 } else {
713 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700714 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800715 else
Keith Packarde4b36692009-06-05 19:22:17 -0700716 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800717 }
718 return limit;
719}
720
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500721/* m1 is reserved as 0 in Pineview, n is a ring counter */
722static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800723{
Shaohua Li21778322009-02-23 15:19:16 +0800724 clock->m = clock->m2 + 2;
725 clock->p = clock->p1 * clock->p2;
726 clock->vco = refclk * clock->m / clock->n;
727 clock->dot = clock->vco / clock->p;
728}
729
730static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
731{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500732 if (IS_PINEVIEW(dev)) {
733 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800734 return;
735 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800736 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
737 clock->p = clock->p1 * clock->p2;
738 clock->vco = refclk * clock->m / (clock->n + 2);
739 clock->dot = clock->vco / clock->p;
740}
741
Jesse Barnes79e53942008-11-07 14:24:08 -0800742/**
743 * Returns whether any output on the specified pipe is of the specified type
744 */
745bool intel_pipe_has_type (struct drm_crtc *crtc, int type)
746{
747 struct drm_device *dev = crtc->dev;
748 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800749 struct drm_encoder *l_entry;
Jesse Barnes79e53942008-11-07 14:24:08 -0800750
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800751 list_for_each_entry(l_entry, &mode_config->encoder_list, head) {
752 if (l_entry && l_entry->crtc == crtc) {
753 struct intel_encoder *intel_encoder = enc_to_intel_encoder(l_entry);
Eric Anholt21d40d32010-03-25 11:11:14 -0700754 if (intel_encoder->type == type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800755 return true;
756 }
757 }
758 return false;
759}
760
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800761#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800762/**
763 * Returns whether the given set of divisors are valid for a given refclk with
764 * the given connectors.
765 */
766
767static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock)
768{
769 const intel_limit_t *limit = intel_limit (crtc);
Shaohua Li21778322009-02-23 15:19:16 +0800770 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800771
772 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
773 INTELPllInvalid ("p1 out of range\n");
774 if (clock->p < limit->p.min || limit->p.max < clock->p)
775 INTELPllInvalid ("p out of range\n");
776 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
777 INTELPllInvalid ("m2 out of range\n");
778 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
779 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500780 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800781 INTELPllInvalid ("m1 <= m2\n");
782 if (clock->m < limit->m.min || limit->m.max < clock->m)
783 INTELPllInvalid ("m out of range\n");
784 if (clock->n < limit->n.min || limit->n.max < clock->n)
785 INTELPllInvalid ("n out of range\n");
786 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
787 INTELPllInvalid ("vco out of range\n");
788 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
789 * connector, etc., rather than just a single range.
790 */
791 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
792 INTELPllInvalid ("dot out of range\n");
793
794 return true;
795}
796
Ma Lingd4906092009-03-18 20:13:27 +0800797static bool
798intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
799 int target, int refclk, intel_clock_t *best_clock)
800
Jesse Barnes79e53942008-11-07 14:24:08 -0800801{
802 struct drm_device *dev = crtc->dev;
803 struct drm_i915_private *dev_priv = dev->dev_private;
804 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800805 int err = target;
806
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200807 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800808 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800809 /*
810 * For LVDS, if the panel is on, just rely on its current
811 * settings for dual-channel. We haven't figured out how to
812 * reliably set up different single/dual channel state, if we
813 * even can.
814 */
815 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
816 LVDS_CLKB_POWER_UP)
817 clock.p2 = limit->p2.p2_fast;
818 else
819 clock.p2 = limit->p2.p2_slow;
820 } else {
821 if (target < limit->p2.dot_limit)
822 clock.p2 = limit->p2.p2_slow;
823 else
824 clock.p2 = limit->p2.p2_fast;
825 }
826
827 memset (best_clock, 0, sizeof (*best_clock));
828
Zhao Yakui42158662009-11-20 11:24:18 +0800829 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
830 clock.m1++) {
831 for (clock.m2 = limit->m2.min;
832 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500833 /* m1 is always 0 in Pineview */
834 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800835 break;
836 for (clock.n = limit->n.min;
837 clock.n <= limit->n.max; clock.n++) {
838 for (clock.p1 = limit->p1.min;
839 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800840 int this_err;
841
Shaohua Li21778322009-02-23 15:19:16 +0800842 intel_clock(dev, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800843
844 if (!intel_PLL_is_valid(crtc, &clock))
845 continue;
846
847 this_err = abs(clock.dot - target);
848 if (this_err < err) {
849 *best_clock = clock;
850 err = this_err;
851 }
852 }
853 }
854 }
855 }
856
857 return (err != target);
858}
859
Ma Lingd4906092009-03-18 20:13:27 +0800860static bool
861intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
862 int target, int refclk, intel_clock_t *best_clock)
863{
864 struct drm_device *dev = crtc->dev;
865 struct drm_i915_private *dev_priv = dev->dev_private;
866 intel_clock_t clock;
867 int max_n;
868 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400869 /* approximately equals target * 0.00585 */
870 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800871 found = false;
872
873 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800874 int lvds_reg;
875
Eric Anholtc619eed2010-01-28 16:45:52 -0800876 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800877 lvds_reg = PCH_LVDS;
878 else
879 lvds_reg = LVDS;
880 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800881 LVDS_CLKB_POWER_UP)
882 clock.p2 = limit->p2.p2_fast;
883 else
884 clock.p2 = limit->p2.p2_slow;
885 } else {
886 if (target < limit->p2.dot_limit)
887 clock.p2 = limit->p2.p2_slow;
888 else
889 clock.p2 = limit->p2.p2_fast;
890 }
891
892 memset(best_clock, 0, sizeof(*best_clock));
893 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200894 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800895 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200896 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800897 for (clock.m1 = limit->m1.max;
898 clock.m1 >= limit->m1.min; clock.m1--) {
899 for (clock.m2 = limit->m2.max;
900 clock.m2 >= limit->m2.min; clock.m2--) {
901 for (clock.p1 = limit->p1.max;
902 clock.p1 >= limit->p1.min; clock.p1--) {
903 int this_err;
904
Shaohua Li21778322009-02-23 15:19:16 +0800905 intel_clock(dev, refclk, &clock);
Ma Lingd4906092009-03-18 20:13:27 +0800906 if (!intel_PLL_is_valid(crtc, &clock))
907 continue;
908 this_err = abs(clock.dot - target) ;
909 if (this_err < err_most) {
910 *best_clock = clock;
911 err_most = this_err;
912 max_n = clock.n;
913 found = true;
914 }
915 }
916 }
917 }
918 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800919 return found;
920}
Ma Lingd4906092009-03-18 20:13:27 +0800921
Zhenyu Wang2c072452009-06-05 15:38:42 +0800922static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500923intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
924 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800925{
926 struct drm_device *dev = crtc->dev;
927 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800928
929 /* return directly when it is eDP */
930 if (HAS_eDP)
931 return true;
932
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800933 if (target < 200000) {
934 clock.n = 1;
935 clock.p1 = 2;
936 clock.p2 = 10;
937 clock.m1 = 12;
938 clock.m2 = 9;
939 } else {
940 clock.n = 2;
941 clock.p1 = 1;
942 clock.p2 = 10;
943 clock.m1 = 14;
944 clock.m2 = 8;
945 }
946 intel_clock(dev, refclk, &clock);
947 memcpy(best_clock, &clock, sizeof(intel_clock_t));
948 return true;
949}
950
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700951/* DisplayPort has only two frequencies, 162MHz and 270MHz */
952static bool
953intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
954 int target, int refclk, intel_clock_t *best_clock)
955{
956 intel_clock_t clock;
957 if (target < 200000) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700958 clock.p1 = 2;
959 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700960 clock.n = 2;
961 clock.m1 = 23;
962 clock.m2 = 8;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700963 } else {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700964 clock.p1 = 1;
965 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700966 clock.n = 1;
967 clock.m1 = 14;
968 clock.m2 = 2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700969 }
Keith Packardb3d25492009-06-24 23:09:15 -0700970 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
971 clock.p = (clock.p1 * clock.p2);
972 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
Jesse Barnesfe798b92009-10-20 07:55:28 +0900973 clock.vco = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700974 memcpy(best_clock, &clock, sizeof(intel_clock_t));
975 return true;
976}
977
Jesse Barnes79e53942008-11-07 14:24:08 -0800978void
979intel_wait_for_vblank(struct drm_device *dev)
980{
981 /* Wait for 20ms, i.e. one cycle at 50hz. */
Shaohua Li311089d2009-11-26 14:22:41 +0800982 msleep(20);
Jesse Barnes79e53942008-11-07 14:24:08 -0800983}
984
Jesse Barnes80824002009-09-10 15:28:06 -0700985/* Parameters have changed, update FBC info */
986static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
987{
988 struct drm_device *dev = crtc->dev;
989 struct drm_i915_private *dev_priv = dev->dev_private;
990 struct drm_framebuffer *fb = crtc->fb;
991 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +0100992 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -0700993 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
994 int plane, i;
995 u32 fbc_ctl, fbc_ctl2;
996
997 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
998
999 if (fb->pitch < dev_priv->cfb_pitch)
1000 dev_priv->cfb_pitch = fb->pitch;
1001
1002 /* FBC_CTL wants 64B units */
1003 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1004 dev_priv->cfb_fence = obj_priv->fence_reg;
1005 dev_priv->cfb_plane = intel_crtc->plane;
1006 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1007
1008 /* Clear old tags */
1009 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1010 I915_WRITE(FBC_TAG + (i * 4), 0);
1011
1012 /* Set it up... */
1013 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
1014 if (obj_priv->tiling_mode != I915_TILING_NONE)
1015 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1016 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1017 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1018
1019 /* enable it... */
1020 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001021 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001022 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001023 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1024 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
1025 if (obj_priv->tiling_mode != I915_TILING_NONE)
1026 fbc_ctl |= dev_priv->cfb_fence;
1027 I915_WRITE(FBC_CONTROL, fbc_ctl);
1028
Zhao Yakui28c97732009-10-09 11:39:41 +08001029 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Jesse Barnes80824002009-09-10 15:28:06 -07001030 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
1031}
1032
1033void i8xx_disable_fbc(struct drm_device *dev)
1034{
1035 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9517a922010-05-21 09:40:45 -07001036 unsigned long timeout = jiffies + msecs_to_jiffies(1);
Jesse Barnes80824002009-09-10 15:28:06 -07001037 u32 fbc_ctl;
1038
Jesse Barnesc1a1cdc2009-09-16 15:05:00 -07001039 if (!I915_HAS_FBC(dev))
1040 return;
1041
Jesse Barnes9517a922010-05-21 09:40:45 -07001042 if (!(I915_READ(FBC_CONTROL) & FBC_CTL_EN))
1043 return; /* Already off, just return */
1044
Jesse Barnes80824002009-09-10 15:28:06 -07001045 /* Disable compression */
1046 fbc_ctl = I915_READ(FBC_CONTROL);
1047 fbc_ctl &= ~FBC_CTL_EN;
1048 I915_WRITE(FBC_CONTROL, fbc_ctl);
1049
1050 /* Wait for compressing bit to clear */
Jesse Barnes9517a922010-05-21 09:40:45 -07001051 while (I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) {
1052 if (time_after(jiffies, timeout)) {
1053 DRM_DEBUG_DRIVER("FBC idle timed out\n");
1054 break;
1055 }
1056 ; /* do nothing */
1057 }
Jesse Barnes80824002009-09-10 15:28:06 -07001058
1059 intel_wait_for_vblank(dev);
1060
Zhao Yakui28c97732009-10-09 11:39:41 +08001061 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001062}
1063
Adam Jacksonee5382a2010-04-23 11:17:39 -04001064static bool i8xx_fbc_enabled(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001065{
Jesse Barnes80824002009-09-10 15:28:06 -07001066 struct drm_i915_private *dev_priv = dev->dev_private;
1067
1068 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1069}
1070
Jesse Barnes74dff282009-09-14 15:39:40 -07001071static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1072{
1073 struct drm_device *dev = crtc->dev;
1074 struct drm_i915_private *dev_priv = dev->dev_private;
1075 struct drm_framebuffer *fb = crtc->fb;
1076 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001077 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes74dff282009-09-14 15:39:40 -07001078 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1079 int plane = (intel_crtc->plane == 0 ? DPFC_CTL_PLANEA :
1080 DPFC_CTL_PLANEB);
1081 unsigned long stall_watermark = 200;
1082 u32 dpfc_ctl;
1083
1084 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1085 dev_priv->cfb_fence = obj_priv->fence_reg;
1086 dev_priv->cfb_plane = intel_crtc->plane;
1087
1088 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
1089 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1090 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1091 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1092 } else {
1093 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1094 }
1095
1096 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1097 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1098 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1099 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1100 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1101
1102 /* enable it... */
1103 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1104
Zhao Yakui28c97732009-10-09 11:39:41 +08001105 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001106}
1107
1108void g4x_disable_fbc(struct drm_device *dev)
1109{
1110 struct drm_i915_private *dev_priv = dev->dev_private;
1111 u32 dpfc_ctl;
1112
1113 /* Disable compression */
1114 dpfc_ctl = I915_READ(DPFC_CONTROL);
1115 dpfc_ctl &= ~DPFC_CTL_EN;
1116 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1117 intel_wait_for_vblank(dev);
1118
Zhao Yakui28c97732009-10-09 11:39:41 +08001119 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes74dff282009-09-14 15:39:40 -07001120}
1121
Adam Jacksonee5382a2010-04-23 11:17:39 -04001122static bool g4x_fbc_enabled(struct drm_device *dev)
Jesse Barnes74dff282009-09-14 15:39:40 -07001123{
Jesse Barnes74dff282009-09-14 15:39:40 -07001124 struct drm_i915_private *dev_priv = dev->dev_private;
1125
1126 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1127}
1128
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001129static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1130{
1131 struct drm_device *dev = crtc->dev;
1132 struct drm_i915_private *dev_priv = dev->dev_private;
1133 struct drm_framebuffer *fb = crtc->fb;
1134 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
1135 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
1136 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1137 int plane = (intel_crtc->plane == 0) ? DPFC_CTL_PLANEA :
1138 DPFC_CTL_PLANEB;
1139 unsigned long stall_watermark = 200;
1140 u32 dpfc_ctl;
1141
1142 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1143 dev_priv->cfb_fence = obj_priv->fence_reg;
1144 dev_priv->cfb_plane = intel_crtc->plane;
1145
1146 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
1147 dpfc_ctl &= DPFC_RESERVED;
1148 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
1149 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1150 dpfc_ctl |= (DPFC_CTL_FENCE_EN | dev_priv->cfb_fence);
1151 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
1152 } else {
1153 I915_WRITE(ILK_DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1154 }
1155
1156 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
1157 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1158 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1159 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1160 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
1161 I915_WRITE(ILK_FBC_RT_BASE, obj_priv->gtt_offset | ILK_FBC_RT_VALID);
1162 /* enable it... */
1163 I915_WRITE(ILK_DPFC_CONTROL, I915_READ(ILK_DPFC_CONTROL) |
1164 DPFC_CTL_EN);
1165
1166 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
1167}
1168
1169void ironlake_disable_fbc(struct drm_device *dev)
1170{
1171 struct drm_i915_private *dev_priv = dev->dev_private;
1172 u32 dpfc_ctl;
1173
1174 /* Disable compression */
1175 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
1176 dpfc_ctl &= ~DPFC_CTL_EN;
1177 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
1178 intel_wait_for_vblank(dev);
1179
1180 DRM_DEBUG_KMS("disabled FBC\n");
1181}
1182
1183static bool ironlake_fbc_enabled(struct drm_device *dev)
1184{
1185 struct drm_i915_private *dev_priv = dev->dev_private;
1186
1187 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
1188}
1189
Adam Jacksonee5382a2010-04-23 11:17:39 -04001190bool intel_fbc_enabled(struct drm_device *dev)
1191{
1192 struct drm_i915_private *dev_priv = dev->dev_private;
1193
1194 if (!dev_priv->display.fbc_enabled)
1195 return false;
1196
1197 return dev_priv->display.fbc_enabled(dev);
1198}
1199
1200void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1201{
1202 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1203
1204 if (!dev_priv->display.enable_fbc)
1205 return;
1206
1207 dev_priv->display.enable_fbc(crtc, interval);
1208}
1209
1210void intel_disable_fbc(struct drm_device *dev)
1211{
1212 struct drm_i915_private *dev_priv = dev->dev_private;
1213
1214 if (!dev_priv->display.disable_fbc)
1215 return;
1216
1217 dev_priv->display.disable_fbc(dev);
1218}
1219
Jesse Barnes80824002009-09-10 15:28:06 -07001220/**
1221 * intel_update_fbc - enable/disable FBC as needed
1222 * @crtc: CRTC to point the compressor at
1223 * @mode: mode in use
1224 *
1225 * Set up the framebuffer compression hardware at mode set time. We
1226 * enable it if possible:
1227 * - plane A only (on pre-965)
1228 * - no pixel mulitply/line duplication
1229 * - no alpha buffer discard
1230 * - no dual wide
1231 * - framebuffer <= 2048 in width, 1536 in height
1232 *
1233 * We can't assume that any compression will take place (worst case),
1234 * so the compressed buffer has to be the same size as the uncompressed
1235 * one. It also must reside (along with the line length buffer) in
1236 * stolen memory.
1237 *
1238 * We need to enable/disable FBC on a global basis.
1239 */
1240static void intel_update_fbc(struct drm_crtc *crtc,
1241 struct drm_display_mode *mode)
1242{
1243 struct drm_device *dev = crtc->dev;
1244 struct drm_i915_private *dev_priv = dev->dev_private;
1245 struct drm_framebuffer *fb = crtc->fb;
1246 struct intel_framebuffer *intel_fb;
1247 struct drm_i915_gem_object *obj_priv;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001248 struct drm_crtc *tmp_crtc;
Jesse Barnes80824002009-09-10 15:28:06 -07001249 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1250 int plane = intel_crtc->plane;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001251 int crtcs_enabled = 0;
1252
1253 DRM_DEBUG_KMS("\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001254
1255 if (!i915_powersave)
1256 return;
1257
Adam Jacksonee5382a2010-04-23 11:17:39 -04001258 if (!I915_HAS_FBC(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07001259 return;
1260
Jesse Barnes80824002009-09-10 15:28:06 -07001261 if (!crtc->fb)
1262 return;
1263
1264 intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001265 obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -07001266
1267 /*
1268 * If FBC is already on, we just have to verify that we can
1269 * keep it that way...
1270 * Need to disable if:
Jesse Barnes9c928d12010-07-23 15:20:00 -07001271 * - more than one pipe is active
Jesse Barnes80824002009-09-10 15:28:06 -07001272 * - changing FBC params (stride, fence, mode)
1273 * - new fb is too large to fit in compressed buffer
1274 * - going to an unsupported config (interlace, pixel multiply, etc.)
1275 */
Jesse Barnes9c928d12010-07-23 15:20:00 -07001276 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
1277 if (tmp_crtc->enabled)
1278 crtcs_enabled++;
1279 }
1280 DRM_DEBUG_KMS("%d pipes active\n", crtcs_enabled);
1281 if (crtcs_enabled > 1) {
1282 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
1283 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
1284 goto out_disable;
1285 }
Jesse Barnes80824002009-09-10 15:28:06 -07001286 if (intel_fb->obj->size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001287 DRM_DEBUG_KMS("framebuffer too large, disabling "
1288 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001289 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001290 goto out_disable;
1291 }
1292 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
1293 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001294 DRM_DEBUG_KMS("mode incompatible with compression, "
1295 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001296 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001297 goto out_disable;
1298 }
1299 if ((mode->hdisplay > 2048) ||
1300 (mode->vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001301 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001302 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001303 goto out_disable;
1304 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001305 if ((IS_I915GM(dev) || IS_I945GM(dev)) && plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001306 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001307 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001308 goto out_disable;
1309 }
1310 if (obj_priv->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001311 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001312 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001313 goto out_disable;
1314 }
1315
Adam Jacksonee5382a2010-04-23 11:17:39 -04001316 if (intel_fbc_enabled(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001317 /* We can re-enable it in this case, but need to update pitch */
Adam Jacksonee5382a2010-04-23 11:17:39 -04001318 if ((fb->pitch > dev_priv->cfb_pitch) ||
1319 (obj_priv->fence_reg != dev_priv->cfb_fence) ||
1320 (plane != dev_priv->cfb_plane))
1321 intel_disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001322 }
1323
Adam Jacksonee5382a2010-04-23 11:17:39 -04001324 /* Now try to turn it back on if possible */
1325 if (!intel_fbc_enabled(dev))
1326 intel_enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001327
1328 return;
1329
1330out_disable:
Jesse Barnes80824002009-09-10 15:28:06 -07001331 /* Multiple disables should be harmless */
Chris Wilsona9394062010-05-27 13:18:16 +01001332 if (intel_fbc_enabled(dev)) {
1333 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Adam Jacksonee5382a2010-04-23 11:17:39 -04001334 intel_disable_fbc(dev);
Chris Wilsona9394062010-05-27 13:18:16 +01001335 }
Jesse Barnes80824002009-09-10 15:28:06 -07001336}
1337
Chris Wilson127bd2a2010-07-23 23:32:05 +01001338int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001339intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj)
1340{
Daniel Vetter23010e42010-03-08 13:35:02 +01001341 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001342 u32 alignment;
1343 int ret;
1344
1345 switch (obj_priv->tiling_mode) {
1346 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001347 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1348 alignment = 128 * 1024;
1349 else if (IS_I965G(dev))
1350 alignment = 4 * 1024;
1351 else
1352 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001353 break;
1354 case I915_TILING_X:
1355 /* pin() will align the object as required by fence */
1356 alignment = 0;
1357 break;
1358 case I915_TILING_Y:
1359 /* FIXME: Is this true? */
1360 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1361 return -EINVAL;
1362 default:
1363 BUG();
1364 }
1365
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001366 ret = i915_gem_object_pin(obj, alignment);
1367 if (ret != 0)
1368 return ret;
1369
1370 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1371 * fence, whereas 965+ only requires a fence if using
1372 * framebuffer compression. For simplicity, we always install
1373 * a fence as the cost is not that onerous.
1374 */
1375 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
1376 obj_priv->tiling_mode != I915_TILING_NONE) {
1377 ret = i915_gem_object_get_fence_reg(obj);
1378 if (ret != 0) {
1379 i915_gem_object_unpin(obj);
1380 return ret;
1381 }
1382 }
1383
1384 return 0;
1385}
1386
1387static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001388intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1389 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001390{
1391 struct drm_device *dev = crtc->dev;
1392 struct drm_i915_private *dev_priv = dev->dev_private;
1393 struct drm_i915_master_private *master_priv;
1394 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1395 struct intel_framebuffer *intel_fb;
1396 struct drm_i915_gem_object *obj_priv;
1397 struct drm_gem_object *obj;
1398 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001399 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08001400 unsigned long Start, Offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001401 int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR);
1402 int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF);
1403 int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE;
1404 int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF);
1405 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001406 u32 dspcntr;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001407 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001408
1409 /* no fb bound */
1410 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001411 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001412 return 0;
1413 }
1414
Jesse Barnes80824002009-09-10 15:28:06 -07001415 switch (plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001416 case 0:
1417 case 1:
1418 break;
1419 default:
Jesse Barnes80824002009-09-10 15:28:06 -07001420 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001421 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001422 }
1423
1424 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08001425 obj = intel_fb->obj;
Daniel Vetter23010e42010-03-08 13:35:02 +01001426 obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08001427
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001428 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001429 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001430 if (ret != 0) {
1431 mutex_unlock(&dev->struct_mutex);
1432 return ret;
1433 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001434
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08001435 ret = i915_gem_object_set_to_display_plane(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001436 if (ret != 0) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001437 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001438 mutex_unlock(&dev->struct_mutex);
1439 return ret;
1440 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001441
1442 dspcntr = I915_READ(dspcntr_reg);
Jesse Barnes712531b2009-01-09 13:56:14 -08001443 /* Mask out pixel format bits in case we change it */
1444 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Jesse Barnes79e53942008-11-07 14:24:08 -08001445 switch (crtc->fb->bits_per_pixel) {
1446 case 8:
1447 dspcntr |= DISPPLANE_8BPP;
1448 break;
1449 case 16:
1450 if (crtc->fb->depth == 15)
1451 dspcntr |= DISPPLANE_15_16BPP;
1452 else
1453 dspcntr |= DISPPLANE_16BPP;
1454 break;
1455 case 24:
1456 case 32:
Kristian Høgsberga4f45cf2009-10-19 14:35:30 -04001457 if (crtc->fb->depth == 30)
1458 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1459 else
1460 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
Jesse Barnes79e53942008-11-07 14:24:08 -08001461 break;
1462 default:
1463 DRM_ERROR("Unknown color depth\n");
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001464 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001465 mutex_unlock(&dev->struct_mutex);
1466 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001467 }
Jesse Barnesf5448472009-04-14 14:17:47 -07001468 if (IS_I965G(dev)) {
1469 if (obj_priv->tiling_mode != I915_TILING_NONE)
1470 dspcntr |= DISPPLANE_TILED;
1471 else
1472 dspcntr &= ~DISPPLANE_TILED;
1473 }
1474
Eric Anholtbad720f2009-10-22 16:11:14 -07001475 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang553bd142009-09-02 10:57:52 +08001476 /* must disable */
1477 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1478
Jesse Barnes79e53942008-11-07 14:24:08 -08001479 I915_WRITE(dspcntr_reg, dspcntr);
1480
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001481 Start = obj_priv->gtt_offset;
1482 Offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
1483
Chris Wilsona7faf322010-05-27 13:18:17 +01001484 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
1485 Start, Offset, x, y, crtc->fb->pitch);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001486 I915_WRITE(dspstride, crtc->fb->pitch);
Jesse Barnes79e53942008-11-07 14:24:08 -08001487 if (IS_I965G(dev)) {
1488 I915_WRITE(dspbase, Offset);
1489 I915_READ(dspbase);
1490 I915_WRITE(dspsurf, Start);
1491 I915_READ(dspsurf);
Jesse Barnesf5448472009-04-14 14:17:47 -07001492 I915_WRITE(dsptileoff, (y << 16) | x);
Jesse Barnes79e53942008-11-07 14:24:08 -08001493 } else {
1494 I915_WRITE(dspbase, Start + Offset);
1495 I915_READ(dspbase);
1496 }
1497
Jesse Barnes74dff282009-09-14 15:39:40 -07001498 if ((IS_I965G(dev) || plane == 0))
Jesse Barnesedb81952009-09-17 17:06:47 -07001499 intel_update_fbc(crtc, &crtc->mode);
1500
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001501 intel_wait_for_vblank(dev);
1502
1503 if (old_fb) {
1504 intel_fb = to_intel_framebuffer(old_fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001505 obj_priv = to_intel_bo(intel_fb->obj);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001506 i915_gem_object_unpin(intel_fb->obj);
1507 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001508 intel_increase_pllclock(crtc, true);
1509
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001510 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001511
1512 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001513 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001514
1515 master_priv = dev->primary->master->driver_priv;
1516 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001517 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001518
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001519 if (pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001520 master_priv->sarea_priv->pipeB_x = x;
1521 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001522 } else {
1523 master_priv->sarea_priv->pipeA_x = x;
1524 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001525 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001526
1527 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001528}
1529
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001530/* Disable the VGA plane that we never use */
1531static void i915_disable_vga (struct drm_device *dev)
1532{
1533 struct drm_i915_private *dev_priv = dev->dev_private;
1534 u8 sr1;
1535 u32 vga_reg;
1536
Eric Anholtbad720f2009-10-22 16:11:14 -07001537 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001538 vga_reg = CPU_VGACNTRL;
1539 else
1540 vga_reg = VGACNTRL;
1541
1542 if (I915_READ(vga_reg) & VGA_DISP_DISABLE)
1543 return;
1544
1545 I915_WRITE8(VGA_SR_INDEX, 1);
1546 sr1 = I915_READ8(VGA_SR_DATA);
1547 I915_WRITE8(VGA_SR_DATA, sr1 | (1 << 5));
1548 udelay(100);
1549
1550 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
1551}
1552
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001553static void ironlake_disable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001554{
1555 struct drm_device *dev = crtc->dev;
1556 struct drm_i915_private *dev_priv = dev->dev_private;
1557 u32 dpa_ctl;
1558
Zhao Yakui28c97732009-10-09 11:39:41 +08001559 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001560 dpa_ctl = I915_READ(DP_A);
1561 dpa_ctl &= ~DP_PLL_ENABLE;
1562 I915_WRITE(DP_A, dpa_ctl);
1563}
1564
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001565static void ironlake_enable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001566{
1567 struct drm_device *dev = crtc->dev;
1568 struct drm_i915_private *dev_priv = dev->dev_private;
1569 u32 dpa_ctl;
1570
1571 dpa_ctl = I915_READ(DP_A);
1572 dpa_ctl |= DP_PLL_ENABLE;
1573 I915_WRITE(DP_A, dpa_ctl);
1574 udelay(200);
1575}
1576
1577
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001578static void ironlake_set_pll_edp (struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001579{
1580 struct drm_device *dev = crtc->dev;
1581 struct drm_i915_private *dev_priv = dev->dev_private;
1582 u32 dpa_ctl;
1583
Zhao Yakui28c97732009-10-09 11:39:41 +08001584 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001585 dpa_ctl = I915_READ(DP_A);
1586 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1587
1588 if (clock < 200000) {
1589 u32 temp;
1590 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1591 /* workaround for 160Mhz:
1592 1) program 0x4600c bits 15:0 = 0x8124
1593 2) program 0x46010 bit 0 = 1
1594 3) program 0x46034 bit 24 = 1
1595 4) program 0x64000 bit 14 = 1
1596 */
1597 temp = I915_READ(0x4600c);
1598 temp &= 0xffff0000;
1599 I915_WRITE(0x4600c, temp | 0x8124);
1600
1601 temp = I915_READ(0x46010);
1602 I915_WRITE(0x46010, temp | 1);
1603
1604 temp = I915_READ(0x46034);
1605 I915_WRITE(0x46034, temp | (1 << 24));
1606 } else {
1607 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1608 }
1609 I915_WRITE(DP_A, dpa_ctl);
1610
1611 udelay(500);
1612}
1613
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001614/* The FDI link training functions for ILK/Ibexpeak. */
1615static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1616{
1617 struct drm_device *dev = crtc->dev;
1618 struct drm_i915_private *dev_priv = dev->dev_private;
1619 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1620 int pipe = intel_crtc->pipe;
1621 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1622 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1623 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1624 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1625 u32 temp, tries = 0;
1626
Adam Jacksone1a44742010-06-25 15:32:14 -04001627 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1628 for train result */
1629 temp = I915_READ(fdi_rx_imr_reg);
1630 temp &= ~FDI_RX_SYMBOL_LOCK;
1631 temp &= ~FDI_RX_BIT_LOCK;
1632 I915_WRITE(fdi_rx_imr_reg, temp);
1633 I915_READ(fdi_rx_imr_reg);
1634 udelay(150);
1635
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001636 /* enable CPU FDI TX and PCH FDI RX */
1637 temp = I915_READ(fdi_tx_reg);
1638 temp |= FDI_TX_ENABLE;
Adam Jackson77ffb592010-04-12 11:38:44 -04001639 temp &= ~(7 << 19);
1640 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001641 temp &= ~FDI_LINK_TRAIN_NONE;
1642 temp |= FDI_LINK_TRAIN_PATTERN_1;
1643 I915_WRITE(fdi_tx_reg, temp);
1644 I915_READ(fdi_tx_reg);
1645
1646 temp = I915_READ(fdi_rx_reg);
1647 temp &= ~FDI_LINK_TRAIN_NONE;
1648 temp |= FDI_LINK_TRAIN_PATTERN_1;
1649 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1650 I915_READ(fdi_rx_reg);
1651 udelay(150);
1652
Adam Jacksone1a44742010-06-25 15:32:14 -04001653 for (tries = 0; tries < 5; tries++) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001654 temp = I915_READ(fdi_rx_iir_reg);
1655 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1656
1657 if ((temp & FDI_RX_BIT_LOCK)) {
1658 DRM_DEBUG_KMS("FDI train 1 done.\n");
1659 I915_WRITE(fdi_rx_iir_reg,
1660 temp | FDI_RX_BIT_LOCK);
1661 break;
1662 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001663 }
Adam Jacksone1a44742010-06-25 15:32:14 -04001664 if (tries == 5)
1665 DRM_DEBUG_KMS("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001666
1667 /* Train 2 */
1668 temp = I915_READ(fdi_tx_reg);
1669 temp &= ~FDI_LINK_TRAIN_NONE;
1670 temp |= FDI_LINK_TRAIN_PATTERN_2;
1671 I915_WRITE(fdi_tx_reg, temp);
1672
1673 temp = I915_READ(fdi_rx_reg);
1674 temp &= ~FDI_LINK_TRAIN_NONE;
1675 temp |= FDI_LINK_TRAIN_PATTERN_2;
1676 I915_WRITE(fdi_rx_reg, temp);
1677 udelay(150);
1678
1679 tries = 0;
1680
Adam Jacksone1a44742010-06-25 15:32:14 -04001681 for (tries = 0; tries < 5; tries++) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001682 temp = I915_READ(fdi_rx_iir_reg);
1683 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1684
1685 if (temp & FDI_RX_SYMBOL_LOCK) {
1686 I915_WRITE(fdi_rx_iir_reg,
1687 temp | FDI_RX_SYMBOL_LOCK);
1688 DRM_DEBUG_KMS("FDI train 2 done.\n");
1689 break;
1690 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001691 }
Adam Jacksone1a44742010-06-25 15:32:14 -04001692 if (tries == 5)
1693 DRM_DEBUG_KMS("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001694
1695 DRM_DEBUG_KMS("FDI train done\n");
1696}
1697
1698static int snb_b_fdi_train_param [] = {
1699 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1700 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1701 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1702 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1703};
1704
1705/* The FDI link training functions for SNB/Cougarpoint. */
1706static void gen6_fdi_link_train(struct drm_crtc *crtc)
1707{
1708 struct drm_device *dev = crtc->dev;
1709 struct drm_i915_private *dev_priv = dev->dev_private;
1710 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1711 int pipe = intel_crtc->pipe;
1712 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1713 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1714 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1715 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1716 u32 temp, i;
1717
Adam Jacksone1a44742010-06-25 15:32:14 -04001718 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1719 for train result */
1720 temp = I915_READ(fdi_rx_imr_reg);
1721 temp &= ~FDI_RX_SYMBOL_LOCK;
1722 temp &= ~FDI_RX_BIT_LOCK;
1723 I915_WRITE(fdi_rx_imr_reg, temp);
1724 I915_READ(fdi_rx_imr_reg);
1725 udelay(150);
1726
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001727 /* enable CPU FDI TX and PCH FDI RX */
1728 temp = I915_READ(fdi_tx_reg);
1729 temp |= FDI_TX_ENABLE;
Adam Jackson77ffb592010-04-12 11:38:44 -04001730 temp &= ~(7 << 19);
1731 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001732 temp &= ~FDI_LINK_TRAIN_NONE;
1733 temp |= FDI_LINK_TRAIN_PATTERN_1;
1734 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1735 /* SNB-B */
1736 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1737 I915_WRITE(fdi_tx_reg, temp);
1738 I915_READ(fdi_tx_reg);
1739
1740 temp = I915_READ(fdi_rx_reg);
1741 if (HAS_PCH_CPT(dev)) {
1742 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1743 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1744 } else {
1745 temp &= ~FDI_LINK_TRAIN_NONE;
1746 temp |= FDI_LINK_TRAIN_PATTERN_1;
1747 }
1748 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1749 I915_READ(fdi_rx_reg);
1750 udelay(150);
1751
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001752 for (i = 0; i < 4; i++ ) {
1753 temp = I915_READ(fdi_tx_reg);
1754 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1755 temp |= snb_b_fdi_train_param[i];
1756 I915_WRITE(fdi_tx_reg, temp);
1757 udelay(500);
1758
1759 temp = I915_READ(fdi_rx_iir_reg);
1760 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1761
1762 if (temp & FDI_RX_BIT_LOCK) {
1763 I915_WRITE(fdi_rx_iir_reg,
1764 temp | FDI_RX_BIT_LOCK);
1765 DRM_DEBUG_KMS("FDI train 1 done.\n");
1766 break;
1767 }
1768 }
1769 if (i == 4)
1770 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1771
1772 /* Train 2 */
1773 temp = I915_READ(fdi_tx_reg);
1774 temp &= ~FDI_LINK_TRAIN_NONE;
1775 temp |= FDI_LINK_TRAIN_PATTERN_2;
1776 if (IS_GEN6(dev)) {
1777 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1778 /* SNB-B */
1779 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1780 }
1781 I915_WRITE(fdi_tx_reg, temp);
1782
1783 temp = I915_READ(fdi_rx_reg);
1784 if (HAS_PCH_CPT(dev)) {
1785 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1786 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1787 } else {
1788 temp &= ~FDI_LINK_TRAIN_NONE;
1789 temp |= FDI_LINK_TRAIN_PATTERN_2;
1790 }
1791 I915_WRITE(fdi_rx_reg, temp);
1792 udelay(150);
1793
1794 for (i = 0; i < 4; i++ ) {
1795 temp = I915_READ(fdi_tx_reg);
1796 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1797 temp |= snb_b_fdi_train_param[i];
1798 I915_WRITE(fdi_tx_reg, temp);
1799 udelay(500);
1800
1801 temp = I915_READ(fdi_rx_iir_reg);
1802 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1803
1804 if (temp & FDI_RX_SYMBOL_LOCK) {
1805 I915_WRITE(fdi_rx_iir_reg,
1806 temp | FDI_RX_SYMBOL_LOCK);
1807 DRM_DEBUG_KMS("FDI train 2 done.\n");
1808 break;
1809 }
1810 }
1811 if (i == 4)
1812 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1813
1814 DRM_DEBUG_KMS("FDI train done.\n");
1815}
1816
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001817static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08001818{
1819 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001820 struct drm_i915_private *dev_priv = dev->dev_private;
1821 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1822 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001823 int plane = intel_crtc->plane;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001824 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
1825 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1826 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1827 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
1828 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1829 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001830 int transconf_reg = (pipe == 0) ? TRANSACONF : TRANSBCONF;
1831 int pf_ctl_reg = (pipe == 0) ? PFA_CTL_1 : PFB_CTL_1;
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001832 int pf_win_size = (pipe == 0) ? PFA_WIN_SZ : PFB_WIN_SZ;
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001833 int pf_win_pos = (pipe == 0) ? PFA_WIN_POS : PFB_WIN_POS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001834 int cpu_htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
1835 int cpu_hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
1836 int cpu_hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
1837 int cpu_vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
1838 int cpu_vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
1839 int cpu_vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
1840 int trans_htot_reg = (pipe == 0) ? TRANS_HTOTAL_A : TRANS_HTOTAL_B;
1841 int trans_hblank_reg = (pipe == 0) ? TRANS_HBLANK_A : TRANS_HBLANK_B;
1842 int trans_hsync_reg = (pipe == 0) ? TRANS_HSYNC_A : TRANS_HSYNC_B;
1843 int trans_vtot_reg = (pipe == 0) ? TRANS_VTOTAL_A : TRANS_VTOTAL_B;
1844 int trans_vblank_reg = (pipe == 0) ? TRANS_VBLANK_A : TRANS_VBLANK_B;
1845 int trans_vsync_reg = (pipe == 0) ? TRANS_VSYNC_A : TRANS_VSYNC_B;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001846 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001847 u32 temp;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001848 int n;
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001849 u32 pipe_bpc;
1850
1851 temp = I915_READ(pipeconf_reg);
1852 pipe_bpc = temp & PIPE_BPC_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001853
1854 /* XXX: When our outputs are all unaware of DPMS modes other than off
1855 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
1856 */
1857 switch (mode) {
1858 case DRM_MODE_DPMS_ON:
1859 case DRM_MODE_DPMS_STANDBY:
1860 case DRM_MODE_DPMS_SUSPEND:
Zhao Yakui28c97732009-10-09 11:39:41 +08001861 DRM_DEBUG_KMS("crtc %d dpms on\n", pipe);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001862
1863 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1864 temp = I915_READ(PCH_LVDS);
1865 if ((temp & LVDS_PORT_EN) == 0) {
1866 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
1867 POSTING_READ(PCH_LVDS);
1868 }
1869 }
1870
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001871 if (HAS_eDP) {
1872 /* enable eDP PLL */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001873 ironlake_enable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001874 } else {
Zhenyu Wang2c072452009-06-05 15:38:42 +08001875
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001876 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
1877 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001878 /*
1879 * make the BPC in FDI Rx be consistent with that in
1880 * pipeconf reg.
1881 */
1882 temp &= ~(0x7 << 16);
1883 temp |= (pipe_bpc << 11);
Adam Jackson77ffb592010-04-12 11:38:44 -04001884 temp &= ~(7 << 19);
1885 temp |= (intel_crtc->fdi_lanes - 1) << 19;
1886 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001887 I915_READ(fdi_rx_reg);
1888 udelay(200);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001889
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001890 /* Switch from Rawclk to PCDclk */
1891 temp = I915_READ(fdi_rx_reg);
1892 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001893 I915_READ(fdi_rx_reg);
1894 udelay(200);
1895
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001896 /* Enable CPU FDI TX PLL, always on for Ironlake */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001897 temp = I915_READ(fdi_tx_reg);
1898 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
1899 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
1900 I915_READ(fdi_tx_reg);
1901 udelay(100);
1902 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001903 }
1904
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001905 /* Enable panel fitting for LVDS */
Zhao Yakui1fc79472010-07-19 09:43:12 +01001906 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)
1907 || HAS_eDP || intel_pch_has_edp(crtc)) {
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001908 temp = I915_READ(pf_ctl_reg);
Zhenyu Wangb1f60b72009-10-19 15:43:49 +08001909 I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3);
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001910
1911 /* currently full aspect */
1912 I915_WRITE(pf_win_pos, 0);
1913
1914 I915_WRITE(pf_win_size,
1915 (dev_priv->panel_fixed_mode->hdisplay << 16) |
1916 (dev_priv->panel_fixed_mode->vdisplay));
1917 }
1918
Zhenyu Wang2c072452009-06-05 15:38:42 +08001919 /* Enable CPU pipe */
1920 temp = I915_READ(pipeconf_reg);
1921 if ((temp & PIPEACONF_ENABLE) == 0) {
1922 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
1923 I915_READ(pipeconf_reg);
1924 udelay(100);
1925 }
1926
1927 /* configure and enable CPU plane */
1928 temp = I915_READ(dspcntr_reg);
1929 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
1930 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
1931 /* Flush the plane changes */
1932 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1933 }
1934
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001935 if (!HAS_eDP) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001936 /* For PCH output, training FDI link */
1937 if (IS_GEN6(dev))
1938 gen6_fdi_link_train(crtc);
1939 else
1940 ironlake_fdi_link_train(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001941
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001942 /* enable PCH DPLL */
1943 temp = I915_READ(pch_dpll_reg);
1944 if ((temp & DPLL_VCO_ENABLE) == 0) {
1945 I915_WRITE(pch_dpll_reg, temp | DPLL_VCO_ENABLE);
1946 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001947 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001948 udelay(200);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001949
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001950 if (HAS_PCH_CPT(dev)) {
1951 /* Be sure PCH DPLL SEL is set */
1952 temp = I915_READ(PCH_DPLL_SEL);
1953 if (trans_dpll_sel == 0 &&
1954 (temp & TRANSA_DPLL_ENABLE) == 0)
1955 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
1956 else if (trans_dpll_sel == 1 &&
1957 (temp & TRANSB_DPLL_ENABLE) == 0)
1958 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
1959 I915_WRITE(PCH_DPLL_SEL, temp);
1960 I915_READ(PCH_DPLL_SEL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001961 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001962
1963 /* set transcoder timing */
1964 I915_WRITE(trans_htot_reg, I915_READ(cpu_htot_reg));
1965 I915_WRITE(trans_hblank_reg, I915_READ(cpu_hblank_reg));
1966 I915_WRITE(trans_hsync_reg, I915_READ(cpu_hsync_reg));
1967
1968 I915_WRITE(trans_vtot_reg, I915_READ(cpu_vtot_reg));
1969 I915_WRITE(trans_vblank_reg, I915_READ(cpu_vblank_reg));
1970 I915_WRITE(trans_vsync_reg, I915_READ(cpu_vsync_reg));
1971
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001972 /* enable normal train */
1973 temp = I915_READ(fdi_tx_reg);
1974 temp &= ~FDI_LINK_TRAIN_NONE;
1975 I915_WRITE(fdi_tx_reg, temp | FDI_LINK_TRAIN_NONE |
1976 FDI_TX_ENHANCE_FRAME_ENABLE);
1977 I915_READ(fdi_tx_reg);
1978
1979 temp = I915_READ(fdi_rx_reg);
1980 if (HAS_PCH_CPT(dev)) {
1981 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1982 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
1983 } else {
1984 temp &= ~FDI_LINK_TRAIN_NONE;
1985 temp |= FDI_LINK_TRAIN_NONE;
1986 }
1987 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
1988 I915_READ(fdi_rx_reg);
1989
1990 /* wait one idle pattern time */
1991 udelay(100);
1992
Zhenyu Wange3421a12010-04-08 09:43:27 +08001993 /* For PCH DP, enable TRANS_DP_CTL */
1994 if (HAS_PCH_CPT(dev) &&
1995 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
1996 int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B;
1997 int reg;
1998
1999 reg = I915_READ(trans_dp_ctl);
2000 reg &= ~TRANS_DP_PORT_SEL_MASK;
2001 reg = TRANS_DP_OUTPUT_ENABLE |
Adam Jacksond6d95262010-07-16 14:46:30 -04002002 TRANS_DP_ENH_FRAMING;
2003
2004 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
2005 reg |= TRANS_DP_HSYNC_ACTIVE_HIGH;
2006 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
2007 reg |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Zhenyu Wange3421a12010-04-08 09:43:27 +08002008
2009 switch (intel_trans_dp_port_sel(crtc)) {
2010 case PCH_DP_B:
2011 reg |= TRANS_DP_PORT_SEL_B;
2012 break;
2013 case PCH_DP_C:
2014 reg |= TRANS_DP_PORT_SEL_C;
2015 break;
2016 case PCH_DP_D:
2017 reg |= TRANS_DP_PORT_SEL_D;
2018 break;
2019 default:
2020 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
2021 reg |= TRANS_DP_PORT_SEL_B;
2022 break;
2023 }
2024
2025 I915_WRITE(trans_dp_ctl, reg);
2026 POSTING_READ(trans_dp_ctl);
2027 }
2028
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002029 /* enable PCH transcoder */
2030 temp = I915_READ(transconf_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002031 /*
2032 * make the BPC in transcoder be consistent with
2033 * that in pipeconf reg.
2034 */
2035 temp &= ~PIPE_BPC_MASK;
2036 temp |= pipe_bpc;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002037 I915_WRITE(transconf_reg, temp | TRANS_ENABLE);
2038 I915_READ(transconf_reg);
2039
2040 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) == 0)
2041 ;
2042
Zhenyu Wang2c072452009-06-05 15:38:42 +08002043 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002044
2045 intel_crtc_load_lut(crtc);
2046
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002047 intel_update_fbc(crtc, &crtc->mode);
2048
Zhenyu Wang2c072452009-06-05 15:38:42 +08002049 break;
2050 case DRM_MODE_DPMS_OFF:
Zhao Yakui28c97732009-10-09 11:39:41 +08002051 DRM_DEBUG_KMS("crtc %d dpms off\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002052
Li Pengc062df62010-01-23 00:12:58 +08002053 drm_vblank_off(dev, pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002054 /* Disable display plane */
2055 temp = I915_READ(dspcntr_reg);
2056 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
2057 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
2058 /* Flush the plane changes */
2059 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2060 I915_READ(dspbase_reg);
2061 }
2062
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002063 if (dev_priv->cfb_plane == plane &&
2064 dev_priv->display.disable_fbc)
2065 dev_priv->display.disable_fbc(dev);
2066
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002067 i915_disable_vga(dev);
2068
Zhenyu Wang2c072452009-06-05 15:38:42 +08002069 /* disable cpu pipe, disable after all planes disabled */
2070 temp = I915_READ(pipeconf_reg);
2071 if ((temp & PIPEACONF_ENABLE) != 0) {
2072 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
2073 I915_READ(pipeconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002074 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002075 /* wait for cpu pipe off, pipe state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002076 while ((I915_READ(pipeconf_reg) & I965_PIPECONF_ACTIVE) != 0) {
2077 n++;
2078 if (n < 60) {
2079 udelay(500);
2080 continue;
2081 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002082 DRM_DEBUG_KMS("pipe %d off delay\n",
2083 pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002084 break;
2085 }
2086 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002087 } else
Zhao Yakui28c97732009-10-09 11:39:41 +08002088 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002089
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002090 udelay(100);
2091
2092 /* Disable PF */
2093 temp = I915_READ(pf_ctl_reg);
2094 if ((temp & PF_ENABLE) != 0) {
2095 I915_WRITE(pf_ctl_reg, temp & ~PF_ENABLE);
2096 I915_READ(pf_ctl_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002097 }
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002098 I915_WRITE(pf_win_size, 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002099 POSTING_READ(pf_win_size);
2100
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002101
Zhenyu Wang2c072452009-06-05 15:38:42 +08002102 /* disable CPU FDI tx and PCH FDI rx */
2103 temp = I915_READ(fdi_tx_reg);
2104 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_ENABLE);
2105 I915_READ(fdi_tx_reg);
2106
2107 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002108 /* BPC in FDI rx is consistent with that in pipeconf */
2109 temp &= ~(0x07 << 16);
2110 temp |= (pipe_bpc << 11);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002111 I915_WRITE(fdi_rx_reg, temp & ~FDI_RX_ENABLE);
2112 I915_READ(fdi_rx_reg);
2113
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002114 udelay(100);
2115
Zhenyu Wang2c072452009-06-05 15:38:42 +08002116 /* still set train pattern 1 */
2117 temp = I915_READ(fdi_tx_reg);
2118 temp &= ~FDI_LINK_TRAIN_NONE;
2119 temp |= FDI_LINK_TRAIN_PATTERN_1;
2120 I915_WRITE(fdi_tx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002121 POSTING_READ(fdi_tx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002122
2123 temp = I915_READ(fdi_rx_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002124 if (HAS_PCH_CPT(dev)) {
2125 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2126 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2127 } else {
2128 temp &= ~FDI_LINK_TRAIN_NONE;
2129 temp |= FDI_LINK_TRAIN_PATTERN_1;
2130 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002131 I915_WRITE(fdi_rx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002132 POSTING_READ(fdi_rx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002133
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002134 udelay(100);
2135
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002136 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2137 temp = I915_READ(PCH_LVDS);
2138 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2139 I915_READ(PCH_LVDS);
2140 udelay(100);
2141 }
2142
Zhenyu Wang2c072452009-06-05 15:38:42 +08002143 /* disable PCH transcoder */
2144 temp = I915_READ(transconf_reg);
2145 if ((temp & TRANS_ENABLE) != 0) {
2146 I915_WRITE(transconf_reg, temp & ~TRANS_ENABLE);
2147 I915_READ(transconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002148 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002149 /* wait for PCH transcoder off, transcoder state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002150 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) != 0) {
2151 n++;
2152 if (n < 60) {
2153 udelay(500);
2154 continue;
2155 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002156 DRM_DEBUG_KMS("transcoder %d off "
2157 "delay\n", pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002158 break;
2159 }
2160 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002161 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002162
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002163 temp = I915_READ(transconf_reg);
2164 /* BPC in transcoder is consistent with that in pipeconf */
2165 temp &= ~PIPE_BPC_MASK;
2166 temp |= pipe_bpc;
2167 I915_WRITE(transconf_reg, temp);
2168 I915_READ(transconf_reg);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002169 udelay(100);
2170
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002171 if (HAS_PCH_CPT(dev)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002172 /* disable TRANS_DP_CTL */
2173 int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B;
2174 int reg;
2175
2176 reg = I915_READ(trans_dp_ctl);
2177 reg &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
2178 I915_WRITE(trans_dp_ctl, reg);
2179 POSTING_READ(trans_dp_ctl);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002180
2181 /* disable DPLL_SEL */
2182 temp = I915_READ(PCH_DPLL_SEL);
2183 if (trans_dpll_sel == 0)
2184 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2185 else
2186 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2187 I915_WRITE(PCH_DPLL_SEL, temp);
2188 I915_READ(PCH_DPLL_SEL);
2189
2190 }
2191
Zhenyu Wang2c072452009-06-05 15:38:42 +08002192 /* disable PCH DPLL */
2193 temp = I915_READ(pch_dpll_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002194 I915_WRITE(pch_dpll_reg, temp & ~DPLL_VCO_ENABLE);
2195 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002196
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002197 if (HAS_eDP) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002198 ironlake_disable_pll_edp(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002199 }
2200
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002201 /* Switch from PCDclk to Rawclk */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002202 temp = I915_READ(fdi_rx_reg);
2203 temp &= ~FDI_SEL_PCDCLK;
2204 I915_WRITE(fdi_rx_reg, temp);
2205 I915_READ(fdi_rx_reg);
2206
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002207 /* Disable CPU FDI TX PLL */
2208 temp = I915_READ(fdi_tx_reg);
2209 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_PLL_ENABLE);
2210 I915_READ(fdi_tx_reg);
2211 udelay(100);
2212
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002213 temp = I915_READ(fdi_rx_reg);
2214 temp &= ~FDI_RX_PLL_ENABLE;
2215 I915_WRITE(fdi_rx_reg, temp);
2216 I915_READ(fdi_rx_reg);
2217
Zhenyu Wang2c072452009-06-05 15:38:42 +08002218 /* Wait for the clocks to turn off. */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002219 udelay(100);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002220 break;
2221 }
2222}
2223
Daniel Vetter02e792f2009-09-15 22:57:34 +02002224static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2225{
2226 struct intel_overlay *overlay;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002227 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +02002228
2229 if (!enable && intel_crtc->overlay) {
2230 overlay = intel_crtc->overlay;
2231 mutex_lock(&overlay->dev->struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002232 for (;;) {
2233 ret = intel_overlay_switch_off(overlay);
2234 if (ret == 0)
2235 break;
2236
2237 ret = intel_overlay_recover_from_interrupt(overlay, 0);
2238 if (ret != 0) {
2239 /* overlay doesn't react anymore. Usually
2240 * results in a black screen and an unkillable
2241 * X server. */
2242 BUG();
2243 overlay->hw_wedged = HW_WEDGED;
2244 break;
2245 }
2246 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002247 mutex_unlock(&overlay->dev->struct_mutex);
2248 }
2249 /* Let userspace switch the overlay on again. In most cases userspace
2250 * has to recompute where to put it anyway. */
2251
2252 return;
2253}
2254
Zhenyu Wang2c072452009-06-05 15:38:42 +08002255static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2256{
2257 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002258 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 Barnes80824002009-09-10 15:28:06 -07002261 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002262 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
Jesse Barnes80824002009-09-10 15:28:06 -07002263 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
2264 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
Jesse Barnes79e53942008-11-07 14:24:08 -08002265 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
2266 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08002267
2268 /* XXX: When our outputs are all unaware of DPMS modes other than off
2269 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2270 */
2271 switch (mode) {
2272 case DRM_MODE_DPMS_ON:
2273 case DRM_MODE_DPMS_STANDBY:
2274 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes629598d2009-10-20 07:37:32 +09002275 intel_update_watermarks(dev);
2276
Jesse Barnes79e53942008-11-07 14:24:08 -08002277 /* Enable the DPLL */
2278 temp = I915_READ(dpll_reg);
2279 if ((temp & DPLL_VCO_ENABLE) == 0) {
2280 I915_WRITE(dpll_reg, temp);
2281 I915_READ(dpll_reg);
2282 /* Wait for the clocks to stabilize. */
2283 udelay(150);
2284 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2285 I915_READ(dpll_reg);
2286 /* Wait for the clocks to stabilize. */
2287 udelay(150);
2288 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2289 I915_READ(dpll_reg);
2290 /* Wait for the clocks to stabilize. */
2291 udelay(150);
2292 }
2293
2294 /* Enable the pipe */
2295 temp = I915_READ(pipeconf_reg);
2296 if ((temp & PIPEACONF_ENABLE) == 0)
2297 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
2298
2299 /* Enable the plane */
2300 temp = I915_READ(dspcntr_reg);
2301 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
2302 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
2303 /* Flush the plane changes */
2304 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2305 }
2306
2307 intel_crtc_load_lut(crtc);
2308
Jesse Barnes74dff282009-09-14 15:39:40 -07002309 if ((IS_I965G(dev) || plane == 0))
2310 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnes80824002009-09-10 15:28:06 -07002311
Jesse Barnes79e53942008-11-07 14:24:08 -08002312 /* Give the overlay scaler a chance to enable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002313 intel_crtc_dpms_overlay(intel_crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08002314 break;
2315 case DRM_MODE_DPMS_OFF:
Shaohua Li7662c8b2009-06-26 11:23:55 +08002316 intel_update_watermarks(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002317
Jesse Barnes79e53942008-11-07 14:24:08 -08002318 /* Give the overlay scaler a chance to disable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002319 intel_crtc_dpms_overlay(intel_crtc, false);
Li Peng778c9022009-11-09 12:51:22 +08002320 drm_vblank_off(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08002321
Jesse Barnese70236a2009-09-21 10:42:27 -07002322 if (dev_priv->cfb_plane == plane &&
2323 dev_priv->display.disable_fbc)
2324 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07002325
Jesse Barnes79e53942008-11-07 14:24:08 -08002326 /* Disable the VGA plane that we never use */
Zhenyu Wang24f119c2009-07-24 01:00:28 +08002327 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002328
2329 /* Disable display plane */
2330 temp = I915_READ(dspcntr_reg);
2331 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
2332 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
2333 /* Flush the plane changes */
2334 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2335 I915_READ(dspbase_reg);
2336 }
2337
2338 if (!IS_I9XX(dev)) {
2339 /* Wait for vblank for the disable to take effect */
2340 intel_wait_for_vblank(dev);
2341 }
2342
Jesse Barnesb690e962010-07-19 13:53:12 -07002343 /* Don't disable pipe A or pipe A PLLs if needed */
2344 if (pipeconf_reg == PIPEACONF &&
2345 (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2346 goto skip_pipe_off;
2347
Jesse Barnes79e53942008-11-07 14:24:08 -08002348 /* Next, disable display pipes */
2349 temp = I915_READ(pipeconf_reg);
2350 if ((temp & PIPEACONF_ENABLE) != 0) {
2351 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
2352 I915_READ(pipeconf_reg);
2353 }
2354
2355 /* Wait for vblank for the disable to take effect. */
2356 intel_wait_for_vblank(dev);
2357
2358 temp = I915_READ(dpll_reg);
2359 if ((temp & DPLL_VCO_ENABLE) != 0) {
2360 I915_WRITE(dpll_reg, temp & ~DPLL_VCO_ENABLE);
2361 I915_READ(dpll_reg);
2362 }
Jesse Barnesb690e962010-07-19 13:53:12 -07002363 skip_pipe_off:
Jesse Barnes79e53942008-11-07 14:24:08 -08002364 /* Wait for the clocks to turn off. */
2365 udelay(150);
2366 break;
2367 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002368}
2369
2370/**
2371 * Sets the power management mode of the pipe and plane.
2372 *
2373 * This code should probably grow support for turning the cursor off and back
2374 * on appropriately at the same time as we're turning the pipe off/on.
2375 */
2376static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2377{
2378 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002379 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002380 struct drm_i915_master_private *master_priv;
2381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2382 int pipe = intel_crtc->pipe;
2383 bool enabled;
2384
Jesse Barnese70236a2009-09-21 10:42:27 -07002385 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002386
Daniel Vetter65655d42009-08-11 16:05:31 +02002387 intel_crtc->dpms_mode = mode;
2388
Jesse Barnes79e53942008-11-07 14:24:08 -08002389 if (!dev->primary->master)
2390 return;
2391
2392 master_priv = dev->primary->master->driver_priv;
2393 if (!master_priv->sarea_priv)
2394 return;
2395
2396 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2397
2398 switch (pipe) {
2399 case 0:
2400 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2401 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2402 break;
2403 case 1:
2404 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2405 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2406 break;
2407 default:
2408 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2409 break;
2410 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002411}
2412
2413static void intel_crtc_prepare (struct drm_crtc *crtc)
2414{
2415 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2416 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2417}
2418
2419static void intel_crtc_commit (struct drm_crtc *crtc)
2420{
2421 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2422 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
2423}
2424
2425void intel_encoder_prepare (struct drm_encoder *encoder)
2426{
2427 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2428 /* lvds has its own version of prepare see intel_lvds_prepare */
2429 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2430}
2431
2432void intel_encoder_commit (struct drm_encoder *encoder)
2433{
2434 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2435 /* lvds has its own version of commit see intel_lvds_commit */
2436 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2437}
2438
2439static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2440 struct drm_display_mode *mode,
2441 struct drm_display_mode *adjusted_mode)
2442{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002443 struct drm_device *dev = crtc->dev;
Eric Anholtbad720f2009-10-22 16:11:14 -07002444 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002445 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07002446 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
2447 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002448 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002449 return true;
2450}
2451
Jesse Barnese70236a2009-09-21 10:42:27 -07002452static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002453{
Jesse Barnese70236a2009-09-21 10:42:27 -07002454 return 400000;
2455}
Jesse Barnes79e53942008-11-07 14:24:08 -08002456
Jesse Barnese70236a2009-09-21 10:42:27 -07002457static int i915_get_display_clock_speed(struct drm_device *dev)
2458{
2459 return 333000;
2460}
Jesse Barnes79e53942008-11-07 14:24:08 -08002461
Jesse Barnese70236a2009-09-21 10:42:27 -07002462static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2463{
2464 return 200000;
2465}
Jesse Barnes79e53942008-11-07 14:24:08 -08002466
Jesse Barnese70236a2009-09-21 10:42:27 -07002467static int i915gm_get_display_clock_speed(struct drm_device *dev)
2468{
2469 u16 gcfgc = 0;
2470
2471 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2472
2473 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002474 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002475 else {
2476 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2477 case GC_DISPLAY_CLOCK_333_MHZ:
2478 return 333000;
2479 default:
2480 case GC_DISPLAY_CLOCK_190_200_MHZ:
2481 return 190000;
2482 }
2483 }
2484}
Jesse Barnes79e53942008-11-07 14:24:08 -08002485
Jesse Barnese70236a2009-09-21 10:42:27 -07002486static int i865_get_display_clock_speed(struct drm_device *dev)
2487{
2488 return 266000;
2489}
2490
2491static int i855_get_display_clock_speed(struct drm_device *dev)
2492{
2493 u16 hpllcc = 0;
2494 /* Assume that the hardware is in the high speed state. This
2495 * should be the default.
2496 */
2497 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2498 case GC_CLOCK_133_200:
2499 case GC_CLOCK_100_200:
2500 return 200000;
2501 case GC_CLOCK_166_250:
2502 return 250000;
2503 case GC_CLOCK_100_133:
2504 return 133000;
2505 }
2506
2507 /* Shouldn't happen */
2508 return 0;
2509}
2510
2511static int i830_get_display_clock_speed(struct drm_device *dev)
2512{
2513 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002514}
2515
Jesse Barnes79e53942008-11-07 14:24:08 -08002516/**
2517 * Return the pipe currently connected to the panel fitter,
2518 * or -1 if the panel fitter is not present or not in use
2519 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002520int intel_panel_fitter_pipe (struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002521{
2522 struct drm_i915_private *dev_priv = dev->dev_private;
2523 u32 pfit_control;
2524
2525 /* i830 doesn't have a panel fitter */
2526 if (IS_I830(dev))
2527 return -1;
2528
2529 pfit_control = I915_READ(PFIT_CONTROL);
2530
2531 /* See if the panel fitter is in use */
2532 if ((pfit_control & PFIT_ENABLE) == 0)
2533 return -1;
2534
2535 /* 965 can place panel fitter on either pipe */
2536 if (IS_I965G(dev))
2537 return (pfit_control >> 29) & 0x3;
2538
2539 /* older chips can only use pipe 1 */
2540 return 1;
2541}
2542
Zhenyu Wang2c072452009-06-05 15:38:42 +08002543struct fdi_m_n {
2544 u32 tu;
2545 u32 gmch_m;
2546 u32 gmch_n;
2547 u32 link_m;
2548 u32 link_n;
2549};
2550
2551static void
2552fdi_reduce_ratio(u32 *num, u32 *den)
2553{
2554 while (*num > 0xffffff || *den > 0xffffff) {
2555 *num >>= 1;
2556 *den >>= 1;
2557 }
2558}
2559
2560#define DATA_N 0x800000
2561#define LINK_N 0x80000
2562
2563static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002564ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2565 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002566{
2567 u64 temp;
2568
2569 m_n->tu = 64; /* default size */
2570
2571 temp = (u64) DATA_N * pixel_clock;
2572 temp = div_u64(temp, link_clock);
Zhenyu Wang58a27472009-09-25 08:01:28 +00002573 m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes);
2574 m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */
Zhenyu Wang2c072452009-06-05 15:38:42 +08002575 m_n->gmch_n = DATA_N;
2576 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2577
2578 temp = (u64) LINK_N * pixel_clock;
2579 m_n->link_m = div_u64(temp, link_clock);
2580 m_n->link_n = LINK_N;
2581 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2582}
2583
2584
Shaohua Li7662c8b2009-06-26 11:23:55 +08002585struct intel_watermark_params {
2586 unsigned long fifo_size;
2587 unsigned long max_wm;
2588 unsigned long default_wm;
2589 unsigned long guard_size;
2590 unsigned long cacheline_size;
2591};
2592
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002593/* Pineview has different values for various configs */
2594static struct intel_watermark_params pineview_display_wm = {
2595 PINEVIEW_DISPLAY_FIFO,
2596 PINEVIEW_MAX_WM,
2597 PINEVIEW_DFT_WM,
2598 PINEVIEW_GUARD_WM,
2599 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002600};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002601static struct intel_watermark_params pineview_display_hplloff_wm = {
2602 PINEVIEW_DISPLAY_FIFO,
2603 PINEVIEW_MAX_WM,
2604 PINEVIEW_DFT_HPLLOFF_WM,
2605 PINEVIEW_GUARD_WM,
2606 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002607};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002608static struct intel_watermark_params pineview_cursor_wm = {
2609 PINEVIEW_CURSOR_FIFO,
2610 PINEVIEW_CURSOR_MAX_WM,
2611 PINEVIEW_CURSOR_DFT_WM,
2612 PINEVIEW_CURSOR_GUARD_WM,
2613 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002614};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002615static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2616 PINEVIEW_CURSOR_FIFO,
2617 PINEVIEW_CURSOR_MAX_WM,
2618 PINEVIEW_CURSOR_DFT_WM,
2619 PINEVIEW_CURSOR_GUARD_WM,
2620 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002621};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002622static struct intel_watermark_params g4x_wm_info = {
2623 G4X_FIFO_SIZE,
2624 G4X_MAX_WM,
2625 G4X_MAX_WM,
2626 2,
2627 G4X_FIFO_LINE_SIZE,
2628};
Zhao Yakui4fe5e612010-06-12 14:32:25 +08002629static struct intel_watermark_params g4x_cursor_wm_info = {
2630 I965_CURSOR_FIFO,
2631 I965_CURSOR_MAX_WM,
2632 I965_CURSOR_DFT_WM,
2633 2,
2634 G4X_FIFO_LINE_SIZE,
2635};
2636static struct intel_watermark_params i965_cursor_wm_info = {
2637 I965_CURSOR_FIFO,
2638 I965_CURSOR_MAX_WM,
2639 I965_CURSOR_DFT_WM,
2640 2,
2641 I915_FIFO_LINE_SIZE,
2642};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002643static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002644 I945_FIFO_SIZE,
2645 I915_MAX_WM,
2646 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002647 2,
2648 I915_FIFO_LINE_SIZE
2649};
2650static struct intel_watermark_params i915_wm_info = {
2651 I915_FIFO_SIZE,
2652 I915_MAX_WM,
2653 1,
2654 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002655 I915_FIFO_LINE_SIZE
2656};
2657static struct intel_watermark_params i855_wm_info = {
2658 I855GM_FIFO_SIZE,
2659 I915_MAX_WM,
2660 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002661 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002662 I830_FIFO_LINE_SIZE
2663};
2664static struct intel_watermark_params i830_wm_info = {
2665 I830_FIFO_SIZE,
2666 I915_MAX_WM,
2667 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002668 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002669 I830_FIFO_LINE_SIZE
2670};
2671
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002672static struct intel_watermark_params ironlake_display_wm_info = {
2673 ILK_DISPLAY_FIFO,
2674 ILK_DISPLAY_MAXWM,
2675 ILK_DISPLAY_DFTWM,
2676 2,
2677 ILK_FIFO_LINE_SIZE
2678};
2679
Zhao Yakuic936f442010-06-12 14:32:26 +08002680static struct intel_watermark_params ironlake_cursor_wm_info = {
2681 ILK_CURSOR_FIFO,
2682 ILK_CURSOR_MAXWM,
2683 ILK_CURSOR_DFTWM,
2684 2,
2685 ILK_FIFO_LINE_SIZE
2686};
2687
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002688static struct intel_watermark_params ironlake_display_srwm_info = {
2689 ILK_DISPLAY_SR_FIFO,
2690 ILK_DISPLAY_MAX_SRWM,
2691 ILK_DISPLAY_DFT_SRWM,
2692 2,
2693 ILK_FIFO_LINE_SIZE
2694};
2695
2696static struct intel_watermark_params ironlake_cursor_srwm_info = {
2697 ILK_CURSOR_SR_FIFO,
2698 ILK_CURSOR_MAX_SRWM,
2699 ILK_CURSOR_DFT_SRWM,
2700 2,
2701 ILK_FIFO_LINE_SIZE
2702};
2703
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002704/**
2705 * intel_calculate_wm - calculate watermark level
2706 * @clock_in_khz: pixel clock
2707 * @wm: chip FIFO params
2708 * @pixel_size: display pixel size
2709 * @latency_ns: memory latency for the platform
2710 *
2711 * Calculate the watermark level (the level at which the display plane will
2712 * start fetching from memory again). Each chip has a different display
2713 * FIFO size and allocation, so the caller needs to figure that out and pass
2714 * in the correct intel_watermark_params structure.
2715 *
2716 * As the pixel clock runs, the FIFO will be drained at a rate that depends
2717 * on the pixel size. When it reaches the watermark level, it'll start
2718 * fetching FIFO line sized based chunks from memory until the FIFO fills
2719 * past the watermark point. If the FIFO drains completely, a FIFO underrun
2720 * will occur, and a display engine hang could result.
2721 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002722static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
2723 struct intel_watermark_params *wm,
2724 int pixel_size,
2725 unsigned long latency_ns)
2726{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002727 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002728
Jesse Barnesd6604672009-09-11 12:25:56 -07002729 /*
2730 * Note: we need to make sure we don't overflow for various clock &
2731 * latency values.
2732 * clocks go from a few thousand to several hundred thousand.
2733 * latency is usually a few thousand
2734 */
2735 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
2736 1000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002737 entries_required /= wm->cacheline_size;
2738
Zhao Yakui28c97732009-10-09 11:39:41 +08002739 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002740
2741 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
2742
Zhao Yakui28c97732009-10-09 11:39:41 +08002743 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002744
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002745 /* Don't promote wm_size to unsigned... */
2746 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002747 wm_size = wm->max_wm;
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002748 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002749 wm_size = wm->default_wm;
2750 return wm_size;
2751}
2752
2753struct cxsr_latency {
2754 int is_desktop;
Li Peng95534262010-05-18 18:58:44 +08002755 int is_ddr3;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002756 unsigned long fsb_freq;
2757 unsigned long mem_freq;
2758 unsigned long display_sr;
2759 unsigned long display_hpll_disable;
2760 unsigned long cursor_sr;
2761 unsigned long cursor_hpll_disable;
2762};
2763
2764static struct cxsr_latency cxsr_latency_table[] = {
Li Peng95534262010-05-18 18:58:44 +08002765 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
2766 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
2767 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
2768 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
2769 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002770
Li Peng95534262010-05-18 18:58:44 +08002771 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
2772 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
2773 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
2774 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
2775 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002776
Li Peng95534262010-05-18 18:58:44 +08002777 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
2778 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
2779 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
2780 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
2781 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002782
Li Peng95534262010-05-18 18:58:44 +08002783 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
2784 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
2785 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
2786 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
2787 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002788
Li Peng95534262010-05-18 18:58:44 +08002789 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
2790 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
2791 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
2792 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
2793 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002794
Li Peng95534262010-05-18 18:58:44 +08002795 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
2796 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
2797 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
2798 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
2799 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002800};
2801
Li Peng95534262010-05-18 18:58:44 +08002802static struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, int is_ddr3,
2803 int fsb, int mem)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002804{
2805 int i;
2806 struct cxsr_latency *latency;
2807
2808 if (fsb == 0 || mem == 0)
2809 return NULL;
2810
2811 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
2812 latency = &cxsr_latency_table[i];
2813 if (is_desktop == latency->is_desktop &&
Li Peng95534262010-05-18 18:58:44 +08002814 is_ddr3 == latency->is_ddr3 &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302815 fsb == latency->fsb_freq && mem == latency->mem_freq)
2816 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002817 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302818
Zhao Yakui28c97732009-10-09 11:39:41 +08002819 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302820
2821 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002822}
2823
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002824static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002825{
2826 struct drm_i915_private *dev_priv = dev->dev_private;
2827 u32 reg;
2828
2829 /* deactivate cxsr */
2830 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002831 reg &= ~(PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002832 I915_WRITE(DSPFW3, reg);
2833 DRM_INFO("Big FIFO is disabled\n");
2834}
2835
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07002836/*
2837 * Latency for FIFO fetches is dependent on several factors:
2838 * - memory configuration (speed, channels)
2839 * - chipset
2840 * - current MCH state
2841 * It can be fairly high in some situations, so here we assume a fairly
2842 * pessimal value. It's a tradeoff between extra memory fetches (if we
2843 * set this value too high, the FIFO will fetch frequently to stay full)
2844 * and power consumption (set it too low to save power and we might see
2845 * FIFO underruns and display "flicker").
2846 *
2847 * A value of 5us seems to be a good balance; safe for very low end
2848 * platforms but not overly aggressive on lower latency configs.
2849 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002850static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002851
Jesse Barnese70236a2009-09-21 10:42:27 -07002852static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002853{
2854 struct drm_i915_private *dev_priv = dev->dev_private;
2855 uint32_t dsparb = I915_READ(DSPARB);
2856 int size;
2857
Jesse Barnese70236a2009-09-21 10:42:27 -07002858 if (plane == 0)
Jesse Barnesf3601322009-07-22 12:54:59 -07002859 size = dsparb & 0x7f;
Jesse Barnese70236a2009-09-21 10:42:27 -07002860 else
2861 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) -
2862 (dsparb & 0x7f);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002863
Zhao Yakui28c97732009-10-09 11:39:41 +08002864 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2865 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002866
2867 return size;
2868}
Shaohua Li7662c8b2009-06-26 11:23:55 +08002869
Jesse Barnese70236a2009-09-21 10:42:27 -07002870static int i85x_get_fifo_size(struct drm_device *dev, int plane)
2871{
2872 struct drm_i915_private *dev_priv = dev->dev_private;
2873 uint32_t dsparb = I915_READ(DSPARB);
2874 int size;
2875
2876 if (plane == 0)
2877 size = dsparb & 0x1ff;
2878 else
2879 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) -
2880 (dsparb & 0x1ff);
2881 size >>= 1; /* Convert to cachelines */
2882
Zhao Yakui28c97732009-10-09 11:39:41 +08002883 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2884 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002885
2886 return size;
2887}
2888
2889static int i845_get_fifo_size(struct drm_device *dev, int plane)
2890{
2891 struct drm_i915_private *dev_priv = dev->dev_private;
2892 uint32_t dsparb = I915_READ(DSPARB);
2893 int size;
2894
2895 size = dsparb & 0x7f;
2896 size >>= 2; /* Convert to cachelines */
2897
Zhao Yakui28c97732009-10-09 11:39:41 +08002898 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2899 plane ? "B" : "A",
Jesse Barnese70236a2009-09-21 10:42:27 -07002900 size);
2901
2902 return size;
2903}
2904
2905static int i830_get_fifo_size(struct drm_device *dev, int plane)
2906{
2907 struct drm_i915_private *dev_priv = dev->dev_private;
2908 uint32_t dsparb = I915_READ(DSPARB);
2909 int size;
2910
2911 size = dsparb & 0x7f;
2912 size >>= 1; /* Convert to cachelines */
2913
Zhao Yakui28c97732009-10-09 11:39:41 +08002914 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2915 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002916
2917 return size;
2918}
2919
Zhao Yakuid4294342010-03-22 22:45:36 +08002920static void pineview_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08002921 int planeb_clock, int sr_hdisplay, int unused,
2922 int pixel_size)
Zhao Yakuid4294342010-03-22 22:45:36 +08002923{
2924 struct drm_i915_private *dev_priv = dev->dev_private;
2925 u32 reg;
2926 unsigned long wm;
2927 struct cxsr_latency *latency;
2928 int sr_clock;
2929
Li Peng95534262010-05-18 18:58:44 +08002930 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
2931 dev_priv->fsb_freq, dev_priv->mem_freq);
Zhao Yakuid4294342010-03-22 22:45:36 +08002932 if (!latency) {
2933 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
2934 pineview_disable_cxsr(dev);
2935 return;
2936 }
2937
2938 if (!planea_clock || !planeb_clock) {
2939 sr_clock = planea_clock ? planea_clock : planeb_clock;
2940
2941 /* Display SR */
2942 wm = intel_calculate_wm(sr_clock, &pineview_display_wm,
2943 pixel_size, latency->display_sr);
2944 reg = I915_READ(DSPFW1);
2945 reg &= ~DSPFW_SR_MASK;
2946 reg |= wm << DSPFW_SR_SHIFT;
2947 I915_WRITE(DSPFW1, reg);
2948 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
2949
2950 /* cursor SR */
2951 wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm,
2952 pixel_size, latency->cursor_sr);
2953 reg = I915_READ(DSPFW3);
2954 reg &= ~DSPFW_CURSOR_SR_MASK;
2955 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
2956 I915_WRITE(DSPFW3, reg);
2957
2958 /* Display HPLL off SR */
2959 wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm,
2960 pixel_size, latency->display_hpll_disable);
2961 reg = I915_READ(DSPFW3);
2962 reg &= ~DSPFW_HPLL_SR_MASK;
2963 reg |= wm & DSPFW_HPLL_SR_MASK;
2964 I915_WRITE(DSPFW3, reg);
2965
2966 /* cursor HPLL off SR */
2967 wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm,
2968 pixel_size, latency->cursor_hpll_disable);
2969 reg = I915_READ(DSPFW3);
2970 reg &= ~DSPFW_HPLL_CURSOR_MASK;
2971 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
2972 I915_WRITE(DSPFW3, reg);
2973 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
2974
2975 /* activate cxsr */
2976 reg = I915_READ(DSPFW3);
2977 reg |= PINEVIEW_SELF_REFRESH_EN;
2978 I915_WRITE(DSPFW3, reg);
2979 DRM_DEBUG_KMS("Self-refresh is enabled\n");
2980 } else {
2981 pineview_disable_cxsr(dev);
2982 DRM_DEBUG_KMS("Self-refresh is disabled\n");
2983 }
2984}
2985
Jesse Barnes0e442c62009-10-19 10:09:33 +09002986static void g4x_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08002987 int planeb_clock, int sr_hdisplay, int sr_htotal,
2988 int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07002989{
2990 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002991 int total_size, cacheline_size;
2992 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
2993 struct intel_watermark_params planea_params, planeb_params;
2994 unsigned long line_time_us;
2995 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07002996
Jesse Barnes0e442c62009-10-19 10:09:33 +09002997 /* Create copies of the base settings for each pipe */
2998 planea_params = planeb_params = g4x_wm_info;
2999
3000 /* Grab a couple of global values before we overwrite them */
3001 total_size = planea_params.fifo_size;
3002 cacheline_size = planea_params.cacheline_size;
3003
3004 /*
3005 * Note: we need to make sure we don't overflow for various clock &
3006 * latency values.
3007 * clocks go from a few thousand to several hundred thousand.
3008 * latency is usually a few thousand
3009 */
3010 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
3011 1000;
3012 entries_required /= G4X_FIFO_LINE_SIZE;
3013 planea_wm = entries_required + planea_params.guard_size;
3014
3015 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
3016 1000;
3017 entries_required /= G4X_FIFO_LINE_SIZE;
3018 planeb_wm = entries_required + planeb_params.guard_size;
3019
3020 cursora_wm = cursorb_wm = 16;
3021 cursor_sr = 32;
3022
3023 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
3024
3025 /* Calc sr entries for one plane configs */
3026 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3027 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003028 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003029
3030 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003031 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003032
3033 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003034 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3035 pixel_size * sr_hdisplay;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003036 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003037
3038 entries_required = (((sr_latency_ns / line_time_us) +
3039 1000) / 1000) * pixel_size * 64;
3040 entries_required = roundup(entries_required /
3041 g4x_cursor_wm_info.cacheline_size, 1);
3042 cursor_sr = entries_required + g4x_cursor_wm_info.guard_size;
3043
3044 if (cursor_sr > g4x_cursor_wm_info.max_wm)
3045 cursor_sr = g4x_cursor_wm_info.max_wm;
3046 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3047 "cursor %d\n", sr_entries, cursor_sr);
3048
Jesse Barnes0e442c62009-10-19 10:09:33 +09003049 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303050 } else {
3051 /* Turn off self refresh if both pipes are enabled */
3052 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3053 & ~FW_BLC_SELF_EN);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003054 }
3055
3056 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
3057 planea_wm, planeb_wm, sr_entries);
3058
3059 planea_wm &= 0x3f;
3060 planeb_wm &= 0x3f;
3061
3062 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
3063 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
3064 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
3065 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
3066 (cursora_wm << DSPFW_CURSORA_SHIFT));
3067 /* HPLL off in SR has some issues on G4x... disable it */
3068 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
3069 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07003070}
3071
Jesse Barnes1dc75462009-10-19 10:08:17 +09003072static void i965_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003073 int planeb_clock, int sr_hdisplay, int sr_htotal,
3074 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003075{
3076 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003077 unsigned long line_time_us;
3078 int sr_clock, sr_entries, srwm = 1;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003079 int cursor_sr = 16;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003080
Jesse Barnes1dc75462009-10-19 10:08:17 +09003081 /* Calc sr entries for one plane configs */
3082 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3083 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003084 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003085
3086 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003087 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003088
3089 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003090 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3091 pixel_size * sr_hdisplay;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003092 sr_entries = roundup(sr_entries / I915_FIFO_LINE_SIZE, 1);
3093 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
Zhao Yakui1b07e042010-06-12 14:32:24 +08003094 srwm = I965_FIFO_SIZE - sr_entries;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003095 if (srwm < 0)
3096 srwm = 1;
Zhao Yakui1b07e042010-06-12 14:32:24 +08003097 srwm &= 0x1ff;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003098
3099 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3100 pixel_size * 64;
3101 sr_entries = roundup(sr_entries /
3102 i965_cursor_wm_info.cacheline_size, 1);
3103 cursor_sr = i965_cursor_wm_info.fifo_size -
3104 (sr_entries + i965_cursor_wm_info.guard_size);
3105
3106 if (cursor_sr > i965_cursor_wm_info.max_wm)
3107 cursor_sr = i965_cursor_wm_info.max_wm;
3108
3109 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3110 "cursor %d\n", srwm, cursor_sr);
3111
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003112 if (IS_I965GM(dev))
3113 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303114 } else {
3115 /* Turn off self refresh if both pipes are enabled */
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003116 if (IS_I965GM(dev))
3117 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3118 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003119 }
3120
3121 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3122 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003123
3124 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09003125 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
3126 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003127 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003128 /* update cursor SR watermark */
3129 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003130}
3131
3132static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003133 int planeb_clock, int sr_hdisplay, int sr_htotal,
3134 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003135{
3136 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003137 uint32_t fwater_lo;
3138 uint32_t fwater_hi;
3139 int total_size, cacheline_size, cwm, srwm = 1;
3140 int planea_wm, planeb_wm;
3141 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003142 unsigned long line_time_us;
3143 int sr_clock, sr_entries = 0;
3144
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003145 /* Create copies of the base settings for each pipe */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003146 if (IS_I965GM(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003147 planea_params = planeb_params = i945_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003148 else if (IS_I9XX(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003149 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003150 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003151 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003152
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003153 /* Grab a couple of global values before we overwrite them */
3154 total_size = planea_params.fifo_size;
3155 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003156
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003157 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07003158 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3159 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003160
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003161 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
3162 pixel_size, latency_ns);
3163 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
3164 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08003165 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003166
3167 /*
3168 * Overlay gets an aggressive default since video jitter is bad.
3169 */
3170 cwm = 2;
3171
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003172 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07003173 if (HAS_FW_BLC(dev) && sr_hdisplay &&
3174 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003175 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003176 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003177
Shaohua Li7662c8b2009-06-26 11:23:55 +08003178 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003179 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003180
3181 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003182 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3183 pixel_size * sr_hdisplay;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003184 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui28c97732009-10-09 11:39:41 +08003185 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003186 srwm = total_size - sr_entries;
3187 if (srwm < 0)
3188 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08003189
3190 if (IS_I945G(dev) || IS_I945GM(dev))
3191 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3192 else if (IS_I915GM(dev)) {
3193 /* 915M has a smaller SRWM field */
3194 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
3195 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3196 }
David John33c5fd12010-01-27 15:19:08 +05303197 } else {
3198 /* Turn off self refresh if both pipes are enabled */
Li Pengee980b82010-01-27 19:01:11 +08003199 if (IS_I945G(dev) || IS_I945GM(dev)) {
3200 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3201 & ~FW_BLC_SELF_EN);
3202 } else if (IS_I915GM(dev)) {
3203 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3204 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08003205 }
3206
Zhao Yakui28c97732009-10-09 11:39:41 +08003207 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003208 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003209
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003210 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3211 fwater_hi = (cwm & 0x1f);
3212
3213 /* Set request length to 8 cachelines per fetch */
3214 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3215 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003216
3217 I915_WRITE(FW_BLC, fwater_lo);
3218 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003219}
3220
Jesse Barnese70236a2009-09-21 10:42:27 -07003221static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
Zhao Yakuifa143212010-06-12 14:32:23 +08003222 int unused2, int unused3, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003223{
3224 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07003225 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003226 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003227
Jesse Barnese70236a2009-09-21 10:42:27 -07003228 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003229
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003230 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
3231 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07003232 fwater_lo |= (3<<8) | planea_wm;
3233
Zhao Yakui28c97732009-10-09 11:39:41 +08003234 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003235
3236 I915_WRITE(FW_BLC, fwater_lo);
3237}
3238
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003239#define ILK_LP0_PLANE_LATENCY 700
Zhao Yakuic936f442010-06-12 14:32:26 +08003240#define ILK_LP0_CURSOR_LATENCY 1300
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003241
3242static void ironlake_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003243 int planeb_clock, int sr_hdisplay, int sr_htotal,
3244 int pixel_size)
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003245{
3246 struct drm_i915_private *dev_priv = dev->dev_private;
3247 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
3248 int sr_wm, cursor_wm;
3249 unsigned long line_time_us;
3250 int sr_clock, entries_required;
3251 u32 reg_value;
Zhao Yakuic936f442010-06-12 14:32:26 +08003252 int line_count;
3253 int planea_htotal = 0, planeb_htotal = 0;
3254 struct drm_crtc *crtc;
3255 struct intel_crtc *intel_crtc;
3256
3257 /* Need htotal for all active display plane */
3258 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3259 intel_crtc = to_intel_crtc(crtc);
3260 if (crtc->enabled) {
3261 if (intel_crtc->plane == 0)
3262 planea_htotal = crtc->mode.htotal;
3263 else
3264 planeb_htotal = crtc->mode.htotal;
3265 }
3266 }
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003267
3268 /* Calculate and update the watermark for plane A */
3269 if (planea_clock) {
3270 entries_required = ((planea_clock / 1000) * pixel_size *
3271 ILK_LP0_PLANE_LATENCY) / 1000;
3272 entries_required = DIV_ROUND_UP(entries_required,
3273 ironlake_display_wm_info.cacheline_size);
3274 planea_wm = entries_required +
3275 ironlake_display_wm_info.guard_size;
3276
3277 if (planea_wm > (int)ironlake_display_wm_info.max_wm)
3278 planea_wm = ironlake_display_wm_info.max_wm;
3279
Zhao Yakuic936f442010-06-12 14:32:26 +08003280 /* Use the large buffer method to calculate cursor watermark */
3281 line_time_us = (planea_htotal * 1000) / planea_clock;
3282
3283 /* Use ns/us then divide to preserve precision */
3284 line_count = (ILK_LP0_CURSOR_LATENCY / line_time_us + 1000) / 1000;
3285
3286 /* calculate the cursor watermark for cursor A */
3287 entries_required = line_count * 64 * pixel_size;
3288 entries_required = DIV_ROUND_UP(entries_required,
3289 ironlake_cursor_wm_info.cacheline_size);
3290 cursora_wm = entries_required + ironlake_cursor_wm_info.guard_size;
3291 if (cursora_wm > ironlake_cursor_wm_info.max_wm)
3292 cursora_wm = ironlake_cursor_wm_info.max_wm;
3293
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003294 reg_value = I915_READ(WM0_PIPEA_ILK);
3295 reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
3296 reg_value |= (planea_wm << WM0_PIPE_PLANE_SHIFT) |
3297 (cursora_wm & WM0_PIPE_CURSOR_MASK);
3298 I915_WRITE(WM0_PIPEA_ILK, reg_value);
3299 DRM_DEBUG_KMS("FIFO watermarks For pipe A - plane %d, "
3300 "cursor: %d\n", planea_wm, cursora_wm);
3301 }
3302 /* Calculate and update the watermark for plane B */
3303 if (planeb_clock) {
3304 entries_required = ((planeb_clock / 1000) * pixel_size *
3305 ILK_LP0_PLANE_LATENCY) / 1000;
3306 entries_required = DIV_ROUND_UP(entries_required,
3307 ironlake_display_wm_info.cacheline_size);
3308 planeb_wm = entries_required +
3309 ironlake_display_wm_info.guard_size;
3310
3311 if (planeb_wm > (int)ironlake_display_wm_info.max_wm)
3312 planeb_wm = ironlake_display_wm_info.max_wm;
3313
Zhao Yakuic936f442010-06-12 14:32:26 +08003314 /* Use the large buffer method to calculate cursor watermark */
3315 line_time_us = (planeb_htotal * 1000) / planeb_clock;
3316
3317 /* Use ns/us then divide to preserve precision */
3318 line_count = (ILK_LP0_CURSOR_LATENCY / line_time_us + 1000) / 1000;
3319
3320 /* calculate the cursor watermark for cursor B */
3321 entries_required = line_count * 64 * pixel_size;
3322 entries_required = DIV_ROUND_UP(entries_required,
3323 ironlake_cursor_wm_info.cacheline_size);
3324 cursorb_wm = entries_required + ironlake_cursor_wm_info.guard_size;
3325 if (cursorb_wm > ironlake_cursor_wm_info.max_wm)
3326 cursorb_wm = ironlake_cursor_wm_info.max_wm;
3327
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003328 reg_value = I915_READ(WM0_PIPEB_ILK);
3329 reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
3330 reg_value |= (planeb_wm << WM0_PIPE_PLANE_SHIFT) |
3331 (cursorb_wm & WM0_PIPE_CURSOR_MASK);
3332 I915_WRITE(WM0_PIPEB_ILK, reg_value);
3333 DRM_DEBUG_KMS("FIFO watermarks For pipe B - plane %d, "
3334 "cursor: %d\n", planeb_wm, cursorb_wm);
3335 }
3336
3337 /*
3338 * Calculate and update the self-refresh watermark only when one
3339 * display plane is used.
3340 */
3341 if (!planea_clock || !planeb_clock) {
Zhao Yakuic936f442010-06-12 14:32:26 +08003342
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003343 /* Read the self-refresh latency. The unit is 0.5us */
3344 int ilk_sr_latency = I915_READ(MLTR_ILK) & ILK_SRLT_MASK;
3345
3346 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003347 line_time_us = ((sr_htotal * 1000) / sr_clock);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003348
3349 /* Use ns/us then divide to preserve precision */
3350 line_count = ((ilk_sr_latency * 500) / line_time_us + 1000)
3351 / 1000;
3352
3353 /* calculate the self-refresh watermark for display plane */
3354 entries_required = line_count * sr_hdisplay * pixel_size;
3355 entries_required = DIV_ROUND_UP(entries_required,
3356 ironlake_display_srwm_info.cacheline_size);
3357 sr_wm = entries_required +
3358 ironlake_display_srwm_info.guard_size;
3359
3360 /* calculate the self-refresh watermark for display cursor */
3361 entries_required = line_count * pixel_size * 64;
3362 entries_required = DIV_ROUND_UP(entries_required,
3363 ironlake_cursor_srwm_info.cacheline_size);
3364 cursor_wm = entries_required +
3365 ironlake_cursor_srwm_info.guard_size;
3366
3367 /* configure watermark and enable self-refresh */
3368 reg_value = I915_READ(WM1_LP_ILK);
3369 reg_value &= ~(WM1_LP_LATENCY_MASK | WM1_LP_SR_MASK |
3370 WM1_LP_CURSOR_MASK);
3371 reg_value |= WM1_LP_SR_EN |
3372 (ilk_sr_latency << WM1_LP_LATENCY_SHIFT) |
3373 (sr_wm << WM1_LP_SR_SHIFT) | cursor_wm;
3374
3375 I915_WRITE(WM1_LP_ILK, reg_value);
3376 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3377 "cursor %d\n", sr_wm, cursor_wm);
3378
3379 } else {
3380 /* Turn off self refresh if both pipes are enabled */
3381 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
3382 }
3383}
Shaohua Li7662c8b2009-06-26 11:23:55 +08003384/**
3385 * intel_update_watermarks - update FIFO watermark values based on current modes
3386 *
3387 * Calculate watermark values for the various WM regs based on current mode
3388 * and plane configuration.
3389 *
3390 * There are several cases to deal with here:
3391 * - normal (i.e. non-self-refresh)
3392 * - self-refresh (SR) mode
3393 * - lines are large relative to FIFO size (buffer can hold up to 2)
3394 * - lines are small relative to FIFO size (buffer can hold more than 2
3395 * lines), so need to account for TLB latency
3396 *
3397 * The normal calculation is:
3398 * watermark = dotclock * bytes per pixel * latency
3399 * where latency is platform & configuration dependent (we assume pessimal
3400 * values here).
3401 *
3402 * The SR calculation is:
3403 * watermark = (trunc(latency/line time)+1) * surface width *
3404 * bytes per pixel
3405 * where
3406 * line time = htotal / dotclock
Zhao Yakuifa143212010-06-12 14:32:23 +08003407 * surface width = hdisplay for normal plane and 64 for cursor
Shaohua Li7662c8b2009-06-26 11:23:55 +08003408 * and latency is assumed to be high, as above.
3409 *
3410 * The final value programmed to the register should always be rounded up,
3411 * and include an extra 2 entries to account for clock crossings.
3412 *
3413 * We don't use the sprite, so we can ignore that. And on Crestline we have
3414 * to set the non-SR watermarks to 8.
3415 */
3416static void intel_update_watermarks(struct drm_device *dev)
3417{
Jesse Barnese70236a2009-09-21 10:42:27 -07003418 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003419 struct drm_crtc *crtc;
3420 struct intel_crtc *intel_crtc;
3421 int sr_hdisplay = 0;
3422 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3423 int enabled = 0, pixel_size = 0;
Zhao Yakuifa143212010-06-12 14:32:23 +08003424 int sr_htotal = 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003425
Zhenyu Wangc03342f2009-09-29 11:01:23 +08003426 if (!dev_priv->display.update_wm)
3427 return;
3428
Shaohua Li7662c8b2009-06-26 11:23:55 +08003429 /* Get the clock config from both planes */
3430 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3431 intel_crtc = to_intel_crtc(crtc);
3432 if (crtc->enabled) {
3433 enabled++;
3434 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003435 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003436 intel_crtc->pipe, crtc->mode.clock);
3437 planea_clock = crtc->mode.clock;
3438 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08003439 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003440 intel_crtc->pipe, crtc->mode.clock);
3441 planeb_clock = crtc->mode.clock;
3442 }
3443 sr_hdisplay = crtc->mode.hdisplay;
3444 sr_clock = crtc->mode.clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003445 sr_htotal = crtc->mode.htotal;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003446 if (crtc->fb)
3447 pixel_size = crtc->fb->bits_per_pixel / 8;
3448 else
3449 pixel_size = 4; /* by default */
3450 }
3451 }
3452
3453 if (enabled <= 0)
3454 return;
3455
Jesse Barnese70236a2009-09-21 10:42:27 -07003456 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003457 sr_hdisplay, sr_htotal, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003458}
3459
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003460static int intel_crtc_mode_set(struct drm_crtc *crtc,
3461 struct drm_display_mode *mode,
3462 struct drm_display_mode *adjusted_mode,
3463 int x, int y,
3464 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003465{
3466 struct drm_device *dev = crtc->dev;
3467 struct drm_i915_private *dev_priv = dev->dev_private;
3468 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3469 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003470 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003471 int fp_reg = (pipe == 0) ? FPA0 : FPB0;
3472 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
3473 int dpll_md_reg = (intel_crtc->pipe == 0) ? DPLL_A_MD : DPLL_B_MD;
Jesse Barnes80824002009-09-10 15:28:06 -07003474 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Jesse Barnes79e53942008-11-07 14:24:08 -08003475 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
3476 int htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
3477 int hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
3478 int hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
3479 int vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
3480 int vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
3481 int vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
Jesse Barnes80824002009-09-10 15:28:06 -07003482 int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE;
3483 int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS;
Jesse Barnes79e53942008-11-07 14:24:08 -08003484 int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC;
Eric Anholtc751ce42010-03-25 11:48:48 -07003485 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003486 intel_clock_t clock, reduced_clock;
3487 u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf;
3488 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003489 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003490 bool is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003491 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003492 struct drm_encoder *encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003493 struct intel_encoder *intel_encoder = NULL;
Ma Lingd4906092009-03-18 20:13:27 +08003494 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003495 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003496 struct fdi_m_n m_n = {0};
3497 int data_m1_reg = (pipe == 0) ? PIPEA_DATA_M1 : PIPEB_DATA_M1;
3498 int data_n1_reg = (pipe == 0) ? PIPEA_DATA_N1 : PIPEB_DATA_N1;
3499 int link_m1_reg = (pipe == 0) ? PIPEA_LINK_M1 : PIPEB_LINK_M1;
3500 int link_n1_reg = (pipe == 0) ? PIPEA_LINK_N1 : PIPEB_LINK_N1;
3501 int pch_fp_reg = (pipe == 0) ? PCH_FPA0 : PCH_FPB0;
3502 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
3503 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003504 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
3505 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang541998a2009-06-05 15:38:44 +08003506 int lvds_reg = LVDS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003507 u32 temp;
3508 int sdvo_pixel_multiply;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003509 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08003510
3511 drm_vblank_pre_modeset(dev, pipe);
3512
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003513 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003514
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003515 if (!encoder || encoder->crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003516 continue;
3517
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003518 intel_encoder = enc_to_intel_encoder(encoder);
3519
Eric Anholt21d40d32010-03-25 11:11:14 -07003520 switch (intel_encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003521 case INTEL_OUTPUT_LVDS:
3522 is_lvds = true;
3523 break;
3524 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003525 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003526 is_sdvo = true;
Eric Anholt21d40d32010-03-25 11:11:14 -07003527 if (intel_encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003528 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003529 break;
3530 case INTEL_OUTPUT_DVO:
3531 is_dvo = true;
3532 break;
3533 case INTEL_OUTPUT_TVOUT:
3534 is_tv = true;
3535 break;
3536 case INTEL_OUTPUT_ANALOG:
3537 is_crt = true;
3538 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003539 case INTEL_OUTPUT_DISPLAYPORT:
3540 is_dp = true;
3541 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003542 case INTEL_OUTPUT_EDP:
3543 is_edp = true;
3544 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003545 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003546
Eric Anholtc751ce42010-03-25 11:48:48 -07003547 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003548 }
3549
Eric Anholtc751ce42010-03-25 11:48:48 -07003550 if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003551 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08003552 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3553 refclk / 1000);
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003554 } else if (IS_I9XX(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003555 refclk = 96000;
Eric Anholtbad720f2009-10-22 16:11:14 -07003556 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003557 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08003558 } else {
3559 refclk = 48000;
3560 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003561
Jesse Barnes79e53942008-11-07 14:24:08 -08003562
Ma Lingd4906092009-03-18 20:13:27 +08003563 /*
3564 * Returns a set of divisors for the desired target clock with the given
3565 * refclk, or FALSE. The returned values represent the clock equation:
3566 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3567 */
3568 limit = intel_limit(crtc);
3569 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003570 if (!ok) {
3571 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01003572 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003573 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003574 }
3575
Zhao Yakuiddc90032010-01-06 22:05:56 +08003576 if (is_lvds && dev_priv->lvds_downclock_avail) {
3577 has_reduced_clock = limit->find_pll(limit, crtc,
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003578 dev_priv->lvds_downclock,
Jesse Barnes652c3932009-08-17 13:31:43 -07003579 refclk,
3580 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003581 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
3582 /*
3583 * If the different P is found, it means that we can't
3584 * switch the display clock by using the FP0/FP1.
3585 * In such case we will disable the LVDS downclock
3586 * feature.
3587 */
3588 DRM_DEBUG_KMS("Different P is found for "
3589 "LVDS clock/downclock\n");
3590 has_reduced_clock = 0;
3591 }
Jesse Barnes652c3932009-08-17 13:31:43 -07003592 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003593 /* SDVO TV has fixed PLL values depend on its clock range,
3594 this mirrors vbios setting. */
3595 if (is_sdvo && is_tv) {
3596 if (adjusted_mode->clock >= 100000
3597 && adjusted_mode->clock < 140500) {
3598 clock.p1 = 2;
3599 clock.p2 = 10;
3600 clock.n = 3;
3601 clock.m1 = 16;
3602 clock.m2 = 8;
3603 } else if (adjusted_mode->clock >= 140500
3604 && adjusted_mode->clock <= 200000) {
3605 clock.p1 = 1;
3606 clock.p2 = 10;
3607 clock.n = 6;
3608 clock.m1 = 12;
3609 clock.m2 = 8;
3610 }
3611 }
3612
Zhenyu Wang2c072452009-06-05 15:38:42 +08003613 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07003614 if (HAS_PCH_SPLIT(dev)) {
Adam Jackson77ffb592010-04-12 11:38:44 -04003615 int lane = 0, link_bw, bpp;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003616 /* eDP doesn't require FDI link, so just set DP M/N
3617 according to current link config */
3618 if (is_edp) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003619 target_clock = mode->clock;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003620 intel_edp_link_config(intel_encoder,
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003621 &lane, &link_bw);
3622 } else {
3623 /* DP over FDI requires target mode clock
3624 instead of link clock */
3625 if (is_dp)
3626 target_clock = mode->clock;
3627 else
3628 target_clock = adjusted_mode->clock;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003629 link_bw = 270000;
3630 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00003631
3632 /* determine panel color depth */
3633 temp = I915_READ(pipeconf_reg);
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003634 temp &= ~PIPE_BPC_MASK;
3635 if (is_lvds) {
3636 int lvds_reg = I915_READ(PCH_LVDS);
3637 /* the BPC will be 6 if it is 18-bit LVDS panel */
3638 if ((lvds_reg & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
3639 temp |= PIPE_8BPC;
3640 else
3641 temp |= PIPE_6BPC;
Zhao Yakui36e83a12010-06-12 14:32:21 +08003642 } else if (is_edp || (is_dp && intel_pch_has_edp(crtc))) {
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08003643 switch (dev_priv->edp_bpp/3) {
3644 case 8:
3645 temp |= PIPE_8BPC;
3646 break;
3647 case 10:
3648 temp |= PIPE_10BPC;
3649 break;
3650 case 6:
3651 temp |= PIPE_6BPC;
3652 break;
3653 case 12:
3654 temp |= PIPE_12BPC;
3655 break;
3656 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003657 } else
3658 temp |= PIPE_8BPC;
3659 I915_WRITE(pipeconf_reg, temp);
3660 I915_READ(pipeconf_reg);
Zhenyu Wang58a27472009-09-25 08:01:28 +00003661
3662 switch (temp & PIPE_BPC_MASK) {
3663 case PIPE_8BPC:
3664 bpp = 24;
3665 break;
3666 case PIPE_10BPC:
3667 bpp = 30;
3668 break;
3669 case PIPE_6BPC:
3670 bpp = 18;
3671 break;
3672 case PIPE_12BPC:
3673 bpp = 36;
3674 break;
3675 default:
3676 DRM_ERROR("unknown pipe bpc value\n");
3677 bpp = 24;
3678 }
3679
Adam Jackson77ffb592010-04-12 11:38:44 -04003680 if (!lane) {
3681 /*
3682 * Account for spread spectrum to avoid
3683 * oversubscribing the link. Max center spread
3684 * is 2.5%; use 5% for safety's sake.
3685 */
3686 u32 bps = target_clock * bpp * 21 / 20;
3687 lane = bps / (link_bw * 8) + 1;
3688 }
3689
3690 intel_crtc->fdi_lanes = lane;
3691
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003692 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003693 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003694
Zhenyu Wangc038e512009-10-19 15:43:48 +08003695 /* Ironlake: try to setup display ref clock before DPLL
3696 * enabling. This is only under driver's control after
3697 * PCH B stepping, previous chipset stepping should be
3698 * ignoring this setting.
3699 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003700 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003701 temp = I915_READ(PCH_DREF_CONTROL);
3702 /* Always enable nonspread source */
3703 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
3704 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
3705 I915_WRITE(PCH_DREF_CONTROL, temp);
3706 POSTING_READ(PCH_DREF_CONTROL);
3707
3708 temp &= ~DREF_SSC_SOURCE_MASK;
3709 temp |= DREF_SSC_SOURCE_ENABLE;
3710 I915_WRITE(PCH_DREF_CONTROL, temp);
3711 POSTING_READ(PCH_DREF_CONTROL);
3712
3713 udelay(200);
3714
3715 if (is_edp) {
3716 if (dev_priv->lvds_use_ssc) {
3717 temp |= DREF_SSC1_ENABLE;
3718 I915_WRITE(PCH_DREF_CONTROL, temp);
3719 POSTING_READ(PCH_DREF_CONTROL);
3720
3721 udelay(200);
3722
3723 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3724 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
3725 I915_WRITE(PCH_DREF_CONTROL, temp);
3726 POSTING_READ(PCH_DREF_CONTROL);
3727 } else {
3728 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
3729 I915_WRITE(PCH_DREF_CONTROL, temp);
3730 POSTING_READ(PCH_DREF_CONTROL);
3731 }
3732 }
3733 }
3734
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003735 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08003736 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003737 if (has_reduced_clock)
3738 fp2 = (1 << reduced_clock.n) << 16 |
3739 reduced_clock.m1 << 8 | reduced_clock.m2;
3740 } else {
Shaohua Li21778322009-02-23 15:19:16 +08003741 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003742 if (has_reduced_clock)
3743 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
3744 reduced_clock.m2;
3745 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003746
Eric Anholtbad720f2009-10-22 16:11:14 -07003747 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003748 dpll = DPLL_VGA_MODE_DIS;
3749
Jesse Barnes79e53942008-11-07 14:24:08 -08003750 if (IS_I9XX(dev)) {
3751 if (is_lvds)
3752 dpll |= DPLLB_MODE_LVDS;
3753 else
3754 dpll |= DPLLB_MODE_DAC_SERIAL;
3755 if (is_sdvo) {
3756 dpll |= DPLL_DVO_HIGH_SPEED;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003757 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
Sean Young942642a2009-08-06 17:35:50 +08003758 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003759 dpll |= (sdvo_pixel_multiply - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
Eric Anholtbad720f2009-10-22 16:11:14 -07003760 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003761 dpll |= (sdvo_pixel_multiply - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003762 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003763 if (is_dp)
3764 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003765
3766 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003767 if (IS_PINEVIEW(dev))
3768 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003769 else {
Shaohua Li21778322009-02-23 15:19:16 +08003770 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003771 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003772 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003773 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07003774 if (IS_G4X(dev) && has_reduced_clock)
3775 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003776 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003777 switch (clock.p2) {
3778 case 5:
3779 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3780 break;
3781 case 7:
3782 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3783 break;
3784 case 10:
3785 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3786 break;
3787 case 14:
3788 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3789 break;
3790 }
Eric Anholtbad720f2009-10-22 16:11:14 -07003791 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003792 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3793 } else {
3794 if (is_lvds) {
3795 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3796 } else {
3797 if (clock.p1 == 2)
3798 dpll |= PLL_P1_DIVIDE_BY_TWO;
3799 else
3800 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3801 if (clock.p2 == 4)
3802 dpll |= PLL_P2_DIVIDE_BY_4;
3803 }
3804 }
3805
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003806 if (is_sdvo && is_tv)
3807 dpll |= PLL_REF_INPUT_TVCLKINBC;
3808 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08003809 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003810 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08003811 dpll |= 3;
Eric Anholtc751ce42010-03-25 11:48:48 -07003812 else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003813 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08003814 else
3815 dpll |= PLL_REF_INPUT_DREFCLK;
3816
3817 /* setup pipeconf */
3818 pipeconf = I915_READ(pipeconf_reg);
3819
3820 /* Set up the display plane register */
3821 dspcntr = DISPPLANE_GAMMA_ENABLE;
3822
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003823 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08003824 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07003825 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003826 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07003827 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003828 else
3829 dspcntr |= DISPPLANE_SEL_PIPE_B;
3830 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003831
3832 if (pipe == 0 && !IS_I965G(dev)) {
3833 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3834 * core speed.
3835 *
3836 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3837 * pipe == 0 check?
3838 */
Jesse Barnese70236a2009-09-21 10:42:27 -07003839 if (mode->clock >
3840 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Jesse Barnes79e53942008-11-07 14:24:08 -08003841 pipeconf |= PIPEACONF_DOUBLE_WIDE;
3842 else
3843 pipeconf &= ~PIPEACONF_DOUBLE_WIDE;
3844 }
3845
Linus Torvalds8d86dc62010-06-08 20:16:28 -07003846 dspcntr |= DISPLAY_PLANE_ENABLE;
3847 pipeconf |= PIPEACONF_ENABLE;
3848 dpll |= DPLL_VCO_ENABLE;
3849
3850
Jesse Barnes79e53942008-11-07 14:24:08 -08003851 /* Disable the panel fitter if it was on our pipe */
Eric Anholtbad720f2009-10-22 16:11:14 -07003852 if (!HAS_PCH_SPLIT(dev) && intel_panel_fitter_pipe(dev) == pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08003853 I915_WRITE(PFIT_CONTROL, 0);
3854
Zhao Yakui28c97732009-10-09 11:39:41 +08003855 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08003856 drm_mode_debug_printmodeline(mode);
3857
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003858 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07003859 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003860 fp_reg = pch_fp_reg;
3861 dpll_reg = pch_dpll_reg;
3862 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003863
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003864 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003865 ironlake_disable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003866 } else if ((dpll & DPLL_VCO_ENABLE)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003867 I915_WRITE(fp_reg, fp);
3868 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
3869 I915_READ(dpll_reg);
3870 udelay(150);
3871 }
3872
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003873 /* enable transcoder DPLL */
3874 if (HAS_PCH_CPT(dev)) {
3875 temp = I915_READ(PCH_DPLL_SEL);
3876 if (trans_dpll_sel == 0)
3877 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
3878 else
3879 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
3880 I915_WRITE(PCH_DPLL_SEL, temp);
3881 I915_READ(PCH_DPLL_SEL);
3882 udelay(150);
3883 }
3884
Jesse Barnes79e53942008-11-07 14:24:08 -08003885 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3886 * This is an exception to the general rule that mode_set doesn't turn
3887 * things on.
3888 */
3889 if (is_lvds) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08003890 u32 lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08003891
Eric Anholtbad720f2009-10-22 16:11:14 -07003892 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08003893 lvds_reg = PCH_LVDS;
3894
3895 lvds = I915_READ(lvds_reg);
Adam Jackson0f3ee802010-03-31 11:41:51 -04003896 lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003897 if (pipe == 1) {
3898 if (HAS_PCH_CPT(dev))
3899 lvds |= PORT_TRANS_B_SEL_CPT;
3900 else
3901 lvds |= LVDS_PIPEB_SELECT;
3902 } else {
3903 if (HAS_PCH_CPT(dev))
3904 lvds &= ~PORT_TRANS_SEL_MASK;
3905 else
3906 lvds &= ~LVDS_PIPEB_SELECT;
3907 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08003908 /* set the corresponsding LVDS_BORDER bit */
3909 lvds |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08003910 /* Set the B0-B3 data pairs corresponding to whether we're going to
3911 * set the DPLLs for dual-channel mode or not.
3912 */
3913 if (clock.p2 == 7)
3914 lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3915 else
3916 lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3917
3918 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3919 * appropriately here, but we need to look more thoroughly into how
3920 * panels behave in the two modes.
3921 */
Zhao Yakui898822c2010-01-04 16:29:30 +08003922 /* set the dithering flag */
3923 if (IS_I965G(dev)) {
3924 if (dev_priv->lvds_dither) {
Adam Jackson0a31a442010-04-19 15:57:25 -04003925 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakui898822c2010-01-04 16:29:30 +08003926 pipeconf |= PIPE_ENABLE_DITHER;
Chris Wilsona392a102010-07-25 23:09:13 +01003927 pipeconf &= ~PIPE_DITHER_TYPE_MASK;
Adam Jackson0a31a442010-04-19 15:57:25 -04003928 pipeconf |= PIPE_DITHER_TYPE_ST01;
3929 } else
Zhao Yakui898822c2010-01-04 16:29:30 +08003930 lvds |= LVDS_ENABLE_DITHER;
3931 } else {
Adam Jackson0a31a442010-04-19 15:57:25 -04003932 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakui898822c2010-01-04 16:29:30 +08003933 pipeconf &= ~PIPE_ENABLE_DITHER;
Adam Jackson0a31a442010-04-19 15:57:25 -04003934 pipeconf &= ~PIPE_DITHER_TYPE_MASK;
3935 } else
Zhao Yakui898822c2010-01-04 16:29:30 +08003936 lvds &= ~LVDS_ENABLE_DITHER;
3937 }
3938 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08003939 I915_WRITE(lvds_reg, lvds);
3940 I915_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003941 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003942 if (is_dp)
3943 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003944 else if (HAS_PCH_SPLIT(dev)) {
3945 /* For non-DP output, clear any trans DP clock recovery setting.*/
3946 if (pipe == 0) {
3947 I915_WRITE(TRANSA_DATA_M1, 0);
3948 I915_WRITE(TRANSA_DATA_N1, 0);
3949 I915_WRITE(TRANSA_DP_LINK_M1, 0);
3950 I915_WRITE(TRANSA_DP_LINK_N1, 0);
3951 } else {
3952 I915_WRITE(TRANSB_DATA_M1, 0);
3953 I915_WRITE(TRANSB_DATA_N1, 0);
3954 I915_WRITE(TRANSB_DP_LINK_M1, 0);
3955 I915_WRITE(TRANSB_DP_LINK_N1, 0);
3956 }
3957 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003958
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003959 if (!is_edp) {
3960 I915_WRITE(fp_reg, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003961 I915_WRITE(dpll_reg, dpll);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003962 I915_READ(dpll_reg);
3963 /* Wait for the clocks to stabilize. */
3964 udelay(150);
3965
Eric Anholtbad720f2009-10-22 16:11:14 -07003966 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) {
Zhao Yakuibb66c512009-09-10 15:45:49 +08003967 if (is_sdvo) {
3968 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
3969 I915_WRITE(dpll_md_reg, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) |
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003970 ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT));
Zhao Yakuibb66c512009-09-10 15:45:49 +08003971 } else
3972 I915_WRITE(dpll_md_reg, 0);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003973 } else {
3974 /* write it again -- the BIOS does, after all */
3975 I915_WRITE(dpll_reg, dpll);
3976 }
3977 I915_READ(dpll_reg);
3978 /* Wait for the clocks to stabilize. */
3979 udelay(150);
Jesse Barnes79e53942008-11-07 14:24:08 -08003980 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003981
Jesse Barnes652c3932009-08-17 13:31:43 -07003982 if (is_lvds && has_reduced_clock && i915_powersave) {
3983 I915_WRITE(fp_reg + 4, fp2);
3984 intel_crtc->lowfreq_avail = true;
3985 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003986 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003987 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
3988 }
3989 } else {
3990 I915_WRITE(fp_reg + 4, fp);
3991 intel_crtc->lowfreq_avail = false;
3992 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003993 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003994 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3995 }
3996 }
3997
Krzysztof Halasa734b4152010-05-25 18:41:46 +02003998 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
3999 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4000 /* the chip adds 2 halflines automatically */
4001 adjusted_mode->crtc_vdisplay -= 1;
4002 adjusted_mode->crtc_vtotal -= 1;
4003 adjusted_mode->crtc_vblank_start -= 1;
4004 adjusted_mode->crtc_vblank_end -= 1;
4005 adjusted_mode->crtc_vsync_end -= 1;
4006 adjusted_mode->crtc_vsync_start -= 1;
4007 } else
4008 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
4009
Jesse Barnes79e53942008-11-07 14:24:08 -08004010 I915_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) |
4011 ((adjusted_mode->crtc_htotal - 1) << 16));
4012 I915_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) |
4013 ((adjusted_mode->crtc_hblank_end - 1) << 16));
4014 I915_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) |
4015 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4016 I915_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) |
4017 ((adjusted_mode->crtc_vtotal - 1) << 16));
4018 I915_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) |
4019 ((adjusted_mode->crtc_vblank_end - 1) << 16));
4020 I915_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) |
4021 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4022 /* pipesrc and dspsize control the size that is scaled from, which should
4023 * always be the user's requested size.
4024 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004025 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004026 I915_WRITE(dspsize_reg, ((mode->vdisplay - 1) << 16) |
4027 (mode->hdisplay - 1));
4028 I915_WRITE(dsppos_reg, 0);
4029 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004030 I915_WRITE(pipesrc_reg, ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004031
Eric Anholtbad720f2009-10-22 16:11:14 -07004032 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004033 I915_WRITE(data_m1_reg, TU_SIZE(m_n.tu) | m_n.gmch_m);
4034 I915_WRITE(data_n1_reg, TU_SIZE(m_n.tu) | m_n.gmch_n);
4035 I915_WRITE(link_m1_reg, m_n.link_m);
4036 I915_WRITE(link_n1_reg, m_n.link_n);
4037
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004038 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004039 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004040 } else {
4041 /* enable FDI RX PLL too */
4042 temp = I915_READ(fdi_rx_reg);
4043 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004044 I915_READ(fdi_rx_reg);
4045 udelay(200);
4046
4047 /* enable FDI TX PLL too */
4048 temp = I915_READ(fdi_tx_reg);
4049 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
4050 I915_READ(fdi_tx_reg);
4051
4052 /* enable FDI RX PCDCLK */
4053 temp = I915_READ(fdi_rx_reg);
4054 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
4055 I915_READ(fdi_rx_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004056 udelay(200);
4057 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004058 }
4059
Jesse Barnes79e53942008-11-07 14:24:08 -08004060 I915_WRITE(pipeconf_reg, pipeconf);
4061 I915_READ(pipeconf_reg);
4062
4063 intel_wait_for_vblank(dev);
4064
Eric Anholtc2416fc2009-11-05 15:30:35 -08004065 if (IS_IRONLAKE(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08004066 /* enable address swizzle for tiling buffer */
4067 temp = I915_READ(DISP_ARB_CTL);
4068 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
4069 }
4070
Jesse Barnes79e53942008-11-07 14:24:08 -08004071 I915_WRITE(dspcntr_reg, dspcntr);
4072
4073 /* Flush the plane changes */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004074 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004075
Jesse Barnes74dff282009-09-14 15:39:40 -07004076 if ((IS_I965G(dev) || plane == 0))
4077 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnese70236a2009-09-21 10:42:27 -07004078
Shaohua Li7662c8b2009-06-26 11:23:55 +08004079 intel_update_watermarks(dev);
4080
Jesse Barnes79e53942008-11-07 14:24:08 -08004081 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004082
Chris Wilson1f803ee2009-06-06 09:45:59 +01004083 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004084}
4085
4086/** Loads the palette/gamma unit for the CRTC with the prepared values */
4087void intel_crtc_load_lut(struct drm_crtc *crtc)
4088{
4089 struct drm_device *dev = crtc->dev;
4090 struct drm_i915_private *dev_priv = dev->dev_private;
4091 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4092 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
4093 int i;
4094
4095 /* The clocks have to be on to load the palette. */
4096 if (!crtc->enabled)
4097 return;
4098
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004099 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004100 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004101 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
4102 LGC_PALETTE_B;
4103
Jesse Barnes79e53942008-11-07 14:24:08 -08004104 for (i = 0; i < 256; i++) {
4105 I915_WRITE(palreg + 4 * i,
4106 (intel_crtc->lut_r[i] << 16) |
4107 (intel_crtc->lut_g[i] << 8) |
4108 intel_crtc->lut_b[i]);
4109 }
4110}
4111
4112static int intel_crtc_cursor_set(struct drm_crtc *crtc,
4113 struct drm_file *file_priv,
4114 uint32_t handle,
4115 uint32_t width, uint32_t height)
4116{
4117 struct drm_device *dev = crtc->dev;
4118 struct drm_i915_private *dev_priv = dev->dev_private;
4119 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4120 struct drm_gem_object *bo;
4121 struct drm_i915_gem_object *obj_priv;
4122 int pipe = intel_crtc->pipe;
4123 uint32_t control = (pipe == 0) ? CURACNTR : CURBCNTR;
4124 uint32_t base = (pipe == 0) ? CURABASE : CURBBASE;
Jesse Barnes14b60392009-05-20 16:47:08 -04004125 uint32_t temp = I915_READ(control);
Jesse Barnes79e53942008-11-07 14:24:08 -08004126 size_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004127 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004128
Zhao Yakui28c97732009-10-09 11:39:41 +08004129 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08004130
4131 /* if we want to turn off the cursor ignore width and height */
4132 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004133 DRM_DEBUG_KMS("cursor off\n");
Jesse Barnes14b60392009-05-20 16:47:08 -04004134 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
4135 temp &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4136 temp |= CURSOR_MODE_DISABLE;
4137 } else {
4138 temp &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
4139 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004140 addr = 0;
4141 bo = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004142 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004143 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004144 }
4145
4146 /* Currently we only support 64x64 cursors */
4147 if (width != 64 || height != 64) {
4148 DRM_ERROR("we currently only support 64x64 cursors\n");
4149 return -EINVAL;
4150 }
4151
4152 bo = drm_gem_object_lookup(dev, file_priv, handle);
4153 if (!bo)
4154 return -ENOENT;
4155
Daniel Vetter23010e42010-03-08 13:35:02 +01004156 obj_priv = to_intel_bo(bo);
Jesse Barnes79e53942008-11-07 14:24:08 -08004157
4158 if (bo->size < width * height * 4) {
4159 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004160 ret = -ENOMEM;
4161 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004162 }
4163
Dave Airlie71acb5e2008-12-30 20:31:46 +10004164 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004165 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004166 if (!dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004167 ret = i915_gem_object_pin(bo, PAGE_SIZE);
4168 if (ret) {
4169 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004170 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004171 }
Chris Wilsone7b526b2010-06-02 08:30:48 +01004172
4173 ret = i915_gem_object_set_to_gtt_domain(bo, 0);
4174 if (ret) {
4175 DRM_ERROR("failed to move cursor bo into the GTT\n");
4176 goto fail_unpin;
4177 }
4178
Jesse Barnes79e53942008-11-07 14:24:08 -08004179 addr = obj_priv->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004180 } else {
4181 ret = i915_gem_attach_phys_object(dev, bo, (pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1);
4182 if (ret) {
4183 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004184 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004185 }
4186 addr = obj_priv->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004187 }
4188
Jesse Barnes14b60392009-05-20 16:47:08 -04004189 if (!IS_I9XX(dev))
4190 I915_WRITE(CURSIZE, (height << 12) | width);
4191
4192 /* Hooray for CUR*CNTR differences */
4193 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
4194 temp &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4195 temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4196 temp |= (pipe << 28); /* Connect to correct pipe */
4197 } else {
4198 temp &= ~(CURSOR_FORMAT_MASK);
4199 temp |= CURSOR_ENABLE;
4200 temp |= CURSOR_FORMAT_ARGB | CURSOR_GAMMA_ENABLE;
4201 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004202
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004203 finish:
Jesse Barnes79e53942008-11-07 14:24:08 -08004204 I915_WRITE(control, temp);
4205 I915_WRITE(base, addr);
4206
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004207 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004208 if (dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004209 if (intel_crtc->cursor_bo != bo)
4210 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4211 } else
4212 i915_gem_object_unpin(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004213 drm_gem_object_unreference(intel_crtc->cursor_bo);
4214 }
Jesse Barnes80824002009-09-10 15:28:06 -07004215
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004216 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004217
4218 intel_crtc->cursor_addr = addr;
4219 intel_crtc->cursor_bo = bo;
4220
Jesse Barnes79e53942008-11-07 14:24:08 -08004221 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004222fail_unpin:
4223 i915_gem_object_unpin(bo);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004224fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004225 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004226fail:
4227 drm_gem_object_unreference_unlocked(bo);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004228 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004229}
4230
4231static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4232{
4233 struct drm_device *dev = crtc->dev;
4234 struct drm_i915_private *dev_priv = dev->dev_private;
4235 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07004236 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08004237 int pipe = intel_crtc->pipe;
4238 uint32_t temp = 0;
4239 uint32_t adder;
4240
Jesse Barnes652c3932009-08-17 13:31:43 -07004241 if (crtc->fb) {
4242 intel_fb = to_intel_framebuffer(crtc->fb);
4243 intel_mark_busy(dev, intel_fb->obj);
4244 }
4245
Jesse Barnes79e53942008-11-07 14:24:08 -08004246 if (x < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07004247 temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004248 x = -x;
4249 }
4250 if (y < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07004251 temp |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004252 y = -y;
4253 }
4254
Keith Packard2245fda2009-05-30 20:42:29 -07004255 temp |= x << CURSOR_X_SHIFT;
4256 temp |= y << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004257
4258 adder = intel_crtc->cursor_addr;
4259 I915_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp);
4260 I915_WRITE((pipe == 0) ? CURABASE : CURBBASE, adder);
4261
4262 return 0;
4263}
4264
4265/** Sets the color ramps on behalf of RandR */
4266void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4267 u16 blue, int regno)
4268{
4269 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4270
4271 intel_crtc->lut_r[regno] = red >> 8;
4272 intel_crtc->lut_g[regno] = green >> 8;
4273 intel_crtc->lut_b[regno] = blue >> 8;
4274}
4275
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004276void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4277 u16 *blue, int regno)
4278{
4279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4280
4281 *red = intel_crtc->lut_r[regno] << 8;
4282 *green = intel_crtc->lut_g[regno] << 8;
4283 *blue = intel_crtc->lut_b[regno] << 8;
4284}
4285
Jesse Barnes79e53942008-11-07 14:24:08 -08004286static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
4287 u16 *blue, uint32_t size)
4288{
4289 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4290 int i;
4291
4292 if (size != 256)
4293 return;
4294
4295 for (i = 0; i < 256; i++) {
4296 intel_crtc->lut_r[i] = red[i] >> 8;
4297 intel_crtc->lut_g[i] = green[i] >> 8;
4298 intel_crtc->lut_b[i] = blue[i] >> 8;
4299 }
4300
4301 intel_crtc_load_lut(crtc);
4302}
4303
4304/**
4305 * Get a pipe with a simple mode set on it for doing load-based monitor
4306 * detection.
4307 *
4308 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07004309 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08004310 *
Eric Anholtc751ce42010-03-25 11:48:48 -07004311 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08004312 * configured for it. In the future, it could choose to temporarily disable
4313 * some outputs to free up a pipe for its use.
4314 *
4315 * \return crtc, or NULL if no pipes are available.
4316 */
4317
4318/* VESA 640x480x72Hz mode to set on the pipe */
4319static struct drm_display_mode load_detect_mode = {
4320 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4321 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4322};
4323
Eric Anholt21d40d32010-03-25 11:11:14 -07004324struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004325 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08004326 struct drm_display_mode *mode,
4327 int *dpms_mode)
4328{
4329 struct intel_crtc *intel_crtc;
4330 struct drm_crtc *possible_crtc;
4331 struct drm_crtc *supported_crtc =NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004332 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004333 struct drm_crtc *crtc = NULL;
4334 struct drm_device *dev = encoder->dev;
4335 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4336 struct drm_crtc_helper_funcs *crtc_funcs;
4337 int i = -1;
4338
4339 /*
4340 * Algorithm gets a little messy:
4341 * - if the connector already has an assigned crtc, use it (but make
4342 * sure it's on first)
4343 * - try to find the first unused crtc that can drive this connector,
4344 * and use that if we find one
4345 * - if there are no unused crtcs available, try to use the first
4346 * one we found that supports the connector
4347 */
4348
4349 /* See if we already have a CRTC for this connector */
4350 if (encoder->crtc) {
4351 crtc = encoder->crtc;
4352 /* Make sure the crtc and connector are running */
4353 intel_crtc = to_intel_crtc(crtc);
4354 *dpms_mode = intel_crtc->dpms_mode;
4355 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4356 crtc_funcs = crtc->helper_private;
4357 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4358 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
4359 }
4360 return crtc;
4361 }
4362
4363 /* Find an unused one (if possible) */
4364 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
4365 i++;
4366 if (!(encoder->possible_crtcs & (1 << i)))
4367 continue;
4368 if (!possible_crtc->enabled) {
4369 crtc = possible_crtc;
4370 break;
4371 }
4372 if (!supported_crtc)
4373 supported_crtc = possible_crtc;
4374 }
4375
4376 /*
4377 * If we didn't find an unused CRTC, don't use any.
4378 */
4379 if (!crtc) {
4380 return NULL;
4381 }
4382
4383 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004384 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07004385 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004386
4387 intel_crtc = to_intel_crtc(crtc);
4388 *dpms_mode = intel_crtc->dpms_mode;
4389
4390 if (!crtc->enabled) {
4391 if (!mode)
4392 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05004393 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004394 } else {
4395 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4396 crtc_funcs = crtc->helper_private;
4397 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4398 }
4399
4400 /* Add this connector to the crtc */
4401 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
4402 encoder_funcs->commit(encoder);
4403 }
4404 /* let the connector get through one full cycle before testing */
4405 intel_wait_for_vblank(dev);
4406
4407 return crtc;
4408}
4409
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004410void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
4411 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08004412{
Eric Anholt21d40d32010-03-25 11:11:14 -07004413 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004414 struct drm_device *dev = encoder->dev;
4415 struct drm_crtc *crtc = encoder->crtc;
4416 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4417 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
4418
Eric Anholt21d40d32010-03-25 11:11:14 -07004419 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004420 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004421 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004422 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004423 crtc->enabled = drm_helper_crtc_in_use(crtc);
4424 drm_helper_disable_unused_functions(dev);
4425 }
4426
Eric Anholtc751ce42010-03-25 11:48:48 -07004427 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08004428 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4429 if (encoder->crtc == crtc)
4430 encoder_funcs->dpms(encoder, dpms_mode);
4431 crtc_funcs->dpms(crtc, dpms_mode);
4432 }
4433}
4434
4435/* Returns the clock of the currently programmed mode of the given pipe. */
4436static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4437{
4438 struct drm_i915_private *dev_priv = dev->dev_private;
4439 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4440 int pipe = intel_crtc->pipe;
4441 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4442 u32 fp;
4443 intel_clock_t clock;
4444
4445 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4446 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4447 else
4448 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4449
4450 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004451 if (IS_PINEVIEW(dev)) {
4452 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
4453 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08004454 } else {
4455 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
4456 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
4457 }
4458
Jesse Barnes79e53942008-11-07 14:24:08 -08004459 if (IS_I9XX(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004460 if (IS_PINEVIEW(dev))
4461 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
4462 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08004463 else
4464 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08004465 DPLL_FPA01_P1_POST_DIV_SHIFT);
4466
4467 switch (dpll & DPLL_MODE_MASK) {
4468 case DPLLB_MODE_DAC_SERIAL:
4469 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
4470 5 : 10;
4471 break;
4472 case DPLLB_MODE_LVDS:
4473 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
4474 7 : 14;
4475 break;
4476 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08004477 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08004478 "mode\n", (int)(dpll & DPLL_MODE_MASK));
4479 return 0;
4480 }
4481
4482 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08004483 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004484 } else {
4485 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
4486
4487 if (is_lvds) {
4488 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
4489 DPLL_FPA01_P1_POST_DIV_SHIFT);
4490 clock.p2 = 14;
4491
4492 if ((dpll & PLL_REF_INPUT_MASK) ==
4493 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
4494 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08004495 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004496 } else
Shaohua Li21778322009-02-23 15:19:16 +08004497 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004498 } else {
4499 if (dpll & PLL_P1_DIVIDE_BY_TWO)
4500 clock.p1 = 2;
4501 else {
4502 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
4503 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
4504 }
4505 if (dpll & PLL_P2_DIVIDE_BY_4)
4506 clock.p2 = 4;
4507 else
4508 clock.p2 = 2;
4509
Shaohua Li21778322009-02-23 15:19:16 +08004510 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004511 }
4512 }
4513
4514 /* XXX: It would be nice to validate the clocks, but we can't reuse
4515 * i830PllIsValid() because it relies on the xf86_config connector
4516 * configuration being accurate, which it isn't necessarily.
4517 */
4518
4519 return clock.dot;
4520}
4521
4522/** Returns the currently programmed mode of the given pipe. */
4523struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
4524 struct drm_crtc *crtc)
4525{
4526 struct drm_i915_private *dev_priv = dev->dev_private;
4527 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4528 int pipe = intel_crtc->pipe;
4529 struct drm_display_mode *mode;
4530 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
4531 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
4532 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
4533 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
4534
4535 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
4536 if (!mode)
4537 return NULL;
4538
4539 mode->clock = intel_crtc_clock_get(dev, crtc);
4540 mode->hdisplay = (htot & 0xffff) + 1;
4541 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
4542 mode->hsync_start = (hsync & 0xffff) + 1;
4543 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
4544 mode->vdisplay = (vtot & 0xffff) + 1;
4545 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
4546 mode->vsync_start = (vsync & 0xffff) + 1;
4547 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
4548
4549 drm_mode_set_name(mode);
4550 drm_mode_set_crtcinfo(mode, 0);
4551
4552 return mode;
4553}
4554
Jesse Barnes652c3932009-08-17 13:31:43 -07004555#define GPU_IDLE_TIMEOUT 500 /* ms */
4556
4557/* When this timer fires, we've been idle for awhile */
4558static void intel_gpu_idle_timer(unsigned long arg)
4559{
4560 struct drm_device *dev = (struct drm_device *)arg;
4561 drm_i915_private_t *dev_priv = dev->dev_private;
4562
Zhao Yakui44d98a62009-10-09 11:39:40 +08004563 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004564
4565 dev_priv->busy = false;
4566
Eric Anholt01dfba92009-09-06 15:18:53 -07004567 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004568}
4569
Jesse Barnes652c3932009-08-17 13:31:43 -07004570#define CRTC_IDLE_TIMEOUT 1000 /* ms */
4571
4572static void intel_crtc_idle_timer(unsigned long arg)
4573{
4574 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
4575 struct drm_crtc *crtc = &intel_crtc->base;
4576 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
4577
Zhao Yakui44d98a62009-10-09 11:39:40 +08004578 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004579
4580 intel_crtc->busy = false;
4581
Eric Anholt01dfba92009-09-06 15:18:53 -07004582 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004583}
4584
4585static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule)
4586{
4587 struct drm_device *dev = crtc->dev;
4588 drm_i915_private_t *dev_priv = dev->dev_private;
4589 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4590 int pipe = intel_crtc->pipe;
4591 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4592 int dpll = I915_READ(dpll_reg);
4593
Eric Anholtbad720f2009-10-22 16:11:14 -07004594 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004595 return;
4596
4597 if (!dev_priv->lvds_downclock_avail)
4598 return;
4599
4600 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004601 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004602
4603 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07004604 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
4605 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07004606
4607 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
4608 I915_WRITE(dpll_reg, dpll);
4609 dpll = I915_READ(dpll_reg);
4610 intel_wait_for_vblank(dev);
4611 dpll = I915_READ(dpll_reg);
4612 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08004613 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004614
4615 /* ...and lock them again */
4616 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4617 }
4618
4619 /* Schedule downclock */
4620 if (schedule)
4621 mod_timer(&intel_crtc->idle_timer, jiffies +
4622 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4623}
4624
4625static void intel_decrease_pllclock(struct drm_crtc *crtc)
4626{
4627 struct drm_device *dev = crtc->dev;
4628 drm_i915_private_t *dev_priv = dev->dev_private;
4629 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4630 int pipe = intel_crtc->pipe;
4631 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4632 int dpll = I915_READ(dpll_reg);
4633
Eric Anholtbad720f2009-10-22 16:11:14 -07004634 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004635 return;
4636
4637 if (!dev_priv->lvds_downclock_avail)
4638 return;
4639
4640 /*
4641 * Since this is called by a timer, we should never get here in
4642 * the manual case.
4643 */
4644 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004645 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004646
4647 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07004648 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
4649 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07004650
4651 dpll |= DISPLAY_RATE_SELECT_FPA1;
4652 I915_WRITE(dpll_reg, dpll);
4653 dpll = I915_READ(dpll_reg);
4654 intel_wait_for_vblank(dev);
4655 dpll = I915_READ(dpll_reg);
4656 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08004657 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004658
4659 /* ...and lock them again */
4660 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4661 }
4662
4663}
4664
4665/**
4666 * intel_idle_update - adjust clocks for idleness
4667 * @work: work struct
4668 *
4669 * Either the GPU or display (or both) went idle. Check the busy status
4670 * here and adjust the CRTC and GPU clocks as necessary.
4671 */
4672static void intel_idle_update(struct work_struct *work)
4673{
4674 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
4675 idle_work);
4676 struct drm_device *dev = dev_priv->dev;
4677 struct drm_crtc *crtc;
4678 struct intel_crtc *intel_crtc;
Li Peng45ac22c2010-06-12 23:38:35 +08004679 int enabled = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004680
4681 if (!i915_powersave)
4682 return;
4683
4684 mutex_lock(&dev->struct_mutex);
4685
Jesse Barnes7648fa92010-05-20 14:28:11 -07004686 i915_update_gfx_val(dev_priv);
4687
Jesse Barnes652c3932009-08-17 13:31:43 -07004688 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4689 /* Skip inactive CRTCs */
4690 if (!crtc->fb)
4691 continue;
4692
Li Peng45ac22c2010-06-12 23:38:35 +08004693 enabled++;
Jesse Barnes652c3932009-08-17 13:31:43 -07004694 intel_crtc = to_intel_crtc(crtc);
4695 if (!intel_crtc->busy)
4696 intel_decrease_pllclock(crtc);
4697 }
4698
Li Peng45ac22c2010-06-12 23:38:35 +08004699 if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) {
4700 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
4701 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
4702 }
4703
Jesse Barnes652c3932009-08-17 13:31:43 -07004704 mutex_unlock(&dev->struct_mutex);
4705}
4706
4707/**
4708 * intel_mark_busy - mark the GPU and possibly the display busy
4709 * @dev: drm device
4710 * @obj: object we're operating on
4711 *
4712 * Callers can use this function to indicate that the GPU is busy processing
4713 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
4714 * buffer), we'll also mark the display as busy, so we know to increase its
4715 * clock frequency.
4716 */
4717void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj)
4718{
4719 drm_i915_private_t *dev_priv = dev->dev_private;
4720 struct drm_crtc *crtc = NULL;
4721 struct intel_framebuffer *intel_fb;
4722 struct intel_crtc *intel_crtc;
4723
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08004724 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4725 return;
4726
Li Peng060e6452010-02-10 01:54:24 +08004727 if (!dev_priv->busy) {
4728 if (IS_I945G(dev) || IS_I945GM(dev)) {
4729 u32 fw_blc_self;
Li Pengee980b82010-01-27 19:01:11 +08004730
Li Peng060e6452010-02-10 01:54:24 +08004731 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4732 fw_blc_self = I915_READ(FW_BLC_SELF);
4733 fw_blc_self &= ~FW_BLC_SELF_EN;
4734 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4735 }
Chris Wilson28cf7982009-11-30 01:08:56 +00004736 dev_priv->busy = true;
Li Peng060e6452010-02-10 01:54:24 +08004737 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00004738 mod_timer(&dev_priv->idle_timer, jiffies +
4739 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07004740
4741 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4742 if (!crtc->fb)
4743 continue;
4744
4745 intel_crtc = to_intel_crtc(crtc);
4746 intel_fb = to_intel_framebuffer(crtc->fb);
4747 if (intel_fb->obj == obj) {
4748 if (!intel_crtc->busy) {
Li Peng060e6452010-02-10 01:54:24 +08004749 if (IS_I945G(dev) || IS_I945GM(dev)) {
4750 u32 fw_blc_self;
4751
4752 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4753 fw_blc_self = I915_READ(FW_BLC_SELF);
4754 fw_blc_self &= ~FW_BLC_SELF_EN;
4755 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4756 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004757 /* Non-busy -> busy, upclock */
4758 intel_increase_pllclock(crtc, true);
4759 intel_crtc->busy = true;
4760 } else {
4761 /* Busy -> busy, put off timer */
4762 mod_timer(&intel_crtc->idle_timer, jiffies +
4763 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4764 }
4765 }
4766 }
4767}
4768
Jesse Barnes79e53942008-11-07 14:24:08 -08004769static void intel_crtc_destroy(struct drm_crtc *crtc)
4770{
4771 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4772
4773 drm_crtc_cleanup(crtc);
4774 kfree(intel_crtc);
4775}
4776
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004777struct intel_unpin_work {
4778 struct work_struct work;
4779 struct drm_device *dev;
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004780 struct drm_gem_object *old_fb_obj;
4781 struct drm_gem_object *pending_flip_obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004782 struct drm_pending_vblank_event *event;
4783 int pending;
4784};
4785
4786static void intel_unpin_work_fn(struct work_struct *__work)
4787{
4788 struct intel_unpin_work *work =
4789 container_of(__work, struct intel_unpin_work, work);
4790
4791 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004792 i915_gem_object_unpin(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004793 drm_gem_object_unreference(work->pending_flip_obj);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004794 drm_gem_object_unreference(work->old_fb_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004795 mutex_unlock(&work->dev->struct_mutex);
4796 kfree(work);
4797}
4798
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004799static void do_intel_finish_page_flip(struct drm_device *dev,
4800 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004801{
4802 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004803 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4804 struct intel_unpin_work *work;
4805 struct drm_i915_gem_object *obj_priv;
4806 struct drm_pending_vblank_event *e;
4807 struct timeval now;
4808 unsigned long flags;
4809
4810 /* Ignore early vblank irqs */
4811 if (intel_crtc == NULL)
4812 return;
4813
4814 spin_lock_irqsave(&dev->event_lock, flags);
4815 work = intel_crtc->unpin_work;
4816 if (work == NULL || !work->pending) {
4817 spin_unlock_irqrestore(&dev->event_lock, flags);
4818 return;
4819 }
4820
4821 intel_crtc->unpin_work = NULL;
4822 drm_vblank_put(dev, intel_crtc->pipe);
4823
4824 if (work->event) {
4825 e = work->event;
4826 do_gettimeofday(&now);
4827 e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe);
4828 e->event.tv_sec = now.tv_sec;
4829 e->event.tv_usec = now.tv_usec;
4830 list_add_tail(&e->base.link,
4831 &e->base.file_priv->event_list);
4832 wake_up_interruptible(&e->base.file_priv->event_wait);
4833 }
4834
4835 spin_unlock_irqrestore(&dev->event_lock, flags);
4836
Daniel Vetter23010e42010-03-08 13:35:02 +01004837 obj_priv = to_intel_bo(work->pending_flip_obj);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004838
4839 /* Initial scanout buffer will have a 0 pending flip count */
4840 if ((atomic_read(&obj_priv->pending_flip) == 0) ||
4841 atomic_dec_and_test(&obj_priv->pending_flip))
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004842 DRM_WAKEUP(&dev_priv->pending_flip_queue);
4843 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07004844
4845 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004846}
4847
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004848void intel_finish_page_flip(struct drm_device *dev, int pipe)
4849{
4850 drm_i915_private_t *dev_priv = dev->dev_private;
4851 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4852
4853 do_intel_finish_page_flip(dev, crtc);
4854}
4855
4856void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
4857{
4858 drm_i915_private_t *dev_priv = dev->dev_private;
4859 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
4860
4861 do_intel_finish_page_flip(dev, crtc);
4862}
4863
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004864void intel_prepare_page_flip(struct drm_device *dev, int plane)
4865{
4866 drm_i915_private_t *dev_priv = dev->dev_private;
4867 struct intel_crtc *intel_crtc =
4868 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
4869 unsigned long flags;
4870
4871 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004872 if (intel_crtc->unpin_work) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004873 intel_crtc->unpin_work->pending = 1;
Jesse Barnesde3f4402010-01-14 13:18:02 -08004874 } else {
4875 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
4876 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004877 spin_unlock_irqrestore(&dev->event_lock, flags);
4878}
4879
4880static int intel_crtc_page_flip(struct drm_crtc *crtc,
4881 struct drm_framebuffer *fb,
4882 struct drm_pending_vblank_event *event)
4883{
4884 struct drm_device *dev = crtc->dev;
4885 struct drm_i915_private *dev_priv = dev->dev_private;
4886 struct intel_framebuffer *intel_fb;
4887 struct drm_i915_gem_object *obj_priv;
4888 struct drm_gem_object *obj;
4889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4890 struct intel_unpin_work *work;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004891 unsigned long flags, offset;
Zhenyu Wangaacef092010-02-09 09:46:20 +08004892 int pipesrc_reg = (intel_crtc->pipe == 0) ? PIPEASRC : PIPEBSRC;
4893 int ret, pipesrc;
Jesse Barnes83f7fd02010-04-05 14:03:51 -07004894 u32 flip_mask;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004895
4896 work = kzalloc(sizeof *work, GFP_KERNEL);
4897 if (work == NULL)
4898 return -ENOMEM;
4899
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004900 work->event = event;
4901 work->dev = crtc->dev;
4902 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004903 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004904 INIT_WORK(&work->work, intel_unpin_work_fn);
4905
4906 /* We borrow the event spin lock for protecting unpin_work */
4907 spin_lock_irqsave(&dev->event_lock, flags);
4908 if (intel_crtc->unpin_work) {
4909 spin_unlock_irqrestore(&dev->event_lock, flags);
4910 kfree(work);
Chris Wilson468f0b42010-05-27 13:18:13 +01004911
4912 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004913 return -EBUSY;
4914 }
4915 intel_crtc->unpin_work = work;
4916 spin_unlock_irqrestore(&dev->event_lock, flags);
4917
4918 intel_fb = to_intel_framebuffer(fb);
4919 obj = intel_fb->obj;
4920
Chris Wilson468f0b42010-05-27 13:18:13 +01004921 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004922 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson96b099f2010-06-07 14:03:04 +01004923 if (ret)
4924 goto cleanup_work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004925
Jesse Barnes75dfca82010-02-10 15:09:44 -08004926 /* Reference the objects for the scheduled work. */
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004927 drm_gem_object_reference(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004928 drm_gem_object_reference(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004929
4930 crtc->fb = fb;
Chris Wilson2dafb1e2010-06-07 14:03:05 +01004931 ret = i915_gem_object_flush_write_domain(obj);
4932 if (ret)
4933 goto cleanup_objs;
Chris Wilson96b099f2010-06-07 14:03:04 +01004934
4935 ret = drm_vblank_get(dev, intel_crtc->pipe);
4936 if (ret)
4937 goto cleanup_objs;
4938
Daniel Vetter23010e42010-03-08 13:35:02 +01004939 obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004940 atomic_inc(&obj_priv->pending_flip);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004941 work->pending_flip_obj = obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004942
Jesse Barnes83f7fd02010-04-05 14:03:51 -07004943 if (intel_crtc->plane)
4944 flip_mask = I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
4945 else
4946 flip_mask = I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT;
4947
4948 /* Wait for any previous flip to finish */
4949 if (IS_GEN3(dev))
4950 while (I915_READ(ISR) & flip_mask)
4951 ;
4952
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004953 /* Offset into the new buffer for cases of shared fbs between CRTCs */
4954 offset = obj_priv->gtt_offset;
4955 offset += (crtc->y * fb->pitch) + (crtc->x * (fb->bits_per_pixel) / 8);
4956
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004957 BEGIN_LP_RING(4);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004958 if (IS_I965G(dev)) {
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004959 OUT_RING(MI_DISPLAY_FLIP |
4960 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4961 OUT_RING(fb->pitch);
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004962 OUT_RING(offset | obj_priv->tiling_mode);
Zhenyu Wangaacef092010-02-09 09:46:20 +08004963 pipesrc = I915_READ(pipesrc_reg);
4964 OUT_RING(pipesrc & 0x0fff0fff);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004965 } else {
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004966 OUT_RING(MI_DISPLAY_FLIP_I915 |
4967 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4968 OUT_RING(fb->pitch);
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004969 OUT_RING(offset);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004970 OUT_RING(MI_NOOP);
4971 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004972 ADVANCE_LP_RING();
4973
4974 mutex_unlock(&dev->struct_mutex);
4975
Jesse Barnese5510fa2010-07-01 16:48:37 -07004976 trace_i915_flip_request(intel_crtc->plane, obj);
4977
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004978 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01004979
4980cleanup_objs:
4981 drm_gem_object_unreference(work->old_fb_obj);
4982 drm_gem_object_unreference(obj);
4983cleanup_work:
4984 mutex_unlock(&dev->struct_mutex);
4985
4986 spin_lock_irqsave(&dev->event_lock, flags);
4987 intel_crtc->unpin_work = NULL;
4988 spin_unlock_irqrestore(&dev->event_lock, flags);
4989
4990 kfree(work);
4991
4992 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004993}
4994
Jesse Barnes79e53942008-11-07 14:24:08 -08004995static const struct drm_crtc_helper_funcs intel_helper_funcs = {
4996 .dpms = intel_crtc_dpms,
4997 .mode_fixup = intel_crtc_mode_fixup,
4998 .mode_set = intel_crtc_mode_set,
4999 .mode_set_base = intel_pipe_set_base,
5000 .prepare = intel_crtc_prepare,
5001 .commit = intel_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10005002 .load_lut = intel_crtc_load_lut,
Jesse Barnes79e53942008-11-07 14:24:08 -08005003};
5004
5005static const struct drm_crtc_funcs intel_crtc_funcs = {
5006 .cursor_set = intel_crtc_cursor_set,
5007 .cursor_move = intel_crtc_cursor_move,
5008 .gamma_set = intel_crtc_gamma_set,
5009 .set_config = drm_crtc_helper_set_config,
5010 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005011 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08005012};
5013
5014
Hannes Ederb358d0a2008-12-18 21:18:47 +01005015static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08005016{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005017 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005018 struct intel_crtc *intel_crtc;
5019 int i;
5020
5021 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
5022 if (intel_crtc == NULL)
5023 return;
5024
5025 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
5026
5027 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
5028 intel_crtc->pipe = pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08005029 intel_crtc->plane = pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005030 for (i = 0; i < 256; i++) {
5031 intel_crtc->lut_r[i] = i;
5032 intel_crtc->lut_g[i] = i;
5033 intel_crtc->lut_b[i] = i;
5034 }
5035
Jesse Barnes80824002009-09-10 15:28:06 -07005036 /* Swap pipes & planes for FBC on pre-965 */
5037 intel_crtc->pipe = pipe;
5038 intel_crtc->plane = pipe;
5039 if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005040 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07005041 intel_crtc->plane = ((pipe == 0) ? 1 : 0);
5042 }
5043
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005044 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
5045 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
5046 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
5047 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
5048
Jesse Barnes79e53942008-11-07 14:24:08 -08005049 intel_crtc->cursor_addr = 0;
5050 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
5051 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
5052
Jesse Barnes652c3932009-08-17 13:31:43 -07005053 intel_crtc->busy = false;
5054
5055 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
5056 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005057}
5058
Carl Worth08d7b3d2009-04-29 14:43:54 -07005059int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
5060 struct drm_file *file_priv)
5061{
5062 drm_i915_private_t *dev_priv = dev->dev_private;
5063 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02005064 struct drm_mode_object *drmmode_obj;
5065 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005066
5067 if (!dev_priv) {
5068 DRM_ERROR("called with no initialization\n");
5069 return -EINVAL;
5070 }
5071
Daniel Vetterc05422d2009-08-11 16:05:30 +02005072 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
5073 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07005074
Daniel Vetterc05422d2009-08-11 16:05:30 +02005075 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07005076 DRM_ERROR("no such CRTC id\n");
5077 return -EINVAL;
5078 }
5079
Daniel Vetterc05422d2009-08-11 16:05:30 +02005080 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
5081 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005082
Daniel Vetterc05422d2009-08-11 16:05:30 +02005083 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005084}
5085
Jesse Barnes79e53942008-11-07 14:24:08 -08005086struct drm_crtc *intel_get_crtc_from_pipe(struct drm_device *dev, int pipe)
5087{
5088 struct drm_crtc *crtc = NULL;
5089
5090 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5091 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5092 if (intel_crtc->pipe == pipe)
5093 break;
5094 }
5095 return crtc;
5096}
5097
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005098static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005099{
5100 int index_mask = 0;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005101 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005102 int entry = 0;
5103
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005104 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
5105 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07005106 if (type_mask & intel_encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005107 index_mask |= (1 << entry);
5108 entry++;
5109 }
5110 return index_mask;
5111}
5112
5113
5114static void intel_setup_outputs(struct drm_device *dev)
5115{
Eric Anholt725e30a2009-01-22 13:01:02 -08005116 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005117 struct drm_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005118 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005119
Zhenyu Wang541998a2009-06-05 15:38:44 +08005120 if (IS_MOBILE(dev) && !IS_I830(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005121 intel_lvds_init(dev);
5122
Eric Anholtbad720f2009-10-22 16:11:14 -07005123 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005124 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005125
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005126 if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED))
5127 intel_dp_init(dev, DP_A);
5128
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005129 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
5130 intel_dp_init(dev, PCH_DP_D);
5131 }
5132
5133 intel_crt_init(dev);
5134
5135 if (HAS_PCH_SPLIT(dev)) {
5136 int found;
5137
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005138 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08005139 /* PCH SDVOB multiplex with HDMIB */
5140 found = intel_sdvo_init(dev, PCH_SDVOB);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005141 if (!found)
5142 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005143 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
5144 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005145 }
5146
5147 if (I915_READ(HDMIC) & PORT_DETECTED)
5148 intel_hdmi_init(dev, HDMIC);
5149
5150 if (I915_READ(HDMID) & PORT_DETECTED)
5151 intel_hdmi_init(dev, HDMID);
5152
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005153 if (I915_READ(PCH_DP_C) & DP_DETECTED)
5154 intel_dp_init(dev, PCH_DP_C);
5155
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005156 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005157 intel_dp_init(dev, PCH_DP_D);
5158
Zhenyu Wang103a1962009-11-27 11:44:36 +08005159 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08005160 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08005161
Eric Anholt725e30a2009-01-22 13:01:02 -08005162 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005163 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005164 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005165 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
5166 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005167 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005168 }
Ma Ling27185ae2009-08-24 13:50:23 +08005169
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005170 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
5171 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005172 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005173 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005174 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005175
5176 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005177
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005178 if (I915_READ(SDVOB) & SDVO_DETECTED) {
5179 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005180 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005181 }
Ma Ling27185ae2009-08-24 13:50:23 +08005182
5183 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
5184
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005185 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
5186 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005187 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005188 }
5189 if (SUPPORTS_INTEGRATED_DP(dev)) {
5190 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005191 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005192 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005193 }
Ma Ling27185ae2009-08-24 13:50:23 +08005194
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005195 if (SUPPORTS_INTEGRATED_DP(dev) &&
5196 (I915_READ(DP_D) & DP_DETECTED)) {
5197 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005198 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005199 }
Eric Anholtbad720f2009-10-22 16:11:14 -07005200 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005201 intel_dvo_init(dev);
5202
Zhenyu Wang103a1962009-11-27 11:44:36 +08005203 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005204 intel_tv_init(dev);
5205
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005206 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
5207 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08005208
Eric Anholt21d40d32010-03-25 11:11:14 -07005209 encoder->possible_crtcs = intel_encoder->crtc_mask;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005210 encoder->possible_clones = intel_encoder_clones(dev,
Eric Anholt21d40d32010-03-25 11:11:14 -07005211 intel_encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08005212 }
5213}
5214
5215static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
5216{
5217 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005218
5219 drm_framebuffer_cleanup(fb);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005220 drm_gem_object_unreference_unlocked(intel_fb->obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005221
5222 kfree(intel_fb);
5223}
5224
5225static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
5226 struct drm_file *file_priv,
5227 unsigned int *handle)
5228{
5229 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
5230 struct drm_gem_object *object = intel_fb->obj;
5231
5232 return drm_gem_handle_create(file_priv, object, handle);
5233}
5234
5235static const struct drm_framebuffer_funcs intel_fb_funcs = {
5236 .destroy = intel_user_framebuffer_destroy,
5237 .create_handle = intel_user_framebuffer_create_handle,
5238};
5239
Dave Airlie38651672010-03-30 05:34:13 +00005240int intel_framebuffer_init(struct drm_device *dev,
5241 struct intel_framebuffer *intel_fb,
5242 struct drm_mode_fb_cmd *mode_cmd,
5243 struct drm_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08005244{
Jesse Barnes79e53942008-11-07 14:24:08 -08005245 int ret;
5246
Jesse Barnes79e53942008-11-07 14:24:08 -08005247 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
5248 if (ret) {
5249 DRM_ERROR("framebuffer init failed %d\n", ret);
5250 return ret;
5251 }
5252
5253 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08005254 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08005255 return 0;
5256}
5257
Jesse Barnes79e53942008-11-07 14:24:08 -08005258static struct drm_framebuffer *
5259intel_user_framebuffer_create(struct drm_device *dev,
5260 struct drm_file *filp,
5261 struct drm_mode_fb_cmd *mode_cmd)
5262{
5263 struct drm_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00005264 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005265 int ret;
5266
5267 obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle);
5268 if (!obj)
5269 return NULL;
5270
Dave Airlie38651672010-03-30 05:34:13 +00005271 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5272 if (!intel_fb)
5273 return NULL;
5274
5275 ret = intel_framebuffer_init(dev, intel_fb,
5276 mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005277 if (ret) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00005278 drm_gem_object_unreference_unlocked(obj);
Dave Airlie38651672010-03-30 05:34:13 +00005279 kfree(intel_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005280 return NULL;
5281 }
5282
Dave Airlie38651672010-03-30 05:34:13 +00005283 return &intel_fb->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005284}
5285
Jesse Barnes79e53942008-11-07 14:24:08 -08005286static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08005287 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005288 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08005289};
5290
Chris Wilson9ea8d052010-01-04 18:57:56 +00005291static struct drm_gem_object *
5292intel_alloc_power_context(struct drm_device *dev)
5293{
5294 struct drm_gem_object *pwrctx;
5295 int ret;
5296
Daniel Vetterac52bc52010-04-09 19:05:06 +00005297 pwrctx = i915_gem_alloc_object(dev, 4096);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005298 if (!pwrctx) {
5299 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
5300 return NULL;
5301 }
5302
5303 mutex_lock(&dev->struct_mutex);
5304 ret = i915_gem_object_pin(pwrctx, 4096);
5305 if (ret) {
5306 DRM_ERROR("failed to pin power context: %d\n", ret);
5307 goto err_unref;
5308 }
5309
5310 ret = i915_gem_object_set_to_gtt_domain(pwrctx, 1);
5311 if (ret) {
5312 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
5313 goto err_unpin;
5314 }
5315 mutex_unlock(&dev->struct_mutex);
5316
5317 return pwrctx;
5318
5319err_unpin:
5320 i915_gem_object_unpin(pwrctx);
5321err_unref:
5322 drm_gem_object_unreference(pwrctx);
5323 mutex_unlock(&dev->struct_mutex);
5324 return NULL;
5325}
5326
Jesse Barnes7648fa92010-05-20 14:28:11 -07005327bool ironlake_set_drps(struct drm_device *dev, u8 val)
5328{
5329 struct drm_i915_private *dev_priv = dev->dev_private;
5330 u16 rgvswctl;
5331
5332 rgvswctl = I915_READ16(MEMSWCTL);
5333 if (rgvswctl & MEMCTL_CMD_STS) {
5334 DRM_DEBUG("gpu busy, RCS change rejected\n");
5335 return false; /* still busy with another command */
5336 }
5337
5338 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5339 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5340 I915_WRITE16(MEMSWCTL, rgvswctl);
5341 POSTING_READ16(MEMSWCTL);
5342
5343 rgvswctl |= MEMCTL_CMD_STS;
5344 I915_WRITE16(MEMSWCTL, rgvswctl);
5345
5346 return true;
5347}
5348
Jesse Barnesf97108d2010-01-29 11:27:07 -08005349void ironlake_enable_drps(struct drm_device *dev)
5350{
5351 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005352 u32 rgvmodectl = I915_READ(MEMMODECTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005353 u8 fmax, fmin, fstart, vstart;
5354 int i = 0;
5355
5356 /* 100ms RC evaluation intervals */
5357 I915_WRITE(RCUPEI, 100000);
5358 I915_WRITE(RCDNEI, 100000);
5359
5360 /* Set max/min thresholds to 90ms and 80ms respectively */
5361 I915_WRITE(RCBMAXAVG, 90000);
5362 I915_WRITE(RCBMINAVG, 80000);
5363
5364 I915_WRITE(MEMIHYST, 1);
5365
5366 /* Set up min, max, and cur for interrupt handling */
5367 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5368 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5369 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5370 MEMMODE_FSTART_SHIFT;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005371 fstart = fmax;
5372
Jesse Barnesf97108d2010-01-29 11:27:07 -08005373 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
5374 PXVFREQ_PX_SHIFT;
5375
Jesse Barnes7648fa92010-05-20 14:28:11 -07005376 dev_priv->fmax = fstart; /* IPS callback will increase this */
5377 dev_priv->fstart = fstart;
5378
5379 dev_priv->max_delay = fmax;
Jesse Barnesf97108d2010-01-29 11:27:07 -08005380 dev_priv->min_delay = fmin;
5381 dev_priv->cur_delay = fstart;
5382
Jesse Barnes7648fa92010-05-20 14:28:11 -07005383 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", fmax, fmin,
5384 fstart);
5385
Jesse Barnesf97108d2010-01-29 11:27:07 -08005386 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5387
5388 /*
5389 * Interrupts will be enabled in ironlake_irq_postinstall
5390 */
5391
5392 I915_WRITE(VIDSTART, vstart);
5393 POSTING_READ(VIDSTART);
5394
5395 rgvmodectl |= MEMMODE_SWMODE_EN;
5396 I915_WRITE(MEMMODECTL, rgvmodectl);
5397
5398 while (I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) {
5399 if (i++ > 100) {
5400 DRM_ERROR("stuck trying to change perf mode\n");
5401 break;
5402 }
5403 msleep(1);
5404 }
5405 msleep(1);
5406
Jesse Barnes7648fa92010-05-20 14:28:11 -07005407 ironlake_set_drps(dev, fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005408
Jesse Barnes7648fa92010-05-20 14:28:11 -07005409 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
5410 I915_READ(0x112e0);
5411 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
5412 dev_priv->last_count2 = I915_READ(0x112f4);
5413 getrawmonotonic(&dev_priv->last_time2);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005414}
5415
5416void ironlake_disable_drps(struct drm_device *dev)
5417{
5418 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005419 u16 rgvswctl = I915_READ16(MEMSWCTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005420
5421 /* Ack interrupts, disable EFC interrupt */
5422 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5423 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5424 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5425 I915_WRITE(DEIIR, DE_PCU_EVENT);
5426 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5427
5428 /* Go back to the starting frequency */
Jesse Barnes7648fa92010-05-20 14:28:11 -07005429 ironlake_set_drps(dev, dev_priv->fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005430 msleep(1);
5431 rgvswctl |= MEMCTL_CMD_STS;
5432 I915_WRITE(MEMSWCTL, rgvswctl);
5433 msleep(1);
5434
5435}
5436
Jesse Barnes7648fa92010-05-20 14:28:11 -07005437static unsigned long intel_pxfreq(u32 vidfreq)
5438{
5439 unsigned long freq;
5440 int div = (vidfreq & 0x3f0000) >> 16;
5441 int post = (vidfreq & 0x3000) >> 12;
5442 int pre = (vidfreq & 0x7);
5443
5444 if (!pre)
5445 return 0;
5446
5447 freq = ((div * 133333) / ((1<<post) * pre));
5448
5449 return freq;
5450}
5451
5452void intel_init_emon(struct drm_device *dev)
5453{
5454 struct drm_i915_private *dev_priv = dev->dev_private;
5455 u32 lcfuse;
5456 u8 pxw[16];
5457 int i;
5458
5459 /* Disable to program */
5460 I915_WRITE(ECR, 0);
5461 POSTING_READ(ECR);
5462
5463 /* Program energy weights for various events */
5464 I915_WRITE(SDEW, 0x15040d00);
5465 I915_WRITE(CSIEW0, 0x007f0000);
5466 I915_WRITE(CSIEW1, 0x1e220004);
5467 I915_WRITE(CSIEW2, 0x04000004);
5468
5469 for (i = 0; i < 5; i++)
5470 I915_WRITE(PEW + (i * 4), 0);
5471 for (i = 0; i < 3; i++)
5472 I915_WRITE(DEW + (i * 4), 0);
5473
5474 /* Program P-state weights to account for frequency power adjustment */
5475 for (i = 0; i < 16; i++) {
5476 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5477 unsigned long freq = intel_pxfreq(pxvidfreq);
5478 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5479 PXVFREQ_PX_SHIFT;
5480 unsigned long val;
5481
5482 val = vid * vid;
5483 val *= (freq / 1000);
5484 val *= 255;
5485 val /= (127*127*900);
5486 if (val > 0xff)
5487 DRM_ERROR("bad pxval: %ld\n", val);
5488 pxw[i] = val;
5489 }
5490 /* Render standby states get 0 weight */
5491 pxw[14] = 0;
5492 pxw[15] = 0;
5493
5494 for (i = 0; i < 4; i++) {
5495 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5496 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5497 I915_WRITE(PXW + (i * 4), val);
5498 }
5499
5500 /* Adjust magic regs to magic values (more experimental results) */
5501 I915_WRITE(OGW0, 0);
5502 I915_WRITE(OGW1, 0);
5503 I915_WRITE(EG0, 0x00007f00);
5504 I915_WRITE(EG1, 0x0000000e);
5505 I915_WRITE(EG2, 0x000e0000);
5506 I915_WRITE(EG3, 0x68000300);
5507 I915_WRITE(EG4, 0x42000000);
5508 I915_WRITE(EG5, 0x00140031);
5509 I915_WRITE(EG6, 0);
5510 I915_WRITE(EG7, 0);
5511
5512 for (i = 0; i < 8; i++)
5513 I915_WRITE(PXWL + (i * 4), 0);
5514
5515 /* Enable PMON + select events */
5516 I915_WRITE(ECR, 0x80000019);
5517
5518 lcfuse = I915_READ(LCFUSE02);
5519
5520 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
5521}
5522
Jesse Barnes652c3932009-08-17 13:31:43 -07005523void intel_init_clock_gating(struct drm_device *dev)
5524{
5525 struct drm_i915_private *dev_priv = dev->dev_private;
5526
5527 /*
5528 * Disable clock gating reported to work incorrectly according to the
5529 * specs, but enable as much else as we can.
5530 */
Eric Anholtbad720f2009-10-22 16:11:14 -07005531 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07005532 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
5533
5534 if (IS_IRONLAKE(dev)) {
5535 /* Required for FBC */
5536 dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE;
5537 /* Required for CxSR */
5538 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
5539
5540 I915_WRITE(PCH_3DCGDIS0,
5541 MARIUNIT_CLOCK_GATE_DISABLE |
5542 SVSMUNIT_CLOCK_GATE_DISABLE);
5543 }
5544
5545 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005546
5547 /*
5548 * According to the spec the following bits should be set in
5549 * order to enable memory self-refresh
5550 * The bit 22/21 of 0x42004
5551 * The bit 5 of 0x42020
5552 * The bit 15 of 0x45000
5553 */
5554 if (IS_IRONLAKE(dev)) {
5555 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5556 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5557 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
5558 I915_WRITE(ILK_DSPCLK_GATE,
5559 (I915_READ(ILK_DSPCLK_GATE) |
5560 ILK_DPARB_CLK_GATE));
5561 I915_WRITE(DISP_ARB_CTL,
5562 (I915_READ(DISP_ARB_CTL) |
5563 DISP_FBC_WM_DIS));
5564 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08005565 /*
5566 * Based on the document from hardware guys the following bits
5567 * should be set unconditionally in order to enable FBC.
5568 * The bit 22 of 0x42000
5569 * The bit 22 of 0x42004
5570 * The bit 7,8,9 of 0x42020.
5571 */
5572 if (IS_IRONLAKE_M(dev)) {
5573 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5574 I915_READ(ILK_DISPLAY_CHICKEN1) |
5575 ILK_FBCQ_DIS);
5576 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5577 I915_READ(ILK_DISPLAY_CHICKEN2) |
5578 ILK_DPARB_GATE);
5579 I915_WRITE(ILK_DSPCLK_GATE,
5580 I915_READ(ILK_DSPCLK_GATE) |
5581 ILK_DPFC_DIS1 |
5582 ILK_DPFC_DIS2 |
5583 ILK_CLK_FBC);
5584 }
Zhenyu Wangc03342f2009-09-29 11:01:23 +08005585 return;
5586 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005587 uint32_t dspclk_gate;
5588 I915_WRITE(RENCLK_GATE_D1, 0);
5589 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5590 GS_UNIT_CLOCK_GATE_DISABLE |
5591 CL_UNIT_CLOCK_GATE_DISABLE);
5592 I915_WRITE(RAMCLK_GATE_D, 0);
5593 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5594 OVRUNIT_CLOCK_GATE_DISABLE |
5595 OVCUNIT_CLOCK_GATE_DISABLE;
5596 if (IS_GM45(dev))
5597 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5598 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
5599 } else if (IS_I965GM(dev)) {
5600 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5601 I915_WRITE(RENCLK_GATE_D2, 0);
5602 I915_WRITE(DSPCLK_GATE_D, 0);
5603 I915_WRITE(RAMCLK_GATE_D, 0);
5604 I915_WRITE16(DEUC, 0);
5605 } else if (IS_I965G(dev)) {
5606 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5607 I965_RCC_CLOCK_GATE_DISABLE |
5608 I965_RCPB_CLOCK_GATE_DISABLE |
5609 I965_ISC_CLOCK_GATE_DISABLE |
5610 I965_FBC_CLOCK_GATE_DISABLE);
5611 I915_WRITE(RENCLK_GATE_D2, 0);
5612 } else if (IS_I9XX(dev)) {
5613 u32 dstate = I915_READ(D_STATE);
5614
5615 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5616 DSTATE_DOT_CLOCK_GATING;
5617 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005618 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005619 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5620 } else if (IS_I830(dev)) {
5621 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5622 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005623
5624 /*
5625 * GPU can automatically power down the render unit if given a page
5626 * to save state.
5627 */
Andrew Lutomirski1d3c36ad2009-12-21 10:10:22 -05005628 if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005629 struct drm_i915_gem_object *obj_priv = NULL;
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005630
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005631 if (dev_priv->pwrctx) {
Daniel Vetter23010e42010-03-08 13:35:02 +01005632 obj_priv = to_intel_bo(dev_priv->pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005633 } else {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005634 struct drm_gem_object *pwrctx;
5635
5636 pwrctx = intel_alloc_power_context(dev);
5637 if (pwrctx) {
5638 dev_priv->pwrctx = pwrctx;
Daniel Vetter23010e42010-03-08 13:35:02 +01005639 obj_priv = to_intel_bo(pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005640 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005641 }
5642
Chris Wilson9ea8d052010-01-04 18:57:56 +00005643 if (obj_priv) {
5644 I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN);
5645 I915_WRITE(MCHBAR_RENDER_STANDBY,
5646 I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT);
5647 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005648 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005649}
5650
Jesse Barnese70236a2009-09-21 10:42:27 -07005651/* Set up chip specific display functions */
5652static void intel_init_display(struct drm_device *dev)
5653{
5654 struct drm_i915_private *dev_priv = dev->dev_private;
5655
5656 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07005657 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005658 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07005659 else
5660 dev_priv->display.dpms = i9xx_crtc_dpms;
5661
Adam Jacksonee5382a2010-04-23 11:17:39 -04005662 if (I915_HAS_FBC(dev)) {
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08005663 if (IS_IRONLAKE_M(dev)) {
5664 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
5665 dev_priv->display.enable_fbc = ironlake_enable_fbc;
5666 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5667 } else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07005668 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5669 dev_priv->display.enable_fbc = g4x_enable_fbc;
5670 dev_priv->display.disable_fbc = g4x_disable_fbc;
Robert Hooker8d06a1e2010-03-19 15:13:27 -04005671 } else if (IS_I965GM(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005672 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5673 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5674 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5675 }
Jesse Barnes74dff282009-09-14 15:39:40 -07005676 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07005677 }
5678
5679 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005680 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07005681 dev_priv->display.get_display_clock_speed =
5682 i945_get_display_clock_speed;
5683 else if (IS_I915G(dev))
5684 dev_priv->display.get_display_clock_speed =
5685 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005686 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005687 dev_priv->display.get_display_clock_speed =
5688 i9xx_misc_get_display_clock_speed;
5689 else if (IS_I915GM(dev))
5690 dev_priv->display.get_display_clock_speed =
5691 i915gm_get_display_clock_speed;
5692 else if (IS_I865G(dev))
5693 dev_priv->display.get_display_clock_speed =
5694 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005695 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005696 dev_priv->display.get_display_clock_speed =
5697 i855_get_display_clock_speed;
5698 else /* 852, 830 */
5699 dev_priv->display.get_display_clock_speed =
5700 i830_get_display_clock_speed;
5701
5702 /* For FIFO watermark updates */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005703 if (HAS_PCH_SPLIT(dev)) {
5704 if (IS_IRONLAKE(dev)) {
5705 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
5706 dev_priv->display.update_wm = ironlake_update_wm;
5707 else {
5708 DRM_DEBUG_KMS("Failed to get proper latency. "
5709 "Disable CxSR\n");
5710 dev_priv->display.update_wm = NULL;
5711 }
5712 } else
5713 dev_priv->display.update_wm = NULL;
5714 } else if (IS_PINEVIEW(dev)) {
Zhao Yakuid4294342010-03-22 22:45:36 +08005715 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
Li Peng95534262010-05-18 18:58:44 +08005716 dev_priv->is_ddr3,
Zhao Yakuid4294342010-03-22 22:45:36 +08005717 dev_priv->fsb_freq,
5718 dev_priv->mem_freq)) {
5719 DRM_INFO("failed to find known CxSR latency "
Li Peng95534262010-05-18 18:58:44 +08005720 "(found ddr%s fsb freq %d, mem freq %d), "
Zhao Yakuid4294342010-03-22 22:45:36 +08005721 "disabling CxSR\n",
Li Peng95534262010-05-18 18:58:44 +08005722 (dev_priv->is_ddr3 == 1) ? "3": "2",
Zhao Yakuid4294342010-03-22 22:45:36 +08005723 dev_priv->fsb_freq, dev_priv->mem_freq);
5724 /* Disable CxSR and never update its watermark again */
5725 pineview_disable_cxsr(dev);
5726 dev_priv->display.update_wm = NULL;
5727 } else
5728 dev_priv->display.update_wm = pineview_update_wm;
5729 } else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005730 dev_priv->display.update_wm = g4x_update_wm;
5731 else if (IS_I965G(dev))
5732 dev_priv->display.update_wm = i965_update_wm;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005733 else if (IS_I9XX(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005734 dev_priv->display.update_wm = i9xx_update_wm;
5735 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005736 } else if (IS_I85X(dev)) {
5737 dev_priv->display.update_wm = i9xx_update_wm;
5738 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005739 } else {
Adam Jackson8f4695e2010-04-16 18:20:57 -04005740 dev_priv->display.update_wm = i830_update_wm;
5741 if (IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005742 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5743 else
5744 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005745 }
5746}
5747
Jesse Barnesb690e962010-07-19 13:53:12 -07005748/*
5749 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
5750 * resume, or other times. This quirk makes sure that's the case for
5751 * affected systems.
5752 */
5753static void quirk_pipea_force (struct drm_device *dev)
5754{
5755 struct drm_i915_private *dev_priv = dev->dev_private;
5756
5757 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
5758 DRM_DEBUG_DRIVER("applying pipe a force quirk\n");
5759}
5760
5761struct intel_quirk {
5762 int device;
5763 int subsystem_vendor;
5764 int subsystem_device;
5765 void (*hook)(struct drm_device *dev);
5766};
5767
5768struct intel_quirk intel_quirks[] = {
5769 /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */
5770 { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force },
5771 /* HP Mini needs pipe A force quirk (LP: #322104) */
5772 { 0x27ae,0x103c, 0x361a, quirk_pipea_force },
5773
5774 /* Thinkpad R31 needs pipe A force quirk */
5775 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
5776 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
5777 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
5778
5779 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
5780 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
5781 /* ThinkPad X40 needs pipe A force quirk */
5782
5783 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
5784 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
5785
5786 /* 855 & before need to leave pipe A & dpll A up */
5787 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
5788 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
5789};
5790
5791static void intel_init_quirks(struct drm_device *dev)
5792{
5793 struct pci_dev *d = dev->pdev;
5794 int i;
5795
5796 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
5797 struct intel_quirk *q = &intel_quirks[i];
5798
5799 if (d->device == q->device &&
5800 (d->subsystem_vendor == q->subsystem_vendor ||
5801 q->subsystem_vendor == PCI_ANY_ID) &&
5802 (d->subsystem_device == q->subsystem_device ||
5803 q->subsystem_device == PCI_ANY_ID))
5804 q->hook(dev);
5805 }
5806}
5807
Jesse Barnes79e53942008-11-07 14:24:08 -08005808void intel_modeset_init(struct drm_device *dev)
5809{
Jesse Barnes652c3932009-08-17 13:31:43 -07005810 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005811 int i;
5812
5813 drm_mode_config_init(dev);
5814
5815 dev->mode_config.min_width = 0;
5816 dev->mode_config.min_height = 0;
5817
5818 dev->mode_config.funcs = (void *)&intel_mode_funcs;
5819
Jesse Barnesb690e962010-07-19 13:53:12 -07005820 intel_init_quirks(dev);
5821
Jesse Barnese70236a2009-09-21 10:42:27 -07005822 intel_init_display(dev);
5823
Jesse Barnes79e53942008-11-07 14:24:08 -08005824 if (IS_I965G(dev)) {
5825 dev->mode_config.max_width = 8192;
5826 dev->mode_config.max_height = 8192;
Keith Packard5e4d6fa2009-07-12 23:53:17 -07005827 } else if (IS_I9XX(dev)) {
5828 dev->mode_config.max_width = 4096;
5829 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08005830 } else {
5831 dev->mode_config.max_width = 2048;
5832 dev->mode_config.max_height = 2048;
5833 }
5834
5835 /* set memory base */
5836 if (IS_I9XX(dev))
5837 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2);
5838 else
5839 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0);
5840
5841 if (IS_MOBILE(dev) || IS_I9XX(dev))
Dave Airliea3524f12010-06-06 18:59:41 +10005842 dev_priv->num_pipe = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08005843 else
Dave Airliea3524f12010-06-06 18:59:41 +10005844 dev_priv->num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08005845 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10005846 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08005847
Dave Airliea3524f12010-06-06 18:59:41 +10005848 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005849 intel_crtc_init(dev, i);
5850 }
5851
5852 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07005853
5854 intel_init_clock_gating(dev);
5855
Jesse Barnes7648fa92010-05-20 14:28:11 -07005856 if (IS_IRONLAKE_M(dev)) {
Jesse Barnesf97108d2010-01-29 11:27:07 -08005857 ironlake_enable_drps(dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07005858 intel_init_emon(dev);
5859 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08005860
Jesse Barnes652c3932009-08-17 13:31:43 -07005861 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
5862 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
5863 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02005864
5865 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005866}
5867
5868void intel_modeset_cleanup(struct drm_device *dev)
5869{
Jesse Barnes652c3932009-08-17 13:31:43 -07005870 struct drm_i915_private *dev_priv = dev->dev_private;
5871 struct drm_crtc *crtc;
5872 struct intel_crtc *intel_crtc;
5873
5874 mutex_lock(&dev->struct_mutex);
5875
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005876 drm_kms_helper_poll_fini(dev);
Dave Airlie38651672010-03-30 05:34:13 +00005877 intel_fbdev_fini(dev);
5878
Jesse Barnes652c3932009-08-17 13:31:43 -07005879 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5880 /* Skip inactive CRTCs */
5881 if (!crtc->fb)
5882 continue;
5883
5884 intel_crtc = to_intel_crtc(crtc);
5885 intel_increase_pllclock(crtc, false);
5886 del_timer_sync(&intel_crtc->idle_timer);
5887 }
5888
Jesse Barnes652c3932009-08-17 13:31:43 -07005889 del_timer_sync(&dev_priv->idle_timer);
5890
Jesse Barnese70236a2009-09-21 10:42:27 -07005891 if (dev_priv->display.disable_fbc)
5892 dev_priv->display.disable_fbc(dev);
5893
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005894 if (dev_priv->pwrctx) {
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005895 struct drm_i915_gem_object *obj_priv;
5896
Daniel Vetter23010e42010-03-08 13:35:02 +01005897 obj_priv = to_intel_bo(dev_priv->pwrctx);
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005898 I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN);
5899 I915_READ(PWRCTXA);
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005900 i915_gem_object_unpin(dev_priv->pwrctx);
5901 drm_gem_object_unreference(dev_priv->pwrctx);
5902 }
5903
Jesse Barnesf97108d2010-01-29 11:27:07 -08005904 if (IS_IRONLAKE_M(dev))
5905 ironlake_disable_drps(dev);
5906
Kristian Høgsberg69341a52009-11-11 12:19:17 -05005907 mutex_unlock(&dev->struct_mutex);
5908
Jesse Barnes79e53942008-11-07 14:24:08 -08005909 drm_mode_config_cleanup(dev);
5910}
5911
5912
Dave Airlie28d52042009-09-21 14:33:58 +10005913/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005914 * Return which encoder is currently attached for connector.
5915 */
5916struct drm_encoder *intel_attached_encoder (struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08005917{
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005918 struct drm_mode_object *obj;
5919 struct drm_encoder *encoder;
5920 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08005921
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005922 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5923 if (connector->encoder_ids[i] == 0)
5924 break;
5925
5926 obj = drm_mode_object_find(connector->dev,
5927 connector->encoder_ids[i],
5928 DRM_MODE_OBJECT_ENCODER);
5929 if (!obj)
5930 continue;
5931
5932 encoder = obj_to_encoder(obj);
5933 return encoder;
5934 }
5935 return NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005936}
Dave Airlie28d52042009-09-21 14:33:58 +10005937
5938/*
5939 * set vga decode state - true == enable VGA decode
5940 */
5941int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
5942{
5943 struct drm_i915_private *dev_priv = dev->dev_private;
5944 u16 gmch_ctrl;
5945
5946 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
5947 if (state)
5948 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
5949 else
5950 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
5951 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
5952 return 0;
5953}