blob: 606924ef65a65319b411165bd189cc0656bacb71 [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>
Jesse Barnes79e53942008-11-07 14:24:08 -080031#include "drmP.h"
32#include "intel_drv.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100035#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036
37#include "drm_crtc_helper.h"
38
Zhenyu Wang32f9d652009-07-24 01:00:32 +080039#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
40
Jesse Barnes79e53942008-11-07 14:24:08 -080041bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080042static void intel_update_watermarks(struct drm_device *dev);
Jesse Barnes652c3932009-08-17 13:31:43 -070043static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule);
Jesse Barnes79e53942008-11-07 14:24:08 -080044
45typedef struct {
46 /* given values */
47 int n;
48 int m1, m2;
49 int p1, p2;
50 /* derived values */
51 int dot;
52 int vco;
53 int m;
54 int p;
55} intel_clock_t;
56
57typedef struct {
58 int min, max;
59} intel_range_t;
60
61typedef struct {
62 int dot_limit;
63 int p2_slow, p2_fast;
64} intel_p2_t;
65
66#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080067typedef struct intel_limit intel_limit_t;
68struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080069 intel_range_t dot, vco, n, m, m1, m2, p, p1;
70 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080071 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
72 int, int, intel_clock_t *);
73};
Jesse Barnes79e53942008-11-07 14:24:08 -080074
75#define I8XX_DOT_MIN 25000
76#define I8XX_DOT_MAX 350000
77#define I8XX_VCO_MIN 930000
78#define I8XX_VCO_MAX 1400000
79#define I8XX_N_MIN 3
80#define I8XX_N_MAX 16
81#define I8XX_M_MIN 96
82#define I8XX_M_MAX 140
83#define I8XX_M1_MIN 18
84#define I8XX_M1_MAX 26
85#define I8XX_M2_MIN 6
86#define I8XX_M2_MAX 16
87#define I8XX_P_MIN 4
88#define I8XX_P_MAX 128
89#define I8XX_P1_MIN 2
90#define I8XX_P1_MAX 33
91#define I8XX_P1_LVDS_MIN 1
92#define I8XX_P1_LVDS_MAX 6
93#define I8XX_P2_SLOW 4
94#define I8XX_P2_FAST 2
95#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e3952009-07-17 11:44:30 +080096#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -080097#define I8XX_P2_SLOW_LIMIT 165000
98
99#define I9XX_DOT_MIN 20000
100#define I9XX_DOT_MAX 400000
101#define I9XX_VCO_MIN 1400000
102#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500103#define PINEVIEW_VCO_MIN 1700000
104#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500105#define I9XX_N_MIN 1
106#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500107/* Pineview's Ncounter is a ring counter */
108#define PINEVIEW_N_MIN 3
109#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800110#define I9XX_M_MIN 70
111#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500112#define PINEVIEW_M_MIN 2
113#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800114#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500115#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800116#define I9XX_M2_MIN 5
117#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500118/* Pineview M1 is reserved, and must be 0 */
119#define PINEVIEW_M1_MIN 0
120#define PINEVIEW_M1_MAX 0
121#define PINEVIEW_M2_MIN 0
122#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800123#define I9XX_P_SDVO_DAC_MIN 5
124#define I9XX_P_SDVO_DAC_MAX 80
125#define I9XX_P_LVDS_MIN 7
126#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500127#define PINEVIEW_P_LVDS_MIN 7
128#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800129#define I9XX_P1_MIN 1
130#define I9XX_P1_MAX 8
131#define I9XX_P2_SDVO_DAC_SLOW 10
132#define I9XX_P2_SDVO_DAC_FAST 5
133#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
134#define I9XX_P2_LVDS_SLOW 14
135#define I9XX_P2_LVDS_FAST 7
136#define I9XX_P2_LVDS_SLOW_LIMIT 112000
137
Ma Ling044c7c42009-03-18 20:13:23 +0800138/*The parameter is for SDVO on G4x platform*/
139#define G4X_DOT_SDVO_MIN 25000
140#define G4X_DOT_SDVO_MAX 270000
141#define G4X_VCO_MIN 1750000
142#define G4X_VCO_MAX 3500000
143#define G4X_N_SDVO_MIN 1
144#define G4X_N_SDVO_MAX 4
145#define G4X_M_SDVO_MIN 104
146#define G4X_M_SDVO_MAX 138
147#define G4X_M1_SDVO_MIN 17
148#define G4X_M1_SDVO_MAX 23
149#define G4X_M2_SDVO_MIN 5
150#define G4X_M2_SDVO_MAX 11
151#define G4X_P_SDVO_MIN 10
152#define G4X_P_SDVO_MAX 30
153#define G4X_P1_SDVO_MIN 1
154#define G4X_P1_SDVO_MAX 3
155#define G4X_P2_SDVO_SLOW 10
156#define G4X_P2_SDVO_FAST 10
157#define G4X_P2_SDVO_LIMIT 270000
158
159/*The parameter is for HDMI_DAC on G4x platform*/
160#define G4X_DOT_HDMI_DAC_MIN 22000
161#define G4X_DOT_HDMI_DAC_MAX 400000
162#define G4X_N_HDMI_DAC_MIN 1
163#define G4X_N_HDMI_DAC_MAX 4
164#define G4X_M_HDMI_DAC_MIN 104
165#define G4X_M_HDMI_DAC_MAX 138
166#define G4X_M1_HDMI_DAC_MIN 16
167#define G4X_M1_HDMI_DAC_MAX 23
168#define G4X_M2_HDMI_DAC_MIN 5
169#define G4X_M2_HDMI_DAC_MAX 11
170#define G4X_P_HDMI_DAC_MIN 5
171#define G4X_P_HDMI_DAC_MAX 80
172#define G4X_P1_HDMI_DAC_MIN 1
173#define G4X_P1_HDMI_DAC_MAX 8
174#define G4X_P2_HDMI_DAC_SLOW 10
175#define G4X_P2_HDMI_DAC_FAST 5
176#define G4X_P2_HDMI_DAC_LIMIT 165000
177
178/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
179#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
180#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
181#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
182#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
183#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
184#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
185#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
186#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
187#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
188#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
189#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
190#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
191#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
192#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
193#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
194#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
195#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
196
197/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
198#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
199#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
200#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
201#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
202#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
203#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
204#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
205#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
206#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
207#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
208#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
209#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
210#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
211#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
212#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
213#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
214#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
215
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700216/*The parameter is for DISPLAY PORT on G4x platform*/
217#define G4X_DOT_DISPLAY_PORT_MIN 161670
218#define G4X_DOT_DISPLAY_PORT_MAX 227000
219#define G4X_N_DISPLAY_PORT_MIN 1
220#define G4X_N_DISPLAY_PORT_MAX 2
221#define G4X_M_DISPLAY_PORT_MIN 97
222#define G4X_M_DISPLAY_PORT_MAX 108
223#define G4X_M1_DISPLAY_PORT_MIN 0x10
224#define G4X_M1_DISPLAY_PORT_MAX 0x12
225#define G4X_M2_DISPLAY_PORT_MIN 0x05
226#define G4X_M2_DISPLAY_PORT_MAX 0x06
227#define G4X_P_DISPLAY_PORT_MIN 10
228#define G4X_P_DISPLAY_PORT_MAX 20
229#define G4X_P1_DISPLAY_PORT_MIN 1
230#define G4X_P1_DISPLAY_PORT_MAX 2
231#define G4X_P2_DISPLAY_PORT_SLOW 10
232#define G4X_P2_DISPLAY_PORT_FAST 10
233#define G4X_P2_DISPLAY_PORT_LIMIT 0
234
Eric Anholtbad720f2009-10-22 16:11:14 -0700235/* Ironlake / Sandybridge */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800236/* as we calculate clock using (register_value + 2) for
237 N/M1/M2, so here the range value for them is (actual_value-2).
238 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500239#define IRONLAKE_DOT_MIN 25000
240#define IRONLAKE_DOT_MAX 350000
241#define IRONLAKE_VCO_MIN 1760000
242#define IRONLAKE_VCO_MAX 3510000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500243#define IRONLAKE_M1_MIN 12
Zhao Yakuia59e3852010-01-06 22:05:57 +0800244#define IRONLAKE_M1_MAX 22
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500245#define IRONLAKE_M2_MIN 5
246#define IRONLAKE_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500247#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800248
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800249/* We have parameter ranges for different type of outputs. */
250
251/* DAC & HDMI Refclk 120Mhz */
252#define IRONLAKE_DAC_N_MIN 1
253#define IRONLAKE_DAC_N_MAX 5
254#define IRONLAKE_DAC_M_MIN 79
255#define IRONLAKE_DAC_M_MAX 127
256#define IRONLAKE_DAC_P_MIN 5
257#define IRONLAKE_DAC_P_MAX 80
258#define IRONLAKE_DAC_P1_MIN 1
259#define IRONLAKE_DAC_P1_MAX 8
260#define IRONLAKE_DAC_P2_SLOW 10
261#define IRONLAKE_DAC_P2_FAST 5
262
263/* LVDS single-channel 120Mhz refclk */
264#define IRONLAKE_LVDS_S_N_MIN 1
265#define IRONLAKE_LVDS_S_N_MAX 3
266#define IRONLAKE_LVDS_S_M_MIN 79
267#define IRONLAKE_LVDS_S_M_MAX 118
268#define IRONLAKE_LVDS_S_P_MIN 28
269#define IRONLAKE_LVDS_S_P_MAX 112
270#define IRONLAKE_LVDS_S_P1_MIN 2
271#define IRONLAKE_LVDS_S_P1_MAX 8
272#define IRONLAKE_LVDS_S_P2_SLOW 14
273#define IRONLAKE_LVDS_S_P2_FAST 14
274
275/* LVDS dual-channel 120Mhz refclk */
276#define IRONLAKE_LVDS_D_N_MIN 1
277#define IRONLAKE_LVDS_D_N_MAX 3
278#define IRONLAKE_LVDS_D_M_MIN 79
279#define IRONLAKE_LVDS_D_M_MAX 127
280#define IRONLAKE_LVDS_D_P_MIN 14
281#define IRONLAKE_LVDS_D_P_MAX 56
282#define IRONLAKE_LVDS_D_P1_MIN 2
283#define IRONLAKE_LVDS_D_P1_MAX 8
284#define IRONLAKE_LVDS_D_P2_SLOW 7
285#define IRONLAKE_LVDS_D_P2_FAST 7
286
287/* LVDS single-channel 100Mhz refclk */
288#define IRONLAKE_LVDS_S_SSC_N_MIN 1
289#define IRONLAKE_LVDS_S_SSC_N_MAX 2
290#define IRONLAKE_LVDS_S_SSC_M_MIN 79
291#define IRONLAKE_LVDS_S_SSC_M_MAX 126
292#define IRONLAKE_LVDS_S_SSC_P_MIN 28
293#define IRONLAKE_LVDS_S_SSC_P_MAX 112
294#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
295#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
296#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
297#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
298
299/* LVDS dual-channel 100Mhz refclk */
300#define IRONLAKE_LVDS_D_SSC_N_MIN 1
301#define IRONLAKE_LVDS_D_SSC_N_MAX 3
302#define IRONLAKE_LVDS_D_SSC_M_MIN 79
303#define IRONLAKE_LVDS_D_SSC_M_MAX 126
304#define IRONLAKE_LVDS_D_SSC_P_MIN 14
305#define IRONLAKE_LVDS_D_SSC_P_MAX 42
306#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
307#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
308#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
309#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
310
311/* DisplayPort */
312#define IRONLAKE_DP_N_MIN 1
313#define IRONLAKE_DP_N_MAX 2
314#define IRONLAKE_DP_M_MIN 81
315#define IRONLAKE_DP_M_MAX 90
316#define IRONLAKE_DP_P_MIN 10
317#define IRONLAKE_DP_P_MAX 20
318#define IRONLAKE_DP_P2_FAST 10
319#define IRONLAKE_DP_P2_SLOW 10
320#define IRONLAKE_DP_P2_LIMIT 0
321#define IRONLAKE_DP_P1_MIN 1
322#define IRONLAKE_DP_P1_MAX 2
Zhao Yakui45476682009-12-31 16:06:04 +0800323
Ma Lingd4906092009-03-18 20:13:27 +0800324static bool
325intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
326 int target, int refclk, intel_clock_t *best_clock);
327static bool
328intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
329 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800330
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700331static bool
332intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
333 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800334static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500335intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
336 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700337
Keith Packarde4b36692009-06-05 19:22:17 -0700338static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800339 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
340 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
341 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
342 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
343 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
344 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
345 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
346 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
347 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
348 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800349 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700350};
351
352static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800353 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
354 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
355 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
356 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
357 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
358 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
359 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
360 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
361 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
362 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800363 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700364};
365
366static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800367 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
368 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
369 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
370 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
371 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
372 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
373 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
374 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
375 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
376 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800377 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700378};
379
380static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800381 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
382 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
383 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
384 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
385 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
386 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
387 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
388 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
389 /* The single-channel range is 25-112Mhz, and dual-channel
390 * is 80-224Mhz. Prefer single channel as much as possible.
391 */
392 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
393 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800394 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700395};
396
Ma Ling044c7c42009-03-18 20:13:23 +0800397 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700398static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800399 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
400 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
401 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
402 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
403 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
404 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
405 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
406 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
407 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
408 .p2_slow = G4X_P2_SDVO_SLOW,
409 .p2_fast = G4X_P2_SDVO_FAST
410 },
Ma Lingd4906092009-03-18 20:13:27 +0800411 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700412};
413
414static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800415 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
416 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
417 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
418 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
419 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
420 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
421 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
422 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
423 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
424 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
425 .p2_fast = G4X_P2_HDMI_DAC_FAST
426 },
Ma Lingd4906092009-03-18 20:13:27 +0800427 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700428};
429
430static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800431 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
432 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
433 .vco = { .min = G4X_VCO_MIN,
434 .max = G4X_VCO_MAX },
435 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
436 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
437 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
438 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
439 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
440 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
441 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
442 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
443 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
444 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
445 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
446 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
447 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
448 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
449 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
450 },
Ma Lingd4906092009-03-18 20:13:27 +0800451 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700452};
453
454static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800455 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
456 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
457 .vco = { .min = G4X_VCO_MIN,
458 .max = G4X_VCO_MAX },
459 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
460 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
461 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
462 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
463 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
464 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
465 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
466 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
467 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
468 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
469 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
470 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
471 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
472 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
473 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
474 },
Ma Lingd4906092009-03-18 20:13:27 +0800475 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700476};
477
478static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700479 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
480 .max = G4X_DOT_DISPLAY_PORT_MAX },
481 .vco = { .min = G4X_VCO_MIN,
482 .max = G4X_VCO_MAX},
483 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
484 .max = G4X_N_DISPLAY_PORT_MAX },
485 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
486 .max = G4X_M_DISPLAY_PORT_MAX },
487 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
488 .max = G4X_M1_DISPLAY_PORT_MAX },
489 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
490 .max = G4X_M2_DISPLAY_PORT_MAX },
491 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
492 .max = G4X_P_DISPLAY_PORT_MAX },
493 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
494 .max = G4X_P1_DISPLAY_PORT_MAX},
495 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
496 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
497 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
498 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700499};
500
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500501static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800502 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500503 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
504 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
505 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
506 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
507 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800508 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
509 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
510 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
511 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800512 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700513};
514
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500515static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800516 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500517 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
518 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
519 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
520 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
521 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
522 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800523 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500524 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800525 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
526 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800527 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700528};
529
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800530static const intel_limit_t intel_limits_ironlake_dac = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500531 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
532 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800533 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
534 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500535 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
536 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800537 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
538 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500539 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800540 .p2_slow = IRONLAKE_DAC_P2_SLOW,
541 .p2_fast = IRONLAKE_DAC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800542 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700543};
544
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800545static const intel_limit_t intel_limits_ironlake_single_lvds = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500546 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
547 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800548 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
549 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500550 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
551 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800552 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
553 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500554 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800555 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
556 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
557 .find_pll = intel_g4x_find_best_PLL,
558};
559
560static const intel_limit_t intel_limits_ironlake_dual_lvds = {
561 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
562 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
563 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
564 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
565 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
566 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
567 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
568 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
569 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
570 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
571 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
572 .find_pll = intel_g4x_find_best_PLL,
573};
574
575static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
576 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
577 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
578 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
579 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
580 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
581 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
582 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
583 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
584 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
585 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
586 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
587 .find_pll = intel_g4x_find_best_PLL,
588};
589
590static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
591 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
592 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
593 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
594 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
595 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
596 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
597 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
598 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
599 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
600 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
601 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800602 .find_pll = intel_g4x_find_best_PLL,
603};
604
605static const intel_limit_t intel_limits_ironlake_display_port = {
606 .dot = { .min = IRONLAKE_DOT_MIN,
607 .max = IRONLAKE_DOT_MAX },
608 .vco = { .min = IRONLAKE_VCO_MIN,
609 .max = IRONLAKE_VCO_MAX},
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800610 .n = { .min = IRONLAKE_DP_N_MIN,
611 .max = IRONLAKE_DP_N_MAX },
612 .m = { .min = IRONLAKE_DP_M_MIN,
613 .max = IRONLAKE_DP_M_MAX },
Zhao Yakui45476682009-12-31 16:06:04 +0800614 .m1 = { .min = IRONLAKE_M1_MIN,
615 .max = IRONLAKE_M1_MAX },
616 .m2 = { .min = IRONLAKE_M2_MIN,
617 .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800618 .p = { .min = IRONLAKE_DP_P_MIN,
619 .max = IRONLAKE_DP_P_MAX },
620 .p1 = { .min = IRONLAKE_DP_P1_MIN,
621 .max = IRONLAKE_DP_P1_MAX},
622 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
623 .p2_slow = IRONLAKE_DP_P2_SLOW,
624 .p2_fast = IRONLAKE_DP_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800625 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800626};
627
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500628static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800629{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800630 struct drm_device *dev = crtc->dev;
631 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800632 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800633 int refclk = 120;
634
635 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
636 if (dev_priv->lvds_use_ssc && dev_priv->lvds_ssc_freq == 100)
637 refclk = 100;
638
639 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
640 LVDS_CLKB_POWER_UP) {
641 /* LVDS dual channel */
642 if (refclk == 100)
643 limit = &intel_limits_ironlake_dual_lvds_100m;
644 else
645 limit = &intel_limits_ironlake_dual_lvds;
646 } else {
647 if (refclk == 100)
648 limit = &intel_limits_ironlake_single_lvds_100m;
649 else
650 limit = &intel_limits_ironlake_single_lvds;
651 }
652 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800653 HAS_eDP)
654 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800655 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800656 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800657
658 return limit;
659}
660
Ma Ling044c7c42009-03-18 20:13:23 +0800661static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
662{
663 struct drm_device *dev = crtc->dev;
664 struct drm_i915_private *dev_priv = dev->dev_private;
665 const intel_limit_t *limit;
666
667 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
668 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
669 LVDS_CLKB_POWER_UP)
670 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700671 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800672 else
673 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700674 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800675 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
676 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700677 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800678 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700679 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700680 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700681 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800682 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700683 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800684
685 return limit;
686}
687
Jesse Barnes79e53942008-11-07 14:24:08 -0800688static const intel_limit_t *intel_limit(struct drm_crtc *crtc)
689{
690 struct drm_device *dev = crtc->dev;
691 const intel_limit_t *limit;
692
Eric Anholtbad720f2009-10-22 16:11:14 -0700693 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500694 limit = intel_ironlake_limit(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800695 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800696 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500697 } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800698 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700699 limit = &intel_limits_i9xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800700 else
Keith Packarde4b36692009-06-05 19:22:17 -0700701 limit = &intel_limits_i9xx_sdvo;
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500702 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800703 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500704 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800705 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500706 limit = &intel_limits_pineview_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800707 } else {
708 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700709 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800710 else
Keith Packarde4b36692009-06-05 19:22:17 -0700711 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800712 }
713 return limit;
714}
715
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500716/* m1 is reserved as 0 in Pineview, n is a ring counter */
717static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800718{
Shaohua Li21778322009-02-23 15:19:16 +0800719 clock->m = clock->m2 + 2;
720 clock->p = clock->p1 * clock->p2;
721 clock->vco = refclk * clock->m / clock->n;
722 clock->dot = clock->vco / clock->p;
723}
724
725static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
726{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500727 if (IS_PINEVIEW(dev)) {
728 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800729 return;
730 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800731 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
732 clock->p = clock->p1 * clock->p2;
733 clock->vco = refclk * clock->m / (clock->n + 2);
734 clock->dot = clock->vco / clock->p;
735}
736
Jesse Barnes79e53942008-11-07 14:24:08 -0800737/**
738 * Returns whether any output on the specified pipe is of the specified type
739 */
740bool intel_pipe_has_type (struct drm_crtc *crtc, int type)
741{
742 struct drm_device *dev = crtc->dev;
743 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800744 struct drm_encoder *l_entry;
Jesse Barnes79e53942008-11-07 14:24:08 -0800745
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800746 list_for_each_entry(l_entry, &mode_config->encoder_list, head) {
747 if (l_entry && l_entry->crtc == crtc) {
748 struct intel_encoder *intel_encoder = enc_to_intel_encoder(l_entry);
Eric Anholt21d40d32010-03-25 11:11:14 -0700749 if (intel_encoder->type == type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800750 return true;
751 }
752 }
753 return false;
754}
755
Eric Anholtc751ce42010-03-25 11:48:48 -0700756static struct drm_connector *
757intel_pipe_get_connector (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800758{
759 struct drm_device *dev = crtc->dev;
760 struct drm_mode_config *mode_config = &dev->mode_config;
761 struct drm_connector *l_entry, *ret = NULL;
762
763 list_for_each_entry(l_entry, &mode_config->connector_list, head) {
764 if (l_entry->encoder &&
765 l_entry->encoder->crtc == crtc) {
766 ret = l_entry;
767 break;
768 }
769 }
770 return ret;
771}
772
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800773#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800774/**
775 * Returns whether the given set of divisors are valid for a given refclk with
776 * the given connectors.
777 */
778
779static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock)
780{
781 const intel_limit_t *limit = intel_limit (crtc);
Shaohua Li21778322009-02-23 15:19:16 +0800782 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800783
784 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
785 INTELPllInvalid ("p1 out of range\n");
786 if (clock->p < limit->p.min || limit->p.max < clock->p)
787 INTELPllInvalid ("p out of range\n");
788 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
789 INTELPllInvalid ("m2 out of range\n");
790 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
791 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500792 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800793 INTELPllInvalid ("m1 <= m2\n");
794 if (clock->m < limit->m.min || limit->m.max < clock->m)
795 INTELPllInvalid ("m out of range\n");
796 if (clock->n < limit->n.min || limit->n.max < clock->n)
797 INTELPllInvalid ("n out of range\n");
798 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
799 INTELPllInvalid ("vco out of range\n");
800 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
801 * connector, etc., rather than just a single range.
802 */
803 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
804 INTELPllInvalid ("dot out of range\n");
805
806 return true;
807}
808
Ma Lingd4906092009-03-18 20:13:27 +0800809static bool
810intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
811 int target, int refclk, intel_clock_t *best_clock)
812
Jesse Barnes79e53942008-11-07 14:24:08 -0800813{
814 struct drm_device *dev = crtc->dev;
815 struct drm_i915_private *dev_priv = dev->dev_private;
816 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800817 int err = target;
818
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200819 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800820 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800821 /*
822 * For LVDS, if the panel is on, just rely on its current
823 * settings for dual-channel. We haven't figured out how to
824 * reliably set up different single/dual channel state, if we
825 * even can.
826 */
827 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
828 LVDS_CLKB_POWER_UP)
829 clock.p2 = limit->p2.p2_fast;
830 else
831 clock.p2 = limit->p2.p2_slow;
832 } else {
833 if (target < limit->p2.dot_limit)
834 clock.p2 = limit->p2.p2_slow;
835 else
836 clock.p2 = limit->p2.p2_fast;
837 }
838
839 memset (best_clock, 0, sizeof (*best_clock));
840
Zhao Yakui42158662009-11-20 11:24:18 +0800841 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
842 clock.m1++) {
843 for (clock.m2 = limit->m2.min;
844 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500845 /* m1 is always 0 in Pineview */
846 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800847 break;
848 for (clock.n = limit->n.min;
849 clock.n <= limit->n.max; clock.n++) {
850 for (clock.p1 = limit->p1.min;
851 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800852 int this_err;
853
Shaohua Li21778322009-02-23 15:19:16 +0800854 intel_clock(dev, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800855
856 if (!intel_PLL_is_valid(crtc, &clock))
857 continue;
858
859 this_err = abs(clock.dot - target);
860 if (this_err < err) {
861 *best_clock = clock;
862 err = this_err;
863 }
864 }
865 }
866 }
867 }
868
869 return (err != target);
870}
871
Ma Lingd4906092009-03-18 20:13:27 +0800872static bool
873intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
874 int target, int refclk, intel_clock_t *best_clock)
875{
876 struct drm_device *dev = crtc->dev;
877 struct drm_i915_private *dev_priv = dev->dev_private;
878 intel_clock_t clock;
879 int max_n;
880 bool found;
881 /* approximately equals target * 0.00488 */
882 int err_most = (target >> 8) + (target >> 10);
883 found = false;
884
885 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800886 int lvds_reg;
887
Eric Anholtc619eed2010-01-28 16:45:52 -0800888 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800889 lvds_reg = PCH_LVDS;
890 else
891 lvds_reg = LVDS;
892 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800893 LVDS_CLKB_POWER_UP)
894 clock.p2 = limit->p2.p2_fast;
895 else
896 clock.p2 = limit->p2.p2_slow;
897 } else {
898 if (target < limit->p2.dot_limit)
899 clock.p2 = limit->p2.p2_slow;
900 else
901 clock.p2 = limit->p2.p2_fast;
902 }
903
904 memset(best_clock, 0, sizeof(*best_clock));
905 max_n = limit->n.max;
906 /* based on hardware requriment prefer smaller n to precision */
907 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Jesse Barnes652c3932009-08-17 13:31:43 -0700908 /* based on hardware requirment prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800909 for (clock.m1 = limit->m1.max;
910 clock.m1 >= limit->m1.min; clock.m1--) {
911 for (clock.m2 = limit->m2.max;
912 clock.m2 >= limit->m2.min; clock.m2--) {
913 for (clock.p1 = limit->p1.max;
914 clock.p1 >= limit->p1.min; clock.p1--) {
915 int this_err;
916
Shaohua Li21778322009-02-23 15:19:16 +0800917 intel_clock(dev, refclk, &clock);
Ma Lingd4906092009-03-18 20:13:27 +0800918 if (!intel_PLL_is_valid(crtc, &clock))
919 continue;
920 this_err = abs(clock.dot - target) ;
921 if (this_err < err_most) {
922 *best_clock = clock;
923 err_most = this_err;
924 max_n = clock.n;
925 found = true;
926 }
927 }
928 }
929 }
930 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800931 return found;
932}
Ma Lingd4906092009-03-18 20:13:27 +0800933
Zhenyu Wang2c072452009-06-05 15:38:42 +0800934static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500935intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
936 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800937{
938 struct drm_device *dev = crtc->dev;
939 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800940
941 /* return directly when it is eDP */
942 if (HAS_eDP)
943 return true;
944
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800945 if (target < 200000) {
946 clock.n = 1;
947 clock.p1 = 2;
948 clock.p2 = 10;
949 clock.m1 = 12;
950 clock.m2 = 9;
951 } else {
952 clock.n = 2;
953 clock.p1 = 1;
954 clock.p2 = 10;
955 clock.m1 = 14;
956 clock.m2 = 8;
957 }
958 intel_clock(dev, refclk, &clock);
959 memcpy(best_clock, &clock, sizeof(intel_clock_t));
960 return true;
961}
962
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700963/* DisplayPort has only two frequencies, 162MHz and 270MHz */
964static bool
965intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
966 int target, int refclk, intel_clock_t *best_clock)
967{
968 intel_clock_t clock;
969 if (target < 200000) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700970 clock.p1 = 2;
971 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700972 clock.n = 2;
973 clock.m1 = 23;
974 clock.m2 = 8;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700975 } else {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700976 clock.p1 = 1;
977 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700978 clock.n = 1;
979 clock.m1 = 14;
980 clock.m2 = 2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700981 }
Keith Packardb3d25492009-06-24 23:09:15 -0700982 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
983 clock.p = (clock.p1 * clock.p2);
984 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
Jesse Barnesfe798b92009-10-20 07:55:28 +0900985 clock.vco = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700986 memcpy(best_clock, &clock, sizeof(intel_clock_t));
987 return true;
988}
989
Jesse Barnes79e53942008-11-07 14:24:08 -0800990void
991intel_wait_for_vblank(struct drm_device *dev)
992{
993 /* Wait for 20ms, i.e. one cycle at 50hz. */
Shaohua Li311089d2009-11-26 14:22:41 +0800994 msleep(20);
Jesse Barnes79e53942008-11-07 14:24:08 -0800995}
996
Jesse Barnes80824002009-09-10 15:28:06 -0700997/* Parameters have changed, update FBC info */
998static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
999{
1000 struct drm_device *dev = crtc->dev;
1001 struct drm_i915_private *dev_priv = dev->dev_private;
1002 struct drm_framebuffer *fb = crtc->fb;
1003 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001004 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -07001005 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1006 int plane, i;
1007 u32 fbc_ctl, fbc_ctl2;
1008
1009 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
1010
1011 if (fb->pitch < dev_priv->cfb_pitch)
1012 dev_priv->cfb_pitch = fb->pitch;
1013
1014 /* FBC_CTL wants 64B units */
1015 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1016 dev_priv->cfb_fence = obj_priv->fence_reg;
1017 dev_priv->cfb_plane = intel_crtc->plane;
1018 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1019
1020 /* Clear old tags */
1021 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1022 I915_WRITE(FBC_TAG + (i * 4), 0);
1023
1024 /* Set it up... */
1025 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
1026 if (obj_priv->tiling_mode != I915_TILING_NONE)
1027 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1028 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1029 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1030
1031 /* enable it... */
1032 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001033 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001034 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001035 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1036 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
1037 if (obj_priv->tiling_mode != I915_TILING_NONE)
1038 fbc_ctl |= dev_priv->cfb_fence;
1039 I915_WRITE(FBC_CONTROL, fbc_ctl);
1040
Zhao Yakui28c97732009-10-09 11:39:41 +08001041 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Jesse Barnes80824002009-09-10 15:28:06 -07001042 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
1043}
1044
1045void i8xx_disable_fbc(struct drm_device *dev)
1046{
1047 struct drm_i915_private *dev_priv = dev->dev_private;
1048 u32 fbc_ctl;
1049
Jesse Barnesc1a1cdc2009-09-16 15:05:00 -07001050 if (!I915_HAS_FBC(dev))
1051 return;
1052
Jesse Barnes80824002009-09-10 15:28:06 -07001053 /* Disable compression */
1054 fbc_ctl = I915_READ(FBC_CONTROL);
1055 fbc_ctl &= ~FBC_CTL_EN;
1056 I915_WRITE(FBC_CONTROL, fbc_ctl);
1057
1058 /* Wait for compressing bit to clear */
1059 while (I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING)
1060 ; /* nothing */
1061
1062 intel_wait_for_vblank(dev);
1063
Zhao Yakui28c97732009-10-09 11:39:41 +08001064 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001065}
1066
1067static bool i8xx_fbc_enabled(struct drm_crtc *crtc)
1068{
1069 struct drm_device *dev = crtc->dev;
1070 struct drm_i915_private *dev_priv = dev->dev_private;
1071
1072 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1073}
1074
Jesse Barnes74dff282009-09-14 15:39:40 -07001075static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1076{
1077 struct drm_device *dev = crtc->dev;
1078 struct drm_i915_private *dev_priv = dev->dev_private;
1079 struct drm_framebuffer *fb = crtc->fb;
1080 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001081 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes74dff282009-09-14 15:39:40 -07001082 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1083 int plane = (intel_crtc->plane == 0 ? DPFC_CTL_PLANEA :
1084 DPFC_CTL_PLANEB);
1085 unsigned long stall_watermark = 200;
1086 u32 dpfc_ctl;
1087
1088 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1089 dev_priv->cfb_fence = obj_priv->fence_reg;
1090 dev_priv->cfb_plane = intel_crtc->plane;
1091
1092 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
1093 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1094 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1095 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1096 } else {
1097 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1098 }
1099
1100 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1101 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1102 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1103 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1104 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1105
1106 /* enable it... */
1107 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1108
Zhao Yakui28c97732009-10-09 11:39:41 +08001109 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001110}
1111
1112void g4x_disable_fbc(struct drm_device *dev)
1113{
1114 struct drm_i915_private *dev_priv = dev->dev_private;
1115 u32 dpfc_ctl;
1116
1117 /* Disable compression */
1118 dpfc_ctl = I915_READ(DPFC_CONTROL);
1119 dpfc_ctl &= ~DPFC_CTL_EN;
1120 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1121 intel_wait_for_vblank(dev);
1122
Zhao Yakui28c97732009-10-09 11:39:41 +08001123 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes74dff282009-09-14 15:39:40 -07001124}
1125
1126static bool g4x_fbc_enabled(struct drm_crtc *crtc)
1127{
1128 struct drm_device *dev = crtc->dev;
1129 struct drm_i915_private *dev_priv = dev->dev_private;
1130
1131 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1132}
1133
Jesse Barnes80824002009-09-10 15:28:06 -07001134/**
1135 * intel_update_fbc - enable/disable FBC as needed
1136 * @crtc: CRTC to point the compressor at
1137 * @mode: mode in use
1138 *
1139 * Set up the framebuffer compression hardware at mode set time. We
1140 * enable it if possible:
1141 * - plane A only (on pre-965)
1142 * - no pixel mulitply/line duplication
1143 * - no alpha buffer discard
1144 * - no dual wide
1145 * - framebuffer <= 2048 in width, 1536 in height
1146 *
1147 * We can't assume that any compression will take place (worst case),
1148 * so the compressed buffer has to be the same size as the uncompressed
1149 * one. It also must reside (along with the line length buffer) in
1150 * stolen memory.
1151 *
1152 * We need to enable/disable FBC on a global basis.
1153 */
1154static void intel_update_fbc(struct drm_crtc *crtc,
1155 struct drm_display_mode *mode)
1156{
1157 struct drm_device *dev = crtc->dev;
1158 struct drm_i915_private *dev_priv = dev->dev_private;
1159 struct drm_framebuffer *fb = crtc->fb;
1160 struct intel_framebuffer *intel_fb;
1161 struct drm_i915_gem_object *obj_priv;
1162 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1163 int plane = intel_crtc->plane;
1164
1165 if (!i915_powersave)
1166 return;
1167
Jesse Barnese70236a2009-09-21 10:42:27 -07001168 if (!dev_priv->display.fbc_enabled ||
1169 !dev_priv->display.enable_fbc ||
1170 !dev_priv->display.disable_fbc)
1171 return;
1172
Jesse Barnes80824002009-09-10 15:28:06 -07001173 if (!crtc->fb)
1174 return;
1175
1176 intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001177 obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -07001178
1179 /*
1180 * If FBC is already on, we just have to verify that we can
1181 * keep it that way...
1182 * Need to disable if:
1183 * - changing FBC params (stride, fence, mode)
1184 * - new fb is too large to fit in compressed buffer
1185 * - going to an unsupported config (interlace, pixel multiply, etc.)
1186 */
1187 if (intel_fb->obj->size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001188 DRM_DEBUG_KMS("framebuffer too large, disabling "
1189 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001190 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001191 goto out_disable;
1192 }
1193 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
1194 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001195 DRM_DEBUG_KMS("mode incompatible with compression, "
1196 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001197 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001198 goto out_disable;
1199 }
1200 if ((mode->hdisplay > 2048) ||
1201 (mode->vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001202 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001203 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001204 goto out_disable;
1205 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001206 if ((IS_I915GM(dev) || IS_I945GM(dev)) && plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001207 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001208 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001209 goto out_disable;
1210 }
1211 if (obj_priv->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001212 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001213 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001214 goto out_disable;
1215 }
1216
Jesse Barnese70236a2009-09-21 10:42:27 -07001217 if (dev_priv->display.fbc_enabled(crtc)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001218 /* We can re-enable it in this case, but need to update pitch */
1219 if (fb->pitch > dev_priv->cfb_pitch)
Jesse Barnese70236a2009-09-21 10:42:27 -07001220 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001221 if (obj_priv->fence_reg != dev_priv->cfb_fence)
Jesse Barnese70236a2009-09-21 10:42:27 -07001222 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001223 if (plane != dev_priv->cfb_plane)
Jesse Barnese70236a2009-09-21 10:42:27 -07001224 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001225 }
1226
Jesse Barnese70236a2009-09-21 10:42:27 -07001227 if (!dev_priv->display.fbc_enabled(crtc)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001228 /* Now try to turn it back on if possible */
Jesse Barnese70236a2009-09-21 10:42:27 -07001229 dev_priv->display.enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001230 }
1231
1232 return;
1233
1234out_disable:
Zhao Yakui28c97732009-10-09 11:39:41 +08001235 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001236 /* Multiple disables should be harmless */
Jesse Barnese70236a2009-09-21 10:42:27 -07001237 if (dev_priv->display.fbc_enabled(crtc))
1238 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001239}
1240
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001241static int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001242intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj)
1243{
Daniel Vetter23010e42010-03-08 13:35:02 +01001244 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001245 u32 alignment;
1246 int ret;
1247
1248 switch (obj_priv->tiling_mode) {
1249 case I915_TILING_NONE:
1250 alignment = 64 * 1024;
1251 break;
1252 case I915_TILING_X:
1253 /* pin() will align the object as required by fence */
1254 alignment = 0;
1255 break;
1256 case I915_TILING_Y:
1257 /* FIXME: Is this true? */
1258 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1259 return -EINVAL;
1260 default:
1261 BUG();
1262 }
1263
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001264 ret = i915_gem_object_pin(obj, alignment);
1265 if (ret != 0)
1266 return ret;
1267
1268 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1269 * fence, whereas 965+ only requires a fence if using
1270 * framebuffer compression. For simplicity, we always install
1271 * a fence as the cost is not that onerous.
1272 */
1273 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
1274 obj_priv->tiling_mode != I915_TILING_NONE) {
1275 ret = i915_gem_object_get_fence_reg(obj);
1276 if (ret != 0) {
1277 i915_gem_object_unpin(obj);
1278 return ret;
1279 }
1280 }
1281
1282 return 0;
1283}
1284
1285static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001286intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1287 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001288{
1289 struct drm_device *dev = crtc->dev;
1290 struct drm_i915_private *dev_priv = dev->dev_private;
1291 struct drm_i915_master_private *master_priv;
1292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1293 struct intel_framebuffer *intel_fb;
1294 struct drm_i915_gem_object *obj_priv;
1295 struct drm_gem_object *obj;
1296 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001297 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08001298 unsigned long Start, Offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001299 int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR);
1300 int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF);
1301 int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE;
1302 int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF);
1303 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001304 u32 dspcntr;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001305 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001306
1307 /* no fb bound */
1308 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001309 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001310 return 0;
1311 }
1312
Jesse Barnes80824002009-09-10 15:28:06 -07001313 switch (plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001314 case 0:
1315 case 1:
1316 break;
1317 default:
Jesse Barnes80824002009-09-10 15:28:06 -07001318 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001319 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001320 }
1321
1322 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08001323 obj = intel_fb->obj;
Daniel Vetter23010e42010-03-08 13:35:02 +01001324 obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08001325
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001326 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001327 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001328 if (ret != 0) {
1329 mutex_unlock(&dev->struct_mutex);
1330 return ret;
1331 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001332
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08001333 ret = i915_gem_object_set_to_display_plane(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001334 if (ret != 0) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001335 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001336 mutex_unlock(&dev->struct_mutex);
1337 return ret;
1338 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001339
1340 dspcntr = I915_READ(dspcntr_reg);
Jesse Barnes712531b2009-01-09 13:56:14 -08001341 /* Mask out pixel format bits in case we change it */
1342 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Jesse Barnes79e53942008-11-07 14:24:08 -08001343 switch (crtc->fb->bits_per_pixel) {
1344 case 8:
1345 dspcntr |= DISPPLANE_8BPP;
1346 break;
1347 case 16:
1348 if (crtc->fb->depth == 15)
1349 dspcntr |= DISPPLANE_15_16BPP;
1350 else
1351 dspcntr |= DISPPLANE_16BPP;
1352 break;
1353 case 24:
1354 case 32:
Kristian Høgsberga4f45cf2009-10-19 14:35:30 -04001355 if (crtc->fb->depth == 30)
1356 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1357 else
1358 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
Jesse Barnes79e53942008-11-07 14:24:08 -08001359 break;
1360 default:
1361 DRM_ERROR("Unknown color depth\n");
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001362 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001363 mutex_unlock(&dev->struct_mutex);
1364 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001365 }
Jesse Barnesf5448472009-04-14 14:17:47 -07001366 if (IS_I965G(dev)) {
1367 if (obj_priv->tiling_mode != I915_TILING_NONE)
1368 dspcntr |= DISPPLANE_TILED;
1369 else
1370 dspcntr &= ~DISPPLANE_TILED;
1371 }
1372
Eric Anholtbad720f2009-10-22 16:11:14 -07001373 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang553bd142009-09-02 10:57:52 +08001374 /* must disable */
1375 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1376
Jesse Barnes79e53942008-11-07 14:24:08 -08001377 I915_WRITE(dspcntr_reg, dspcntr);
1378
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001379 Start = obj_priv->gtt_offset;
1380 Offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
1381
Zhao Yakui28c97732009-10-09 11:39:41 +08001382 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d\n", Start, Offset, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001383 I915_WRITE(dspstride, crtc->fb->pitch);
Jesse Barnes79e53942008-11-07 14:24:08 -08001384 if (IS_I965G(dev)) {
1385 I915_WRITE(dspbase, Offset);
1386 I915_READ(dspbase);
1387 I915_WRITE(dspsurf, Start);
1388 I915_READ(dspsurf);
Jesse Barnesf5448472009-04-14 14:17:47 -07001389 I915_WRITE(dsptileoff, (y << 16) | x);
Jesse Barnes79e53942008-11-07 14:24:08 -08001390 } else {
1391 I915_WRITE(dspbase, Start + Offset);
1392 I915_READ(dspbase);
1393 }
1394
Jesse Barnes74dff282009-09-14 15:39:40 -07001395 if ((IS_I965G(dev) || plane == 0))
Jesse Barnesedb81952009-09-17 17:06:47 -07001396 intel_update_fbc(crtc, &crtc->mode);
1397
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001398 intel_wait_for_vblank(dev);
1399
1400 if (old_fb) {
1401 intel_fb = to_intel_framebuffer(old_fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001402 obj_priv = to_intel_bo(intel_fb->obj);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001403 i915_gem_object_unpin(intel_fb->obj);
1404 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001405 intel_increase_pllclock(crtc, true);
1406
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001407 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001408
1409 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001410 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001411
1412 master_priv = dev->primary->master->driver_priv;
1413 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001414 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001415
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001416 if (pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001417 master_priv->sarea_priv->pipeB_x = x;
1418 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001419 } else {
1420 master_priv->sarea_priv->pipeA_x = x;
1421 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001422 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001423
1424 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001425}
1426
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001427/* Disable the VGA plane that we never use */
1428static void i915_disable_vga (struct drm_device *dev)
1429{
1430 struct drm_i915_private *dev_priv = dev->dev_private;
1431 u8 sr1;
1432 u32 vga_reg;
1433
Eric Anholtbad720f2009-10-22 16:11:14 -07001434 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001435 vga_reg = CPU_VGACNTRL;
1436 else
1437 vga_reg = VGACNTRL;
1438
1439 if (I915_READ(vga_reg) & VGA_DISP_DISABLE)
1440 return;
1441
1442 I915_WRITE8(VGA_SR_INDEX, 1);
1443 sr1 = I915_READ8(VGA_SR_DATA);
1444 I915_WRITE8(VGA_SR_DATA, sr1 | (1 << 5));
1445 udelay(100);
1446
1447 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
1448}
1449
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001450static void ironlake_disable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001451{
1452 struct drm_device *dev = crtc->dev;
1453 struct drm_i915_private *dev_priv = dev->dev_private;
1454 u32 dpa_ctl;
1455
Zhao Yakui28c97732009-10-09 11:39:41 +08001456 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001457 dpa_ctl = I915_READ(DP_A);
1458 dpa_ctl &= ~DP_PLL_ENABLE;
1459 I915_WRITE(DP_A, dpa_ctl);
1460}
1461
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001462static void ironlake_enable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001463{
1464 struct drm_device *dev = crtc->dev;
1465 struct drm_i915_private *dev_priv = dev->dev_private;
1466 u32 dpa_ctl;
1467
1468 dpa_ctl = I915_READ(DP_A);
1469 dpa_ctl |= DP_PLL_ENABLE;
1470 I915_WRITE(DP_A, dpa_ctl);
1471 udelay(200);
1472}
1473
1474
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001475static void ironlake_set_pll_edp (struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001476{
1477 struct drm_device *dev = crtc->dev;
1478 struct drm_i915_private *dev_priv = dev->dev_private;
1479 u32 dpa_ctl;
1480
Zhao Yakui28c97732009-10-09 11:39:41 +08001481 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001482 dpa_ctl = I915_READ(DP_A);
1483 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1484
1485 if (clock < 200000) {
1486 u32 temp;
1487 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1488 /* workaround for 160Mhz:
1489 1) program 0x4600c bits 15:0 = 0x8124
1490 2) program 0x46010 bit 0 = 1
1491 3) program 0x46034 bit 24 = 1
1492 4) program 0x64000 bit 14 = 1
1493 */
1494 temp = I915_READ(0x4600c);
1495 temp &= 0xffff0000;
1496 I915_WRITE(0x4600c, temp | 0x8124);
1497
1498 temp = I915_READ(0x46010);
1499 I915_WRITE(0x46010, temp | 1);
1500
1501 temp = I915_READ(0x46034);
1502 I915_WRITE(0x46034, temp | (1 << 24));
1503 } else {
1504 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1505 }
1506 I915_WRITE(DP_A, dpa_ctl);
1507
1508 udelay(500);
1509}
1510
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001511/* The FDI link training functions for ILK/Ibexpeak. */
1512static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1513{
1514 struct drm_device *dev = crtc->dev;
1515 struct drm_i915_private *dev_priv = dev->dev_private;
1516 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1517 int pipe = intel_crtc->pipe;
1518 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1519 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1520 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1521 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1522 u32 temp, tries = 0;
1523
1524 /* enable CPU FDI TX and PCH FDI RX */
1525 temp = I915_READ(fdi_tx_reg);
1526 temp |= FDI_TX_ENABLE;
1527 temp |= FDI_DP_PORT_WIDTH_X4; /* default */
1528 temp &= ~FDI_LINK_TRAIN_NONE;
1529 temp |= FDI_LINK_TRAIN_PATTERN_1;
1530 I915_WRITE(fdi_tx_reg, temp);
1531 I915_READ(fdi_tx_reg);
1532
1533 temp = I915_READ(fdi_rx_reg);
1534 temp &= ~FDI_LINK_TRAIN_NONE;
1535 temp |= FDI_LINK_TRAIN_PATTERN_1;
1536 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1537 I915_READ(fdi_rx_reg);
1538 udelay(150);
1539
1540 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1541 for train result */
1542 temp = I915_READ(fdi_rx_imr_reg);
1543 temp &= ~FDI_RX_SYMBOL_LOCK;
1544 temp &= ~FDI_RX_BIT_LOCK;
1545 I915_WRITE(fdi_rx_imr_reg, temp);
1546 I915_READ(fdi_rx_imr_reg);
1547 udelay(150);
1548
1549 for (;;) {
1550 temp = I915_READ(fdi_rx_iir_reg);
1551 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1552
1553 if ((temp & FDI_RX_BIT_LOCK)) {
1554 DRM_DEBUG_KMS("FDI train 1 done.\n");
1555 I915_WRITE(fdi_rx_iir_reg,
1556 temp | FDI_RX_BIT_LOCK);
1557 break;
1558 }
1559
1560 tries++;
1561
1562 if (tries > 5) {
1563 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1564 break;
1565 }
1566 }
1567
1568 /* Train 2 */
1569 temp = I915_READ(fdi_tx_reg);
1570 temp &= ~FDI_LINK_TRAIN_NONE;
1571 temp |= FDI_LINK_TRAIN_PATTERN_2;
1572 I915_WRITE(fdi_tx_reg, temp);
1573
1574 temp = I915_READ(fdi_rx_reg);
1575 temp &= ~FDI_LINK_TRAIN_NONE;
1576 temp |= FDI_LINK_TRAIN_PATTERN_2;
1577 I915_WRITE(fdi_rx_reg, temp);
1578 udelay(150);
1579
1580 tries = 0;
1581
1582 for (;;) {
1583 temp = I915_READ(fdi_rx_iir_reg);
1584 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1585
1586 if (temp & FDI_RX_SYMBOL_LOCK) {
1587 I915_WRITE(fdi_rx_iir_reg,
1588 temp | FDI_RX_SYMBOL_LOCK);
1589 DRM_DEBUG_KMS("FDI train 2 done.\n");
1590 break;
1591 }
1592
1593 tries++;
1594
1595 if (tries > 5) {
1596 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1597 break;
1598 }
1599 }
1600
1601 DRM_DEBUG_KMS("FDI train done\n");
1602}
1603
1604static int snb_b_fdi_train_param [] = {
1605 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1606 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1607 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1608 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1609};
1610
1611/* The FDI link training functions for SNB/Cougarpoint. */
1612static void gen6_fdi_link_train(struct drm_crtc *crtc)
1613{
1614 struct drm_device *dev = crtc->dev;
1615 struct drm_i915_private *dev_priv = dev->dev_private;
1616 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1617 int pipe = intel_crtc->pipe;
1618 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1619 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1620 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1621 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1622 u32 temp, i;
1623
1624 /* enable CPU FDI TX and PCH FDI RX */
1625 temp = I915_READ(fdi_tx_reg);
1626 temp |= FDI_TX_ENABLE;
1627 temp |= FDI_DP_PORT_WIDTH_X4; /* default */
1628 temp &= ~FDI_LINK_TRAIN_NONE;
1629 temp |= FDI_LINK_TRAIN_PATTERN_1;
1630 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1631 /* SNB-B */
1632 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1633 I915_WRITE(fdi_tx_reg, temp);
1634 I915_READ(fdi_tx_reg);
1635
1636 temp = I915_READ(fdi_rx_reg);
1637 if (HAS_PCH_CPT(dev)) {
1638 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1639 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1640 } else {
1641 temp &= ~FDI_LINK_TRAIN_NONE;
1642 temp |= FDI_LINK_TRAIN_PATTERN_1;
1643 }
1644 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1645 I915_READ(fdi_rx_reg);
1646 udelay(150);
1647
1648 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1649 for train result */
1650 temp = I915_READ(fdi_rx_imr_reg);
1651 temp &= ~FDI_RX_SYMBOL_LOCK;
1652 temp &= ~FDI_RX_BIT_LOCK;
1653 I915_WRITE(fdi_rx_imr_reg, temp);
1654 I915_READ(fdi_rx_imr_reg);
1655 udelay(150);
1656
1657 for (i = 0; i < 4; i++ ) {
1658 temp = I915_READ(fdi_tx_reg);
1659 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1660 temp |= snb_b_fdi_train_param[i];
1661 I915_WRITE(fdi_tx_reg, temp);
1662 udelay(500);
1663
1664 temp = I915_READ(fdi_rx_iir_reg);
1665 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1666
1667 if (temp & FDI_RX_BIT_LOCK) {
1668 I915_WRITE(fdi_rx_iir_reg,
1669 temp | FDI_RX_BIT_LOCK);
1670 DRM_DEBUG_KMS("FDI train 1 done.\n");
1671 break;
1672 }
1673 }
1674 if (i == 4)
1675 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1676
1677 /* Train 2 */
1678 temp = I915_READ(fdi_tx_reg);
1679 temp &= ~FDI_LINK_TRAIN_NONE;
1680 temp |= FDI_LINK_TRAIN_PATTERN_2;
1681 if (IS_GEN6(dev)) {
1682 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1683 /* SNB-B */
1684 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1685 }
1686 I915_WRITE(fdi_tx_reg, temp);
1687
1688 temp = I915_READ(fdi_rx_reg);
1689 if (HAS_PCH_CPT(dev)) {
1690 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1691 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1692 } else {
1693 temp &= ~FDI_LINK_TRAIN_NONE;
1694 temp |= FDI_LINK_TRAIN_PATTERN_2;
1695 }
1696 I915_WRITE(fdi_rx_reg, temp);
1697 udelay(150);
1698
1699 for (i = 0; i < 4; i++ ) {
1700 temp = I915_READ(fdi_tx_reg);
1701 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1702 temp |= snb_b_fdi_train_param[i];
1703 I915_WRITE(fdi_tx_reg, temp);
1704 udelay(500);
1705
1706 temp = I915_READ(fdi_rx_iir_reg);
1707 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1708
1709 if (temp & FDI_RX_SYMBOL_LOCK) {
1710 I915_WRITE(fdi_rx_iir_reg,
1711 temp | FDI_RX_SYMBOL_LOCK);
1712 DRM_DEBUG_KMS("FDI train 2 done.\n");
1713 break;
1714 }
1715 }
1716 if (i == 4)
1717 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1718
1719 DRM_DEBUG_KMS("FDI train done.\n");
1720}
1721
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001722static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08001723{
1724 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001725 struct drm_i915_private *dev_priv = dev->dev_private;
1726 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1727 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001728 int plane = intel_crtc->plane;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001729 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
1730 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1731 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1732 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
1733 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1734 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001735 int transconf_reg = (pipe == 0) ? TRANSACONF : TRANSBCONF;
1736 int pf_ctl_reg = (pipe == 0) ? PFA_CTL_1 : PFB_CTL_1;
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001737 int pf_win_size = (pipe == 0) ? PFA_WIN_SZ : PFB_WIN_SZ;
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001738 int pf_win_pos = (pipe == 0) ? PFA_WIN_POS : PFB_WIN_POS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001739 int cpu_htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
1740 int cpu_hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
1741 int cpu_hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
1742 int cpu_vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
1743 int cpu_vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
1744 int cpu_vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
1745 int trans_htot_reg = (pipe == 0) ? TRANS_HTOTAL_A : TRANS_HTOTAL_B;
1746 int trans_hblank_reg = (pipe == 0) ? TRANS_HBLANK_A : TRANS_HBLANK_B;
1747 int trans_hsync_reg = (pipe == 0) ? TRANS_HSYNC_A : TRANS_HSYNC_B;
1748 int trans_vtot_reg = (pipe == 0) ? TRANS_VTOTAL_A : TRANS_VTOTAL_B;
1749 int trans_vblank_reg = (pipe == 0) ? TRANS_VBLANK_A : TRANS_VBLANK_B;
1750 int trans_vsync_reg = (pipe == 0) ? TRANS_VSYNC_A : TRANS_VSYNC_B;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001751 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001752 u32 temp;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001753 int n;
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001754 u32 pipe_bpc;
1755
1756 temp = I915_READ(pipeconf_reg);
1757 pipe_bpc = temp & PIPE_BPC_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001758
1759 /* XXX: When our outputs are all unaware of DPMS modes other than off
1760 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
1761 */
1762 switch (mode) {
1763 case DRM_MODE_DPMS_ON:
1764 case DRM_MODE_DPMS_STANDBY:
1765 case DRM_MODE_DPMS_SUSPEND:
Zhao Yakui28c97732009-10-09 11:39:41 +08001766 DRM_DEBUG_KMS("crtc %d dpms on\n", pipe);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001767
1768 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1769 temp = I915_READ(PCH_LVDS);
1770 if ((temp & LVDS_PORT_EN) == 0) {
1771 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
1772 POSTING_READ(PCH_LVDS);
1773 }
1774 }
1775
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001776 if (HAS_eDP) {
1777 /* enable eDP PLL */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001778 ironlake_enable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001779 } else {
Zhenyu Wang2c072452009-06-05 15:38:42 +08001780
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001781 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
1782 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001783 /*
1784 * make the BPC in FDI Rx be consistent with that in
1785 * pipeconf reg.
1786 */
1787 temp &= ~(0x7 << 16);
1788 temp |= (pipe_bpc << 11);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001789 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE |
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001790 FDI_DP_PORT_WIDTH_X4); /* default 4 lanes */
1791 I915_READ(fdi_rx_reg);
1792 udelay(200);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001793
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001794 /* Switch from Rawclk to PCDclk */
1795 temp = I915_READ(fdi_rx_reg);
1796 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
1797 I915_READ(fdi_rx_reg);
1798 udelay(200);
1799
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001800 /* Enable CPU FDI TX PLL, always on for Ironlake */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001801 temp = I915_READ(fdi_tx_reg);
1802 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
1803 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
1804 I915_READ(fdi_tx_reg);
1805 udelay(100);
1806 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001807 }
1808
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001809 /* Enable panel fitting for LVDS */
1810 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1811 temp = I915_READ(pf_ctl_reg);
Zhenyu Wangb1f60b72009-10-19 15:43:49 +08001812 I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3);
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001813
1814 /* currently full aspect */
1815 I915_WRITE(pf_win_pos, 0);
1816
1817 I915_WRITE(pf_win_size,
1818 (dev_priv->panel_fixed_mode->hdisplay << 16) |
1819 (dev_priv->panel_fixed_mode->vdisplay));
1820 }
1821
Zhenyu Wang2c072452009-06-05 15:38:42 +08001822 /* Enable CPU pipe */
1823 temp = I915_READ(pipeconf_reg);
1824 if ((temp & PIPEACONF_ENABLE) == 0) {
1825 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
1826 I915_READ(pipeconf_reg);
1827 udelay(100);
1828 }
1829
1830 /* configure and enable CPU plane */
1831 temp = I915_READ(dspcntr_reg);
1832 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
1833 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
1834 /* Flush the plane changes */
1835 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1836 }
1837
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001838 if (!HAS_eDP) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001839 /* For PCH output, training FDI link */
1840 if (IS_GEN6(dev))
1841 gen6_fdi_link_train(crtc);
1842 else
1843 ironlake_fdi_link_train(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001844
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001845 /* enable PCH DPLL */
1846 temp = I915_READ(pch_dpll_reg);
1847 if ((temp & DPLL_VCO_ENABLE) == 0) {
1848 I915_WRITE(pch_dpll_reg, temp | DPLL_VCO_ENABLE);
1849 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001850 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001851 udelay(200);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001852
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001853 if (HAS_PCH_CPT(dev)) {
1854 /* Be sure PCH DPLL SEL is set */
1855 temp = I915_READ(PCH_DPLL_SEL);
1856 if (trans_dpll_sel == 0 &&
1857 (temp & TRANSA_DPLL_ENABLE) == 0)
1858 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
1859 else if (trans_dpll_sel == 1 &&
1860 (temp & TRANSB_DPLL_ENABLE) == 0)
1861 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
1862 I915_WRITE(PCH_DPLL_SEL, temp);
1863 I915_READ(PCH_DPLL_SEL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001864 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001865
1866 /* set transcoder timing */
1867 I915_WRITE(trans_htot_reg, I915_READ(cpu_htot_reg));
1868 I915_WRITE(trans_hblank_reg, I915_READ(cpu_hblank_reg));
1869 I915_WRITE(trans_hsync_reg, I915_READ(cpu_hsync_reg));
1870
1871 I915_WRITE(trans_vtot_reg, I915_READ(cpu_vtot_reg));
1872 I915_WRITE(trans_vblank_reg, I915_READ(cpu_vblank_reg));
1873 I915_WRITE(trans_vsync_reg, I915_READ(cpu_vsync_reg));
1874
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001875 /* enable normal train */
1876 temp = I915_READ(fdi_tx_reg);
1877 temp &= ~FDI_LINK_TRAIN_NONE;
1878 I915_WRITE(fdi_tx_reg, temp | FDI_LINK_TRAIN_NONE |
1879 FDI_TX_ENHANCE_FRAME_ENABLE);
1880 I915_READ(fdi_tx_reg);
1881
1882 temp = I915_READ(fdi_rx_reg);
1883 if (HAS_PCH_CPT(dev)) {
1884 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1885 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
1886 } else {
1887 temp &= ~FDI_LINK_TRAIN_NONE;
1888 temp |= FDI_LINK_TRAIN_NONE;
1889 }
1890 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
1891 I915_READ(fdi_rx_reg);
1892
1893 /* wait one idle pattern time */
1894 udelay(100);
1895
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001896 /* enable PCH transcoder */
1897 temp = I915_READ(transconf_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001898 /*
1899 * make the BPC in transcoder be consistent with
1900 * that in pipeconf reg.
1901 */
1902 temp &= ~PIPE_BPC_MASK;
1903 temp |= pipe_bpc;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001904 I915_WRITE(transconf_reg, temp | TRANS_ENABLE);
1905 I915_READ(transconf_reg);
1906
1907 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) == 0)
1908 ;
1909
Zhenyu Wang2c072452009-06-05 15:38:42 +08001910 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001911
1912 intel_crtc_load_lut(crtc);
1913
1914 break;
1915 case DRM_MODE_DPMS_OFF:
Zhao Yakui28c97732009-10-09 11:39:41 +08001916 DRM_DEBUG_KMS("crtc %d dpms off\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001917
Li Pengc062df62010-01-23 00:12:58 +08001918 drm_vblank_off(dev, pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001919 /* Disable display plane */
1920 temp = I915_READ(dspcntr_reg);
1921 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
1922 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
1923 /* Flush the plane changes */
1924 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1925 I915_READ(dspbase_reg);
1926 }
1927
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001928 i915_disable_vga(dev);
1929
Zhenyu Wang2c072452009-06-05 15:38:42 +08001930 /* disable cpu pipe, disable after all planes disabled */
1931 temp = I915_READ(pipeconf_reg);
1932 if ((temp & PIPEACONF_ENABLE) != 0) {
1933 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
1934 I915_READ(pipeconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001935 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001936 /* wait for cpu pipe off, pipe state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001937 while ((I915_READ(pipeconf_reg) & I965_PIPECONF_ACTIVE) != 0) {
1938 n++;
1939 if (n < 60) {
1940 udelay(500);
1941 continue;
1942 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08001943 DRM_DEBUG_KMS("pipe %d off delay\n",
1944 pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001945 break;
1946 }
1947 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001948 } else
Zhao Yakui28c97732009-10-09 11:39:41 +08001949 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001950
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001951 udelay(100);
1952
1953 /* Disable PF */
1954 temp = I915_READ(pf_ctl_reg);
1955 if ((temp & PF_ENABLE) != 0) {
1956 I915_WRITE(pf_ctl_reg, temp & ~PF_ENABLE);
1957 I915_READ(pf_ctl_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001958 }
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001959 I915_WRITE(pf_win_size, 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001960 POSTING_READ(pf_win_size);
1961
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001962
Zhenyu Wang2c072452009-06-05 15:38:42 +08001963 /* disable CPU FDI tx and PCH FDI rx */
1964 temp = I915_READ(fdi_tx_reg);
1965 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_ENABLE);
1966 I915_READ(fdi_tx_reg);
1967
1968 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001969 /* BPC in FDI rx is consistent with that in pipeconf */
1970 temp &= ~(0x07 << 16);
1971 temp |= (pipe_bpc << 11);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001972 I915_WRITE(fdi_rx_reg, temp & ~FDI_RX_ENABLE);
1973 I915_READ(fdi_rx_reg);
1974
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001975 udelay(100);
1976
Zhenyu Wang2c072452009-06-05 15:38:42 +08001977 /* still set train pattern 1 */
1978 temp = I915_READ(fdi_tx_reg);
1979 temp &= ~FDI_LINK_TRAIN_NONE;
1980 temp |= FDI_LINK_TRAIN_PATTERN_1;
1981 I915_WRITE(fdi_tx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001982 POSTING_READ(fdi_tx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001983
1984 temp = I915_READ(fdi_rx_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001985 if (HAS_PCH_CPT(dev)) {
1986 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1987 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1988 } else {
1989 temp &= ~FDI_LINK_TRAIN_NONE;
1990 temp |= FDI_LINK_TRAIN_PATTERN_1;
1991 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001992 I915_WRITE(fdi_rx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001993 POSTING_READ(fdi_rx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001994
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001995 udelay(100);
1996
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001997 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1998 temp = I915_READ(PCH_LVDS);
1999 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2000 I915_READ(PCH_LVDS);
2001 udelay(100);
2002 }
2003
Zhenyu Wang2c072452009-06-05 15:38:42 +08002004 /* disable PCH transcoder */
2005 temp = I915_READ(transconf_reg);
2006 if ((temp & TRANS_ENABLE) != 0) {
2007 I915_WRITE(transconf_reg, temp & ~TRANS_ENABLE);
2008 I915_READ(transconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002009 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002010 /* wait for PCH transcoder off, transcoder state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002011 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) != 0) {
2012 n++;
2013 if (n < 60) {
2014 udelay(500);
2015 continue;
2016 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002017 DRM_DEBUG_KMS("transcoder %d off "
2018 "delay\n", pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002019 break;
2020 }
2021 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002022 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002023
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002024 temp = I915_READ(transconf_reg);
2025 /* BPC in transcoder is consistent with that in pipeconf */
2026 temp &= ~PIPE_BPC_MASK;
2027 temp |= pipe_bpc;
2028 I915_WRITE(transconf_reg, temp);
2029 I915_READ(transconf_reg);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002030 udelay(100);
2031
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002032 if (HAS_PCH_CPT(dev)) {
2033
2034 /* disable DPLL_SEL */
2035 temp = I915_READ(PCH_DPLL_SEL);
2036 if (trans_dpll_sel == 0)
2037 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2038 else
2039 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2040 I915_WRITE(PCH_DPLL_SEL, temp);
2041 I915_READ(PCH_DPLL_SEL);
2042
2043 }
2044
Zhenyu Wang2c072452009-06-05 15:38:42 +08002045 /* disable PCH DPLL */
2046 temp = I915_READ(pch_dpll_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002047 I915_WRITE(pch_dpll_reg, temp & ~DPLL_VCO_ENABLE);
2048 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002049
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002050 if (HAS_eDP) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002051 ironlake_disable_pll_edp(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002052 }
2053
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002054 /* Switch from PCDclk to Rawclk */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002055 temp = I915_READ(fdi_rx_reg);
2056 temp &= ~FDI_SEL_PCDCLK;
2057 I915_WRITE(fdi_rx_reg, temp);
2058 I915_READ(fdi_rx_reg);
2059
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002060 /* Disable CPU FDI TX PLL */
2061 temp = I915_READ(fdi_tx_reg);
2062 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_PLL_ENABLE);
2063 I915_READ(fdi_tx_reg);
2064 udelay(100);
2065
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002066 temp = I915_READ(fdi_rx_reg);
2067 temp &= ~FDI_RX_PLL_ENABLE;
2068 I915_WRITE(fdi_rx_reg, temp);
2069 I915_READ(fdi_rx_reg);
2070
Zhenyu Wang2c072452009-06-05 15:38:42 +08002071 /* Wait for the clocks to turn off. */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002072 udelay(100);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002073 break;
2074 }
2075}
2076
Daniel Vetter02e792f2009-09-15 22:57:34 +02002077static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2078{
2079 struct intel_overlay *overlay;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002080 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +02002081
2082 if (!enable && intel_crtc->overlay) {
2083 overlay = intel_crtc->overlay;
2084 mutex_lock(&overlay->dev->struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002085 for (;;) {
2086 ret = intel_overlay_switch_off(overlay);
2087 if (ret == 0)
2088 break;
2089
2090 ret = intel_overlay_recover_from_interrupt(overlay, 0);
2091 if (ret != 0) {
2092 /* overlay doesn't react anymore. Usually
2093 * results in a black screen and an unkillable
2094 * X server. */
2095 BUG();
2096 overlay->hw_wedged = HW_WEDGED;
2097 break;
2098 }
2099 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002100 mutex_unlock(&overlay->dev->struct_mutex);
2101 }
2102 /* Let userspace switch the overlay on again. In most cases userspace
2103 * has to recompute where to put it anyway. */
2104
2105 return;
2106}
2107
Zhenyu Wang2c072452009-06-05 15:38:42 +08002108static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2109{
2110 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002111 struct drm_i915_private *dev_priv = dev->dev_private;
2112 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2113 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002114 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002115 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
Jesse Barnes80824002009-09-10 15:28:06 -07002116 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
2117 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
Jesse Barnes79e53942008-11-07 14:24:08 -08002118 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
2119 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08002120
2121 /* XXX: When our outputs are all unaware of DPMS modes other than off
2122 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2123 */
2124 switch (mode) {
2125 case DRM_MODE_DPMS_ON:
2126 case DRM_MODE_DPMS_STANDBY:
2127 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes629598d2009-10-20 07:37:32 +09002128 intel_update_watermarks(dev);
2129
Jesse Barnes79e53942008-11-07 14:24:08 -08002130 /* Enable the DPLL */
2131 temp = I915_READ(dpll_reg);
2132 if ((temp & DPLL_VCO_ENABLE) == 0) {
2133 I915_WRITE(dpll_reg, temp);
2134 I915_READ(dpll_reg);
2135 /* Wait for the clocks to stabilize. */
2136 udelay(150);
2137 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2138 I915_READ(dpll_reg);
2139 /* Wait for the clocks to stabilize. */
2140 udelay(150);
2141 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2142 I915_READ(dpll_reg);
2143 /* Wait for the clocks to stabilize. */
2144 udelay(150);
2145 }
2146
2147 /* Enable the pipe */
2148 temp = I915_READ(pipeconf_reg);
2149 if ((temp & PIPEACONF_ENABLE) == 0)
2150 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
2151
2152 /* Enable the plane */
2153 temp = I915_READ(dspcntr_reg);
2154 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
2155 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
2156 /* Flush the plane changes */
2157 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2158 }
2159
2160 intel_crtc_load_lut(crtc);
2161
Jesse Barnes74dff282009-09-14 15:39:40 -07002162 if ((IS_I965G(dev) || plane == 0))
2163 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnes80824002009-09-10 15:28:06 -07002164
Jesse Barnes79e53942008-11-07 14:24:08 -08002165 /* Give the overlay scaler a chance to enable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002166 intel_crtc_dpms_overlay(intel_crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08002167 break;
2168 case DRM_MODE_DPMS_OFF:
Shaohua Li7662c8b2009-06-26 11:23:55 +08002169 intel_update_watermarks(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002170
Jesse Barnes79e53942008-11-07 14:24:08 -08002171 /* Give the overlay scaler a chance to disable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002172 intel_crtc_dpms_overlay(intel_crtc, false);
Li Peng778c9022009-11-09 12:51:22 +08002173 drm_vblank_off(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08002174
Jesse Barnese70236a2009-09-21 10:42:27 -07002175 if (dev_priv->cfb_plane == plane &&
2176 dev_priv->display.disable_fbc)
2177 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07002178
Jesse Barnes79e53942008-11-07 14:24:08 -08002179 /* Disable the VGA plane that we never use */
Zhenyu Wang24f119c2009-07-24 01:00:28 +08002180 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002181
2182 /* Disable display plane */
2183 temp = I915_READ(dspcntr_reg);
2184 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
2185 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
2186 /* Flush the plane changes */
2187 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2188 I915_READ(dspbase_reg);
2189 }
2190
2191 if (!IS_I9XX(dev)) {
2192 /* Wait for vblank for the disable to take effect */
2193 intel_wait_for_vblank(dev);
2194 }
2195
2196 /* Next, disable display pipes */
2197 temp = I915_READ(pipeconf_reg);
2198 if ((temp & PIPEACONF_ENABLE) != 0) {
2199 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
2200 I915_READ(pipeconf_reg);
2201 }
2202
2203 /* Wait for vblank for the disable to take effect. */
2204 intel_wait_for_vblank(dev);
2205
2206 temp = I915_READ(dpll_reg);
2207 if ((temp & DPLL_VCO_ENABLE) != 0) {
2208 I915_WRITE(dpll_reg, temp & ~DPLL_VCO_ENABLE);
2209 I915_READ(dpll_reg);
2210 }
2211
2212 /* Wait for the clocks to turn off. */
2213 udelay(150);
2214 break;
2215 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002216}
2217
2218/**
2219 * Sets the power management mode of the pipe and plane.
2220 *
2221 * This code should probably grow support for turning the cursor off and back
2222 * on appropriately at the same time as we're turning the pipe off/on.
2223 */
2224static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2225{
2226 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002227 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002228 struct drm_i915_master_private *master_priv;
2229 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2230 int pipe = intel_crtc->pipe;
2231 bool enabled;
2232
Jesse Barnese70236a2009-09-21 10:42:27 -07002233 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002234
Daniel Vetter65655d42009-08-11 16:05:31 +02002235 intel_crtc->dpms_mode = mode;
2236
Jesse Barnes79e53942008-11-07 14:24:08 -08002237 if (!dev->primary->master)
2238 return;
2239
2240 master_priv = dev->primary->master->driver_priv;
2241 if (!master_priv->sarea_priv)
2242 return;
2243
2244 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2245
2246 switch (pipe) {
2247 case 0:
2248 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2249 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2250 break;
2251 case 1:
2252 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2253 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2254 break;
2255 default:
2256 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2257 break;
2258 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002259}
2260
2261static void intel_crtc_prepare (struct drm_crtc *crtc)
2262{
2263 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2264 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2265}
2266
2267static void intel_crtc_commit (struct drm_crtc *crtc)
2268{
2269 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2270 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
2271}
2272
2273void intel_encoder_prepare (struct drm_encoder *encoder)
2274{
2275 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2276 /* lvds has its own version of prepare see intel_lvds_prepare */
2277 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2278}
2279
2280void intel_encoder_commit (struct drm_encoder *encoder)
2281{
2282 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2283 /* lvds has its own version of commit see intel_lvds_commit */
2284 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2285}
2286
2287static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2288 struct drm_display_mode *mode,
2289 struct drm_display_mode *adjusted_mode)
2290{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002291 struct drm_device *dev = crtc->dev;
Eric Anholtbad720f2009-10-22 16:11:14 -07002292 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002293 /* FDI link clock is fixed at 2.7G */
2294 if (mode->clock * 3 > 27000 * 4)
2295 return MODE_CLOCK_HIGH;
2296 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002297 return true;
2298}
2299
Jesse Barnese70236a2009-09-21 10:42:27 -07002300static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002301{
Jesse Barnese70236a2009-09-21 10:42:27 -07002302 return 400000;
2303}
Jesse Barnes79e53942008-11-07 14:24:08 -08002304
Jesse Barnese70236a2009-09-21 10:42:27 -07002305static int i915_get_display_clock_speed(struct drm_device *dev)
2306{
2307 return 333000;
2308}
Jesse Barnes79e53942008-11-07 14:24:08 -08002309
Jesse Barnese70236a2009-09-21 10:42:27 -07002310static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2311{
2312 return 200000;
2313}
Jesse Barnes79e53942008-11-07 14:24:08 -08002314
Jesse Barnese70236a2009-09-21 10:42:27 -07002315static int i915gm_get_display_clock_speed(struct drm_device *dev)
2316{
2317 u16 gcfgc = 0;
2318
2319 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2320
2321 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002322 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002323 else {
2324 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2325 case GC_DISPLAY_CLOCK_333_MHZ:
2326 return 333000;
2327 default:
2328 case GC_DISPLAY_CLOCK_190_200_MHZ:
2329 return 190000;
2330 }
2331 }
2332}
Jesse Barnes79e53942008-11-07 14:24:08 -08002333
Jesse Barnese70236a2009-09-21 10:42:27 -07002334static int i865_get_display_clock_speed(struct drm_device *dev)
2335{
2336 return 266000;
2337}
2338
2339static int i855_get_display_clock_speed(struct drm_device *dev)
2340{
2341 u16 hpllcc = 0;
2342 /* Assume that the hardware is in the high speed state. This
2343 * should be the default.
2344 */
2345 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2346 case GC_CLOCK_133_200:
2347 case GC_CLOCK_100_200:
2348 return 200000;
2349 case GC_CLOCK_166_250:
2350 return 250000;
2351 case GC_CLOCK_100_133:
2352 return 133000;
2353 }
2354
2355 /* Shouldn't happen */
2356 return 0;
2357}
2358
2359static int i830_get_display_clock_speed(struct drm_device *dev)
2360{
2361 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002362}
2363
Jesse Barnes79e53942008-11-07 14:24:08 -08002364/**
2365 * Return the pipe currently connected to the panel fitter,
2366 * or -1 if the panel fitter is not present or not in use
2367 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002368int intel_panel_fitter_pipe (struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002369{
2370 struct drm_i915_private *dev_priv = dev->dev_private;
2371 u32 pfit_control;
2372
2373 /* i830 doesn't have a panel fitter */
2374 if (IS_I830(dev))
2375 return -1;
2376
2377 pfit_control = I915_READ(PFIT_CONTROL);
2378
2379 /* See if the panel fitter is in use */
2380 if ((pfit_control & PFIT_ENABLE) == 0)
2381 return -1;
2382
2383 /* 965 can place panel fitter on either pipe */
2384 if (IS_I965G(dev))
2385 return (pfit_control >> 29) & 0x3;
2386
2387 /* older chips can only use pipe 1 */
2388 return 1;
2389}
2390
Zhenyu Wang2c072452009-06-05 15:38:42 +08002391struct fdi_m_n {
2392 u32 tu;
2393 u32 gmch_m;
2394 u32 gmch_n;
2395 u32 link_m;
2396 u32 link_n;
2397};
2398
2399static void
2400fdi_reduce_ratio(u32 *num, u32 *den)
2401{
2402 while (*num > 0xffffff || *den > 0xffffff) {
2403 *num >>= 1;
2404 *den >>= 1;
2405 }
2406}
2407
2408#define DATA_N 0x800000
2409#define LINK_N 0x80000
2410
2411static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002412ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2413 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002414{
2415 u64 temp;
2416
2417 m_n->tu = 64; /* default size */
2418
2419 temp = (u64) DATA_N * pixel_clock;
2420 temp = div_u64(temp, link_clock);
Zhenyu Wang58a27472009-09-25 08:01:28 +00002421 m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes);
2422 m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */
Zhenyu Wang2c072452009-06-05 15:38:42 +08002423 m_n->gmch_n = DATA_N;
2424 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2425
2426 temp = (u64) LINK_N * pixel_clock;
2427 m_n->link_m = div_u64(temp, link_clock);
2428 m_n->link_n = LINK_N;
2429 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2430}
2431
2432
Shaohua Li7662c8b2009-06-26 11:23:55 +08002433struct intel_watermark_params {
2434 unsigned long fifo_size;
2435 unsigned long max_wm;
2436 unsigned long default_wm;
2437 unsigned long guard_size;
2438 unsigned long cacheline_size;
2439};
2440
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002441/* Pineview has different values for various configs */
2442static struct intel_watermark_params pineview_display_wm = {
2443 PINEVIEW_DISPLAY_FIFO,
2444 PINEVIEW_MAX_WM,
2445 PINEVIEW_DFT_WM,
2446 PINEVIEW_GUARD_WM,
2447 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002448};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002449static struct intel_watermark_params pineview_display_hplloff_wm = {
2450 PINEVIEW_DISPLAY_FIFO,
2451 PINEVIEW_MAX_WM,
2452 PINEVIEW_DFT_HPLLOFF_WM,
2453 PINEVIEW_GUARD_WM,
2454 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002455};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002456static struct intel_watermark_params pineview_cursor_wm = {
2457 PINEVIEW_CURSOR_FIFO,
2458 PINEVIEW_CURSOR_MAX_WM,
2459 PINEVIEW_CURSOR_DFT_WM,
2460 PINEVIEW_CURSOR_GUARD_WM,
2461 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002462};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002463static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2464 PINEVIEW_CURSOR_FIFO,
2465 PINEVIEW_CURSOR_MAX_WM,
2466 PINEVIEW_CURSOR_DFT_WM,
2467 PINEVIEW_CURSOR_GUARD_WM,
2468 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002469};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002470static struct intel_watermark_params g4x_wm_info = {
2471 G4X_FIFO_SIZE,
2472 G4X_MAX_WM,
2473 G4X_MAX_WM,
2474 2,
2475 G4X_FIFO_LINE_SIZE,
2476};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002477static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002478 I945_FIFO_SIZE,
2479 I915_MAX_WM,
2480 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002481 2,
2482 I915_FIFO_LINE_SIZE
2483};
2484static struct intel_watermark_params i915_wm_info = {
2485 I915_FIFO_SIZE,
2486 I915_MAX_WM,
2487 1,
2488 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002489 I915_FIFO_LINE_SIZE
2490};
2491static struct intel_watermark_params i855_wm_info = {
2492 I855GM_FIFO_SIZE,
2493 I915_MAX_WM,
2494 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002495 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002496 I830_FIFO_LINE_SIZE
2497};
2498static struct intel_watermark_params i830_wm_info = {
2499 I830_FIFO_SIZE,
2500 I915_MAX_WM,
2501 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002502 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002503 I830_FIFO_LINE_SIZE
2504};
2505
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002506/**
2507 * intel_calculate_wm - calculate watermark level
2508 * @clock_in_khz: pixel clock
2509 * @wm: chip FIFO params
2510 * @pixel_size: display pixel size
2511 * @latency_ns: memory latency for the platform
2512 *
2513 * Calculate the watermark level (the level at which the display plane will
2514 * start fetching from memory again). Each chip has a different display
2515 * FIFO size and allocation, so the caller needs to figure that out and pass
2516 * in the correct intel_watermark_params structure.
2517 *
2518 * As the pixel clock runs, the FIFO will be drained at a rate that depends
2519 * on the pixel size. When it reaches the watermark level, it'll start
2520 * fetching FIFO line sized based chunks from memory until the FIFO fills
2521 * past the watermark point. If the FIFO drains completely, a FIFO underrun
2522 * will occur, and a display engine hang could result.
2523 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002524static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
2525 struct intel_watermark_params *wm,
2526 int pixel_size,
2527 unsigned long latency_ns)
2528{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002529 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002530
Jesse Barnesd6604672009-09-11 12:25:56 -07002531 /*
2532 * Note: we need to make sure we don't overflow for various clock &
2533 * latency values.
2534 * clocks go from a few thousand to several hundred thousand.
2535 * latency is usually a few thousand
2536 */
2537 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
2538 1000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002539 entries_required /= wm->cacheline_size;
2540
Zhao Yakui28c97732009-10-09 11:39:41 +08002541 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002542
2543 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
2544
Zhao Yakui28c97732009-10-09 11:39:41 +08002545 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002546
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002547 /* Don't promote wm_size to unsigned... */
2548 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002549 wm_size = wm->max_wm;
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002550 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002551 wm_size = wm->default_wm;
2552 return wm_size;
2553}
2554
2555struct cxsr_latency {
2556 int is_desktop;
2557 unsigned long fsb_freq;
2558 unsigned long mem_freq;
2559 unsigned long display_sr;
2560 unsigned long display_hpll_disable;
2561 unsigned long cursor_sr;
2562 unsigned long cursor_hpll_disable;
2563};
2564
2565static struct cxsr_latency cxsr_latency_table[] = {
2566 {1, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
2567 {1, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
2568 {1, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
2569
2570 {1, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
2571 {1, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
2572 {1, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
2573
2574 {1, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
2575 {1, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
2576 {1, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
2577
2578 {0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
2579 {0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
2580 {0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
2581
2582 {0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
2583 {0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
2584 {0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
2585
2586 {0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
2587 {0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
2588 {0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
2589};
2590
2591static struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, int fsb,
2592 int mem)
2593{
2594 int i;
2595 struct cxsr_latency *latency;
2596
2597 if (fsb == 0 || mem == 0)
2598 return NULL;
2599
2600 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
2601 latency = &cxsr_latency_table[i];
2602 if (is_desktop == latency->is_desktop &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302603 fsb == latency->fsb_freq && mem == latency->mem_freq)
2604 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002605 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302606
Zhao Yakui28c97732009-10-09 11:39:41 +08002607 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302608
2609 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002610}
2611
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002612static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002613{
2614 struct drm_i915_private *dev_priv = dev->dev_private;
2615 u32 reg;
2616
2617 /* deactivate cxsr */
2618 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002619 reg &= ~(PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002620 I915_WRITE(DSPFW3, reg);
2621 DRM_INFO("Big FIFO is disabled\n");
2622}
2623
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002624static void pineview_enable_cxsr(struct drm_device *dev, unsigned long clock,
2625 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002626{
2627 struct drm_i915_private *dev_priv = dev->dev_private;
2628 u32 reg;
2629 unsigned long wm;
2630 struct cxsr_latency *latency;
2631
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002632 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->fsb_freq,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002633 dev_priv->mem_freq);
2634 if (!latency) {
Zhao Yakui28c97732009-10-09 11:39:41 +08002635 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002636 pineview_disable_cxsr(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002637 return;
2638 }
2639
2640 /* Display SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002641 wm = intel_calculate_wm(clock, &pineview_display_wm, pixel_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002642 latency->display_sr);
2643 reg = I915_READ(DSPFW1);
2644 reg &= 0x7fffff;
2645 reg |= wm << 23;
2646 I915_WRITE(DSPFW1, reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08002647 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002648
2649 /* cursor SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002650 wm = intel_calculate_wm(clock, &pineview_cursor_wm, pixel_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002651 latency->cursor_sr);
2652 reg = I915_READ(DSPFW3);
2653 reg &= ~(0x3f << 24);
2654 reg |= (wm & 0x3f) << 24;
2655 I915_WRITE(DSPFW3, reg);
2656
2657 /* Display HPLL off SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002658 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002659 latency->display_hpll_disable, I915_FIFO_LINE_SIZE);
2660 reg = I915_READ(DSPFW3);
2661 reg &= 0xfffffe00;
2662 reg |= wm & 0x1ff;
2663 I915_WRITE(DSPFW3, reg);
2664
2665 /* cursor HPLL off SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002666 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm, pixel_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002667 latency->cursor_hpll_disable);
2668 reg = I915_READ(DSPFW3);
2669 reg &= ~(0x3f << 16);
2670 reg |= (wm & 0x3f) << 16;
2671 I915_WRITE(DSPFW3, reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08002672 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002673
2674 /* activate cxsr */
2675 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002676 reg |= PINEVIEW_SELF_REFRESH_EN;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002677 I915_WRITE(DSPFW3, reg);
2678
2679 DRM_INFO("Big FIFO is enabled\n");
2680
2681 return;
2682}
2683
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07002684/*
2685 * Latency for FIFO fetches is dependent on several factors:
2686 * - memory configuration (speed, channels)
2687 * - chipset
2688 * - current MCH state
2689 * It can be fairly high in some situations, so here we assume a fairly
2690 * pessimal value. It's a tradeoff between extra memory fetches (if we
2691 * set this value too high, the FIFO will fetch frequently to stay full)
2692 * and power consumption (set it too low to save power and we might see
2693 * FIFO underruns and display "flicker").
2694 *
2695 * A value of 5us seems to be a good balance; safe for very low end
2696 * platforms but not overly aggressive on lower latency configs.
2697 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002698static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002699
Jesse Barnese70236a2009-09-21 10:42:27 -07002700static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002701{
2702 struct drm_i915_private *dev_priv = dev->dev_private;
2703 uint32_t dsparb = I915_READ(DSPARB);
2704 int size;
2705
Jesse Barnese70236a2009-09-21 10:42:27 -07002706 if (plane == 0)
Jesse Barnesf3601322009-07-22 12:54:59 -07002707 size = dsparb & 0x7f;
Jesse Barnese70236a2009-09-21 10:42:27 -07002708 else
2709 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) -
2710 (dsparb & 0x7f);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002711
Zhao Yakui28c97732009-10-09 11:39:41 +08002712 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2713 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002714
2715 return size;
2716}
Shaohua Li7662c8b2009-06-26 11:23:55 +08002717
Jesse Barnese70236a2009-09-21 10:42:27 -07002718static int i85x_get_fifo_size(struct drm_device *dev, int plane)
2719{
2720 struct drm_i915_private *dev_priv = dev->dev_private;
2721 uint32_t dsparb = I915_READ(DSPARB);
2722 int size;
2723
2724 if (plane == 0)
2725 size = dsparb & 0x1ff;
2726 else
2727 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) -
2728 (dsparb & 0x1ff);
2729 size >>= 1; /* Convert to cachelines */
2730
Zhao Yakui28c97732009-10-09 11:39:41 +08002731 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2732 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002733
2734 return size;
2735}
2736
2737static int i845_get_fifo_size(struct drm_device *dev, int plane)
2738{
2739 struct drm_i915_private *dev_priv = dev->dev_private;
2740 uint32_t dsparb = I915_READ(DSPARB);
2741 int size;
2742
2743 size = dsparb & 0x7f;
2744 size >>= 2; /* Convert to cachelines */
2745
Zhao Yakui28c97732009-10-09 11:39:41 +08002746 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2747 plane ? "B" : "A",
Jesse Barnese70236a2009-09-21 10:42:27 -07002748 size);
2749
2750 return size;
2751}
2752
2753static int i830_get_fifo_size(struct drm_device *dev, int plane)
2754{
2755 struct drm_i915_private *dev_priv = dev->dev_private;
2756 uint32_t dsparb = I915_READ(DSPARB);
2757 int size;
2758
2759 size = dsparb & 0x7f;
2760 size >>= 1; /* Convert to cachelines */
2761
Zhao Yakui28c97732009-10-09 11:39:41 +08002762 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2763 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002764
2765 return size;
2766}
2767
Jesse Barnes0e442c62009-10-19 10:09:33 +09002768static void g4x_update_wm(struct drm_device *dev, int planea_clock,
2769 int planeb_clock, int sr_hdisplay, int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07002770{
2771 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002772 int total_size, cacheline_size;
2773 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
2774 struct intel_watermark_params planea_params, planeb_params;
2775 unsigned long line_time_us;
2776 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07002777
Jesse Barnes0e442c62009-10-19 10:09:33 +09002778 /* Create copies of the base settings for each pipe */
2779 planea_params = planeb_params = g4x_wm_info;
2780
2781 /* Grab a couple of global values before we overwrite them */
2782 total_size = planea_params.fifo_size;
2783 cacheline_size = planea_params.cacheline_size;
2784
2785 /*
2786 * Note: we need to make sure we don't overflow for various clock &
2787 * latency values.
2788 * clocks go from a few thousand to several hundred thousand.
2789 * latency is usually a few thousand
2790 */
2791 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
2792 1000;
2793 entries_required /= G4X_FIFO_LINE_SIZE;
2794 planea_wm = entries_required + planea_params.guard_size;
2795
2796 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
2797 1000;
2798 entries_required /= G4X_FIFO_LINE_SIZE;
2799 planeb_wm = entries_required + planeb_params.guard_size;
2800
2801 cursora_wm = cursorb_wm = 16;
2802 cursor_sr = 32;
2803
2804 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2805
2806 /* Calc sr entries for one plane configs */
2807 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
2808 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002809 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002810
2811 sr_clock = planea_clock ? planea_clock : planeb_clock;
2812 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
2813
2814 /* Use ns/us then divide to preserve precision */
2815 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
2816 pixel_size * sr_hdisplay) / 1000;
2817 sr_entries = roundup(sr_entries / cacheline_size, 1);
2818 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
2819 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05302820 } else {
2821 /* Turn off self refresh if both pipes are enabled */
2822 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
2823 & ~FW_BLC_SELF_EN);
Jesse Barnes0e442c62009-10-19 10:09:33 +09002824 }
2825
2826 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
2827 planea_wm, planeb_wm, sr_entries);
2828
2829 planea_wm &= 0x3f;
2830 planeb_wm &= 0x3f;
2831
2832 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
2833 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
2834 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
2835 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
2836 (cursora_wm << DSPFW_CURSORA_SHIFT));
2837 /* HPLL off in SR has some issues on G4x... disable it */
2838 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
2839 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07002840}
2841
Jesse Barnes1dc75462009-10-19 10:08:17 +09002842static void i965_update_wm(struct drm_device *dev, int planea_clock,
2843 int planeb_clock, int sr_hdisplay, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002844{
2845 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002846 unsigned long line_time_us;
2847 int sr_clock, sr_entries, srwm = 1;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002848
Jesse Barnes1dc75462009-10-19 10:08:17 +09002849 /* Calc sr entries for one plane configs */
2850 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
2851 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002852 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002853
2854 sr_clock = planea_clock ? planea_clock : planeb_clock;
2855 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
2856
2857 /* Use ns/us then divide to preserve precision */
2858 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
2859 pixel_size * sr_hdisplay) / 1000;
2860 sr_entries = roundup(sr_entries / I915_FIFO_LINE_SIZE, 1);
2861 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
2862 srwm = I945_FIFO_SIZE - sr_entries;
2863 if (srwm < 0)
2864 srwm = 1;
2865 srwm &= 0x3f;
2866 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05302867 } else {
2868 /* Turn off self refresh if both pipes are enabled */
2869 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
2870 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09002871 }
2872
2873 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2874 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002875
2876 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09002877 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
2878 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08002879 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
2880}
2881
2882static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
2883 int planeb_clock, int sr_hdisplay, int pixel_size)
2884{
2885 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002886 uint32_t fwater_lo;
2887 uint32_t fwater_hi;
2888 int total_size, cacheline_size, cwm, srwm = 1;
2889 int planea_wm, planeb_wm;
2890 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002891 unsigned long line_time_us;
2892 int sr_clock, sr_entries = 0;
2893
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002894 /* Create copies of the base settings for each pipe */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002895 if (IS_I965GM(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002896 planea_params = planeb_params = i945_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002897 else if (IS_I9XX(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002898 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002899 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002900 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002901
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002902 /* Grab a couple of global values before we overwrite them */
2903 total_size = planea_params.fifo_size;
2904 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002905
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002906 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07002907 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
2908 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002909
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002910 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
2911 pixel_size, latency_ns);
2912 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
2913 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08002914 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002915
2916 /*
2917 * Overlay gets an aggressive default since video jitter is bad.
2918 */
2919 cwm = 2;
2920
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002921 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07002922 if (HAS_FW_BLC(dev) && sr_hdisplay &&
2923 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002924 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002925 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002926
Shaohua Li7662c8b2009-06-26 11:23:55 +08002927 sr_clock = planea_clock ? planea_clock : planeb_clock;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002928 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
2929
2930 /* Use ns/us then divide to preserve precision */
2931 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
2932 pixel_size * sr_hdisplay) / 1000;
2933 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui28c97732009-10-09 11:39:41 +08002934 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002935 srwm = total_size - sr_entries;
2936 if (srwm < 0)
2937 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08002938
2939 if (IS_I945G(dev) || IS_I945GM(dev))
2940 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
2941 else if (IS_I915GM(dev)) {
2942 /* 915M has a smaller SRWM field */
2943 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2944 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
2945 }
David John33c5fd12010-01-27 15:19:08 +05302946 } else {
2947 /* Turn off self refresh if both pipes are enabled */
Li Pengee980b82010-01-27 19:01:11 +08002948 if (IS_I945G(dev) || IS_I945GM(dev)) {
2949 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
2950 & ~FW_BLC_SELF_EN);
2951 } else if (IS_I915GM(dev)) {
2952 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
2953 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08002954 }
2955
Zhao Yakui28c97732009-10-09 11:39:41 +08002956 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002957 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002958
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002959 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2960 fwater_hi = (cwm & 0x1f);
2961
2962 /* Set request length to 8 cachelines per fetch */
2963 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2964 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002965
2966 I915_WRITE(FW_BLC, fwater_lo);
2967 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002968}
2969
Jesse Barnese70236a2009-09-21 10:42:27 -07002970static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
2971 int unused2, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002972{
2973 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07002974 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002975 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002976
Jesse Barnese70236a2009-09-21 10:42:27 -07002977 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002978
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002979 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
2980 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07002981 fwater_lo |= (3<<8) | planea_wm;
2982
Zhao Yakui28c97732009-10-09 11:39:41 +08002983 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002984
2985 I915_WRITE(FW_BLC, fwater_lo);
2986}
2987
2988/**
2989 * intel_update_watermarks - update FIFO watermark values based on current modes
2990 *
2991 * Calculate watermark values for the various WM regs based on current mode
2992 * and plane configuration.
2993 *
2994 * There are several cases to deal with here:
2995 * - normal (i.e. non-self-refresh)
2996 * - self-refresh (SR) mode
2997 * - lines are large relative to FIFO size (buffer can hold up to 2)
2998 * - lines are small relative to FIFO size (buffer can hold more than 2
2999 * lines), so need to account for TLB latency
3000 *
3001 * The normal calculation is:
3002 * watermark = dotclock * bytes per pixel * latency
3003 * where latency is platform & configuration dependent (we assume pessimal
3004 * values here).
3005 *
3006 * The SR calculation is:
3007 * watermark = (trunc(latency/line time)+1) * surface width *
3008 * bytes per pixel
3009 * where
3010 * line time = htotal / dotclock
3011 * and latency is assumed to be high, as above.
3012 *
3013 * The final value programmed to the register should always be rounded up,
3014 * and include an extra 2 entries to account for clock crossings.
3015 *
3016 * We don't use the sprite, so we can ignore that. And on Crestline we have
3017 * to set the non-SR watermarks to 8.
3018 */
3019static void intel_update_watermarks(struct drm_device *dev)
3020{
Jesse Barnese70236a2009-09-21 10:42:27 -07003021 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003022 struct drm_crtc *crtc;
3023 struct intel_crtc *intel_crtc;
3024 int sr_hdisplay = 0;
3025 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3026 int enabled = 0, pixel_size = 0;
3027
Zhenyu Wangc03342f2009-09-29 11:01:23 +08003028 if (!dev_priv->display.update_wm)
3029 return;
3030
Shaohua Li7662c8b2009-06-26 11:23:55 +08003031 /* Get the clock config from both planes */
3032 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3033 intel_crtc = to_intel_crtc(crtc);
3034 if (crtc->enabled) {
3035 enabled++;
3036 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003037 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003038 intel_crtc->pipe, crtc->mode.clock);
3039 planea_clock = crtc->mode.clock;
3040 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08003041 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003042 intel_crtc->pipe, crtc->mode.clock);
3043 planeb_clock = crtc->mode.clock;
3044 }
3045 sr_hdisplay = crtc->mode.hdisplay;
3046 sr_clock = crtc->mode.clock;
3047 if (crtc->fb)
3048 pixel_size = crtc->fb->bits_per_pixel / 8;
3049 else
3050 pixel_size = 4; /* by default */
3051 }
3052 }
3053
3054 if (enabled <= 0)
3055 return;
3056
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003057 /* Single plane configs can enable self refresh */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003058 if (enabled == 1 && IS_PINEVIEW(dev))
3059 pineview_enable_cxsr(dev, sr_clock, pixel_size);
3060 else if (IS_PINEVIEW(dev))
3061 pineview_disable_cxsr(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003062
Jesse Barnese70236a2009-09-21 10:42:27 -07003063 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
3064 sr_hdisplay, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003065}
3066
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003067static int intel_crtc_mode_set(struct drm_crtc *crtc,
3068 struct drm_display_mode *mode,
3069 struct drm_display_mode *adjusted_mode,
3070 int x, int y,
3071 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003072{
3073 struct drm_device *dev = crtc->dev;
3074 struct drm_i915_private *dev_priv = dev->dev_private;
3075 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3076 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003077 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003078 int fp_reg = (pipe == 0) ? FPA0 : FPB0;
3079 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
3080 int dpll_md_reg = (intel_crtc->pipe == 0) ? DPLL_A_MD : DPLL_B_MD;
Jesse Barnes80824002009-09-10 15:28:06 -07003081 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Jesse Barnes79e53942008-11-07 14:24:08 -08003082 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
3083 int htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
3084 int hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
3085 int hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
3086 int vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
3087 int vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
3088 int vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
Jesse Barnes80824002009-09-10 15:28:06 -07003089 int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE;
3090 int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS;
Jesse Barnes79e53942008-11-07 14:24:08 -08003091 int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC;
Eric Anholtc751ce42010-03-25 11:48:48 -07003092 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003093 intel_clock_t clock, reduced_clock;
3094 u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf;
3095 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003096 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003097 bool is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003098 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003099 struct drm_encoder *encoder;
3100 struct intel_encoder *intel_encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003101 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003102 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003103 struct fdi_m_n m_n = {0};
3104 int data_m1_reg = (pipe == 0) ? PIPEA_DATA_M1 : PIPEB_DATA_M1;
3105 int data_n1_reg = (pipe == 0) ? PIPEA_DATA_N1 : PIPEB_DATA_N1;
3106 int link_m1_reg = (pipe == 0) ? PIPEA_LINK_M1 : PIPEB_LINK_M1;
3107 int link_n1_reg = (pipe == 0) ? PIPEA_LINK_N1 : PIPEB_LINK_N1;
3108 int pch_fp_reg = (pipe == 0) ? PCH_FPA0 : PCH_FPB0;
3109 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
3110 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003111 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
3112 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang541998a2009-06-05 15:38:44 +08003113 int lvds_reg = LVDS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003114 u32 temp;
3115 int sdvo_pixel_multiply;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003116 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08003117
3118 drm_vblank_pre_modeset(dev, pipe);
3119
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003120 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003121
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003122 if (!encoder || encoder->crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003123 continue;
3124
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003125 intel_encoder = enc_to_intel_encoder(encoder);
3126
Eric Anholt21d40d32010-03-25 11:11:14 -07003127 switch (intel_encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003128 case INTEL_OUTPUT_LVDS:
3129 is_lvds = true;
3130 break;
3131 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003132 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003133 is_sdvo = true;
Eric Anholt21d40d32010-03-25 11:11:14 -07003134 if (intel_encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003135 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003136 break;
3137 case INTEL_OUTPUT_DVO:
3138 is_dvo = true;
3139 break;
3140 case INTEL_OUTPUT_TVOUT:
3141 is_tv = true;
3142 break;
3143 case INTEL_OUTPUT_ANALOG:
3144 is_crt = true;
3145 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003146 case INTEL_OUTPUT_DISPLAYPORT:
3147 is_dp = true;
3148 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003149 case INTEL_OUTPUT_EDP:
3150 is_edp = true;
3151 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003152 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003153
Eric Anholtc751ce42010-03-25 11:48:48 -07003154 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003155 }
3156
Eric Anholtc751ce42010-03-25 11:48:48 -07003157 if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003158 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08003159 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3160 refclk / 1000);
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003161 } else if (IS_I9XX(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003162 refclk = 96000;
Eric Anholtbad720f2009-10-22 16:11:14 -07003163 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003164 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08003165 } else {
3166 refclk = 48000;
3167 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003168
Jesse Barnes79e53942008-11-07 14:24:08 -08003169
Ma Lingd4906092009-03-18 20:13:27 +08003170 /*
3171 * Returns a set of divisors for the desired target clock with the given
3172 * refclk, or FALSE. The returned values represent the clock equation:
3173 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3174 */
3175 limit = intel_limit(crtc);
3176 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003177 if (!ok) {
3178 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01003179 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003180 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003181 }
3182
Zhao Yakuiddc90032010-01-06 22:05:56 +08003183 if (is_lvds && dev_priv->lvds_downclock_avail) {
3184 has_reduced_clock = limit->find_pll(limit, crtc,
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003185 dev_priv->lvds_downclock,
Jesse Barnes652c3932009-08-17 13:31:43 -07003186 refclk,
3187 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003188 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
3189 /*
3190 * If the different P is found, it means that we can't
3191 * switch the display clock by using the FP0/FP1.
3192 * In such case we will disable the LVDS downclock
3193 * feature.
3194 */
3195 DRM_DEBUG_KMS("Different P is found for "
3196 "LVDS clock/downclock\n");
3197 has_reduced_clock = 0;
3198 }
Jesse Barnes652c3932009-08-17 13:31:43 -07003199 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003200 /* SDVO TV has fixed PLL values depend on its clock range,
3201 this mirrors vbios setting. */
3202 if (is_sdvo && is_tv) {
3203 if (adjusted_mode->clock >= 100000
3204 && adjusted_mode->clock < 140500) {
3205 clock.p1 = 2;
3206 clock.p2 = 10;
3207 clock.n = 3;
3208 clock.m1 = 16;
3209 clock.m2 = 8;
3210 } else if (adjusted_mode->clock >= 140500
3211 && adjusted_mode->clock <= 200000) {
3212 clock.p1 = 1;
3213 clock.p2 = 10;
3214 clock.n = 6;
3215 clock.m1 = 12;
3216 clock.m2 = 8;
3217 }
3218 }
3219
Zhenyu Wang2c072452009-06-05 15:38:42 +08003220 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07003221 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang58a27472009-09-25 08:01:28 +00003222 int lane, link_bw, bpp;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003223 /* eDP doesn't require FDI link, so just set DP M/N
3224 according to current link config */
3225 if (is_edp) {
3226 struct drm_connector *edp;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003227 target_clock = mode->clock;
Eric Anholtc751ce42010-03-25 11:48:48 -07003228 edp = intel_pipe_get_connector(crtc);
Eric Anholt21d40d32010-03-25 11:11:14 -07003229 intel_edp_link_config(to_intel_encoder(edp),
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003230 &lane, &link_bw);
3231 } else {
3232 /* DP over FDI requires target mode clock
3233 instead of link clock */
3234 if (is_dp)
3235 target_clock = mode->clock;
3236 else
3237 target_clock = adjusted_mode->clock;
3238 lane = 4;
3239 link_bw = 270000;
3240 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00003241
3242 /* determine panel color depth */
3243 temp = I915_READ(pipeconf_reg);
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003244 temp &= ~PIPE_BPC_MASK;
3245 if (is_lvds) {
3246 int lvds_reg = I915_READ(PCH_LVDS);
3247 /* the BPC will be 6 if it is 18-bit LVDS panel */
3248 if ((lvds_reg & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
3249 temp |= PIPE_8BPC;
3250 else
3251 temp |= PIPE_6BPC;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08003252 } else if (is_edp) {
3253 switch (dev_priv->edp_bpp/3) {
3254 case 8:
3255 temp |= PIPE_8BPC;
3256 break;
3257 case 10:
3258 temp |= PIPE_10BPC;
3259 break;
3260 case 6:
3261 temp |= PIPE_6BPC;
3262 break;
3263 case 12:
3264 temp |= PIPE_12BPC;
3265 break;
3266 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003267 } else
3268 temp |= PIPE_8BPC;
3269 I915_WRITE(pipeconf_reg, temp);
3270 I915_READ(pipeconf_reg);
Zhenyu Wang58a27472009-09-25 08:01:28 +00003271
3272 switch (temp & PIPE_BPC_MASK) {
3273 case PIPE_8BPC:
3274 bpp = 24;
3275 break;
3276 case PIPE_10BPC:
3277 bpp = 30;
3278 break;
3279 case PIPE_6BPC:
3280 bpp = 18;
3281 break;
3282 case PIPE_12BPC:
3283 bpp = 36;
3284 break;
3285 default:
3286 DRM_ERROR("unknown pipe bpc value\n");
3287 bpp = 24;
3288 }
3289
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003290 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003291 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003292
Zhenyu Wangc038e512009-10-19 15:43:48 +08003293 /* Ironlake: try to setup display ref clock before DPLL
3294 * enabling. This is only under driver's control after
3295 * PCH B stepping, previous chipset stepping should be
3296 * ignoring this setting.
3297 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003298 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003299 temp = I915_READ(PCH_DREF_CONTROL);
3300 /* Always enable nonspread source */
3301 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
3302 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
3303 I915_WRITE(PCH_DREF_CONTROL, temp);
3304 POSTING_READ(PCH_DREF_CONTROL);
3305
3306 temp &= ~DREF_SSC_SOURCE_MASK;
3307 temp |= DREF_SSC_SOURCE_ENABLE;
3308 I915_WRITE(PCH_DREF_CONTROL, temp);
3309 POSTING_READ(PCH_DREF_CONTROL);
3310
3311 udelay(200);
3312
3313 if (is_edp) {
3314 if (dev_priv->lvds_use_ssc) {
3315 temp |= DREF_SSC1_ENABLE;
3316 I915_WRITE(PCH_DREF_CONTROL, temp);
3317 POSTING_READ(PCH_DREF_CONTROL);
3318
3319 udelay(200);
3320
3321 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3322 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
3323 I915_WRITE(PCH_DREF_CONTROL, temp);
3324 POSTING_READ(PCH_DREF_CONTROL);
3325 } else {
3326 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
3327 I915_WRITE(PCH_DREF_CONTROL, temp);
3328 POSTING_READ(PCH_DREF_CONTROL);
3329 }
3330 }
3331 }
3332
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003333 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08003334 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003335 if (has_reduced_clock)
3336 fp2 = (1 << reduced_clock.n) << 16 |
3337 reduced_clock.m1 << 8 | reduced_clock.m2;
3338 } else {
Shaohua Li21778322009-02-23 15:19:16 +08003339 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003340 if (has_reduced_clock)
3341 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
3342 reduced_clock.m2;
3343 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003344
Eric Anholtbad720f2009-10-22 16:11:14 -07003345 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003346 dpll = DPLL_VGA_MODE_DIS;
3347
Jesse Barnes79e53942008-11-07 14:24:08 -08003348 if (IS_I9XX(dev)) {
3349 if (is_lvds)
3350 dpll |= DPLLB_MODE_LVDS;
3351 else
3352 dpll |= DPLLB_MODE_DAC_SERIAL;
3353 if (is_sdvo) {
3354 dpll |= DPLL_DVO_HIGH_SPEED;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003355 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
Sean Young942642a2009-08-06 17:35:50 +08003356 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003357 dpll |= (sdvo_pixel_multiply - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
Eric Anholtbad720f2009-10-22 16:11:14 -07003358 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003359 dpll |= (sdvo_pixel_multiply - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003360 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003361 if (is_dp)
3362 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003363
3364 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003365 if (IS_PINEVIEW(dev))
3366 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003367 else {
Shaohua Li21778322009-02-23 15:19:16 +08003368 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003369 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003370 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003371 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07003372 if (IS_G4X(dev) && has_reduced_clock)
3373 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003374 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003375 switch (clock.p2) {
3376 case 5:
3377 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3378 break;
3379 case 7:
3380 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3381 break;
3382 case 10:
3383 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3384 break;
3385 case 14:
3386 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3387 break;
3388 }
Eric Anholtbad720f2009-10-22 16:11:14 -07003389 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003390 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3391 } else {
3392 if (is_lvds) {
3393 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3394 } else {
3395 if (clock.p1 == 2)
3396 dpll |= PLL_P1_DIVIDE_BY_TWO;
3397 else
3398 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3399 if (clock.p2 == 4)
3400 dpll |= PLL_P2_DIVIDE_BY_4;
3401 }
3402 }
3403
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003404 if (is_sdvo && is_tv)
3405 dpll |= PLL_REF_INPUT_TVCLKINBC;
3406 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08003407 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003408 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08003409 dpll |= 3;
Eric Anholtc751ce42010-03-25 11:48:48 -07003410 else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003411 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08003412 else
3413 dpll |= PLL_REF_INPUT_DREFCLK;
3414
3415 /* setup pipeconf */
3416 pipeconf = I915_READ(pipeconf_reg);
3417
3418 /* Set up the display plane register */
3419 dspcntr = DISPPLANE_GAMMA_ENABLE;
3420
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003421 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08003422 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07003423 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003424 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07003425 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003426 else
3427 dspcntr |= DISPPLANE_SEL_PIPE_B;
3428 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003429
3430 if (pipe == 0 && !IS_I965G(dev)) {
3431 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3432 * core speed.
3433 *
3434 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3435 * pipe == 0 check?
3436 */
Jesse Barnese70236a2009-09-21 10:42:27 -07003437 if (mode->clock >
3438 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Jesse Barnes79e53942008-11-07 14:24:08 -08003439 pipeconf |= PIPEACONF_DOUBLE_WIDE;
3440 else
3441 pipeconf &= ~PIPEACONF_DOUBLE_WIDE;
3442 }
3443
3444 dspcntr |= DISPLAY_PLANE_ENABLE;
3445 pipeconf |= PIPEACONF_ENABLE;
3446 dpll |= DPLL_VCO_ENABLE;
3447
3448
3449 /* Disable the panel fitter if it was on our pipe */
Eric Anholtbad720f2009-10-22 16:11:14 -07003450 if (!HAS_PCH_SPLIT(dev) && intel_panel_fitter_pipe(dev) == pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08003451 I915_WRITE(PFIT_CONTROL, 0);
3452
Zhao Yakui28c97732009-10-09 11:39:41 +08003453 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08003454 drm_mode_debug_printmodeline(mode);
3455
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003456 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07003457 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003458 fp_reg = pch_fp_reg;
3459 dpll_reg = pch_dpll_reg;
3460 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003461
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003462 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003463 ironlake_disable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003464 } else if ((dpll & DPLL_VCO_ENABLE)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003465 I915_WRITE(fp_reg, fp);
3466 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
3467 I915_READ(dpll_reg);
3468 udelay(150);
3469 }
3470
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003471 /* enable transcoder DPLL */
3472 if (HAS_PCH_CPT(dev)) {
3473 temp = I915_READ(PCH_DPLL_SEL);
3474 if (trans_dpll_sel == 0)
3475 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
3476 else
3477 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
3478 I915_WRITE(PCH_DPLL_SEL, temp);
3479 I915_READ(PCH_DPLL_SEL);
3480 udelay(150);
3481 }
3482
Jesse Barnes79e53942008-11-07 14:24:08 -08003483 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3484 * This is an exception to the general rule that mode_set doesn't turn
3485 * things on.
3486 */
3487 if (is_lvds) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08003488 u32 lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08003489
Eric Anholtbad720f2009-10-22 16:11:14 -07003490 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08003491 lvds_reg = PCH_LVDS;
3492
3493 lvds = I915_READ(lvds_reg);
Adam Jackson0f3ee802010-03-31 11:41:51 -04003494 lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003495 if (pipe == 1) {
3496 if (HAS_PCH_CPT(dev))
3497 lvds |= PORT_TRANS_B_SEL_CPT;
3498 else
3499 lvds |= LVDS_PIPEB_SELECT;
3500 } else {
3501 if (HAS_PCH_CPT(dev))
3502 lvds &= ~PORT_TRANS_SEL_MASK;
3503 else
3504 lvds &= ~LVDS_PIPEB_SELECT;
3505 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08003506 /* set the corresponsding LVDS_BORDER bit */
3507 lvds |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08003508 /* Set the B0-B3 data pairs corresponding to whether we're going to
3509 * set the DPLLs for dual-channel mode or not.
3510 */
3511 if (clock.p2 == 7)
3512 lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3513 else
3514 lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3515
3516 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3517 * appropriately here, but we need to look more thoroughly into how
3518 * panels behave in the two modes.
3519 */
Zhao Yakui898822c2010-01-04 16:29:30 +08003520 /* set the dithering flag */
3521 if (IS_I965G(dev)) {
3522 if (dev_priv->lvds_dither) {
Eric Anholtc619eed2010-01-28 16:45:52 -08003523 if (HAS_PCH_SPLIT(dev))
Zhao Yakui898822c2010-01-04 16:29:30 +08003524 pipeconf |= PIPE_ENABLE_DITHER;
3525 else
3526 lvds |= LVDS_ENABLE_DITHER;
3527 } else {
Eric Anholtc619eed2010-01-28 16:45:52 -08003528 if (HAS_PCH_SPLIT(dev))
Zhao Yakui898822c2010-01-04 16:29:30 +08003529 pipeconf &= ~PIPE_ENABLE_DITHER;
3530 else
3531 lvds &= ~LVDS_ENABLE_DITHER;
3532 }
3533 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08003534 I915_WRITE(lvds_reg, lvds);
3535 I915_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003536 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003537 if (is_dp)
3538 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003539 else if (HAS_PCH_SPLIT(dev)) {
3540 /* For non-DP output, clear any trans DP clock recovery setting.*/
3541 if (pipe == 0) {
3542 I915_WRITE(TRANSA_DATA_M1, 0);
3543 I915_WRITE(TRANSA_DATA_N1, 0);
3544 I915_WRITE(TRANSA_DP_LINK_M1, 0);
3545 I915_WRITE(TRANSA_DP_LINK_N1, 0);
3546 } else {
3547 I915_WRITE(TRANSB_DATA_M1, 0);
3548 I915_WRITE(TRANSB_DATA_N1, 0);
3549 I915_WRITE(TRANSB_DP_LINK_M1, 0);
3550 I915_WRITE(TRANSB_DP_LINK_N1, 0);
3551 }
3552 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003553
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003554 if (!is_edp) {
3555 I915_WRITE(fp_reg, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003556 I915_WRITE(dpll_reg, dpll);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003557 I915_READ(dpll_reg);
3558 /* Wait for the clocks to stabilize. */
3559 udelay(150);
3560
Eric Anholtbad720f2009-10-22 16:11:14 -07003561 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) {
Zhao Yakuibb66c512009-09-10 15:45:49 +08003562 if (is_sdvo) {
3563 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
3564 I915_WRITE(dpll_md_reg, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) |
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003565 ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT));
Zhao Yakuibb66c512009-09-10 15:45:49 +08003566 } else
3567 I915_WRITE(dpll_md_reg, 0);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003568 } else {
3569 /* write it again -- the BIOS does, after all */
3570 I915_WRITE(dpll_reg, dpll);
3571 }
3572 I915_READ(dpll_reg);
3573 /* Wait for the clocks to stabilize. */
3574 udelay(150);
Jesse Barnes79e53942008-11-07 14:24:08 -08003575 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003576
Jesse Barnes652c3932009-08-17 13:31:43 -07003577 if (is_lvds && has_reduced_clock && i915_powersave) {
3578 I915_WRITE(fp_reg + 4, fp2);
3579 intel_crtc->lowfreq_avail = true;
3580 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003581 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003582 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
3583 }
3584 } else {
3585 I915_WRITE(fp_reg + 4, fp);
3586 intel_crtc->lowfreq_avail = false;
3587 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003588 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003589 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3590 }
3591 }
3592
Jesse Barnes79e53942008-11-07 14:24:08 -08003593 I915_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) |
3594 ((adjusted_mode->crtc_htotal - 1) << 16));
3595 I915_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) |
3596 ((adjusted_mode->crtc_hblank_end - 1) << 16));
3597 I915_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) |
3598 ((adjusted_mode->crtc_hsync_end - 1) << 16));
3599 I915_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) |
3600 ((adjusted_mode->crtc_vtotal - 1) << 16));
3601 I915_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) |
3602 ((adjusted_mode->crtc_vblank_end - 1) << 16));
3603 I915_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) |
3604 ((adjusted_mode->crtc_vsync_end - 1) << 16));
3605 /* pipesrc and dspsize control the size that is scaled from, which should
3606 * always be the user's requested size.
3607 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003608 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003609 I915_WRITE(dspsize_reg, ((mode->vdisplay - 1) << 16) |
3610 (mode->hdisplay - 1));
3611 I915_WRITE(dsppos_reg, 0);
3612 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003613 I915_WRITE(pipesrc_reg, ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08003614
Eric Anholtbad720f2009-10-22 16:11:14 -07003615 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003616 I915_WRITE(data_m1_reg, TU_SIZE(m_n.tu) | m_n.gmch_m);
3617 I915_WRITE(data_n1_reg, TU_SIZE(m_n.tu) | m_n.gmch_n);
3618 I915_WRITE(link_m1_reg, m_n.link_m);
3619 I915_WRITE(link_n1_reg, m_n.link_n);
3620
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003621 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003622 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003623 } else {
3624 /* enable FDI RX PLL too */
3625 temp = I915_READ(fdi_rx_reg);
3626 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003627 I915_READ(fdi_rx_reg);
3628 udelay(200);
3629
3630 /* enable FDI TX PLL too */
3631 temp = I915_READ(fdi_tx_reg);
3632 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
3633 I915_READ(fdi_tx_reg);
3634
3635 /* enable FDI RX PCDCLK */
3636 temp = I915_READ(fdi_rx_reg);
3637 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
3638 I915_READ(fdi_rx_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003639 udelay(200);
3640 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003641 }
3642
Jesse Barnes79e53942008-11-07 14:24:08 -08003643 I915_WRITE(pipeconf_reg, pipeconf);
3644 I915_READ(pipeconf_reg);
3645
3646 intel_wait_for_vblank(dev);
3647
Eric Anholtc2416fc2009-11-05 15:30:35 -08003648 if (IS_IRONLAKE(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08003649 /* enable address swizzle for tiling buffer */
3650 temp = I915_READ(DISP_ARB_CTL);
3651 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
3652 }
3653
Jesse Barnes79e53942008-11-07 14:24:08 -08003654 I915_WRITE(dspcntr_reg, dspcntr);
3655
3656 /* Flush the plane changes */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003657 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003658
Jesse Barnes74dff282009-09-14 15:39:40 -07003659 if ((IS_I965G(dev) || plane == 0))
3660 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnese70236a2009-09-21 10:42:27 -07003661
Shaohua Li7662c8b2009-06-26 11:23:55 +08003662 intel_update_watermarks(dev);
3663
Jesse Barnes79e53942008-11-07 14:24:08 -08003664 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003665
Chris Wilson1f803ee2009-06-06 09:45:59 +01003666 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003667}
3668
3669/** Loads the palette/gamma unit for the CRTC with the prepared values */
3670void intel_crtc_load_lut(struct drm_crtc *crtc)
3671{
3672 struct drm_device *dev = crtc->dev;
3673 struct drm_i915_private *dev_priv = dev->dev_private;
3674 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3675 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
3676 int i;
3677
3678 /* The clocks have to be on to load the palette. */
3679 if (!crtc->enabled)
3680 return;
3681
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003682 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07003683 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003684 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
3685 LGC_PALETTE_B;
3686
Jesse Barnes79e53942008-11-07 14:24:08 -08003687 for (i = 0; i < 256; i++) {
3688 I915_WRITE(palreg + 4 * i,
3689 (intel_crtc->lut_r[i] << 16) |
3690 (intel_crtc->lut_g[i] << 8) |
3691 intel_crtc->lut_b[i]);
3692 }
3693}
3694
3695static int intel_crtc_cursor_set(struct drm_crtc *crtc,
3696 struct drm_file *file_priv,
3697 uint32_t handle,
3698 uint32_t width, uint32_t height)
3699{
3700 struct drm_device *dev = crtc->dev;
3701 struct drm_i915_private *dev_priv = dev->dev_private;
3702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3703 struct drm_gem_object *bo;
3704 struct drm_i915_gem_object *obj_priv;
3705 int pipe = intel_crtc->pipe;
3706 uint32_t control = (pipe == 0) ? CURACNTR : CURBCNTR;
3707 uint32_t base = (pipe == 0) ? CURABASE : CURBBASE;
Jesse Barnes14b60392009-05-20 16:47:08 -04003708 uint32_t temp = I915_READ(control);
Jesse Barnes79e53942008-11-07 14:24:08 -08003709 size_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003710 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003711
Zhao Yakui28c97732009-10-09 11:39:41 +08003712 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08003713
3714 /* if we want to turn off the cursor ignore width and height */
3715 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003716 DRM_DEBUG_KMS("cursor off\n");
Jesse Barnes14b60392009-05-20 16:47:08 -04003717 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
3718 temp &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
3719 temp |= CURSOR_MODE_DISABLE;
3720 } else {
3721 temp &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
3722 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003723 addr = 0;
3724 bo = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10003725 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003726 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08003727 }
3728
3729 /* Currently we only support 64x64 cursors */
3730 if (width != 64 || height != 64) {
3731 DRM_ERROR("we currently only support 64x64 cursors\n");
3732 return -EINVAL;
3733 }
3734
3735 bo = drm_gem_object_lookup(dev, file_priv, handle);
3736 if (!bo)
3737 return -ENOENT;
3738
Daniel Vetter23010e42010-03-08 13:35:02 +01003739 obj_priv = to_intel_bo(bo);
Jesse Barnes79e53942008-11-07 14:24:08 -08003740
3741 if (bo->size < width * height * 4) {
3742 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10003743 ret = -ENOMEM;
3744 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08003745 }
3746
Dave Airlie71acb5e2008-12-30 20:31:46 +10003747 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003748 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05003749 if (!dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10003750 ret = i915_gem_object_pin(bo, PAGE_SIZE);
3751 if (ret) {
3752 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003753 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003754 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003755 addr = obj_priv->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003756 } else {
3757 ret = i915_gem_attach_phys_object(dev, bo, (pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1);
3758 if (ret) {
3759 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003760 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003761 }
3762 addr = obj_priv->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003763 }
3764
Jesse Barnes14b60392009-05-20 16:47:08 -04003765 if (!IS_I9XX(dev))
3766 I915_WRITE(CURSIZE, (height << 12) | width);
3767
3768 /* Hooray for CUR*CNTR differences */
3769 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
3770 temp &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
3771 temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
3772 temp |= (pipe << 28); /* Connect to correct pipe */
3773 } else {
3774 temp &= ~(CURSOR_FORMAT_MASK);
3775 temp |= CURSOR_ENABLE;
3776 temp |= CURSOR_FORMAT_ARGB | CURSOR_GAMMA_ENABLE;
3777 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003778
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003779 finish:
Jesse Barnes79e53942008-11-07 14:24:08 -08003780 I915_WRITE(control, temp);
3781 I915_WRITE(base, addr);
3782
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003783 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05003784 if (dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10003785 if (intel_crtc->cursor_bo != bo)
3786 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
3787 } else
3788 i915_gem_object_unpin(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003789 drm_gem_object_unreference(intel_crtc->cursor_bo);
3790 }
Jesse Barnes80824002009-09-10 15:28:06 -07003791
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003792 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003793
3794 intel_crtc->cursor_addr = addr;
3795 intel_crtc->cursor_bo = bo;
3796
Jesse Barnes79e53942008-11-07 14:24:08 -08003797 return 0;
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003798fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10003799 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00003800fail:
3801 drm_gem_object_unreference_unlocked(bo);
Dave Airlie34b8686e2009-01-15 14:03:07 +10003802 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003803}
3804
3805static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
3806{
3807 struct drm_device *dev = crtc->dev;
3808 struct drm_i915_private *dev_priv = dev->dev_private;
3809 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07003810 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08003811 int pipe = intel_crtc->pipe;
3812 uint32_t temp = 0;
3813 uint32_t adder;
3814
Jesse Barnes652c3932009-08-17 13:31:43 -07003815 if (crtc->fb) {
3816 intel_fb = to_intel_framebuffer(crtc->fb);
3817 intel_mark_busy(dev, intel_fb->obj);
3818 }
3819
Jesse Barnes79e53942008-11-07 14:24:08 -08003820 if (x < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07003821 temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003822 x = -x;
3823 }
3824 if (y < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07003825 temp |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003826 y = -y;
3827 }
3828
Keith Packard2245fda2009-05-30 20:42:29 -07003829 temp |= x << CURSOR_X_SHIFT;
3830 temp |= y << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003831
3832 adder = intel_crtc->cursor_addr;
3833 I915_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp);
3834 I915_WRITE((pipe == 0) ? CURABASE : CURBBASE, adder);
3835
3836 return 0;
3837}
3838
3839/** Sets the color ramps on behalf of RandR */
3840void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
3841 u16 blue, int regno)
3842{
3843 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3844
3845 intel_crtc->lut_r[regno] = red >> 8;
3846 intel_crtc->lut_g[regno] = green >> 8;
3847 intel_crtc->lut_b[regno] = blue >> 8;
3848}
3849
Dave Airlieb8c00ac2009-10-06 13:54:01 +10003850void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
3851 u16 *blue, int regno)
3852{
3853 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3854
3855 *red = intel_crtc->lut_r[regno] << 8;
3856 *green = intel_crtc->lut_g[regno] << 8;
3857 *blue = intel_crtc->lut_b[regno] << 8;
3858}
3859
Jesse Barnes79e53942008-11-07 14:24:08 -08003860static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
3861 u16 *blue, uint32_t size)
3862{
3863 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3864 int i;
3865
3866 if (size != 256)
3867 return;
3868
3869 for (i = 0; i < 256; i++) {
3870 intel_crtc->lut_r[i] = red[i] >> 8;
3871 intel_crtc->lut_g[i] = green[i] >> 8;
3872 intel_crtc->lut_b[i] = blue[i] >> 8;
3873 }
3874
3875 intel_crtc_load_lut(crtc);
3876}
3877
3878/**
3879 * Get a pipe with a simple mode set on it for doing load-based monitor
3880 * detection.
3881 *
3882 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07003883 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08003884 *
Eric Anholtc751ce42010-03-25 11:48:48 -07003885 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08003886 * configured for it. In the future, it could choose to temporarily disable
3887 * some outputs to free up a pipe for its use.
3888 *
3889 * \return crtc, or NULL if no pipes are available.
3890 */
3891
3892/* VESA 640x480x72Hz mode to set on the pipe */
3893static struct drm_display_mode load_detect_mode = {
3894 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
3895 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
3896};
3897
Eric Anholt21d40d32010-03-25 11:11:14 -07003898struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08003899 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08003900 struct drm_display_mode *mode,
3901 int *dpms_mode)
3902{
3903 struct intel_crtc *intel_crtc;
3904 struct drm_crtc *possible_crtc;
3905 struct drm_crtc *supported_crtc =NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07003906 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08003907 struct drm_crtc *crtc = NULL;
3908 struct drm_device *dev = encoder->dev;
3909 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3910 struct drm_crtc_helper_funcs *crtc_funcs;
3911 int i = -1;
3912
3913 /*
3914 * Algorithm gets a little messy:
3915 * - if the connector already has an assigned crtc, use it (but make
3916 * sure it's on first)
3917 * - try to find the first unused crtc that can drive this connector,
3918 * and use that if we find one
3919 * - if there are no unused crtcs available, try to use the first
3920 * one we found that supports the connector
3921 */
3922
3923 /* See if we already have a CRTC for this connector */
3924 if (encoder->crtc) {
3925 crtc = encoder->crtc;
3926 /* Make sure the crtc and connector are running */
3927 intel_crtc = to_intel_crtc(crtc);
3928 *dpms_mode = intel_crtc->dpms_mode;
3929 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
3930 crtc_funcs = crtc->helper_private;
3931 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
3932 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
3933 }
3934 return crtc;
3935 }
3936
3937 /* Find an unused one (if possible) */
3938 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
3939 i++;
3940 if (!(encoder->possible_crtcs & (1 << i)))
3941 continue;
3942 if (!possible_crtc->enabled) {
3943 crtc = possible_crtc;
3944 break;
3945 }
3946 if (!supported_crtc)
3947 supported_crtc = possible_crtc;
3948 }
3949
3950 /*
3951 * If we didn't find an unused CRTC, don't use any.
3952 */
3953 if (!crtc) {
3954 return NULL;
3955 }
3956
3957 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08003958 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07003959 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003960
3961 intel_crtc = to_intel_crtc(crtc);
3962 *dpms_mode = intel_crtc->dpms_mode;
3963
3964 if (!crtc->enabled) {
3965 if (!mode)
3966 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05003967 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08003968 } else {
3969 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
3970 crtc_funcs = crtc->helper_private;
3971 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
3972 }
3973
3974 /* Add this connector to the crtc */
3975 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
3976 encoder_funcs->commit(encoder);
3977 }
3978 /* let the connector get through one full cycle before testing */
3979 intel_wait_for_vblank(dev);
3980
3981 return crtc;
3982}
3983
Zhenyu Wangc1c43972010-03-30 14:39:30 +08003984void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
3985 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08003986{
Eric Anholt21d40d32010-03-25 11:11:14 -07003987 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08003988 struct drm_device *dev = encoder->dev;
3989 struct drm_crtc *crtc = encoder->crtc;
3990 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3991 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
3992
Eric Anholt21d40d32010-03-25 11:11:14 -07003993 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003994 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08003995 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07003996 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003997 crtc->enabled = drm_helper_crtc_in_use(crtc);
3998 drm_helper_disable_unused_functions(dev);
3999 }
4000
Eric Anholtc751ce42010-03-25 11:48:48 -07004001 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08004002 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4003 if (encoder->crtc == crtc)
4004 encoder_funcs->dpms(encoder, dpms_mode);
4005 crtc_funcs->dpms(crtc, dpms_mode);
4006 }
4007}
4008
4009/* Returns the clock of the currently programmed mode of the given pipe. */
4010static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4011{
4012 struct drm_i915_private *dev_priv = dev->dev_private;
4013 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4014 int pipe = intel_crtc->pipe;
4015 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4016 u32 fp;
4017 intel_clock_t clock;
4018
4019 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4020 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4021 else
4022 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4023
4024 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004025 if (IS_PINEVIEW(dev)) {
4026 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
4027 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08004028 } else {
4029 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
4030 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
4031 }
4032
Jesse Barnes79e53942008-11-07 14:24:08 -08004033 if (IS_I9XX(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004034 if (IS_PINEVIEW(dev))
4035 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
4036 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08004037 else
4038 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08004039 DPLL_FPA01_P1_POST_DIV_SHIFT);
4040
4041 switch (dpll & DPLL_MODE_MASK) {
4042 case DPLLB_MODE_DAC_SERIAL:
4043 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
4044 5 : 10;
4045 break;
4046 case DPLLB_MODE_LVDS:
4047 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
4048 7 : 14;
4049 break;
4050 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08004051 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08004052 "mode\n", (int)(dpll & DPLL_MODE_MASK));
4053 return 0;
4054 }
4055
4056 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08004057 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004058 } else {
4059 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
4060
4061 if (is_lvds) {
4062 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
4063 DPLL_FPA01_P1_POST_DIV_SHIFT);
4064 clock.p2 = 14;
4065
4066 if ((dpll & PLL_REF_INPUT_MASK) ==
4067 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
4068 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08004069 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004070 } else
Shaohua Li21778322009-02-23 15:19:16 +08004071 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004072 } else {
4073 if (dpll & PLL_P1_DIVIDE_BY_TWO)
4074 clock.p1 = 2;
4075 else {
4076 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
4077 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
4078 }
4079 if (dpll & PLL_P2_DIVIDE_BY_4)
4080 clock.p2 = 4;
4081 else
4082 clock.p2 = 2;
4083
Shaohua Li21778322009-02-23 15:19:16 +08004084 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004085 }
4086 }
4087
4088 /* XXX: It would be nice to validate the clocks, but we can't reuse
4089 * i830PllIsValid() because it relies on the xf86_config connector
4090 * configuration being accurate, which it isn't necessarily.
4091 */
4092
4093 return clock.dot;
4094}
4095
4096/** Returns the currently programmed mode of the given pipe. */
4097struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
4098 struct drm_crtc *crtc)
4099{
4100 struct drm_i915_private *dev_priv = dev->dev_private;
4101 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4102 int pipe = intel_crtc->pipe;
4103 struct drm_display_mode *mode;
4104 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
4105 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
4106 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
4107 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
4108
4109 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
4110 if (!mode)
4111 return NULL;
4112
4113 mode->clock = intel_crtc_clock_get(dev, crtc);
4114 mode->hdisplay = (htot & 0xffff) + 1;
4115 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
4116 mode->hsync_start = (hsync & 0xffff) + 1;
4117 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
4118 mode->vdisplay = (vtot & 0xffff) + 1;
4119 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
4120 mode->vsync_start = (vsync & 0xffff) + 1;
4121 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
4122
4123 drm_mode_set_name(mode);
4124 drm_mode_set_crtcinfo(mode, 0);
4125
4126 return mode;
4127}
4128
Jesse Barnes652c3932009-08-17 13:31:43 -07004129#define GPU_IDLE_TIMEOUT 500 /* ms */
4130
4131/* When this timer fires, we've been idle for awhile */
4132static void intel_gpu_idle_timer(unsigned long arg)
4133{
4134 struct drm_device *dev = (struct drm_device *)arg;
4135 drm_i915_private_t *dev_priv = dev->dev_private;
4136
Zhao Yakui44d98a62009-10-09 11:39:40 +08004137 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004138
4139 dev_priv->busy = false;
4140
Eric Anholt01dfba92009-09-06 15:18:53 -07004141 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004142}
4143
Jesse Barnes652c3932009-08-17 13:31:43 -07004144#define CRTC_IDLE_TIMEOUT 1000 /* ms */
4145
4146static void intel_crtc_idle_timer(unsigned long arg)
4147{
4148 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
4149 struct drm_crtc *crtc = &intel_crtc->base;
4150 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
4151
Zhao Yakui44d98a62009-10-09 11:39:40 +08004152 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004153
4154 intel_crtc->busy = false;
4155
Eric Anholt01dfba92009-09-06 15:18:53 -07004156 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004157}
4158
4159static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule)
4160{
4161 struct drm_device *dev = crtc->dev;
4162 drm_i915_private_t *dev_priv = dev->dev_private;
4163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4164 int pipe = intel_crtc->pipe;
4165 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4166 int dpll = I915_READ(dpll_reg);
4167
Eric Anholtbad720f2009-10-22 16:11:14 -07004168 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004169 return;
4170
4171 if (!dev_priv->lvds_downclock_avail)
4172 return;
4173
4174 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004175 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004176
4177 /* Unlock panel regs */
4178 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16));
4179
4180 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
4181 I915_WRITE(dpll_reg, dpll);
4182 dpll = I915_READ(dpll_reg);
4183 intel_wait_for_vblank(dev);
4184 dpll = I915_READ(dpll_reg);
4185 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08004186 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004187
4188 /* ...and lock them again */
4189 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4190 }
4191
4192 /* Schedule downclock */
4193 if (schedule)
4194 mod_timer(&intel_crtc->idle_timer, jiffies +
4195 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4196}
4197
4198static void intel_decrease_pllclock(struct drm_crtc *crtc)
4199{
4200 struct drm_device *dev = crtc->dev;
4201 drm_i915_private_t *dev_priv = dev->dev_private;
4202 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4203 int pipe = intel_crtc->pipe;
4204 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4205 int dpll = I915_READ(dpll_reg);
4206
Eric Anholtbad720f2009-10-22 16:11:14 -07004207 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004208 return;
4209
4210 if (!dev_priv->lvds_downclock_avail)
4211 return;
4212
4213 /*
4214 * Since this is called by a timer, we should never get here in
4215 * the manual case.
4216 */
4217 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004218 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004219
4220 /* Unlock panel regs */
4221 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16));
4222
4223 dpll |= DISPLAY_RATE_SELECT_FPA1;
4224 I915_WRITE(dpll_reg, dpll);
4225 dpll = I915_READ(dpll_reg);
4226 intel_wait_for_vblank(dev);
4227 dpll = I915_READ(dpll_reg);
4228 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08004229 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004230
4231 /* ...and lock them again */
4232 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4233 }
4234
4235}
4236
4237/**
4238 * intel_idle_update - adjust clocks for idleness
4239 * @work: work struct
4240 *
4241 * Either the GPU or display (or both) went idle. Check the busy status
4242 * here and adjust the CRTC and GPU clocks as necessary.
4243 */
4244static void intel_idle_update(struct work_struct *work)
4245{
4246 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
4247 idle_work);
4248 struct drm_device *dev = dev_priv->dev;
4249 struct drm_crtc *crtc;
4250 struct intel_crtc *intel_crtc;
4251
4252 if (!i915_powersave)
4253 return;
4254
4255 mutex_lock(&dev->struct_mutex);
4256
Li Pengee980b82010-01-27 19:01:11 +08004257 if (IS_I945G(dev) || IS_I945GM(dev)) {
4258 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
4259 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
4260 }
4261
Jesse Barnes652c3932009-08-17 13:31:43 -07004262 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4263 /* Skip inactive CRTCs */
4264 if (!crtc->fb)
4265 continue;
4266
4267 intel_crtc = to_intel_crtc(crtc);
4268 if (!intel_crtc->busy)
4269 intel_decrease_pllclock(crtc);
4270 }
4271
4272 mutex_unlock(&dev->struct_mutex);
4273}
4274
4275/**
4276 * intel_mark_busy - mark the GPU and possibly the display busy
4277 * @dev: drm device
4278 * @obj: object we're operating on
4279 *
4280 * Callers can use this function to indicate that the GPU is busy processing
4281 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
4282 * buffer), we'll also mark the display as busy, so we know to increase its
4283 * clock frequency.
4284 */
4285void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj)
4286{
4287 drm_i915_private_t *dev_priv = dev->dev_private;
4288 struct drm_crtc *crtc = NULL;
4289 struct intel_framebuffer *intel_fb;
4290 struct intel_crtc *intel_crtc;
4291
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08004292 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4293 return;
4294
Li Peng060e6452010-02-10 01:54:24 +08004295 if (!dev_priv->busy) {
4296 if (IS_I945G(dev) || IS_I945GM(dev)) {
4297 u32 fw_blc_self;
Li Pengee980b82010-01-27 19:01:11 +08004298
Li Peng060e6452010-02-10 01:54:24 +08004299 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4300 fw_blc_self = I915_READ(FW_BLC_SELF);
4301 fw_blc_self &= ~FW_BLC_SELF_EN;
4302 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4303 }
Chris Wilson28cf7982009-11-30 01:08:56 +00004304 dev_priv->busy = true;
Li Peng060e6452010-02-10 01:54:24 +08004305 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00004306 mod_timer(&dev_priv->idle_timer, jiffies +
4307 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07004308
4309 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4310 if (!crtc->fb)
4311 continue;
4312
4313 intel_crtc = to_intel_crtc(crtc);
4314 intel_fb = to_intel_framebuffer(crtc->fb);
4315 if (intel_fb->obj == obj) {
4316 if (!intel_crtc->busy) {
Li Peng060e6452010-02-10 01:54:24 +08004317 if (IS_I945G(dev) || IS_I945GM(dev)) {
4318 u32 fw_blc_self;
4319
4320 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4321 fw_blc_self = I915_READ(FW_BLC_SELF);
4322 fw_blc_self &= ~FW_BLC_SELF_EN;
4323 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4324 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004325 /* Non-busy -> busy, upclock */
4326 intel_increase_pllclock(crtc, true);
4327 intel_crtc->busy = true;
4328 } else {
4329 /* Busy -> busy, put off timer */
4330 mod_timer(&intel_crtc->idle_timer, jiffies +
4331 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4332 }
4333 }
4334 }
4335}
4336
Jesse Barnes79e53942008-11-07 14:24:08 -08004337static void intel_crtc_destroy(struct drm_crtc *crtc)
4338{
4339 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4340
4341 drm_crtc_cleanup(crtc);
4342 kfree(intel_crtc);
4343}
4344
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004345struct intel_unpin_work {
4346 struct work_struct work;
4347 struct drm_device *dev;
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004348 struct drm_gem_object *old_fb_obj;
4349 struct drm_gem_object *pending_flip_obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004350 struct drm_pending_vblank_event *event;
4351 int pending;
4352};
4353
4354static void intel_unpin_work_fn(struct work_struct *__work)
4355{
4356 struct intel_unpin_work *work =
4357 container_of(__work, struct intel_unpin_work, work);
4358
4359 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004360 i915_gem_object_unpin(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004361 drm_gem_object_unreference(work->pending_flip_obj);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004362 drm_gem_object_unreference(work->old_fb_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004363 mutex_unlock(&work->dev->struct_mutex);
4364 kfree(work);
4365}
4366
4367void intel_finish_page_flip(struct drm_device *dev, int pipe)
4368{
4369 drm_i915_private_t *dev_priv = dev->dev_private;
4370 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4371 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4372 struct intel_unpin_work *work;
4373 struct drm_i915_gem_object *obj_priv;
4374 struct drm_pending_vblank_event *e;
4375 struct timeval now;
4376 unsigned long flags;
4377
4378 /* Ignore early vblank irqs */
4379 if (intel_crtc == NULL)
4380 return;
4381
4382 spin_lock_irqsave(&dev->event_lock, flags);
4383 work = intel_crtc->unpin_work;
4384 if (work == NULL || !work->pending) {
Jesse Barnesde3f4402010-01-14 13:18:02 -08004385 if (work && !work->pending) {
Daniel Vetter23010e42010-03-08 13:35:02 +01004386 obj_priv = to_intel_bo(work->pending_flip_obj);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004387 DRM_DEBUG_DRIVER("flip finish: %p (%d) not pending?\n",
4388 obj_priv,
4389 atomic_read(&obj_priv->pending_flip));
4390 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004391 spin_unlock_irqrestore(&dev->event_lock, flags);
4392 return;
4393 }
4394
4395 intel_crtc->unpin_work = NULL;
4396 drm_vblank_put(dev, intel_crtc->pipe);
4397
4398 if (work->event) {
4399 e = work->event;
4400 do_gettimeofday(&now);
4401 e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe);
4402 e->event.tv_sec = now.tv_sec;
4403 e->event.tv_usec = now.tv_usec;
4404 list_add_tail(&e->base.link,
4405 &e->base.file_priv->event_list);
4406 wake_up_interruptible(&e->base.file_priv->event_wait);
4407 }
4408
4409 spin_unlock_irqrestore(&dev->event_lock, flags);
4410
Daniel Vetter23010e42010-03-08 13:35:02 +01004411 obj_priv = to_intel_bo(work->pending_flip_obj);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004412
4413 /* Initial scanout buffer will have a 0 pending flip count */
4414 if ((atomic_read(&obj_priv->pending_flip) == 0) ||
4415 atomic_dec_and_test(&obj_priv->pending_flip))
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004416 DRM_WAKEUP(&dev_priv->pending_flip_queue);
4417 schedule_work(&work->work);
4418}
4419
4420void intel_prepare_page_flip(struct drm_device *dev, int plane)
4421{
4422 drm_i915_private_t *dev_priv = dev->dev_private;
4423 struct intel_crtc *intel_crtc =
4424 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
4425 unsigned long flags;
4426
4427 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004428 if (intel_crtc->unpin_work) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004429 intel_crtc->unpin_work->pending = 1;
Jesse Barnesde3f4402010-01-14 13:18:02 -08004430 } else {
4431 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
4432 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004433 spin_unlock_irqrestore(&dev->event_lock, flags);
4434}
4435
4436static int intel_crtc_page_flip(struct drm_crtc *crtc,
4437 struct drm_framebuffer *fb,
4438 struct drm_pending_vblank_event *event)
4439{
4440 struct drm_device *dev = crtc->dev;
4441 struct drm_i915_private *dev_priv = dev->dev_private;
4442 struct intel_framebuffer *intel_fb;
4443 struct drm_i915_gem_object *obj_priv;
4444 struct drm_gem_object *obj;
4445 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4446 struct intel_unpin_work *work;
4447 unsigned long flags;
Zhenyu Wangaacef092010-02-09 09:46:20 +08004448 int pipesrc_reg = (intel_crtc->pipe == 0) ? PIPEASRC : PIPEBSRC;
4449 int ret, pipesrc;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004450 RING_LOCALS;
4451
4452 work = kzalloc(sizeof *work, GFP_KERNEL);
4453 if (work == NULL)
4454 return -ENOMEM;
4455
4456 mutex_lock(&dev->struct_mutex);
4457
4458 work->event = event;
4459 work->dev = crtc->dev;
4460 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004461 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004462 INIT_WORK(&work->work, intel_unpin_work_fn);
4463
4464 /* We borrow the event spin lock for protecting unpin_work */
4465 spin_lock_irqsave(&dev->event_lock, flags);
4466 if (intel_crtc->unpin_work) {
Jesse Barnesde3f4402010-01-14 13:18:02 -08004467 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004468 spin_unlock_irqrestore(&dev->event_lock, flags);
4469 kfree(work);
4470 mutex_unlock(&dev->struct_mutex);
4471 return -EBUSY;
4472 }
4473 intel_crtc->unpin_work = work;
4474 spin_unlock_irqrestore(&dev->event_lock, flags);
4475
4476 intel_fb = to_intel_framebuffer(fb);
4477 obj = intel_fb->obj;
4478
4479 ret = intel_pin_and_fence_fb_obj(dev, obj);
4480 if (ret != 0) {
Jesse Barnesde3f4402010-01-14 13:18:02 -08004481 DRM_DEBUG_DRIVER("flip queue: %p pin & fence failed\n",
Daniel Vetter23010e42010-03-08 13:35:02 +01004482 to_intel_bo(obj));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004483 kfree(work);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004484 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004485 mutex_unlock(&dev->struct_mutex);
4486 return ret;
4487 }
4488
Jesse Barnes75dfca82010-02-10 15:09:44 -08004489 /* Reference the objects for the scheduled work. */
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004490 drm_gem_object_reference(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004491 drm_gem_object_reference(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004492
4493 crtc->fb = fb;
4494 i915_gem_object_flush_write_domain(obj);
4495 drm_vblank_get(dev, intel_crtc->pipe);
Daniel Vetter23010e42010-03-08 13:35:02 +01004496 obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004497 atomic_inc(&obj_priv->pending_flip);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004498 work->pending_flip_obj = obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004499
4500 BEGIN_LP_RING(4);
4501 OUT_RING(MI_DISPLAY_FLIP |
4502 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4503 OUT_RING(fb->pitch);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004504 if (IS_I965G(dev)) {
4505 OUT_RING(obj_priv->gtt_offset | obj_priv->tiling_mode);
Zhenyu Wangaacef092010-02-09 09:46:20 +08004506 pipesrc = I915_READ(pipesrc_reg);
4507 OUT_RING(pipesrc & 0x0fff0fff);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004508 } else {
4509 OUT_RING(obj_priv->gtt_offset);
4510 OUT_RING(MI_NOOP);
4511 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004512 ADVANCE_LP_RING();
4513
4514 mutex_unlock(&dev->struct_mutex);
4515
4516 return 0;
4517}
4518
Jesse Barnes79e53942008-11-07 14:24:08 -08004519static const struct drm_crtc_helper_funcs intel_helper_funcs = {
4520 .dpms = intel_crtc_dpms,
4521 .mode_fixup = intel_crtc_mode_fixup,
4522 .mode_set = intel_crtc_mode_set,
4523 .mode_set_base = intel_pipe_set_base,
4524 .prepare = intel_crtc_prepare,
4525 .commit = intel_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10004526 .load_lut = intel_crtc_load_lut,
Jesse Barnes79e53942008-11-07 14:24:08 -08004527};
4528
4529static const struct drm_crtc_funcs intel_crtc_funcs = {
4530 .cursor_set = intel_crtc_cursor_set,
4531 .cursor_move = intel_crtc_cursor_move,
4532 .gamma_set = intel_crtc_gamma_set,
4533 .set_config = drm_crtc_helper_set_config,
4534 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004535 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08004536};
4537
4538
Hannes Ederb358d0a2008-12-18 21:18:47 +01004539static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08004540{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004541 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004542 struct intel_crtc *intel_crtc;
4543 int i;
4544
4545 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
4546 if (intel_crtc == NULL)
4547 return;
4548
4549 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
4550
4551 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
4552 intel_crtc->pipe = pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004553 intel_crtc->plane = pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004554 for (i = 0; i < 256; i++) {
4555 intel_crtc->lut_r[i] = i;
4556 intel_crtc->lut_g[i] = i;
4557 intel_crtc->lut_b[i] = i;
4558 }
4559
Jesse Barnes80824002009-09-10 15:28:06 -07004560 /* Swap pipes & planes for FBC on pre-965 */
4561 intel_crtc->pipe = pipe;
4562 intel_crtc->plane = pipe;
4563 if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004564 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07004565 intel_crtc->plane = ((pipe == 0) ? 1 : 0);
4566 }
4567
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004568 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
4569 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
4570 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
4571 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
4572
Jesse Barnes79e53942008-11-07 14:24:08 -08004573 intel_crtc->cursor_addr = 0;
4574 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4575 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
4576
Jesse Barnes652c3932009-08-17 13:31:43 -07004577 intel_crtc->busy = false;
4578
4579 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
4580 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004581}
4582
Carl Worth08d7b3d2009-04-29 14:43:54 -07004583int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
4584 struct drm_file *file_priv)
4585{
4586 drm_i915_private_t *dev_priv = dev->dev_private;
4587 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02004588 struct drm_mode_object *drmmode_obj;
4589 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004590
4591 if (!dev_priv) {
4592 DRM_ERROR("called with no initialization\n");
4593 return -EINVAL;
4594 }
4595
Daniel Vetterc05422d2009-08-11 16:05:30 +02004596 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
4597 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07004598
Daniel Vetterc05422d2009-08-11 16:05:30 +02004599 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07004600 DRM_ERROR("no such CRTC id\n");
4601 return -EINVAL;
4602 }
4603
Daniel Vetterc05422d2009-08-11 16:05:30 +02004604 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
4605 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004606
Daniel Vetterc05422d2009-08-11 16:05:30 +02004607 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004608}
4609
Jesse Barnes79e53942008-11-07 14:24:08 -08004610struct drm_crtc *intel_get_crtc_from_pipe(struct drm_device *dev, int pipe)
4611{
4612 struct drm_crtc *crtc = NULL;
4613
4614 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4615 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4616 if (intel_crtc->pipe == pipe)
4617 break;
4618 }
4619 return crtc;
4620}
4621
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004622static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08004623{
4624 int index_mask = 0;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004625 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004626 int entry = 0;
4627
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004628 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
4629 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07004630 if (type_mask & intel_encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08004631 index_mask |= (1 << entry);
4632 entry++;
4633 }
4634 return index_mask;
4635}
4636
4637
4638static void intel_setup_outputs(struct drm_device *dev)
4639{
Eric Anholt725e30a2009-01-22 13:01:02 -08004640 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004641 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004642
4643 intel_crt_init(dev);
4644
4645 /* Set up integrated LVDS */
Zhenyu Wang541998a2009-06-05 15:38:44 +08004646 if (IS_MOBILE(dev) && !IS_I830(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004647 intel_lvds_init(dev);
4648
Eric Anholtbad720f2009-10-22 16:11:14 -07004649 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004650 int found;
4651
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004652 if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED))
4653 intel_dp_init(dev, DP_A);
4654
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004655 if (I915_READ(HDMIB) & PORT_DETECTED) {
4656 /* check SDVOB */
4657 /* found = intel_sdvo_init(dev, HDMIB); */
4658 found = 0;
4659 if (!found)
4660 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004661 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
4662 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004663 }
4664
4665 if (I915_READ(HDMIC) & PORT_DETECTED)
4666 intel_hdmi_init(dev, HDMIC);
4667
4668 if (I915_READ(HDMID) & PORT_DETECTED)
4669 intel_hdmi_init(dev, HDMID);
4670
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004671 if (I915_READ(PCH_DP_C) & DP_DETECTED)
4672 intel_dp_init(dev, PCH_DP_C);
4673
4674 if (I915_READ(PCH_DP_D) & DP_DETECTED)
4675 intel_dp_init(dev, PCH_DP_D);
4676
Zhenyu Wang103a1962009-11-27 11:44:36 +08004677 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08004678 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08004679
Eric Anholt725e30a2009-01-22 13:01:02 -08004680 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004681 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004682 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004683 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
4684 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004685 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004686 }
Ma Ling27185ae2009-08-24 13:50:23 +08004687
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004688 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
4689 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004690 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004691 }
Eric Anholt725e30a2009-01-22 13:01:02 -08004692 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04004693
4694 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04004695
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004696 if (I915_READ(SDVOB) & SDVO_DETECTED) {
4697 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004698 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004699 }
Ma Ling27185ae2009-08-24 13:50:23 +08004700
4701 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
4702
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004703 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
4704 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004705 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004706 }
4707 if (SUPPORTS_INTEGRATED_DP(dev)) {
4708 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004709 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004710 }
Eric Anholt725e30a2009-01-22 13:01:02 -08004711 }
Ma Ling27185ae2009-08-24 13:50:23 +08004712
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004713 if (SUPPORTS_INTEGRATED_DP(dev) &&
4714 (I915_READ(DP_D) & DP_DETECTED)) {
4715 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004716 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004717 }
Eric Anholtbad720f2009-10-22 16:11:14 -07004718 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004719 intel_dvo_init(dev);
4720
Zhenyu Wang103a1962009-11-27 11:44:36 +08004721 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004722 intel_tv_init(dev);
4723
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004724 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
4725 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08004726
Eric Anholt21d40d32010-03-25 11:11:14 -07004727 encoder->possible_crtcs = intel_encoder->crtc_mask;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004728 encoder->possible_clones = intel_encoder_clones(dev,
Eric Anholt21d40d32010-03-25 11:11:14 -07004729 intel_encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08004730 }
4731}
4732
4733static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
4734{
4735 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
4736 struct drm_device *dev = fb->dev;
4737
4738 if (fb->fbdev)
4739 intelfb_remove(dev, fb);
4740
4741 drm_framebuffer_cleanup(fb);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004742 drm_gem_object_unreference_unlocked(intel_fb->obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004743
4744 kfree(intel_fb);
4745}
4746
4747static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
4748 struct drm_file *file_priv,
4749 unsigned int *handle)
4750{
4751 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
4752 struct drm_gem_object *object = intel_fb->obj;
4753
4754 return drm_gem_handle_create(file_priv, object, handle);
4755}
4756
4757static const struct drm_framebuffer_funcs intel_fb_funcs = {
4758 .destroy = intel_user_framebuffer_destroy,
4759 .create_handle = intel_user_framebuffer_create_handle,
4760};
4761
4762int intel_framebuffer_create(struct drm_device *dev,
4763 struct drm_mode_fb_cmd *mode_cmd,
4764 struct drm_framebuffer **fb,
4765 struct drm_gem_object *obj)
4766{
4767 struct intel_framebuffer *intel_fb;
4768 int ret;
4769
4770 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
4771 if (!intel_fb)
4772 return -ENOMEM;
4773
4774 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
4775 if (ret) {
4776 DRM_ERROR("framebuffer init failed %d\n", ret);
4777 return ret;
4778 }
4779
4780 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
4781
4782 intel_fb->obj = obj;
4783
4784 *fb = &intel_fb->base;
4785
4786 return 0;
4787}
4788
4789
4790static struct drm_framebuffer *
4791intel_user_framebuffer_create(struct drm_device *dev,
4792 struct drm_file *filp,
4793 struct drm_mode_fb_cmd *mode_cmd)
4794{
4795 struct drm_gem_object *obj;
4796 struct drm_framebuffer *fb;
4797 int ret;
4798
4799 obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle);
4800 if (!obj)
4801 return NULL;
4802
4803 ret = intel_framebuffer_create(dev, mode_cmd, &fb, obj);
4804 if (ret) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00004805 drm_gem_object_unreference_unlocked(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004806 return NULL;
4807 }
4808
4809 return fb;
4810}
4811
Jesse Barnes79e53942008-11-07 14:24:08 -08004812static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08004813 .fb_create = intel_user_framebuffer_create,
4814 .fb_changed = intelfb_probe,
4815};
4816
Chris Wilson9ea8d052010-01-04 18:57:56 +00004817static struct drm_gem_object *
4818intel_alloc_power_context(struct drm_device *dev)
4819{
4820 struct drm_gem_object *pwrctx;
4821 int ret;
4822
4823 pwrctx = drm_gem_object_alloc(dev, 4096);
4824 if (!pwrctx) {
4825 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
4826 return NULL;
4827 }
4828
4829 mutex_lock(&dev->struct_mutex);
4830 ret = i915_gem_object_pin(pwrctx, 4096);
4831 if (ret) {
4832 DRM_ERROR("failed to pin power context: %d\n", ret);
4833 goto err_unref;
4834 }
4835
4836 ret = i915_gem_object_set_to_gtt_domain(pwrctx, 1);
4837 if (ret) {
4838 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
4839 goto err_unpin;
4840 }
4841 mutex_unlock(&dev->struct_mutex);
4842
4843 return pwrctx;
4844
4845err_unpin:
4846 i915_gem_object_unpin(pwrctx);
4847err_unref:
4848 drm_gem_object_unreference(pwrctx);
4849 mutex_unlock(&dev->struct_mutex);
4850 return NULL;
4851}
4852
Jesse Barnesf97108d2010-01-29 11:27:07 -08004853void ironlake_enable_drps(struct drm_device *dev)
4854{
4855 struct drm_i915_private *dev_priv = dev->dev_private;
4856 u32 rgvmodectl = I915_READ(MEMMODECTL), rgvswctl;
4857 u8 fmax, fmin, fstart, vstart;
4858 int i = 0;
4859
4860 /* 100ms RC evaluation intervals */
4861 I915_WRITE(RCUPEI, 100000);
4862 I915_WRITE(RCDNEI, 100000);
4863
4864 /* Set max/min thresholds to 90ms and 80ms respectively */
4865 I915_WRITE(RCBMAXAVG, 90000);
4866 I915_WRITE(RCBMINAVG, 80000);
4867
4868 I915_WRITE(MEMIHYST, 1);
4869
4870 /* Set up min, max, and cur for interrupt handling */
4871 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4872 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4873 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4874 MEMMODE_FSTART_SHIFT;
4875 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
4876 PXVFREQ_PX_SHIFT;
4877
4878 dev_priv->max_delay = fstart; /* can't go to fmax w/o IPS */
4879 dev_priv->min_delay = fmin;
4880 dev_priv->cur_delay = fstart;
4881
4882 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4883
4884 /*
4885 * Interrupts will be enabled in ironlake_irq_postinstall
4886 */
4887
4888 I915_WRITE(VIDSTART, vstart);
4889 POSTING_READ(VIDSTART);
4890
4891 rgvmodectl |= MEMMODE_SWMODE_EN;
4892 I915_WRITE(MEMMODECTL, rgvmodectl);
4893
4894 while (I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) {
4895 if (i++ > 100) {
4896 DRM_ERROR("stuck trying to change perf mode\n");
4897 break;
4898 }
4899 msleep(1);
4900 }
4901 msleep(1);
4902
4903 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4904 (fstart << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4905 I915_WRITE(MEMSWCTL, rgvswctl);
4906 POSTING_READ(MEMSWCTL);
4907
4908 rgvswctl |= MEMCTL_CMD_STS;
4909 I915_WRITE(MEMSWCTL, rgvswctl);
4910}
4911
4912void ironlake_disable_drps(struct drm_device *dev)
4913{
4914 struct drm_i915_private *dev_priv = dev->dev_private;
4915 u32 rgvswctl;
4916 u8 fstart;
4917
4918 /* Ack interrupts, disable EFC interrupt */
4919 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4920 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4921 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4922 I915_WRITE(DEIIR, DE_PCU_EVENT);
4923 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4924
4925 /* Go back to the starting frequency */
4926 fstart = (I915_READ(MEMMODECTL) & MEMMODE_FSTART_MASK) >>
4927 MEMMODE_FSTART_SHIFT;
4928 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
Jesse Barnes357b13c2010-02-04 14:17:47 -08004929 (fstart << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
Jesse Barnesf97108d2010-01-29 11:27:07 -08004930 I915_WRITE(MEMSWCTL, rgvswctl);
4931 msleep(1);
4932 rgvswctl |= MEMCTL_CMD_STS;
4933 I915_WRITE(MEMSWCTL, rgvswctl);
4934 msleep(1);
4935
4936}
4937
Jesse Barnes652c3932009-08-17 13:31:43 -07004938void intel_init_clock_gating(struct drm_device *dev)
4939{
4940 struct drm_i915_private *dev_priv = dev->dev_private;
4941
4942 /*
4943 * Disable clock gating reported to work incorrectly according to the
4944 * specs, but enable as much else as we can.
4945 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004946 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07004947 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
4948
4949 if (IS_IRONLAKE(dev)) {
4950 /* Required for FBC */
4951 dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE;
4952 /* Required for CxSR */
4953 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
4954
4955 I915_WRITE(PCH_3DCGDIS0,
4956 MARIUNIT_CLOCK_GATE_DISABLE |
4957 SVSMUNIT_CLOCK_GATE_DISABLE);
4958 }
4959
4960 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wangc03342f2009-09-29 11:01:23 +08004961 return;
4962 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07004963 uint32_t dspclk_gate;
4964 I915_WRITE(RENCLK_GATE_D1, 0);
4965 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
4966 GS_UNIT_CLOCK_GATE_DISABLE |
4967 CL_UNIT_CLOCK_GATE_DISABLE);
4968 I915_WRITE(RAMCLK_GATE_D, 0);
4969 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
4970 OVRUNIT_CLOCK_GATE_DISABLE |
4971 OVCUNIT_CLOCK_GATE_DISABLE;
4972 if (IS_GM45(dev))
4973 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
4974 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
4975 } else if (IS_I965GM(dev)) {
4976 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
4977 I915_WRITE(RENCLK_GATE_D2, 0);
4978 I915_WRITE(DSPCLK_GATE_D, 0);
4979 I915_WRITE(RAMCLK_GATE_D, 0);
4980 I915_WRITE16(DEUC, 0);
4981 } else if (IS_I965G(dev)) {
4982 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
4983 I965_RCC_CLOCK_GATE_DISABLE |
4984 I965_RCPB_CLOCK_GATE_DISABLE |
4985 I965_ISC_CLOCK_GATE_DISABLE |
4986 I965_FBC_CLOCK_GATE_DISABLE);
4987 I915_WRITE(RENCLK_GATE_D2, 0);
4988 } else if (IS_I9XX(dev)) {
4989 u32 dstate = I915_READ(D_STATE);
4990
4991 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
4992 DSTATE_DOT_CLOCK_GATING;
4993 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02004994 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07004995 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
4996 } else if (IS_I830(dev)) {
4997 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
4998 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004999
5000 /*
5001 * GPU can automatically power down the render unit if given a page
5002 * to save state.
5003 */
Andrew Lutomirski1d3c36ad2009-12-21 10:10:22 -05005004 if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005005 struct drm_i915_gem_object *obj_priv = NULL;
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005006
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005007 if (dev_priv->pwrctx) {
Daniel Vetter23010e42010-03-08 13:35:02 +01005008 obj_priv = to_intel_bo(dev_priv->pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005009 } else {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005010 struct drm_gem_object *pwrctx;
5011
5012 pwrctx = intel_alloc_power_context(dev);
5013 if (pwrctx) {
5014 dev_priv->pwrctx = pwrctx;
Daniel Vetter23010e42010-03-08 13:35:02 +01005015 obj_priv = to_intel_bo(pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005016 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005017 }
5018
Chris Wilson9ea8d052010-01-04 18:57:56 +00005019 if (obj_priv) {
5020 I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN);
5021 I915_WRITE(MCHBAR_RENDER_STANDBY,
5022 I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT);
5023 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005024 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005025}
5026
Jesse Barnese70236a2009-09-21 10:42:27 -07005027/* Set up chip specific display functions */
5028static void intel_init_display(struct drm_device *dev)
5029{
5030 struct drm_i915_private *dev_priv = dev->dev_private;
5031
5032 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07005033 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005034 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07005035 else
5036 dev_priv->display.dpms = i9xx_crtc_dpms;
5037
5038 /* Only mobile has FBC, leave pointers NULL for other chips */
5039 if (IS_MOBILE(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07005040 if (IS_GM45(dev)) {
5041 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5042 dev_priv->display.enable_fbc = g4x_enable_fbc;
5043 dev_priv->display.disable_fbc = g4x_disable_fbc;
Robert Hooker8d06a1e2010-03-19 15:13:27 -04005044 } else if (IS_I965GM(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005045 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5046 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5047 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5048 }
Jesse Barnes74dff282009-09-14 15:39:40 -07005049 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07005050 }
5051
5052 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005053 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07005054 dev_priv->display.get_display_clock_speed =
5055 i945_get_display_clock_speed;
5056 else if (IS_I915G(dev))
5057 dev_priv->display.get_display_clock_speed =
5058 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005059 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005060 dev_priv->display.get_display_clock_speed =
5061 i9xx_misc_get_display_clock_speed;
5062 else if (IS_I915GM(dev))
5063 dev_priv->display.get_display_clock_speed =
5064 i915gm_get_display_clock_speed;
5065 else if (IS_I865G(dev))
5066 dev_priv->display.get_display_clock_speed =
5067 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005068 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005069 dev_priv->display.get_display_clock_speed =
5070 i855_get_display_clock_speed;
5071 else /* 852, 830 */
5072 dev_priv->display.get_display_clock_speed =
5073 i830_get_display_clock_speed;
5074
5075 /* For FIFO watermark updates */
Eric Anholtbad720f2009-10-22 16:11:14 -07005076 if (HAS_PCH_SPLIT(dev))
Zhenyu Wangc03342f2009-09-29 11:01:23 +08005077 dev_priv->display.update_wm = NULL;
5078 else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005079 dev_priv->display.update_wm = g4x_update_wm;
5080 else if (IS_I965G(dev))
5081 dev_priv->display.update_wm = i965_update_wm;
5082 else if (IS_I9XX(dev) || IS_MOBILE(dev)) {
5083 dev_priv->display.update_wm = i9xx_update_wm;
5084 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
5085 } else {
5086 if (IS_I85X(dev))
5087 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
5088 else if (IS_845G(dev))
5089 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5090 else
5091 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5092 dev_priv->display.update_wm = i830_update_wm;
5093 }
5094}
5095
Jesse Barnes79e53942008-11-07 14:24:08 -08005096void intel_modeset_init(struct drm_device *dev)
5097{
Jesse Barnes652c3932009-08-17 13:31:43 -07005098 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005099 int num_pipe;
5100 int i;
5101
5102 drm_mode_config_init(dev);
5103
5104 dev->mode_config.min_width = 0;
5105 dev->mode_config.min_height = 0;
5106
5107 dev->mode_config.funcs = (void *)&intel_mode_funcs;
5108
Jesse Barnese70236a2009-09-21 10:42:27 -07005109 intel_init_display(dev);
5110
Jesse Barnes79e53942008-11-07 14:24:08 -08005111 if (IS_I965G(dev)) {
5112 dev->mode_config.max_width = 8192;
5113 dev->mode_config.max_height = 8192;
Keith Packard5e4d6fa2009-07-12 23:53:17 -07005114 } else if (IS_I9XX(dev)) {
5115 dev->mode_config.max_width = 4096;
5116 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08005117 } else {
5118 dev->mode_config.max_width = 2048;
5119 dev->mode_config.max_height = 2048;
5120 }
5121
5122 /* set memory base */
5123 if (IS_I9XX(dev))
5124 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2);
5125 else
5126 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0);
5127
5128 if (IS_MOBILE(dev) || IS_I9XX(dev))
5129 num_pipe = 2;
5130 else
5131 num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08005132 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08005133 num_pipe, num_pipe > 1 ? "s" : "");
5134
5135 for (i = 0; i < num_pipe; i++) {
5136 intel_crtc_init(dev, i);
5137 }
5138
5139 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07005140
5141 intel_init_clock_gating(dev);
5142
Jesse Barnesf97108d2010-01-29 11:27:07 -08005143 if (IS_IRONLAKE_M(dev))
5144 ironlake_enable_drps(dev);
5145
Jesse Barnes652c3932009-08-17 13:31:43 -07005146 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
5147 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
5148 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02005149
5150 intel_setup_overlay(dev);
Jesse Barnes85364902009-12-03 09:52:43 -08005151
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005152 if (IS_PINEVIEW(dev) && !intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
5153 dev_priv->fsb_freq,
5154 dev_priv->mem_freq))
Jesse Barnes85364902009-12-03 09:52:43 -08005155 DRM_INFO("failed to find known CxSR latency "
5156 "(found fsb freq %d, mem freq %d), disabling CxSR\n",
5157 dev_priv->fsb_freq, dev_priv->mem_freq);
Jesse Barnes79e53942008-11-07 14:24:08 -08005158}
5159
5160void intel_modeset_cleanup(struct drm_device *dev)
5161{
Jesse Barnes652c3932009-08-17 13:31:43 -07005162 struct drm_i915_private *dev_priv = dev->dev_private;
5163 struct drm_crtc *crtc;
5164 struct intel_crtc *intel_crtc;
5165
5166 mutex_lock(&dev->struct_mutex);
5167
5168 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5169 /* Skip inactive CRTCs */
5170 if (!crtc->fb)
5171 continue;
5172
5173 intel_crtc = to_intel_crtc(crtc);
5174 intel_increase_pllclock(crtc, false);
5175 del_timer_sync(&intel_crtc->idle_timer);
5176 }
5177
Jesse Barnes652c3932009-08-17 13:31:43 -07005178 del_timer_sync(&dev_priv->idle_timer);
5179
Jesse Barnese70236a2009-09-21 10:42:27 -07005180 if (dev_priv->display.disable_fbc)
5181 dev_priv->display.disable_fbc(dev);
5182
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005183 if (dev_priv->pwrctx) {
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005184 struct drm_i915_gem_object *obj_priv;
5185
Daniel Vetter23010e42010-03-08 13:35:02 +01005186 obj_priv = to_intel_bo(dev_priv->pwrctx);
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005187 I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN);
5188 I915_READ(PWRCTXA);
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005189 i915_gem_object_unpin(dev_priv->pwrctx);
5190 drm_gem_object_unreference(dev_priv->pwrctx);
5191 }
5192
Jesse Barnesf97108d2010-01-29 11:27:07 -08005193 if (IS_IRONLAKE_M(dev))
5194 ironlake_disable_drps(dev);
5195
Kristian Høgsberg69341a52009-11-11 12:19:17 -05005196 mutex_unlock(&dev->struct_mutex);
5197
Jesse Barnes79e53942008-11-07 14:24:08 -08005198 drm_mode_config_cleanup(dev);
5199}
5200
5201
5202/* current intel driver doesn't take advantage of encoders
5203 always give back the encoder for the connector
5204*/
5205struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
5206{
Eric Anholt21d40d32010-03-25 11:11:14 -07005207 struct intel_encoder *intel_encoder = to_intel_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08005208
Eric Anholt21d40d32010-03-25 11:11:14 -07005209 return &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08005210}
Dave Airlie28d52042009-09-21 14:33:58 +10005211
5212/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005213 * Return which encoder is currently attached for connector.
5214 */
5215struct drm_encoder *intel_attached_encoder (struct drm_connector *connector)
5216{
5217 struct drm_mode_object *obj;
5218 struct drm_encoder *encoder;
5219 int i;
5220
5221 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5222 if (connector->encoder_ids[i] == 0)
5223 break;
5224
5225 obj = drm_mode_object_find(connector->dev,
5226 connector->encoder_ids[i],
5227 DRM_MODE_OBJECT_ENCODER);
5228 if (!obj)
5229 continue;
5230
5231 encoder = obj_to_encoder(obj);
5232 return encoder;
5233 }
5234 return NULL;
5235}
5236
5237/*
Dave Airlie28d52042009-09-21 14:33:58 +10005238 * set vga decode state - true == enable VGA decode
5239 */
5240int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
5241{
5242 struct drm_i915_private *dev_priv = dev->dev_private;
5243 u16 gmch_ctrl;
5244
5245 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
5246 if (state)
5247 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
5248 else
5249 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
5250 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
5251 return 0;
5252}