blob: b580cd872b108b47e3c163e3a318077e190f4129 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Jesse Barnesc1c7af62009-09-10 15:28:03 -070027#include <linux/module.h>
28#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080029#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080030#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080032#include "drmP.h"
33#include "intel_drv.h"
34#include "i915_drm.h"
35#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070036#include "i915_trace.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100037#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080038
39#include "drm_crtc_helper.h"
40
Zhenyu Wang32f9d652009-07-24 01:00:32 +080041#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
42
Jesse Barnes79e53942008-11-07 14:24:08 -080043bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080044static void intel_update_watermarks(struct drm_device *dev);
Jesse Barnes652c3932009-08-17 13:31:43 -070045static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule);
Jesse Barnes79e53942008-11-07 14:24:08 -080046
47typedef struct {
48 /* given values */
49 int n;
50 int m1, m2;
51 int p1, p2;
52 /* derived values */
53 int dot;
54 int vco;
55 int m;
56 int p;
57} intel_clock_t;
58
59typedef struct {
60 int min, max;
61} intel_range_t;
62
63typedef struct {
64 int dot_limit;
65 int p2_slow, p2_fast;
66} intel_p2_t;
67
68#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080069typedef struct intel_limit intel_limit_t;
70struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080071 intel_range_t dot, vco, n, m, m1, m2, p, p1;
72 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080073 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
74 int, int, intel_clock_t *);
75};
Jesse Barnes79e53942008-11-07 14:24:08 -080076
77#define I8XX_DOT_MIN 25000
78#define I8XX_DOT_MAX 350000
79#define I8XX_VCO_MIN 930000
80#define I8XX_VCO_MAX 1400000
81#define I8XX_N_MIN 3
82#define I8XX_N_MAX 16
83#define I8XX_M_MIN 96
84#define I8XX_M_MAX 140
85#define I8XX_M1_MIN 18
86#define I8XX_M1_MAX 26
87#define I8XX_M2_MIN 6
88#define I8XX_M2_MAX 16
89#define I8XX_P_MIN 4
90#define I8XX_P_MAX 128
91#define I8XX_P1_MIN 2
92#define I8XX_P1_MAX 33
93#define I8XX_P1_LVDS_MIN 1
94#define I8XX_P1_LVDS_MAX 6
95#define I8XX_P2_SLOW 4
96#define I8XX_P2_FAST 2
97#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e3952009-07-17 11:44:30 +080098#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -080099#define I8XX_P2_SLOW_LIMIT 165000
100
101#define I9XX_DOT_MIN 20000
102#define I9XX_DOT_MAX 400000
103#define I9XX_VCO_MIN 1400000
104#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500105#define PINEVIEW_VCO_MIN 1700000
106#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500107#define I9XX_N_MIN 1
108#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500109/* Pineview's Ncounter is a ring counter */
110#define PINEVIEW_N_MIN 3
111#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800112#define I9XX_M_MIN 70
113#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500114#define PINEVIEW_M_MIN 2
115#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800116#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500117#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800118#define I9XX_M2_MIN 5
119#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500120/* Pineview M1 is reserved, and must be 0 */
121#define PINEVIEW_M1_MIN 0
122#define PINEVIEW_M1_MAX 0
123#define PINEVIEW_M2_MIN 0
124#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800125#define I9XX_P_SDVO_DAC_MIN 5
126#define I9XX_P_SDVO_DAC_MAX 80
127#define I9XX_P_LVDS_MIN 7
128#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500129#define PINEVIEW_P_LVDS_MIN 7
130#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800131#define I9XX_P1_MIN 1
132#define I9XX_P1_MAX 8
133#define I9XX_P2_SDVO_DAC_SLOW 10
134#define I9XX_P2_SDVO_DAC_FAST 5
135#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
136#define I9XX_P2_LVDS_SLOW 14
137#define I9XX_P2_LVDS_FAST 7
138#define I9XX_P2_LVDS_SLOW_LIMIT 112000
139
Ma Ling044c7c42009-03-18 20:13:23 +0800140/*The parameter is for SDVO on G4x platform*/
141#define G4X_DOT_SDVO_MIN 25000
142#define G4X_DOT_SDVO_MAX 270000
143#define G4X_VCO_MIN 1750000
144#define G4X_VCO_MAX 3500000
145#define G4X_N_SDVO_MIN 1
146#define G4X_N_SDVO_MAX 4
147#define G4X_M_SDVO_MIN 104
148#define G4X_M_SDVO_MAX 138
149#define G4X_M1_SDVO_MIN 17
150#define G4X_M1_SDVO_MAX 23
151#define G4X_M2_SDVO_MIN 5
152#define G4X_M2_SDVO_MAX 11
153#define G4X_P_SDVO_MIN 10
154#define G4X_P_SDVO_MAX 30
155#define G4X_P1_SDVO_MIN 1
156#define G4X_P1_SDVO_MAX 3
157#define G4X_P2_SDVO_SLOW 10
158#define G4X_P2_SDVO_FAST 10
159#define G4X_P2_SDVO_LIMIT 270000
160
161/*The parameter is for HDMI_DAC on G4x platform*/
162#define G4X_DOT_HDMI_DAC_MIN 22000
163#define G4X_DOT_HDMI_DAC_MAX 400000
164#define G4X_N_HDMI_DAC_MIN 1
165#define G4X_N_HDMI_DAC_MAX 4
166#define G4X_M_HDMI_DAC_MIN 104
167#define G4X_M_HDMI_DAC_MAX 138
168#define G4X_M1_HDMI_DAC_MIN 16
169#define G4X_M1_HDMI_DAC_MAX 23
170#define G4X_M2_HDMI_DAC_MIN 5
171#define G4X_M2_HDMI_DAC_MAX 11
172#define G4X_P_HDMI_DAC_MIN 5
173#define G4X_P_HDMI_DAC_MAX 80
174#define G4X_P1_HDMI_DAC_MIN 1
175#define G4X_P1_HDMI_DAC_MAX 8
176#define G4X_P2_HDMI_DAC_SLOW 10
177#define G4X_P2_HDMI_DAC_FAST 5
178#define G4X_P2_HDMI_DAC_LIMIT 165000
179
180/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
181#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
182#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
183#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
184#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
185#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
186#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
187#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
188#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
189#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
190#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
191#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
192#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
193#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
194#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
195#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
196#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
197#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
198
199/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
200#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
201#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
202#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
203#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
204#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
205#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
206#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
207#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
208#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
209#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
210#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
211#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
212#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
213#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
214#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
215#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
216#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
217
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700218/*The parameter is for DISPLAY PORT on G4x platform*/
219#define G4X_DOT_DISPLAY_PORT_MIN 161670
220#define G4X_DOT_DISPLAY_PORT_MAX 227000
221#define G4X_N_DISPLAY_PORT_MIN 1
222#define G4X_N_DISPLAY_PORT_MAX 2
223#define G4X_M_DISPLAY_PORT_MIN 97
224#define G4X_M_DISPLAY_PORT_MAX 108
225#define G4X_M1_DISPLAY_PORT_MIN 0x10
226#define G4X_M1_DISPLAY_PORT_MAX 0x12
227#define G4X_M2_DISPLAY_PORT_MIN 0x05
228#define G4X_M2_DISPLAY_PORT_MAX 0x06
229#define G4X_P_DISPLAY_PORT_MIN 10
230#define G4X_P_DISPLAY_PORT_MAX 20
231#define G4X_P1_DISPLAY_PORT_MIN 1
232#define G4X_P1_DISPLAY_PORT_MAX 2
233#define G4X_P2_DISPLAY_PORT_SLOW 10
234#define G4X_P2_DISPLAY_PORT_FAST 10
235#define G4X_P2_DISPLAY_PORT_LIMIT 0
236
Eric Anholtbad720f2009-10-22 16:11:14 -0700237/* Ironlake / Sandybridge */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800238/* as we calculate clock using (register_value + 2) for
239 N/M1/M2, so here the range value for them is (actual_value-2).
240 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500241#define IRONLAKE_DOT_MIN 25000
242#define IRONLAKE_DOT_MAX 350000
243#define IRONLAKE_VCO_MIN 1760000
244#define IRONLAKE_VCO_MAX 3510000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500245#define IRONLAKE_M1_MIN 12
Zhao Yakuia59e3852010-01-06 22:05:57 +0800246#define IRONLAKE_M1_MAX 22
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500247#define IRONLAKE_M2_MIN 5
248#define IRONLAKE_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500249#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800250
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800251/* We have parameter ranges for different type of outputs. */
252
253/* DAC & HDMI Refclk 120Mhz */
254#define IRONLAKE_DAC_N_MIN 1
255#define IRONLAKE_DAC_N_MAX 5
256#define IRONLAKE_DAC_M_MIN 79
257#define IRONLAKE_DAC_M_MAX 127
258#define IRONLAKE_DAC_P_MIN 5
259#define IRONLAKE_DAC_P_MAX 80
260#define IRONLAKE_DAC_P1_MIN 1
261#define IRONLAKE_DAC_P1_MAX 8
262#define IRONLAKE_DAC_P2_SLOW 10
263#define IRONLAKE_DAC_P2_FAST 5
264
265/* LVDS single-channel 120Mhz refclk */
266#define IRONLAKE_LVDS_S_N_MIN 1
267#define IRONLAKE_LVDS_S_N_MAX 3
268#define IRONLAKE_LVDS_S_M_MIN 79
269#define IRONLAKE_LVDS_S_M_MAX 118
270#define IRONLAKE_LVDS_S_P_MIN 28
271#define IRONLAKE_LVDS_S_P_MAX 112
272#define IRONLAKE_LVDS_S_P1_MIN 2
273#define IRONLAKE_LVDS_S_P1_MAX 8
274#define IRONLAKE_LVDS_S_P2_SLOW 14
275#define IRONLAKE_LVDS_S_P2_FAST 14
276
277/* LVDS dual-channel 120Mhz refclk */
278#define IRONLAKE_LVDS_D_N_MIN 1
279#define IRONLAKE_LVDS_D_N_MAX 3
280#define IRONLAKE_LVDS_D_M_MIN 79
281#define IRONLAKE_LVDS_D_M_MAX 127
282#define IRONLAKE_LVDS_D_P_MIN 14
283#define IRONLAKE_LVDS_D_P_MAX 56
284#define IRONLAKE_LVDS_D_P1_MIN 2
285#define IRONLAKE_LVDS_D_P1_MAX 8
286#define IRONLAKE_LVDS_D_P2_SLOW 7
287#define IRONLAKE_LVDS_D_P2_FAST 7
288
289/* LVDS single-channel 100Mhz refclk */
290#define IRONLAKE_LVDS_S_SSC_N_MIN 1
291#define IRONLAKE_LVDS_S_SSC_N_MAX 2
292#define IRONLAKE_LVDS_S_SSC_M_MIN 79
293#define IRONLAKE_LVDS_S_SSC_M_MAX 126
294#define IRONLAKE_LVDS_S_SSC_P_MIN 28
295#define IRONLAKE_LVDS_S_SSC_P_MAX 112
296#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
297#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
298#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
299#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
300
301/* LVDS dual-channel 100Mhz refclk */
302#define IRONLAKE_LVDS_D_SSC_N_MIN 1
303#define IRONLAKE_LVDS_D_SSC_N_MAX 3
304#define IRONLAKE_LVDS_D_SSC_M_MIN 79
305#define IRONLAKE_LVDS_D_SSC_M_MAX 126
306#define IRONLAKE_LVDS_D_SSC_P_MIN 14
307#define IRONLAKE_LVDS_D_SSC_P_MAX 42
308#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
309#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
310#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
311#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
312
313/* DisplayPort */
314#define IRONLAKE_DP_N_MIN 1
315#define IRONLAKE_DP_N_MAX 2
316#define IRONLAKE_DP_M_MIN 81
317#define IRONLAKE_DP_M_MAX 90
318#define IRONLAKE_DP_P_MIN 10
319#define IRONLAKE_DP_P_MAX 20
320#define IRONLAKE_DP_P2_FAST 10
321#define IRONLAKE_DP_P2_SLOW 10
322#define IRONLAKE_DP_P2_LIMIT 0
323#define IRONLAKE_DP_P1_MIN 1
324#define IRONLAKE_DP_P1_MAX 2
Zhao Yakui45476682009-12-31 16:06:04 +0800325
Ma Lingd4906092009-03-18 20:13:27 +0800326static bool
327intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
328 int target, int refclk, intel_clock_t *best_clock);
329static bool
330intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
331 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800332
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700333static bool
334intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
335 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800336static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500337intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
338 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700339
Keith Packarde4b36692009-06-05 19:22:17 -0700340static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800341 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
342 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
343 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
344 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
345 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
346 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
347 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
348 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
349 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
350 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800351 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700352};
353
354static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800355 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
356 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
357 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
358 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
359 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
360 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
361 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
362 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
363 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
364 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800365 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700366};
367
368static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800369 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
370 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
371 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
372 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
373 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
374 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
375 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
376 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
377 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
378 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800379 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700380};
381
382static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800383 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
384 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
385 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
386 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
387 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
388 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
389 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
390 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
391 /* The single-channel range is 25-112Mhz, and dual-channel
392 * is 80-224Mhz. Prefer single channel as much as possible.
393 */
394 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
395 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800396 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700397};
398
Ma Ling044c7c42009-03-18 20:13:23 +0800399 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700400static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800401 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
402 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
403 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
404 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
405 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
406 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
407 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
408 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
409 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
410 .p2_slow = G4X_P2_SDVO_SLOW,
411 .p2_fast = G4X_P2_SDVO_FAST
412 },
Ma Lingd4906092009-03-18 20:13:27 +0800413 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700414};
415
416static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800417 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
418 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
419 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
420 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
421 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
422 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
423 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
424 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
425 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
426 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
427 .p2_fast = G4X_P2_HDMI_DAC_FAST
428 },
Ma Lingd4906092009-03-18 20:13:27 +0800429 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700430};
431
432static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800433 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
434 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
435 .vco = { .min = G4X_VCO_MIN,
436 .max = G4X_VCO_MAX },
437 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
438 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
439 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
440 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
441 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
442 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
443 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
444 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
445 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
446 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
447 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
448 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
449 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
450 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
451 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
452 },
Ma Lingd4906092009-03-18 20:13:27 +0800453 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700454};
455
456static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800457 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
458 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
459 .vco = { .min = G4X_VCO_MIN,
460 .max = G4X_VCO_MAX },
461 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
462 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
463 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
464 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
465 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
466 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
467 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
468 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
469 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
470 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
471 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
472 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
473 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
474 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
475 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
476 },
Ma Lingd4906092009-03-18 20:13:27 +0800477 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700478};
479
480static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700481 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
482 .max = G4X_DOT_DISPLAY_PORT_MAX },
483 .vco = { .min = G4X_VCO_MIN,
484 .max = G4X_VCO_MAX},
485 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
486 .max = G4X_N_DISPLAY_PORT_MAX },
487 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
488 .max = G4X_M_DISPLAY_PORT_MAX },
489 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
490 .max = G4X_M1_DISPLAY_PORT_MAX },
491 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
492 .max = G4X_M2_DISPLAY_PORT_MAX },
493 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
494 .max = G4X_P_DISPLAY_PORT_MAX },
495 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
496 .max = G4X_P1_DISPLAY_PORT_MAX},
497 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
498 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
499 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
500 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700501};
502
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500503static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800504 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500505 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
506 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
507 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
508 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
509 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800510 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
511 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
512 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
513 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800514 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700515};
516
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500517static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800518 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500519 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
520 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
521 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
522 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
523 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
524 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800525 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500526 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800527 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
528 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800529 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700530};
531
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800532static const intel_limit_t intel_limits_ironlake_dac = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500533 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
534 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800535 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
536 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500537 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
538 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800539 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
540 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500541 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800542 .p2_slow = IRONLAKE_DAC_P2_SLOW,
543 .p2_fast = IRONLAKE_DAC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800544 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700545};
546
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800547static const intel_limit_t intel_limits_ironlake_single_lvds = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500548 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
549 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800550 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
551 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500552 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
553 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800554 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
555 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500556 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800557 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
558 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
559 .find_pll = intel_g4x_find_best_PLL,
560};
561
562static const intel_limit_t intel_limits_ironlake_dual_lvds = {
563 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
564 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
565 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
566 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
567 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
568 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
569 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
570 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
571 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
572 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
573 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
574 .find_pll = intel_g4x_find_best_PLL,
575};
576
577static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
578 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
579 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
580 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
581 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
582 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
583 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
584 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
585 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
586 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
587 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
588 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
589 .find_pll = intel_g4x_find_best_PLL,
590};
591
592static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
593 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
594 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
595 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
596 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
597 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
598 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
599 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
600 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
601 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
602 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
603 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800604 .find_pll = intel_g4x_find_best_PLL,
605};
606
607static const intel_limit_t intel_limits_ironlake_display_port = {
608 .dot = { .min = IRONLAKE_DOT_MIN,
609 .max = IRONLAKE_DOT_MAX },
610 .vco = { .min = IRONLAKE_VCO_MIN,
611 .max = IRONLAKE_VCO_MAX},
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800612 .n = { .min = IRONLAKE_DP_N_MIN,
613 .max = IRONLAKE_DP_N_MAX },
614 .m = { .min = IRONLAKE_DP_M_MIN,
615 .max = IRONLAKE_DP_M_MAX },
Zhao Yakui45476682009-12-31 16:06:04 +0800616 .m1 = { .min = IRONLAKE_M1_MIN,
617 .max = IRONLAKE_M1_MAX },
618 .m2 = { .min = IRONLAKE_M2_MIN,
619 .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800620 .p = { .min = IRONLAKE_DP_P_MIN,
621 .max = IRONLAKE_DP_P_MAX },
622 .p1 = { .min = IRONLAKE_DP_P1_MIN,
623 .max = IRONLAKE_DP_P1_MAX},
624 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
625 .p2_slow = IRONLAKE_DP_P2_SLOW,
626 .p2_fast = IRONLAKE_DP_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800627 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800628};
629
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500630static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800631{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800632 struct drm_device *dev = crtc->dev;
633 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800634 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800635 int refclk = 120;
636
637 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
638 if (dev_priv->lvds_use_ssc && dev_priv->lvds_ssc_freq == 100)
639 refclk = 100;
640
641 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
642 LVDS_CLKB_POWER_UP) {
643 /* LVDS dual channel */
644 if (refclk == 100)
645 limit = &intel_limits_ironlake_dual_lvds_100m;
646 else
647 limit = &intel_limits_ironlake_dual_lvds;
648 } else {
649 if (refclk == 100)
650 limit = &intel_limits_ironlake_single_lvds_100m;
651 else
652 limit = &intel_limits_ironlake_single_lvds;
653 }
654 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800655 HAS_eDP)
656 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800657 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800658 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800659
660 return limit;
661}
662
Ma Ling044c7c42009-03-18 20:13:23 +0800663static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
664{
665 struct drm_device *dev = crtc->dev;
666 struct drm_i915_private *dev_priv = dev->dev_private;
667 const intel_limit_t *limit;
668
669 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
670 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
671 LVDS_CLKB_POWER_UP)
672 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700673 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800674 else
675 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700676 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800677 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
678 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700679 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800680 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700681 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700682 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700683 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800684 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700685 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800686
687 return limit;
688}
689
Jesse Barnes79e53942008-11-07 14:24:08 -0800690static const intel_limit_t *intel_limit(struct drm_crtc *crtc)
691{
692 struct drm_device *dev = crtc->dev;
693 const intel_limit_t *limit;
694
Eric Anholtbad720f2009-10-22 16:11:14 -0700695 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500696 limit = intel_ironlake_limit(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800697 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800698 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500699 } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800700 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700701 limit = &intel_limits_i9xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800702 else
Keith Packarde4b36692009-06-05 19:22:17 -0700703 limit = &intel_limits_i9xx_sdvo;
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500704 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800705 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500706 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800707 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500708 limit = &intel_limits_pineview_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800709 } else {
710 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700711 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800712 else
Keith Packarde4b36692009-06-05 19:22:17 -0700713 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800714 }
715 return limit;
716}
717
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500718/* m1 is reserved as 0 in Pineview, n is a ring counter */
719static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800720{
Shaohua Li21778322009-02-23 15:19:16 +0800721 clock->m = clock->m2 + 2;
722 clock->p = clock->p1 * clock->p2;
723 clock->vco = refclk * clock->m / clock->n;
724 clock->dot = clock->vco / clock->p;
725}
726
727static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
728{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500729 if (IS_PINEVIEW(dev)) {
730 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800731 return;
732 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800733 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
734 clock->p = clock->p1 * clock->p2;
735 clock->vco = refclk * clock->m / (clock->n + 2);
736 clock->dot = clock->vco / clock->p;
737}
738
Jesse Barnes79e53942008-11-07 14:24:08 -0800739/**
740 * Returns whether any output on the specified pipe is of the specified type
741 */
742bool intel_pipe_has_type (struct drm_crtc *crtc, int type)
743{
744 struct drm_device *dev = crtc->dev;
745 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800746 struct drm_encoder *l_entry;
Jesse Barnes79e53942008-11-07 14:24:08 -0800747
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800748 list_for_each_entry(l_entry, &mode_config->encoder_list, head) {
749 if (l_entry && l_entry->crtc == crtc) {
750 struct intel_encoder *intel_encoder = enc_to_intel_encoder(l_entry);
Eric Anholt21d40d32010-03-25 11:11:14 -0700751 if (intel_encoder->type == type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800752 return true;
753 }
754 }
755 return false;
756}
757
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800758#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800759/**
760 * Returns whether the given set of divisors are valid for a given refclk with
761 * the given connectors.
762 */
763
764static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock)
765{
766 const intel_limit_t *limit = intel_limit (crtc);
Shaohua Li21778322009-02-23 15:19:16 +0800767 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800768
769 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
770 INTELPllInvalid ("p1 out of range\n");
771 if (clock->p < limit->p.min || limit->p.max < clock->p)
772 INTELPllInvalid ("p out of range\n");
773 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
774 INTELPllInvalid ("m2 out of range\n");
775 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
776 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500777 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800778 INTELPllInvalid ("m1 <= m2\n");
779 if (clock->m < limit->m.min || limit->m.max < clock->m)
780 INTELPllInvalid ("m out of range\n");
781 if (clock->n < limit->n.min || limit->n.max < clock->n)
782 INTELPllInvalid ("n out of range\n");
783 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
784 INTELPllInvalid ("vco out of range\n");
785 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
786 * connector, etc., rather than just a single range.
787 */
788 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
789 INTELPllInvalid ("dot out of range\n");
790
791 return true;
792}
793
Ma Lingd4906092009-03-18 20:13:27 +0800794static bool
795intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
796 int target, int refclk, intel_clock_t *best_clock)
797
Jesse Barnes79e53942008-11-07 14:24:08 -0800798{
799 struct drm_device *dev = crtc->dev;
800 struct drm_i915_private *dev_priv = dev->dev_private;
801 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800802 int err = target;
803
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200804 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800805 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800806 /*
807 * For LVDS, if the panel is on, just rely on its current
808 * settings for dual-channel. We haven't figured out how to
809 * reliably set up different single/dual channel state, if we
810 * even can.
811 */
812 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
813 LVDS_CLKB_POWER_UP)
814 clock.p2 = limit->p2.p2_fast;
815 else
816 clock.p2 = limit->p2.p2_slow;
817 } else {
818 if (target < limit->p2.dot_limit)
819 clock.p2 = limit->p2.p2_slow;
820 else
821 clock.p2 = limit->p2.p2_fast;
822 }
823
824 memset (best_clock, 0, sizeof (*best_clock));
825
Zhao Yakui42158662009-11-20 11:24:18 +0800826 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
827 clock.m1++) {
828 for (clock.m2 = limit->m2.min;
829 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500830 /* m1 is always 0 in Pineview */
831 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800832 break;
833 for (clock.n = limit->n.min;
834 clock.n <= limit->n.max; clock.n++) {
835 for (clock.p1 = limit->p1.min;
836 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800837 int this_err;
838
Shaohua Li21778322009-02-23 15:19:16 +0800839 intel_clock(dev, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800840
841 if (!intel_PLL_is_valid(crtc, &clock))
842 continue;
843
844 this_err = abs(clock.dot - target);
845 if (this_err < err) {
846 *best_clock = clock;
847 err = this_err;
848 }
849 }
850 }
851 }
852 }
853
854 return (err != target);
855}
856
Ma Lingd4906092009-03-18 20:13:27 +0800857static bool
858intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
859 int target, int refclk, intel_clock_t *best_clock)
860{
861 struct drm_device *dev = crtc->dev;
862 struct drm_i915_private *dev_priv = dev->dev_private;
863 intel_clock_t clock;
864 int max_n;
865 bool found;
866 /* approximately equals target * 0.00488 */
867 int err_most = (target >> 8) + (target >> 10);
868 found = false;
869
870 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800871 int lvds_reg;
872
Eric Anholtc619eed2010-01-28 16:45:52 -0800873 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800874 lvds_reg = PCH_LVDS;
875 else
876 lvds_reg = LVDS;
877 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800878 LVDS_CLKB_POWER_UP)
879 clock.p2 = limit->p2.p2_fast;
880 else
881 clock.p2 = limit->p2.p2_slow;
882 } else {
883 if (target < limit->p2.dot_limit)
884 clock.p2 = limit->p2.p2_slow;
885 else
886 clock.p2 = limit->p2.p2_fast;
887 }
888
889 memset(best_clock, 0, sizeof(*best_clock));
890 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200891 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800892 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200893 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800894 for (clock.m1 = limit->m1.max;
895 clock.m1 >= limit->m1.min; clock.m1--) {
896 for (clock.m2 = limit->m2.max;
897 clock.m2 >= limit->m2.min; clock.m2--) {
898 for (clock.p1 = limit->p1.max;
899 clock.p1 >= limit->p1.min; clock.p1--) {
900 int this_err;
901
Shaohua Li21778322009-02-23 15:19:16 +0800902 intel_clock(dev, refclk, &clock);
Ma Lingd4906092009-03-18 20:13:27 +0800903 if (!intel_PLL_is_valid(crtc, &clock))
904 continue;
905 this_err = abs(clock.dot - target) ;
906 if (this_err < err_most) {
907 *best_clock = clock;
908 err_most = this_err;
909 max_n = clock.n;
910 found = true;
911 }
912 }
913 }
914 }
915 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800916 return found;
917}
Ma Lingd4906092009-03-18 20:13:27 +0800918
Zhenyu Wang2c072452009-06-05 15:38:42 +0800919static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500920intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
921 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800922{
923 struct drm_device *dev = crtc->dev;
924 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800925
926 /* return directly when it is eDP */
927 if (HAS_eDP)
928 return true;
929
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800930 if (target < 200000) {
931 clock.n = 1;
932 clock.p1 = 2;
933 clock.p2 = 10;
934 clock.m1 = 12;
935 clock.m2 = 9;
936 } else {
937 clock.n = 2;
938 clock.p1 = 1;
939 clock.p2 = 10;
940 clock.m1 = 14;
941 clock.m2 = 8;
942 }
943 intel_clock(dev, refclk, &clock);
944 memcpy(best_clock, &clock, sizeof(intel_clock_t));
945 return true;
946}
947
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700948/* DisplayPort has only two frequencies, 162MHz and 270MHz */
949static bool
950intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
951 int target, int refclk, intel_clock_t *best_clock)
952{
953 intel_clock_t clock;
954 if (target < 200000) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700955 clock.p1 = 2;
956 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700957 clock.n = 2;
958 clock.m1 = 23;
959 clock.m2 = 8;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700960 } else {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700961 clock.p1 = 1;
962 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700963 clock.n = 1;
964 clock.m1 = 14;
965 clock.m2 = 2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700966 }
Keith Packardb3d25492009-06-24 23:09:15 -0700967 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
968 clock.p = (clock.p1 * clock.p2);
969 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
Jesse Barnesfe798b972009-10-20 07:55:28 +0900970 clock.vco = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700971 memcpy(best_clock, &clock, sizeof(intel_clock_t));
972 return true;
973}
974
Jesse Barnes79e53942008-11-07 14:24:08 -0800975void
976intel_wait_for_vblank(struct drm_device *dev)
977{
978 /* Wait for 20ms, i.e. one cycle at 50hz. */
Shaohua Li311089d2009-11-26 14:22:41 +0800979 msleep(20);
Jesse Barnes79e53942008-11-07 14:24:08 -0800980}
981
Jesse Barnes80824002009-09-10 15:28:06 -0700982/* Parameters have changed, update FBC info */
983static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
984{
985 struct drm_device *dev = crtc->dev;
986 struct drm_i915_private *dev_priv = dev->dev_private;
987 struct drm_framebuffer *fb = crtc->fb;
988 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +0100989 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -0700990 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
991 int plane, i;
992 u32 fbc_ctl, fbc_ctl2;
993
994 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
995
996 if (fb->pitch < dev_priv->cfb_pitch)
997 dev_priv->cfb_pitch = fb->pitch;
998
999 /* FBC_CTL wants 64B units */
1000 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1001 dev_priv->cfb_fence = obj_priv->fence_reg;
1002 dev_priv->cfb_plane = intel_crtc->plane;
1003 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1004
1005 /* Clear old tags */
1006 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1007 I915_WRITE(FBC_TAG + (i * 4), 0);
1008
1009 /* Set it up... */
1010 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
1011 if (obj_priv->tiling_mode != I915_TILING_NONE)
1012 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1013 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1014 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1015
1016 /* enable it... */
1017 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001018 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001019 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001020 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1021 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
1022 if (obj_priv->tiling_mode != I915_TILING_NONE)
1023 fbc_ctl |= dev_priv->cfb_fence;
1024 I915_WRITE(FBC_CONTROL, fbc_ctl);
1025
Zhao Yakui28c97732009-10-09 11:39:41 +08001026 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Jesse Barnes80824002009-09-10 15:28:06 -07001027 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
1028}
1029
1030void i8xx_disable_fbc(struct drm_device *dev)
1031{
1032 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9517a922010-05-21 09:40:45 -07001033 unsigned long timeout = jiffies + msecs_to_jiffies(1);
Jesse Barnes80824002009-09-10 15:28:06 -07001034 u32 fbc_ctl;
1035
Jesse Barnesc1a1cdc2009-09-16 15:05:00 -07001036 if (!I915_HAS_FBC(dev))
1037 return;
1038
Jesse Barnes9517a922010-05-21 09:40:45 -07001039 if (!(I915_READ(FBC_CONTROL) & FBC_CTL_EN))
1040 return; /* Already off, just return */
1041
Jesse Barnes80824002009-09-10 15:28:06 -07001042 /* Disable compression */
1043 fbc_ctl = I915_READ(FBC_CONTROL);
1044 fbc_ctl &= ~FBC_CTL_EN;
1045 I915_WRITE(FBC_CONTROL, fbc_ctl);
1046
1047 /* Wait for compressing bit to clear */
Jesse Barnes9517a922010-05-21 09:40:45 -07001048 while (I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) {
1049 if (time_after(jiffies, timeout)) {
1050 DRM_DEBUG_DRIVER("FBC idle timed out\n");
1051 break;
1052 }
1053 ; /* do nothing */
1054 }
Jesse Barnes80824002009-09-10 15:28:06 -07001055
1056 intel_wait_for_vblank(dev);
1057
Zhao Yakui28c97732009-10-09 11:39:41 +08001058 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001059}
1060
Adam Jacksonee5382a2010-04-23 11:17:39 -04001061static bool i8xx_fbc_enabled(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001062{
Jesse Barnes80824002009-09-10 15:28:06 -07001063 struct drm_i915_private *dev_priv = dev->dev_private;
1064
1065 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1066}
1067
Jesse Barnes74dff282009-09-14 15:39:40 -07001068static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1069{
1070 struct drm_device *dev = crtc->dev;
1071 struct drm_i915_private *dev_priv = dev->dev_private;
1072 struct drm_framebuffer *fb = crtc->fb;
1073 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001074 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes74dff282009-09-14 15:39:40 -07001075 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1076 int plane = (intel_crtc->plane == 0 ? DPFC_CTL_PLANEA :
1077 DPFC_CTL_PLANEB);
1078 unsigned long stall_watermark = 200;
1079 u32 dpfc_ctl;
1080
1081 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1082 dev_priv->cfb_fence = obj_priv->fence_reg;
1083 dev_priv->cfb_plane = intel_crtc->plane;
1084
1085 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
1086 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1087 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1088 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1089 } else {
1090 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1091 }
1092
1093 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1094 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1095 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1096 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1097 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1098
1099 /* enable it... */
1100 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1101
Zhao Yakui28c97732009-10-09 11:39:41 +08001102 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001103}
1104
1105void g4x_disable_fbc(struct drm_device *dev)
1106{
1107 struct drm_i915_private *dev_priv = dev->dev_private;
1108 u32 dpfc_ctl;
1109
1110 /* Disable compression */
1111 dpfc_ctl = I915_READ(DPFC_CONTROL);
1112 dpfc_ctl &= ~DPFC_CTL_EN;
1113 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1114 intel_wait_for_vblank(dev);
1115
Zhao Yakui28c97732009-10-09 11:39:41 +08001116 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes74dff282009-09-14 15:39:40 -07001117}
1118
Adam Jacksonee5382a2010-04-23 11:17:39 -04001119static bool g4x_fbc_enabled(struct drm_device *dev)
Jesse Barnes74dff282009-09-14 15:39:40 -07001120{
Jesse Barnes74dff282009-09-14 15:39:40 -07001121 struct drm_i915_private *dev_priv = dev->dev_private;
1122
1123 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1124}
1125
Adam Jacksonee5382a2010-04-23 11:17:39 -04001126bool intel_fbc_enabled(struct drm_device *dev)
1127{
1128 struct drm_i915_private *dev_priv = dev->dev_private;
1129
1130 if (!dev_priv->display.fbc_enabled)
1131 return false;
1132
1133 return dev_priv->display.fbc_enabled(dev);
1134}
1135
1136void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1137{
1138 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1139
1140 if (!dev_priv->display.enable_fbc)
1141 return;
1142
1143 dev_priv->display.enable_fbc(crtc, interval);
1144}
1145
1146void intel_disable_fbc(struct drm_device *dev)
1147{
1148 struct drm_i915_private *dev_priv = dev->dev_private;
1149
1150 if (!dev_priv->display.disable_fbc)
1151 return;
1152
1153 dev_priv->display.disable_fbc(dev);
1154}
1155
Jesse Barnes80824002009-09-10 15:28:06 -07001156/**
1157 * intel_update_fbc - enable/disable FBC as needed
1158 * @crtc: CRTC to point the compressor at
1159 * @mode: mode in use
1160 *
1161 * Set up the framebuffer compression hardware at mode set time. We
1162 * enable it if possible:
1163 * - plane A only (on pre-965)
1164 * - no pixel mulitply/line duplication
1165 * - no alpha buffer discard
1166 * - no dual wide
1167 * - framebuffer <= 2048 in width, 1536 in height
1168 *
1169 * We can't assume that any compression will take place (worst case),
1170 * so the compressed buffer has to be the same size as the uncompressed
1171 * one. It also must reside (along with the line length buffer) in
1172 * stolen memory.
1173 *
1174 * We need to enable/disable FBC on a global basis.
1175 */
1176static void intel_update_fbc(struct drm_crtc *crtc,
1177 struct drm_display_mode *mode)
1178{
1179 struct drm_device *dev = crtc->dev;
1180 struct drm_i915_private *dev_priv = dev->dev_private;
1181 struct drm_framebuffer *fb = crtc->fb;
1182 struct intel_framebuffer *intel_fb;
1183 struct drm_i915_gem_object *obj_priv;
1184 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1185 int plane = intel_crtc->plane;
1186
1187 if (!i915_powersave)
1188 return;
1189
Adam Jacksonee5382a2010-04-23 11:17:39 -04001190 if (!I915_HAS_FBC(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07001191 return;
1192
Jesse Barnes80824002009-09-10 15:28:06 -07001193 if (!crtc->fb)
1194 return;
1195
1196 intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001197 obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -07001198
1199 /*
1200 * If FBC is already on, we just have to verify that we can
1201 * keep it that way...
1202 * Need to disable if:
1203 * - changing FBC params (stride, fence, mode)
1204 * - new fb is too large to fit in compressed buffer
1205 * - going to an unsupported config (interlace, pixel multiply, etc.)
1206 */
1207 if (intel_fb->obj->size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001208 DRM_DEBUG_KMS("framebuffer too large, disabling "
1209 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001210 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001211 goto out_disable;
1212 }
1213 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
1214 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001215 DRM_DEBUG_KMS("mode incompatible with compression, "
1216 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001217 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001218 goto out_disable;
1219 }
1220 if ((mode->hdisplay > 2048) ||
1221 (mode->vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001222 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001223 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001224 goto out_disable;
1225 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001226 if ((IS_I915GM(dev) || IS_I945GM(dev)) && plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001227 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001228 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001229 goto out_disable;
1230 }
1231 if (obj_priv->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001232 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001233 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001234 goto out_disable;
1235 }
1236
Adam Jacksonee5382a2010-04-23 11:17:39 -04001237 if (intel_fbc_enabled(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001238 /* We can re-enable it in this case, but need to update pitch */
Adam Jacksonee5382a2010-04-23 11:17:39 -04001239 if ((fb->pitch > dev_priv->cfb_pitch) ||
1240 (obj_priv->fence_reg != dev_priv->cfb_fence) ||
1241 (plane != dev_priv->cfb_plane))
1242 intel_disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001243 }
1244
Adam Jacksonee5382a2010-04-23 11:17:39 -04001245 /* Now try to turn it back on if possible */
1246 if (!intel_fbc_enabled(dev))
1247 intel_enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001248
1249 return;
1250
1251out_disable:
Jesse Barnes80824002009-09-10 15:28:06 -07001252 /* Multiple disables should be harmless */
Chris Wilsona9394062010-05-27 13:18:16 +01001253 if (intel_fbc_enabled(dev)) {
1254 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Adam Jacksonee5382a2010-04-23 11:17:39 -04001255 intel_disable_fbc(dev);
Chris Wilsona9394062010-05-27 13:18:16 +01001256 }
Jesse Barnes80824002009-09-10 15:28:06 -07001257}
1258
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001259static int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001260intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj)
1261{
Daniel Vetter23010e42010-03-08 13:35:02 +01001262 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001263 u32 alignment;
1264 int ret;
1265
1266 switch (obj_priv->tiling_mode) {
1267 case I915_TILING_NONE:
1268 alignment = 64 * 1024;
1269 break;
1270 case I915_TILING_X:
1271 /* pin() will align the object as required by fence */
1272 alignment = 0;
1273 break;
1274 case I915_TILING_Y:
1275 /* FIXME: Is this true? */
1276 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1277 return -EINVAL;
1278 default:
1279 BUG();
1280 }
1281
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001282 ret = i915_gem_object_pin(obj, alignment);
1283 if (ret != 0)
1284 return ret;
1285
1286 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1287 * fence, whereas 965+ only requires a fence if using
1288 * framebuffer compression. For simplicity, we always install
1289 * a fence as the cost is not that onerous.
1290 */
1291 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
1292 obj_priv->tiling_mode != I915_TILING_NONE) {
1293 ret = i915_gem_object_get_fence_reg(obj);
1294 if (ret != 0) {
1295 i915_gem_object_unpin(obj);
1296 return ret;
1297 }
1298 }
1299
1300 return 0;
1301}
1302
1303static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001304intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1305 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001306{
1307 struct drm_device *dev = crtc->dev;
1308 struct drm_i915_private *dev_priv = dev->dev_private;
1309 struct drm_i915_master_private *master_priv;
1310 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1311 struct intel_framebuffer *intel_fb;
1312 struct drm_i915_gem_object *obj_priv;
1313 struct drm_gem_object *obj;
1314 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001315 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08001316 unsigned long Start, Offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001317 int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR);
1318 int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF);
1319 int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE;
1320 int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF);
1321 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001322 u32 dspcntr;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001323 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001324
1325 /* no fb bound */
1326 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001327 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001328 return 0;
1329 }
1330
Jesse Barnes80824002009-09-10 15:28:06 -07001331 switch (plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001332 case 0:
1333 case 1:
1334 break;
1335 default:
Jesse Barnes80824002009-09-10 15:28:06 -07001336 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001337 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001338 }
1339
1340 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08001341 obj = intel_fb->obj;
Daniel Vetter23010e42010-03-08 13:35:02 +01001342 obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08001343
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001344 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001345 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001346 if (ret != 0) {
1347 mutex_unlock(&dev->struct_mutex);
1348 return ret;
1349 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001350
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08001351 ret = i915_gem_object_set_to_display_plane(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001352 if (ret != 0) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001353 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001354 mutex_unlock(&dev->struct_mutex);
1355 return ret;
1356 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001357
1358 dspcntr = I915_READ(dspcntr_reg);
Jesse Barnes712531b2009-01-09 13:56:14 -08001359 /* Mask out pixel format bits in case we change it */
1360 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Jesse Barnes79e53942008-11-07 14:24:08 -08001361 switch (crtc->fb->bits_per_pixel) {
1362 case 8:
1363 dspcntr |= DISPPLANE_8BPP;
1364 break;
1365 case 16:
1366 if (crtc->fb->depth == 15)
1367 dspcntr |= DISPPLANE_15_16BPP;
1368 else
1369 dspcntr |= DISPPLANE_16BPP;
1370 break;
1371 case 24:
1372 case 32:
Kristian Høgsberga4f45cf2009-10-19 14:35:30 -04001373 if (crtc->fb->depth == 30)
1374 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1375 else
1376 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
Jesse Barnes79e53942008-11-07 14:24:08 -08001377 break;
1378 default:
1379 DRM_ERROR("Unknown color depth\n");
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001380 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001381 mutex_unlock(&dev->struct_mutex);
1382 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001383 }
Jesse Barnesf5448472009-04-14 14:17:47 -07001384 if (IS_I965G(dev)) {
1385 if (obj_priv->tiling_mode != I915_TILING_NONE)
1386 dspcntr |= DISPPLANE_TILED;
1387 else
1388 dspcntr &= ~DISPPLANE_TILED;
1389 }
1390
Eric Anholtbad720f2009-10-22 16:11:14 -07001391 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang553bd142009-09-02 10:57:52 +08001392 /* must disable */
1393 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1394
Jesse Barnes79e53942008-11-07 14:24:08 -08001395 I915_WRITE(dspcntr_reg, dspcntr);
1396
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001397 Start = obj_priv->gtt_offset;
1398 Offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
1399
Chris Wilsona7faf322010-05-27 13:18:17 +01001400 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
1401 Start, Offset, x, y, crtc->fb->pitch);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001402 I915_WRITE(dspstride, crtc->fb->pitch);
Jesse Barnes79e53942008-11-07 14:24:08 -08001403 if (IS_I965G(dev)) {
1404 I915_WRITE(dspbase, Offset);
1405 I915_READ(dspbase);
1406 I915_WRITE(dspsurf, Start);
1407 I915_READ(dspsurf);
Jesse Barnesf5448472009-04-14 14:17:47 -07001408 I915_WRITE(dsptileoff, (y << 16) | x);
Jesse Barnes79e53942008-11-07 14:24:08 -08001409 } else {
1410 I915_WRITE(dspbase, Start + Offset);
1411 I915_READ(dspbase);
1412 }
1413
Jesse Barnes74dff282009-09-14 15:39:40 -07001414 if ((IS_I965G(dev) || plane == 0))
Jesse Barnesedb81952009-09-17 17:06:47 -07001415 intel_update_fbc(crtc, &crtc->mode);
1416
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001417 intel_wait_for_vblank(dev);
1418
1419 if (old_fb) {
1420 intel_fb = to_intel_framebuffer(old_fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001421 obj_priv = to_intel_bo(intel_fb->obj);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001422 i915_gem_object_unpin(intel_fb->obj);
1423 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001424 intel_increase_pllclock(crtc, true);
1425
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001426 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001427
1428 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001429 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001430
1431 master_priv = dev->primary->master->driver_priv;
1432 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001433 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001434
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001435 if (pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001436 master_priv->sarea_priv->pipeB_x = x;
1437 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001438 } else {
1439 master_priv->sarea_priv->pipeA_x = x;
1440 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001441 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001442
1443 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001444}
1445
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001446/* Disable the VGA plane that we never use */
1447static void i915_disable_vga (struct drm_device *dev)
1448{
1449 struct drm_i915_private *dev_priv = dev->dev_private;
1450 u8 sr1;
1451 u32 vga_reg;
1452
Eric Anholtbad720f2009-10-22 16:11:14 -07001453 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001454 vga_reg = CPU_VGACNTRL;
1455 else
1456 vga_reg = VGACNTRL;
1457
1458 if (I915_READ(vga_reg) & VGA_DISP_DISABLE)
1459 return;
1460
1461 I915_WRITE8(VGA_SR_INDEX, 1);
1462 sr1 = I915_READ8(VGA_SR_DATA);
1463 I915_WRITE8(VGA_SR_DATA, sr1 | (1 << 5));
1464 udelay(100);
1465
1466 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
1467}
1468
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001469static void ironlake_disable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001470{
1471 struct drm_device *dev = crtc->dev;
1472 struct drm_i915_private *dev_priv = dev->dev_private;
1473 u32 dpa_ctl;
1474
Zhao Yakui28c97732009-10-09 11:39:41 +08001475 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001476 dpa_ctl = I915_READ(DP_A);
1477 dpa_ctl &= ~DP_PLL_ENABLE;
1478 I915_WRITE(DP_A, dpa_ctl);
1479}
1480
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001481static void ironlake_enable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001482{
1483 struct drm_device *dev = crtc->dev;
1484 struct drm_i915_private *dev_priv = dev->dev_private;
1485 u32 dpa_ctl;
1486
1487 dpa_ctl = I915_READ(DP_A);
1488 dpa_ctl |= DP_PLL_ENABLE;
1489 I915_WRITE(DP_A, dpa_ctl);
1490 udelay(200);
1491}
1492
1493
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001494static void ironlake_set_pll_edp (struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001495{
1496 struct drm_device *dev = crtc->dev;
1497 struct drm_i915_private *dev_priv = dev->dev_private;
1498 u32 dpa_ctl;
1499
Zhao Yakui28c97732009-10-09 11:39:41 +08001500 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001501 dpa_ctl = I915_READ(DP_A);
1502 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1503
1504 if (clock < 200000) {
1505 u32 temp;
1506 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1507 /* workaround for 160Mhz:
1508 1) program 0x4600c bits 15:0 = 0x8124
1509 2) program 0x46010 bit 0 = 1
1510 3) program 0x46034 bit 24 = 1
1511 4) program 0x64000 bit 14 = 1
1512 */
1513 temp = I915_READ(0x4600c);
1514 temp &= 0xffff0000;
1515 I915_WRITE(0x4600c, temp | 0x8124);
1516
1517 temp = I915_READ(0x46010);
1518 I915_WRITE(0x46010, temp | 1);
1519
1520 temp = I915_READ(0x46034);
1521 I915_WRITE(0x46034, temp | (1 << 24));
1522 } else {
1523 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1524 }
1525 I915_WRITE(DP_A, dpa_ctl);
1526
1527 udelay(500);
1528}
1529
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001530/* The FDI link training functions for ILK/Ibexpeak. */
1531static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1532{
1533 struct drm_device *dev = crtc->dev;
1534 struct drm_i915_private *dev_priv = dev->dev_private;
1535 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1536 int pipe = intel_crtc->pipe;
1537 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1538 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1539 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1540 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1541 u32 temp, tries = 0;
1542
1543 /* enable CPU FDI TX and PCH FDI RX */
1544 temp = I915_READ(fdi_tx_reg);
1545 temp |= FDI_TX_ENABLE;
Adam Jackson77ffb592010-04-12 11:38:44 -04001546 temp &= ~(7 << 19);
1547 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001548 temp &= ~FDI_LINK_TRAIN_NONE;
1549 temp |= FDI_LINK_TRAIN_PATTERN_1;
1550 I915_WRITE(fdi_tx_reg, temp);
1551 I915_READ(fdi_tx_reg);
1552
1553 temp = I915_READ(fdi_rx_reg);
1554 temp &= ~FDI_LINK_TRAIN_NONE;
1555 temp |= FDI_LINK_TRAIN_PATTERN_1;
1556 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1557 I915_READ(fdi_rx_reg);
1558 udelay(150);
1559
1560 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1561 for train result */
1562 temp = I915_READ(fdi_rx_imr_reg);
1563 temp &= ~FDI_RX_SYMBOL_LOCK;
1564 temp &= ~FDI_RX_BIT_LOCK;
1565 I915_WRITE(fdi_rx_imr_reg, temp);
1566 I915_READ(fdi_rx_imr_reg);
1567 udelay(150);
1568
1569 for (;;) {
1570 temp = I915_READ(fdi_rx_iir_reg);
1571 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1572
1573 if ((temp & FDI_RX_BIT_LOCK)) {
1574 DRM_DEBUG_KMS("FDI train 1 done.\n");
1575 I915_WRITE(fdi_rx_iir_reg,
1576 temp | FDI_RX_BIT_LOCK);
1577 break;
1578 }
1579
1580 tries++;
1581
1582 if (tries > 5) {
1583 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1584 break;
1585 }
1586 }
1587
1588 /* Train 2 */
1589 temp = I915_READ(fdi_tx_reg);
1590 temp &= ~FDI_LINK_TRAIN_NONE;
1591 temp |= FDI_LINK_TRAIN_PATTERN_2;
1592 I915_WRITE(fdi_tx_reg, temp);
1593
1594 temp = I915_READ(fdi_rx_reg);
1595 temp &= ~FDI_LINK_TRAIN_NONE;
1596 temp |= FDI_LINK_TRAIN_PATTERN_2;
1597 I915_WRITE(fdi_rx_reg, temp);
1598 udelay(150);
1599
1600 tries = 0;
1601
1602 for (;;) {
1603 temp = I915_READ(fdi_rx_iir_reg);
1604 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1605
1606 if (temp & FDI_RX_SYMBOL_LOCK) {
1607 I915_WRITE(fdi_rx_iir_reg,
1608 temp | FDI_RX_SYMBOL_LOCK);
1609 DRM_DEBUG_KMS("FDI train 2 done.\n");
1610 break;
1611 }
1612
1613 tries++;
1614
1615 if (tries > 5) {
1616 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1617 break;
1618 }
1619 }
1620
1621 DRM_DEBUG_KMS("FDI train done\n");
1622}
1623
1624static int snb_b_fdi_train_param [] = {
1625 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1626 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1627 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1628 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1629};
1630
1631/* The FDI link training functions for SNB/Cougarpoint. */
1632static void gen6_fdi_link_train(struct drm_crtc *crtc)
1633{
1634 struct drm_device *dev = crtc->dev;
1635 struct drm_i915_private *dev_priv = dev->dev_private;
1636 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1637 int pipe = intel_crtc->pipe;
1638 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1639 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1640 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1641 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1642 u32 temp, i;
1643
1644 /* enable CPU FDI TX and PCH FDI RX */
1645 temp = I915_READ(fdi_tx_reg);
1646 temp |= FDI_TX_ENABLE;
Adam Jackson77ffb592010-04-12 11:38:44 -04001647 temp &= ~(7 << 19);
1648 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001649 temp &= ~FDI_LINK_TRAIN_NONE;
1650 temp |= FDI_LINK_TRAIN_PATTERN_1;
1651 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1652 /* SNB-B */
1653 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1654 I915_WRITE(fdi_tx_reg, temp);
1655 I915_READ(fdi_tx_reg);
1656
1657 temp = I915_READ(fdi_rx_reg);
1658 if (HAS_PCH_CPT(dev)) {
1659 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1660 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1661 } else {
1662 temp &= ~FDI_LINK_TRAIN_NONE;
1663 temp |= FDI_LINK_TRAIN_PATTERN_1;
1664 }
1665 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1666 I915_READ(fdi_rx_reg);
1667 udelay(150);
1668
1669 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1670 for train result */
1671 temp = I915_READ(fdi_rx_imr_reg);
1672 temp &= ~FDI_RX_SYMBOL_LOCK;
1673 temp &= ~FDI_RX_BIT_LOCK;
1674 I915_WRITE(fdi_rx_imr_reg, temp);
1675 I915_READ(fdi_rx_imr_reg);
1676 udelay(150);
1677
1678 for (i = 0; i < 4; i++ ) {
1679 temp = I915_READ(fdi_tx_reg);
1680 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1681 temp |= snb_b_fdi_train_param[i];
1682 I915_WRITE(fdi_tx_reg, temp);
1683 udelay(500);
1684
1685 temp = I915_READ(fdi_rx_iir_reg);
1686 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1687
1688 if (temp & FDI_RX_BIT_LOCK) {
1689 I915_WRITE(fdi_rx_iir_reg,
1690 temp | FDI_RX_BIT_LOCK);
1691 DRM_DEBUG_KMS("FDI train 1 done.\n");
1692 break;
1693 }
1694 }
1695 if (i == 4)
1696 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1697
1698 /* Train 2 */
1699 temp = I915_READ(fdi_tx_reg);
1700 temp &= ~FDI_LINK_TRAIN_NONE;
1701 temp |= FDI_LINK_TRAIN_PATTERN_2;
1702 if (IS_GEN6(dev)) {
1703 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1704 /* SNB-B */
1705 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1706 }
1707 I915_WRITE(fdi_tx_reg, temp);
1708
1709 temp = I915_READ(fdi_rx_reg);
1710 if (HAS_PCH_CPT(dev)) {
1711 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1712 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1713 } else {
1714 temp &= ~FDI_LINK_TRAIN_NONE;
1715 temp |= FDI_LINK_TRAIN_PATTERN_2;
1716 }
1717 I915_WRITE(fdi_rx_reg, temp);
1718 udelay(150);
1719
1720 for (i = 0; i < 4; i++ ) {
1721 temp = I915_READ(fdi_tx_reg);
1722 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1723 temp |= snb_b_fdi_train_param[i];
1724 I915_WRITE(fdi_tx_reg, temp);
1725 udelay(500);
1726
1727 temp = I915_READ(fdi_rx_iir_reg);
1728 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1729
1730 if (temp & FDI_RX_SYMBOL_LOCK) {
1731 I915_WRITE(fdi_rx_iir_reg,
1732 temp | FDI_RX_SYMBOL_LOCK);
1733 DRM_DEBUG_KMS("FDI train 2 done.\n");
1734 break;
1735 }
1736 }
1737 if (i == 4)
1738 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1739
1740 DRM_DEBUG_KMS("FDI train done.\n");
1741}
1742
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001743static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08001744{
1745 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001746 struct drm_i915_private *dev_priv = dev->dev_private;
1747 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1748 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001749 int plane = intel_crtc->plane;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001750 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
1751 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1752 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1753 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
1754 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1755 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001756 int transconf_reg = (pipe == 0) ? TRANSACONF : TRANSBCONF;
1757 int pf_ctl_reg = (pipe == 0) ? PFA_CTL_1 : PFB_CTL_1;
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001758 int pf_win_size = (pipe == 0) ? PFA_WIN_SZ : PFB_WIN_SZ;
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001759 int pf_win_pos = (pipe == 0) ? PFA_WIN_POS : PFB_WIN_POS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001760 int cpu_htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
1761 int cpu_hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
1762 int cpu_hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
1763 int cpu_vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
1764 int cpu_vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
1765 int cpu_vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
1766 int trans_htot_reg = (pipe == 0) ? TRANS_HTOTAL_A : TRANS_HTOTAL_B;
1767 int trans_hblank_reg = (pipe == 0) ? TRANS_HBLANK_A : TRANS_HBLANK_B;
1768 int trans_hsync_reg = (pipe == 0) ? TRANS_HSYNC_A : TRANS_HSYNC_B;
1769 int trans_vtot_reg = (pipe == 0) ? TRANS_VTOTAL_A : TRANS_VTOTAL_B;
1770 int trans_vblank_reg = (pipe == 0) ? TRANS_VBLANK_A : TRANS_VBLANK_B;
1771 int trans_vsync_reg = (pipe == 0) ? TRANS_VSYNC_A : TRANS_VSYNC_B;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001772 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001773 u32 temp;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001774 int n;
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001775 u32 pipe_bpc;
1776
1777 temp = I915_READ(pipeconf_reg);
1778 pipe_bpc = temp & PIPE_BPC_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001779
1780 /* XXX: When our outputs are all unaware of DPMS modes other than off
1781 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
1782 */
1783 switch (mode) {
1784 case DRM_MODE_DPMS_ON:
1785 case DRM_MODE_DPMS_STANDBY:
1786 case DRM_MODE_DPMS_SUSPEND:
Zhao Yakui28c97732009-10-09 11:39:41 +08001787 DRM_DEBUG_KMS("crtc %d dpms on\n", pipe);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001788
1789 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1790 temp = I915_READ(PCH_LVDS);
1791 if ((temp & LVDS_PORT_EN) == 0) {
1792 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
1793 POSTING_READ(PCH_LVDS);
1794 }
1795 }
1796
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001797 if (HAS_eDP) {
1798 /* enable eDP PLL */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001799 ironlake_enable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001800 } else {
Zhenyu Wang2c072452009-06-05 15:38:42 +08001801
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001802 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
1803 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001804 /*
1805 * make the BPC in FDI Rx be consistent with that in
1806 * pipeconf reg.
1807 */
1808 temp &= ~(0x7 << 16);
1809 temp |= (pipe_bpc << 11);
Adam Jackson77ffb592010-04-12 11:38:44 -04001810 temp &= ~(7 << 19);
1811 temp |= (intel_crtc->fdi_lanes - 1) << 19;
1812 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001813 I915_READ(fdi_rx_reg);
1814 udelay(200);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001815
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001816 /* Switch from Rawclk to PCDclk */
1817 temp = I915_READ(fdi_rx_reg);
1818 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001819 I915_READ(fdi_rx_reg);
1820 udelay(200);
1821
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001822 /* Enable CPU FDI TX PLL, always on for Ironlake */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001823 temp = I915_READ(fdi_tx_reg);
1824 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
1825 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
1826 I915_READ(fdi_tx_reg);
1827 udelay(100);
1828 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001829 }
1830
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001831 /* Enable panel fitting for LVDS */
1832 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1833 temp = I915_READ(pf_ctl_reg);
Zhenyu Wangb1f60b72009-10-19 15:43:49 +08001834 I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3);
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001835
1836 /* currently full aspect */
1837 I915_WRITE(pf_win_pos, 0);
1838
1839 I915_WRITE(pf_win_size,
1840 (dev_priv->panel_fixed_mode->hdisplay << 16) |
1841 (dev_priv->panel_fixed_mode->vdisplay));
1842 }
1843
Zhenyu Wang2c072452009-06-05 15:38:42 +08001844 /* Enable CPU pipe */
1845 temp = I915_READ(pipeconf_reg);
1846 if ((temp & PIPEACONF_ENABLE) == 0) {
1847 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
1848 I915_READ(pipeconf_reg);
1849 udelay(100);
1850 }
1851
1852 /* configure and enable CPU plane */
1853 temp = I915_READ(dspcntr_reg);
1854 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
1855 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
1856 /* Flush the plane changes */
1857 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1858 }
1859
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001860 if (!HAS_eDP) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001861 /* For PCH output, training FDI link */
1862 if (IS_GEN6(dev))
1863 gen6_fdi_link_train(crtc);
1864 else
1865 ironlake_fdi_link_train(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001866
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001867 /* enable PCH DPLL */
1868 temp = I915_READ(pch_dpll_reg);
1869 if ((temp & DPLL_VCO_ENABLE) == 0) {
1870 I915_WRITE(pch_dpll_reg, temp | DPLL_VCO_ENABLE);
1871 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001872 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001873 udelay(200);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001874
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001875 if (HAS_PCH_CPT(dev)) {
1876 /* Be sure PCH DPLL SEL is set */
1877 temp = I915_READ(PCH_DPLL_SEL);
1878 if (trans_dpll_sel == 0 &&
1879 (temp & TRANSA_DPLL_ENABLE) == 0)
1880 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
1881 else if (trans_dpll_sel == 1 &&
1882 (temp & TRANSB_DPLL_ENABLE) == 0)
1883 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
1884 I915_WRITE(PCH_DPLL_SEL, temp);
1885 I915_READ(PCH_DPLL_SEL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001886 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001887
1888 /* set transcoder timing */
1889 I915_WRITE(trans_htot_reg, I915_READ(cpu_htot_reg));
1890 I915_WRITE(trans_hblank_reg, I915_READ(cpu_hblank_reg));
1891 I915_WRITE(trans_hsync_reg, I915_READ(cpu_hsync_reg));
1892
1893 I915_WRITE(trans_vtot_reg, I915_READ(cpu_vtot_reg));
1894 I915_WRITE(trans_vblank_reg, I915_READ(cpu_vblank_reg));
1895 I915_WRITE(trans_vsync_reg, I915_READ(cpu_vsync_reg));
1896
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001897 /* enable normal train */
1898 temp = I915_READ(fdi_tx_reg);
1899 temp &= ~FDI_LINK_TRAIN_NONE;
1900 I915_WRITE(fdi_tx_reg, temp | FDI_LINK_TRAIN_NONE |
1901 FDI_TX_ENHANCE_FRAME_ENABLE);
1902 I915_READ(fdi_tx_reg);
1903
1904 temp = I915_READ(fdi_rx_reg);
1905 if (HAS_PCH_CPT(dev)) {
1906 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1907 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
1908 } else {
1909 temp &= ~FDI_LINK_TRAIN_NONE;
1910 temp |= FDI_LINK_TRAIN_NONE;
1911 }
1912 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
1913 I915_READ(fdi_rx_reg);
1914
1915 /* wait one idle pattern time */
1916 udelay(100);
1917
Zhenyu Wange3421a12010-04-08 09:43:27 +08001918 /* For PCH DP, enable TRANS_DP_CTL */
1919 if (HAS_PCH_CPT(dev) &&
1920 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
1921 int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B;
1922 int reg;
1923
1924 reg = I915_READ(trans_dp_ctl);
1925 reg &= ~TRANS_DP_PORT_SEL_MASK;
1926 reg = TRANS_DP_OUTPUT_ENABLE |
1927 TRANS_DP_ENH_FRAMING |
1928 TRANS_DP_VSYNC_ACTIVE_HIGH |
1929 TRANS_DP_HSYNC_ACTIVE_HIGH;
1930
1931 switch (intel_trans_dp_port_sel(crtc)) {
1932 case PCH_DP_B:
1933 reg |= TRANS_DP_PORT_SEL_B;
1934 break;
1935 case PCH_DP_C:
1936 reg |= TRANS_DP_PORT_SEL_C;
1937 break;
1938 case PCH_DP_D:
1939 reg |= TRANS_DP_PORT_SEL_D;
1940 break;
1941 default:
1942 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
1943 reg |= TRANS_DP_PORT_SEL_B;
1944 break;
1945 }
1946
1947 I915_WRITE(trans_dp_ctl, reg);
1948 POSTING_READ(trans_dp_ctl);
1949 }
1950
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001951 /* enable PCH transcoder */
1952 temp = I915_READ(transconf_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001953 /*
1954 * make the BPC in transcoder be consistent with
1955 * that in pipeconf reg.
1956 */
1957 temp &= ~PIPE_BPC_MASK;
1958 temp |= pipe_bpc;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001959 I915_WRITE(transconf_reg, temp | TRANS_ENABLE);
1960 I915_READ(transconf_reg);
1961
1962 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) == 0)
1963 ;
1964
Zhenyu Wang2c072452009-06-05 15:38:42 +08001965 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001966
1967 intel_crtc_load_lut(crtc);
1968
1969 break;
1970 case DRM_MODE_DPMS_OFF:
Zhao Yakui28c97732009-10-09 11:39:41 +08001971 DRM_DEBUG_KMS("crtc %d dpms off\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001972
Li Pengc062df62010-01-23 00:12:58 +08001973 drm_vblank_off(dev, pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001974 /* Disable display plane */
1975 temp = I915_READ(dspcntr_reg);
1976 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
1977 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
1978 /* Flush the plane changes */
1979 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1980 I915_READ(dspbase_reg);
1981 }
1982
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001983 i915_disable_vga(dev);
1984
Zhenyu Wang2c072452009-06-05 15:38:42 +08001985 /* disable cpu pipe, disable after all planes disabled */
1986 temp = I915_READ(pipeconf_reg);
1987 if ((temp & PIPEACONF_ENABLE) != 0) {
1988 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
1989 I915_READ(pipeconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001990 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001991 /* wait for cpu pipe off, pipe state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001992 while ((I915_READ(pipeconf_reg) & I965_PIPECONF_ACTIVE) != 0) {
1993 n++;
1994 if (n < 60) {
1995 udelay(500);
1996 continue;
1997 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08001998 DRM_DEBUG_KMS("pipe %d off delay\n",
1999 pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002000 break;
2001 }
2002 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002003 } else
Zhao Yakui28c97732009-10-09 11:39:41 +08002004 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002005
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002006 udelay(100);
2007
2008 /* Disable PF */
2009 temp = I915_READ(pf_ctl_reg);
2010 if ((temp & PF_ENABLE) != 0) {
2011 I915_WRITE(pf_ctl_reg, temp & ~PF_ENABLE);
2012 I915_READ(pf_ctl_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002013 }
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002014 I915_WRITE(pf_win_size, 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002015 POSTING_READ(pf_win_size);
2016
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002017
Zhenyu Wang2c072452009-06-05 15:38:42 +08002018 /* disable CPU FDI tx and PCH FDI rx */
2019 temp = I915_READ(fdi_tx_reg);
2020 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_ENABLE);
2021 I915_READ(fdi_tx_reg);
2022
2023 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002024 /* BPC in FDI rx is consistent with that in pipeconf */
2025 temp &= ~(0x07 << 16);
2026 temp |= (pipe_bpc << 11);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002027 I915_WRITE(fdi_rx_reg, temp & ~FDI_RX_ENABLE);
2028 I915_READ(fdi_rx_reg);
2029
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002030 udelay(100);
2031
Zhenyu Wang2c072452009-06-05 15:38:42 +08002032 /* still set train pattern 1 */
2033 temp = I915_READ(fdi_tx_reg);
2034 temp &= ~FDI_LINK_TRAIN_NONE;
2035 temp |= FDI_LINK_TRAIN_PATTERN_1;
2036 I915_WRITE(fdi_tx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002037 POSTING_READ(fdi_tx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002038
2039 temp = I915_READ(fdi_rx_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002040 if (HAS_PCH_CPT(dev)) {
2041 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2042 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2043 } else {
2044 temp &= ~FDI_LINK_TRAIN_NONE;
2045 temp |= FDI_LINK_TRAIN_PATTERN_1;
2046 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002047 I915_WRITE(fdi_rx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002048 POSTING_READ(fdi_rx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002049
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002050 udelay(100);
2051
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002052 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2053 temp = I915_READ(PCH_LVDS);
2054 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2055 I915_READ(PCH_LVDS);
2056 udelay(100);
2057 }
2058
Zhenyu Wang2c072452009-06-05 15:38:42 +08002059 /* disable PCH transcoder */
2060 temp = I915_READ(transconf_reg);
2061 if ((temp & TRANS_ENABLE) != 0) {
2062 I915_WRITE(transconf_reg, temp & ~TRANS_ENABLE);
2063 I915_READ(transconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002064 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002065 /* wait for PCH transcoder off, transcoder state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002066 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) != 0) {
2067 n++;
2068 if (n < 60) {
2069 udelay(500);
2070 continue;
2071 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002072 DRM_DEBUG_KMS("transcoder %d off "
2073 "delay\n", pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002074 break;
2075 }
2076 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002077 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002078
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002079 temp = I915_READ(transconf_reg);
2080 /* BPC in transcoder is consistent with that in pipeconf */
2081 temp &= ~PIPE_BPC_MASK;
2082 temp |= pipe_bpc;
2083 I915_WRITE(transconf_reg, temp);
2084 I915_READ(transconf_reg);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002085 udelay(100);
2086
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002087 if (HAS_PCH_CPT(dev)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002088 /* disable TRANS_DP_CTL */
2089 int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B;
2090 int reg;
2091
2092 reg = I915_READ(trans_dp_ctl);
2093 reg &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
2094 I915_WRITE(trans_dp_ctl, reg);
2095 POSTING_READ(trans_dp_ctl);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002096
2097 /* disable DPLL_SEL */
2098 temp = I915_READ(PCH_DPLL_SEL);
2099 if (trans_dpll_sel == 0)
2100 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2101 else
2102 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2103 I915_WRITE(PCH_DPLL_SEL, temp);
2104 I915_READ(PCH_DPLL_SEL);
2105
2106 }
2107
Zhenyu Wang2c072452009-06-05 15:38:42 +08002108 /* disable PCH DPLL */
2109 temp = I915_READ(pch_dpll_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002110 I915_WRITE(pch_dpll_reg, temp & ~DPLL_VCO_ENABLE);
2111 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002112
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002113 if (HAS_eDP) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002114 ironlake_disable_pll_edp(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002115 }
2116
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002117 /* Switch from PCDclk to Rawclk */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002118 temp = I915_READ(fdi_rx_reg);
2119 temp &= ~FDI_SEL_PCDCLK;
2120 I915_WRITE(fdi_rx_reg, temp);
2121 I915_READ(fdi_rx_reg);
2122
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002123 /* Disable CPU FDI TX PLL */
2124 temp = I915_READ(fdi_tx_reg);
2125 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_PLL_ENABLE);
2126 I915_READ(fdi_tx_reg);
2127 udelay(100);
2128
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002129 temp = I915_READ(fdi_rx_reg);
2130 temp &= ~FDI_RX_PLL_ENABLE;
2131 I915_WRITE(fdi_rx_reg, temp);
2132 I915_READ(fdi_rx_reg);
2133
Zhenyu Wang2c072452009-06-05 15:38:42 +08002134 /* Wait for the clocks to turn off. */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002135 udelay(100);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002136 break;
2137 }
2138}
2139
Daniel Vetter02e792f2009-09-15 22:57:34 +02002140static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2141{
2142 struct intel_overlay *overlay;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002143 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +02002144
2145 if (!enable && intel_crtc->overlay) {
2146 overlay = intel_crtc->overlay;
2147 mutex_lock(&overlay->dev->struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002148 for (;;) {
2149 ret = intel_overlay_switch_off(overlay);
2150 if (ret == 0)
2151 break;
2152
2153 ret = intel_overlay_recover_from_interrupt(overlay, 0);
2154 if (ret != 0) {
2155 /* overlay doesn't react anymore. Usually
2156 * results in a black screen and an unkillable
2157 * X server. */
2158 BUG();
2159 overlay->hw_wedged = HW_WEDGED;
2160 break;
2161 }
2162 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002163 mutex_unlock(&overlay->dev->struct_mutex);
2164 }
2165 /* Let userspace switch the overlay on again. In most cases userspace
2166 * has to recompute where to put it anyway. */
2167
2168 return;
2169}
2170
Zhenyu Wang2c072452009-06-05 15:38:42 +08002171static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2172{
2173 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002174 struct drm_i915_private *dev_priv = dev->dev_private;
2175 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2176 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002177 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002178 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
Jesse Barnes80824002009-09-10 15:28:06 -07002179 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
2180 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
Jesse Barnes79e53942008-11-07 14:24:08 -08002181 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
2182 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08002183
2184 /* XXX: When our outputs are all unaware of DPMS modes other than off
2185 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2186 */
2187 switch (mode) {
2188 case DRM_MODE_DPMS_ON:
2189 case DRM_MODE_DPMS_STANDBY:
2190 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes629598d2009-10-20 07:37:32 +09002191 intel_update_watermarks(dev);
2192
Jesse Barnes79e53942008-11-07 14:24:08 -08002193 /* Enable the DPLL */
2194 temp = I915_READ(dpll_reg);
2195 if ((temp & DPLL_VCO_ENABLE) == 0) {
2196 I915_WRITE(dpll_reg, temp);
2197 I915_READ(dpll_reg);
2198 /* Wait for the clocks to stabilize. */
2199 udelay(150);
2200 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2201 I915_READ(dpll_reg);
2202 /* Wait for the clocks to stabilize. */
2203 udelay(150);
2204 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2205 I915_READ(dpll_reg);
2206 /* Wait for the clocks to stabilize. */
2207 udelay(150);
2208 }
2209
2210 /* Enable the pipe */
2211 temp = I915_READ(pipeconf_reg);
2212 if ((temp & PIPEACONF_ENABLE) == 0)
2213 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
2214
2215 /* Enable the plane */
2216 temp = I915_READ(dspcntr_reg);
2217 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
2218 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
2219 /* Flush the plane changes */
2220 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2221 }
2222
2223 intel_crtc_load_lut(crtc);
2224
Jesse Barnes74dff282009-09-14 15:39:40 -07002225 if ((IS_I965G(dev) || plane == 0))
2226 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnes80824002009-09-10 15:28:06 -07002227
Jesse Barnes79e53942008-11-07 14:24:08 -08002228 /* Give the overlay scaler a chance to enable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002229 intel_crtc_dpms_overlay(intel_crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08002230 break;
2231 case DRM_MODE_DPMS_OFF:
Shaohua Li7662c8b2009-06-26 11:23:55 +08002232 intel_update_watermarks(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002233
Jesse Barnes79e53942008-11-07 14:24:08 -08002234 /* Give the overlay scaler a chance to disable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002235 intel_crtc_dpms_overlay(intel_crtc, false);
Li Peng778c9022009-11-09 12:51:22 +08002236 drm_vblank_off(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08002237
Jesse Barnese70236a2009-09-21 10:42:27 -07002238 if (dev_priv->cfb_plane == plane &&
2239 dev_priv->display.disable_fbc)
2240 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07002241
Jesse Barnes79e53942008-11-07 14:24:08 -08002242 /* Disable the VGA plane that we never use */
Zhenyu Wang24f119c2009-07-24 01:00:28 +08002243 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002244
2245 /* Disable display plane */
2246 temp = I915_READ(dspcntr_reg);
2247 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
2248 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
2249 /* Flush the plane changes */
2250 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2251 I915_READ(dspbase_reg);
2252 }
2253
2254 if (!IS_I9XX(dev)) {
2255 /* Wait for vblank for the disable to take effect */
2256 intel_wait_for_vblank(dev);
2257 }
2258
2259 /* Next, disable display pipes */
2260 temp = I915_READ(pipeconf_reg);
2261 if ((temp & PIPEACONF_ENABLE) != 0) {
2262 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
2263 I915_READ(pipeconf_reg);
2264 }
2265
2266 /* Wait for vblank for the disable to take effect. */
2267 intel_wait_for_vblank(dev);
2268
2269 temp = I915_READ(dpll_reg);
2270 if ((temp & DPLL_VCO_ENABLE) != 0) {
2271 I915_WRITE(dpll_reg, temp & ~DPLL_VCO_ENABLE);
2272 I915_READ(dpll_reg);
2273 }
2274
2275 /* Wait for the clocks to turn off. */
2276 udelay(150);
2277 break;
2278 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002279}
2280
2281/**
2282 * Sets the power management mode of the pipe and plane.
2283 *
2284 * This code should probably grow support for turning the cursor off and back
2285 * on appropriately at the same time as we're turning the pipe off/on.
2286 */
2287static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2288{
2289 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002290 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002291 struct drm_i915_master_private *master_priv;
2292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2293 int pipe = intel_crtc->pipe;
2294 bool enabled;
2295
Jesse Barnese70236a2009-09-21 10:42:27 -07002296 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002297
Daniel Vetter65655d42009-08-11 16:05:31 +02002298 intel_crtc->dpms_mode = mode;
2299
Jesse Barnes79e53942008-11-07 14:24:08 -08002300 if (!dev->primary->master)
2301 return;
2302
2303 master_priv = dev->primary->master->driver_priv;
2304 if (!master_priv->sarea_priv)
2305 return;
2306
2307 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2308
2309 switch (pipe) {
2310 case 0:
2311 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2312 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2313 break;
2314 case 1:
2315 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2316 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2317 break;
2318 default:
2319 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2320 break;
2321 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002322}
2323
2324static void intel_crtc_prepare (struct drm_crtc *crtc)
2325{
2326 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2327 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2328}
2329
2330static void intel_crtc_commit (struct drm_crtc *crtc)
2331{
2332 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2333 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
2334}
2335
2336void intel_encoder_prepare (struct drm_encoder *encoder)
2337{
2338 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2339 /* lvds has its own version of prepare see intel_lvds_prepare */
2340 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2341}
2342
2343void intel_encoder_commit (struct drm_encoder *encoder)
2344{
2345 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2346 /* lvds has its own version of commit see intel_lvds_commit */
2347 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2348}
2349
2350static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2351 struct drm_display_mode *mode,
2352 struct drm_display_mode *adjusted_mode)
2353{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002354 struct drm_device *dev = crtc->dev;
Eric Anholtbad720f2009-10-22 16:11:14 -07002355 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002356 /* FDI link clock is fixed at 2.7G */
2357 if (mode->clock * 3 > 27000 * 4)
2358 return MODE_CLOCK_HIGH;
2359 }
Krzysztof Halasa734b4152010-05-25 18:41:46 +02002360
2361 drm_mode_set_crtcinfo(adjusted_mode, 0);
Jesse Barnes79e53942008-11-07 14:24:08 -08002362 return true;
2363}
2364
Jesse Barnese70236a2009-09-21 10:42:27 -07002365static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002366{
Jesse Barnese70236a2009-09-21 10:42:27 -07002367 return 400000;
2368}
Jesse Barnes79e53942008-11-07 14:24:08 -08002369
Jesse Barnese70236a2009-09-21 10:42:27 -07002370static int i915_get_display_clock_speed(struct drm_device *dev)
2371{
2372 return 333000;
2373}
Jesse Barnes79e53942008-11-07 14:24:08 -08002374
Jesse Barnese70236a2009-09-21 10:42:27 -07002375static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2376{
2377 return 200000;
2378}
Jesse Barnes79e53942008-11-07 14:24:08 -08002379
Jesse Barnese70236a2009-09-21 10:42:27 -07002380static int i915gm_get_display_clock_speed(struct drm_device *dev)
2381{
2382 u16 gcfgc = 0;
2383
2384 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2385
2386 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002387 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002388 else {
2389 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2390 case GC_DISPLAY_CLOCK_333_MHZ:
2391 return 333000;
2392 default:
2393 case GC_DISPLAY_CLOCK_190_200_MHZ:
2394 return 190000;
2395 }
2396 }
2397}
Jesse Barnes79e53942008-11-07 14:24:08 -08002398
Jesse Barnese70236a2009-09-21 10:42:27 -07002399static int i865_get_display_clock_speed(struct drm_device *dev)
2400{
2401 return 266000;
2402}
2403
2404static int i855_get_display_clock_speed(struct drm_device *dev)
2405{
2406 u16 hpllcc = 0;
2407 /* Assume that the hardware is in the high speed state. This
2408 * should be the default.
2409 */
2410 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2411 case GC_CLOCK_133_200:
2412 case GC_CLOCK_100_200:
2413 return 200000;
2414 case GC_CLOCK_166_250:
2415 return 250000;
2416 case GC_CLOCK_100_133:
2417 return 133000;
2418 }
2419
2420 /* Shouldn't happen */
2421 return 0;
2422}
2423
2424static int i830_get_display_clock_speed(struct drm_device *dev)
2425{
2426 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002427}
2428
Jesse Barnes79e53942008-11-07 14:24:08 -08002429/**
2430 * Return the pipe currently connected to the panel fitter,
2431 * or -1 if the panel fitter is not present or not in use
2432 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002433int intel_panel_fitter_pipe (struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002434{
2435 struct drm_i915_private *dev_priv = dev->dev_private;
2436 u32 pfit_control;
2437
2438 /* i830 doesn't have a panel fitter */
2439 if (IS_I830(dev))
2440 return -1;
2441
2442 pfit_control = I915_READ(PFIT_CONTROL);
2443
2444 /* See if the panel fitter is in use */
2445 if ((pfit_control & PFIT_ENABLE) == 0)
2446 return -1;
2447
2448 /* 965 can place panel fitter on either pipe */
2449 if (IS_I965G(dev))
2450 return (pfit_control >> 29) & 0x3;
2451
2452 /* older chips can only use pipe 1 */
2453 return 1;
2454}
2455
Zhenyu Wang2c072452009-06-05 15:38:42 +08002456struct fdi_m_n {
2457 u32 tu;
2458 u32 gmch_m;
2459 u32 gmch_n;
2460 u32 link_m;
2461 u32 link_n;
2462};
2463
2464static void
2465fdi_reduce_ratio(u32 *num, u32 *den)
2466{
2467 while (*num > 0xffffff || *den > 0xffffff) {
2468 *num >>= 1;
2469 *den >>= 1;
2470 }
2471}
2472
2473#define DATA_N 0x800000
2474#define LINK_N 0x80000
2475
2476static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002477ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2478 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002479{
2480 u64 temp;
2481
2482 m_n->tu = 64; /* default size */
2483
2484 temp = (u64) DATA_N * pixel_clock;
2485 temp = div_u64(temp, link_clock);
Zhenyu Wang58a27472009-09-25 08:01:28 +00002486 m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes);
2487 m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */
Zhenyu Wang2c072452009-06-05 15:38:42 +08002488 m_n->gmch_n = DATA_N;
2489 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2490
2491 temp = (u64) LINK_N * pixel_clock;
2492 m_n->link_m = div_u64(temp, link_clock);
2493 m_n->link_n = LINK_N;
2494 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2495}
2496
2497
Shaohua Li7662c8b2009-06-26 11:23:55 +08002498struct intel_watermark_params {
2499 unsigned long fifo_size;
2500 unsigned long max_wm;
2501 unsigned long default_wm;
2502 unsigned long guard_size;
2503 unsigned long cacheline_size;
2504};
2505
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002506/* Pineview has different values for various configs */
2507static struct intel_watermark_params pineview_display_wm = {
2508 PINEVIEW_DISPLAY_FIFO,
2509 PINEVIEW_MAX_WM,
2510 PINEVIEW_DFT_WM,
2511 PINEVIEW_GUARD_WM,
2512 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002513};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002514static struct intel_watermark_params pineview_display_hplloff_wm = {
2515 PINEVIEW_DISPLAY_FIFO,
2516 PINEVIEW_MAX_WM,
2517 PINEVIEW_DFT_HPLLOFF_WM,
2518 PINEVIEW_GUARD_WM,
2519 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002520};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002521static struct intel_watermark_params pineview_cursor_wm = {
2522 PINEVIEW_CURSOR_FIFO,
2523 PINEVIEW_CURSOR_MAX_WM,
2524 PINEVIEW_CURSOR_DFT_WM,
2525 PINEVIEW_CURSOR_GUARD_WM,
2526 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002527};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002528static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2529 PINEVIEW_CURSOR_FIFO,
2530 PINEVIEW_CURSOR_MAX_WM,
2531 PINEVIEW_CURSOR_DFT_WM,
2532 PINEVIEW_CURSOR_GUARD_WM,
2533 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002534};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002535static struct intel_watermark_params g4x_wm_info = {
2536 G4X_FIFO_SIZE,
2537 G4X_MAX_WM,
2538 G4X_MAX_WM,
2539 2,
2540 G4X_FIFO_LINE_SIZE,
2541};
Zhao Yakui4fe5e612010-06-12 14:32:25 +08002542static struct intel_watermark_params g4x_cursor_wm_info = {
2543 I965_CURSOR_FIFO,
2544 I965_CURSOR_MAX_WM,
2545 I965_CURSOR_DFT_WM,
2546 2,
2547 G4X_FIFO_LINE_SIZE,
2548};
2549static struct intel_watermark_params i965_cursor_wm_info = {
2550 I965_CURSOR_FIFO,
2551 I965_CURSOR_MAX_WM,
2552 I965_CURSOR_DFT_WM,
2553 2,
2554 I915_FIFO_LINE_SIZE,
2555};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002556static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002557 I945_FIFO_SIZE,
2558 I915_MAX_WM,
2559 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002560 2,
2561 I915_FIFO_LINE_SIZE
2562};
2563static struct intel_watermark_params i915_wm_info = {
2564 I915_FIFO_SIZE,
2565 I915_MAX_WM,
2566 1,
2567 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002568 I915_FIFO_LINE_SIZE
2569};
2570static struct intel_watermark_params i855_wm_info = {
2571 I855GM_FIFO_SIZE,
2572 I915_MAX_WM,
2573 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002574 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002575 I830_FIFO_LINE_SIZE
2576};
2577static struct intel_watermark_params i830_wm_info = {
2578 I830_FIFO_SIZE,
2579 I915_MAX_WM,
2580 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002581 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002582 I830_FIFO_LINE_SIZE
2583};
2584
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002585static struct intel_watermark_params ironlake_display_wm_info = {
2586 ILK_DISPLAY_FIFO,
2587 ILK_DISPLAY_MAXWM,
2588 ILK_DISPLAY_DFTWM,
2589 2,
2590 ILK_FIFO_LINE_SIZE
2591};
2592
2593static struct intel_watermark_params ironlake_display_srwm_info = {
2594 ILK_DISPLAY_SR_FIFO,
2595 ILK_DISPLAY_MAX_SRWM,
2596 ILK_DISPLAY_DFT_SRWM,
2597 2,
2598 ILK_FIFO_LINE_SIZE
2599};
2600
2601static struct intel_watermark_params ironlake_cursor_srwm_info = {
2602 ILK_CURSOR_SR_FIFO,
2603 ILK_CURSOR_MAX_SRWM,
2604 ILK_CURSOR_DFT_SRWM,
2605 2,
2606 ILK_FIFO_LINE_SIZE
2607};
2608
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002609/**
2610 * intel_calculate_wm - calculate watermark level
2611 * @clock_in_khz: pixel clock
2612 * @wm: chip FIFO params
2613 * @pixel_size: display pixel size
2614 * @latency_ns: memory latency for the platform
2615 *
2616 * Calculate the watermark level (the level at which the display plane will
2617 * start fetching from memory again). Each chip has a different display
2618 * FIFO size and allocation, so the caller needs to figure that out and pass
2619 * in the correct intel_watermark_params structure.
2620 *
2621 * As the pixel clock runs, the FIFO will be drained at a rate that depends
2622 * on the pixel size. When it reaches the watermark level, it'll start
2623 * fetching FIFO line sized based chunks from memory until the FIFO fills
2624 * past the watermark point. If the FIFO drains completely, a FIFO underrun
2625 * will occur, and a display engine hang could result.
2626 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002627static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
2628 struct intel_watermark_params *wm,
2629 int pixel_size,
2630 unsigned long latency_ns)
2631{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002632 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002633
Jesse Barnesd6604672009-09-11 12:25:56 -07002634 /*
2635 * Note: we need to make sure we don't overflow for various clock &
2636 * latency values.
2637 * clocks go from a few thousand to several hundred thousand.
2638 * latency is usually a few thousand
2639 */
2640 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
2641 1000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002642 entries_required /= wm->cacheline_size;
2643
Zhao Yakui28c97732009-10-09 11:39:41 +08002644 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002645
2646 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
2647
Zhao Yakui28c97732009-10-09 11:39:41 +08002648 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002649
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002650 /* Don't promote wm_size to unsigned... */
2651 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002652 wm_size = wm->max_wm;
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002653 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002654 wm_size = wm->default_wm;
2655 return wm_size;
2656}
2657
2658struct cxsr_latency {
2659 int is_desktop;
Li Peng95534262010-05-18 18:58:44 +08002660 int is_ddr3;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002661 unsigned long fsb_freq;
2662 unsigned long mem_freq;
2663 unsigned long display_sr;
2664 unsigned long display_hpll_disable;
2665 unsigned long cursor_sr;
2666 unsigned long cursor_hpll_disable;
2667};
2668
2669static struct cxsr_latency cxsr_latency_table[] = {
Li Peng95534262010-05-18 18:58:44 +08002670 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
2671 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
2672 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
2673 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
2674 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002675
Li Peng95534262010-05-18 18:58:44 +08002676 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
2677 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
2678 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
2679 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
2680 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002681
Li Peng95534262010-05-18 18:58:44 +08002682 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
2683 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
2684 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
2685 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
2686 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002687
Li Peng95534262010-05-18 18:58:44 +08002688 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
2689 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
2690 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
2691 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
2692 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002693
Li Peng95534262010-05-18 18:58:44 +08002694 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
2695 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
2696 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
2697 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
2698 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002699
Li Peng95534262010-05-18 18:58:44 +08002700 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
2701 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
2702 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
2703 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
2704 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002705};
2706
Li Peng95534262010-05-18 18:58:44 +08002707static struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, int is_ddr3,
2708 int fsb, int mem)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002709{
2710 int i;
2711 struct cxsr_latency *latency;
2712
2713 if (fsb == 0 || mem == 0)
2714 return NULL;
2715
2716 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
2717 latency = &cxsr_latency_table[i];
2718 if (is_desktop == latency->is_desktop &&
Li Peng95534262010-05-18 18:58:44 +08002719 is_ddr3 == latency->is_ddr3 &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302720 fsb == latency->fsb_freq && mem == latency->mem_freq)
2721 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002722 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302723
Zhao Yakui28c97732009-10-09 11:39:41 +08002724 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302725
2726 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002727}
2728
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002729static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002730{
2731 struct drm_i915_private *dev_priv = dev->dev_private;
2732 u32 reg;
2733
2734 /* deactivate cxsr */
2735 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002736 reg &= ~(PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002737 I915_WRITE(DSPFW3, reg);
2738 DRM_INFO("Big FIFO is disabled\n");
2739}
2740
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07002741/*
2742 * Latency for FIFO fetches is dependent on several factors:
2743 * - memory configuration (speed, channels)
2744 * - chipset
2745 * - current MCH state
2746 * It can be fairly high in some situations, so here we assume a fairly
2747 * pessimal value. It's a tradeoff between extra memory fetches (if we
2748 * set this value too high, the FIFO will fetch frequently to stay full)
2749 * and power consumption (set it too low to save power and we might see
2750 * FIFO underruns and display "flicker").
2751 *
2752 * A value of 5us seems to be a good balance; safe for very low end
2753 * platforms but not overly aggressive on lower latency configs.
2754 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002755static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002756
Jesse Barnese70236a2009-09-21 10:42:27 -07002757static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002758{
2759 struct drm_i915_private *dev_priv = dev->dev_private;
2760 uint32_t dsparb = I915_READ(DSPARB);
2761 int size;
2762
Jesse Barnese70236a2009-09-21 10:42:27 -07002763 if (plane == 0)
Jesse Barnesf3601322009-07-22 12:54:59 -07002764 size = dsparb & 0x7f;
Jesse Barnese70236a2009-09-21 10:42:27 -07002765 else
2766 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) -
2767 (dsparb & 0x7f);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002768
Zhao Yakui28c97732009-10-09 11:39:41 +08002769 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2770 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002771
2772 return size;
2773}
Shaohua Li7662c8b2009-06-26 11:23:55 +08002774
Jesse Barnese70236a2009-09-21 10:42:27 -07002775static int i85x_get_fifo_size(struct drm_device *dev, int plane)
2776{
2777 struct drm_i915_private *dev_priv = dev->dev_private;
2778 uint32_t dsparb = I915_READ(DSPARB);
2779 int size;
2780
2781 if (plane == 0)
2782 size = dsparb & 0x1ff;
2783 else
2784 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) -
2785 (dsparb & 0x1ff);
2786 size >>= 1; /* Convert to cachelines */
2787
Zhao Yakui28c97732009-10-09 11:39:41 +08002788 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2789 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002790
2791 return size;
2792}
2793
2794static int i845_get_fifo_size(struct drm_device *dev, int plane)
2795{
2796 struct drm_i915_private *dev_priv = dev->dev_private;
2797 uint32_t dsparb = I915_READ(DSPARB);
2798 int size;
2799
2800 size = dsparb & 0x7f;
2801 size >>= 2; /* Convert to cachelines */
2802
Zhao Yakui28c97732009-10-09 11:39:41 +08002803 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2804 plane ? "B" : "A",
Jesse Barnese70236a2009-09-21 10:42:27 -07002805 size);
2806
2807 return size;
2808}
2809
2810static int i830_get_fifo_size(struct drm_device *dev, int plane)
2811{
2812 struct drm_i915_private *dev_priv = dev->dev_private;
2813 uint32_t dsparb = I915_READ(DSPARB);
2814 int size;
2815
2816 size = dsparb & 0x7f;
2817 size >>= 1; /* Convert to cachelines */
2818
Zhao Yakui28c97732009-10-09 11:39:41 +08002819 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2820 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002821
2822 return size;
2823}
2824
Zhao Yakuid4294342010-03-22 22:45:36 +08002825static void pineview_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08002826 int planeb_clock, int sr_hdisplay, int unused,
2827 int pixel_size)
Zhao Yakuid4294342010-03-22 22:45:36 +08002828{
2829 struct drm_i915_private *dev_priv = dev->dev_private;
2830 u32 reg;
2831 unsigned long wm;
2832 struct cxsr_latency *latency;
2833 int sr_clock;
2834
Li Peng95534262010-05-18 18:58:44 +08002835 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
2836 dev_priv->fsb_freq, dev_priv->mem_freq);
Zhao Yakuid4294342010-03-22 22:45:36 +08002837 if (!latency) {
2838 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
2839 pineview_disable_cxsr(dev);
2840 return;
2841 }
2842
2843 if (!planea_clock || !planeb_clock) {
2844 sr_clock = planea_clock ? planea_clock : planeb_clock;
2845
2846 /* Display SR */
2847 wm = intel_calculate_wm(sr_clock, &pineview_display_wm,
2848 pixel_size, latency->display_sr);
2849 reg = I915_READ(DSPFW1);
2850 reg &= ~DSPFW_SR_MASK;
2851 reg |= wm << DSPFW_SR_SHIFT;
2852 I915_WRITE(DSPFW1, reg);
2853 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
2854
2855 /* cursor SR */
2856 wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm,
2857 pixel_size, latency->cursor_sr);
2858 reg = I915_READ(DSPFW3);
2859 reg &= ~DSPFW_CURSOR_SR_MASK;
2860 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
2861 I915_WRITE(DSPFW3, reg);
2862
2863 /* Display HPLL off SR */
2864 wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm,
2865 pixel_size, latency->display_hpll_disable);
2866 reg = I915_READ(DSPFW3);
2867 reg &= ~DSPFW_HPLL_SR_MASK;
2868 reg |= wm & DSPFW_HPLL_SR_MASK;
2869 I915_WRITE(DSPFW3, reg);
2870
2871 /* cursor HPLL off SR */
2872 wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm,
2873 pixel_size, latency->cursor_hpll_disable);
2874 reg = I915_READ(DSPFW3);
2875 reg &= ~DSPFW_HPLL_CURSOR_MASK;
2876 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
2877 I915_WRITE(DSPFW3, reg);
2878 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
2879
2880 /* activate cxsr */
2881 reg = I915_READ(DSPFW3);
2882 reg |= PINEVIEW_SELF_REFRESH_EN;
2883 I915_WRITE(DSPFW3, reg);
2884 DRM_DEBUG_KMS("Self-refresh is enabled\n");
2885 } else {
2886 pineview_disable_cxsr(dev);
2887 DRM_DEBUG_KMS("Self-refresh is disabled\n");
2888 }
2889}
2890
Jesse Barnes0e442c62009-10-19 10:09:33 +09002891static void g4x_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08002892 int planeb_clock, int sr_hdisplay, int sr_htotal,
2893 int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07002894{
2895 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002896 int total_size, cacheline_size;
2897 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
2898 struct intel_watermark_params planea_params, planeb_params;
2899 unsigned long line_time_us;
2900 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07002901
Jesse Barnes0e442c62009-10-19 10:09:33 +09002902 /* Create copies of the base settings for each pipe */
2903 planea_params = planeb_params = g4x_wm_info;
2904
2905 /* Grab a couple of global values before we overwrite them */
2906 total_size = planea_params.fifo_size;
2907 cacheline_size = planea_params.cacheline_size;
2908
2909 /*
2910 * Note: we need to make sure we don't overflow for various clock &
2911 * latency values.
2912 * clocks go from a few thousand to several hundred thousand.
2913 * latency is usually a few thousand
2914 */
2915 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
2916 1000;
2917 entries_required /= G4X_FIFO_LINE_SIZE;
2918 planea_wm = entries_required + planea_params.guard_size;
2919
2920 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
2921 1000;
2922 entries_required /= G4X_FIFO_LINE_SIZE;
2923 planeb_wm = entries_required + planeb_params.guard_size;
2924
2925 cursora_wm = cursorb_wm = 16;
2926 cursor_sr = 32;
2927
2928 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2929
2930 /* Calc sr entries for one plane configs */
2931 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
2932 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002933 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002934
2935 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08002936 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes0e442c62009-10-19 10:09:33 +09002937
2938 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08002939 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
2940 pixel_size * sr_hdisplay;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002941 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08002942
2943 entries_required = (((sr_latency_ns / line_time_us) +
2944 1000) / 1000) * pixel_size * 64;
2945 entries_required = roundup(entries_required /
2946 g4x_cursor_wm_info.cacheline_size, 1);
2947 cursor_sr = entries_required + g4x_cursor_wm_info.guard_size;
2948
2949 if (cursor_sr > g4x_cursor_wm_info.max_wm)
2950 cursor_sr = g4x_cursor_wm_info.max_wm;
2951 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
2952 "cursor %d\n", sr_entries, cursor_sr);
2953
Jesse Barnes0e442c62009-10-19 10:09:33 +09002954 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05302955 } else {
2956 /* Turn off self refresh if both pipes are enabled */
2957 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
2958 & ~FW_BLC_SELF_EN);
Jesse Barnes0e442c62009-10-19 10:09:33 +09002959 }
2960
2961 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
2962 planea_wm, planeb_wm, sr_entries);
2963
2964 planea_wm &= 0x3f;
2965 planeb_wm &= 0x3f;
2966
2967 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
2968 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
2969 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
2970 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
2971 (cursora_wm << DSPFW_CURSORA_SHIFT));
2972 /* HPLL off in SR has some issues on G4x... disable it */
2973 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
2974 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07002975}
2976
Jesse Barnes1dc75462009-10-19 10:08:17 +09002977static void i965_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08002978 int planeb_clock, int sr_hdisplay, int sr_htotal,
2979 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002980{
2981 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002982 unsigned long line_time_us;
2983 int sr_clock, sr_entries, srwm = 1;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08002984 int cursor_sr = 16;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002985
Jesse Barnes1dc75462009-10-19 10:08:17 +09002986 /* Calc sr entries for one plane configs */
2987 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
2988 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002989 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002990
2991 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08002992 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes1dc75462009-10-19 10:08:17 +09002993
2994 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08002995 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
2996 pixel_size * sr_hdisplay;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002997 sr_entries = roundup(sr_entries / I915_FIFO_LINE_SIZE, 1);
2998 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
Zhao Yakui1b07e042010-06-12 14:32:24 +08002999 srwm = I965_FIFO_SIZE - sr_entries;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003000 if (srwm < 0)
3001 srwm = 1;
Zhao Yakui1b07e042010-06-12 14:32:24 +08003002 srwm &= 0x1ff;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003003
3004 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3005 pixel_size * 64;
3006 sr_entries = roundup(sr_entries /
3007 i965_cursor_wm_info.cacheline_size, 1);
3008 cursor_sr = i965_cursor_wm_info.fifo_size -
3009 (sr_entries + i965_cursor_wm_info.guard_size);
3010
3011 if (cursor_sr > i965_cursor_wm_info.max_wm)
3012 cursor_sr = i965_cursor_wm_info.max_wm;
3013
3014 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3015 "cursor %d\n", srwm, cursor_sr);
3016
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003017 if (IS_I965GM(dev))
3018 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303019 } else {
3020 /* Turn off self refresh if both pipes are enabled */
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003021 if (IS_I965GM(dev))
3022 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3023 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003024 }
3025
3026 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3027 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003028
3029 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09003030 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
3031 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003032 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003033 /* update cursor SR watermark */
3034 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003035}
3036
3037static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003038 int planeb_clock, int sr_hdisplay, int sr_htotal,
3039 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003040{
3041 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003042 uint32_t fwater_lo;
3043 uint32_t fwater_hi;
3044 int total_size, cacheline_size, cwm, srwm = 1;
3045 int planea_wm, planeb_wm;
3046 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003047 unsigned long line_time_us;
3048 int sr_clock, sr_entries = 0;
3049
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003050 /* Create copies of the base settings for each pipe */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003051 if (IS_I965GM(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003052 planea_params = planeb_params = i945_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003053 else if (IS_I9XX(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003054 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003055 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003056 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003057
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003058 /* Grab a couple of global values before we overwrite them */
3059 total_size = planea_params.fifo_size;
3060 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003061
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003062 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07003063 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3064 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003065
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003066 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
3067 pixel_size, latency_ns);
3068 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
3069 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08003070 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003071
3072 /*
3073 * Overlay gets an aggressive default since video jitter is bad.
3074 */
3075 cwm = 2;
3076
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003077 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07003078 if (HAS_FW_BLC(dev) && sr_hdisplay &&
3079 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003080 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003081 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003082
Shaohua Li7662c8b2009-06-26 11:23:55 +08003083 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003084 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003085
3086 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003087 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
3088 pixel_size * sr_hdisplay;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003089 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui28c97732009-10-09 11:39:41 +08003090 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003091 srwm = total_size - sr_entries;
3092 if (srwm < 0)
3093 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08003094
3095 if (IS_I945G(dev) || IS_I945GM(dev))
3096 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3097 else if (IS_I915GM(dev)) {
3098 /* 915M has a smaller SRWM field */
3099 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
3100 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3101 }
David John33c5fd12010-01-27 15:19:08 +05303102 } else {
3103 /* Turn off self refresh if both pipes are enabled */
Li Pengee980b82010-01-27 19:01:11 +08003104 if (IS_I945G(dev) || IS_I945GM(dev)) {
3105 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3106 & ~FW_BLC_SELF_EN);
3107 } else if (IS_I915GM(dev)) {
3108 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3109 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08003110 }
3111
Zhao Yakui28c97732009-10-09 11:39:41 +08003112 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003113 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003114
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003115 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3116 fwater_hi = (cwm & 0x1f);
3117
3118 /* Set request length to 8 cachelines per fetch */
3119 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3120 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003121
3122 I915_WRITE(FW_BLC, fwater_lo);
3123 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003124}
3125
Jesse Barnese70236a2009-09-21 10:42:27 -07003126static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
Zhao Yakuifa143212010-06-12 14:32:23 +08003127 int unused2, int unused3, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003128{
3129 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07003130 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003131 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003132
Jesse Barnese70236a2009-09-21 10:42:27 -07003133 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003134
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003135 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
3136 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07003137 fwater_lo |= (3<<8) | planea_wm;
3138
Zhao Yakui28c97732009-10-09 11:39:41 +08003139 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003140
3141 I915_WRITE(FW_BLC, fwater_lo);
3142}
3143
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003144#define ILK_LP0_PLANE_LATENCY 700
3145
3146static void ironlake_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003147 int planeb_clock, int sr_hdisplay, int sr_htotal,
3148 int pixel_size)
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003149{
3150 struct drm_i915_private *dev_priv = dev->dev_private;
3151 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
3152 int sr_wm, cursor_wm;
3153 unsigned long line_time_us;
3154 int sr_clock, entries_required;
3155 u32 reg_value;
3156
3157 /* Calculate and update the watermark for plane A */
3158 if (planea_clock) {
3159 entries_required = ((planea_clock / 1000) * pixel_size *
3160 ILK_LP0_PLANE_LATENCY) / 1000;
3161 entries_required = DIV_ROUND_UP(entries_required,
3162 ironlake_display_wm_info.cacheline_size);
3163 planea_wm = entries_required +
3164 ironlake_display_wm_info.guard_size;
3165
3166 if (planea_wm > (int)ironlake_display_wm_info.max_wm)
3167 planea_wm = ironlake_display_wm_info.max_wm;
3168
3169 cursora_wm = 16;
3170 reg_value = I915_READ(WM0_PIPEA_ILK);
3171 reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
3172 reg_value |= (planea_wm << WM0_PIPE_PLANE_SHIFT) |
3173 (cursora_wm & WM0_PIPE_CURSOR_MASK);
3174 I915_WRITE(WM0_PIPEA_ILK, reg_value);
3175 DRM_DEBUG_KMS("FIFO watermarks For pipe A - plane %d, "
3176 "cursor: %d\n", planea_wm, cursora_wm);
3177 }
3178 /* Calculate and update the watermark for plane B */
3179 if (planeb_clock) {
3180 entries_required = ((planeb_clock / 1000) * pixel_size *
3181 ILK_LP0_PLANE_LATENCY) / 1000;
3182 entries_required = DIV_ROUND_UP(entries_required,
3183 ironlake_display_wm_info.cacheline_size);
3184 planeb_wm = entries_required +
3185 ironlake_display_wm_info.guard_size;
3186
3187 if (planeb_wm > (int)ironlake_display_wm_info.max_wm)
3188 planeb_wm = ironlake_display_wm_info.max_wm;
3189
3190 cursorb_wm = 16;
3191 reg_value = I915_READ(WM0_PIPEB_ILK);
3192 reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
3193 reg_value |= (planeb_wm << WM0_PIPE_PLANE_SHIFT) |
3194 (cursorb_wm & WM0_PIPE_CURSOR_MASK);
3195 I915_WRITE(WM0_PIPEB_ILK, reg_value);
3196 DRM_DEBUG_KMS("FIFO watermarks For pipe B - plane %d, "
3197 "cursor: %d\n", planeb_wm, cursorb_wm);
3198 }
3199
3200 /*
3201 * Calculate and update the self-refresh watermark only when one
3202 * display plane is used.
3203 */
3204 if (!planea_clock || !planeb_clock) {
3205 int line_count;
3206 /* Read the self-refresh latency. The unit is 0.5us */
3207 int ilk_sr_latency = I915_READ(MLTR_ILK) & ILK_SRLT_MASK;
3208
3209 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003210 line_time_us = ((sr_htotal * 1000) / sr_clock);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003211
3212 /* Use ns/us then divide to preserve precision */
3213 line_count = ((ilk_sr_latency * 500) / line_time_us + 1000)
3214 / 1000;
3215
3216 /* calculate the self-refresh watermark for display plane */
3217 entries_required = line_count * sr_hdisplay * pixel_size;
3218 entries_required = DIV_ROUND_UP(entries_required,
3219 ironlake_display_srwm_info.cacheline_size);
3220 sr_wm = entries_required +
3221 ironlake_display_srwm_info.guard_size;
3222
3223 /* calculate the self-refresh watermark for display cursor */
3224 entries_required = line_count * pixel_size * 64;
3225 entries_required = DIV_ROUND_UP(entries_required,
3226 ironlake_cursor_srwm_info.cacheline_size);
3227 cursor_wm = entries_required +
3228 ironlake_cursor_srwm_info.guard_size;
3229
3230 /* configure watermark and enable self-refresh */
3231 reg_value = I915_READ(WM1_LP_ILK);
3232 reg_value &= ~(WM1_LP_LATENCY_MASK | WM1_LP_SR_MASK |
3233 WM1_LP_CURSOR_MASK);
3234 reg_value |= WM1_LP_SR_EN |
3235 (ilk_sr_latency << WM1_LP_LATENCY_SHIFT) |
3236 (sr_wm << WM1_LP_SR_SHIFT) | cursor_wm;
3237
3238 I915_WRITE(WM1_LP_ILK, reg_value);
3239 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3240 "cursor %d\n", sr_wm, cursor_wm);
3241
3242 } else {
3243 /* Turn off self refresh if both pipes are enabled */
3244 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
3245 }
3246}
Shaohua Li7662c8b2009-06-26 11:23:55 +08003247/**
3248 * intel_update_watermarks - update FIFO watermark values based on current modes
3249 *
3250 * Calculate watermark values for the various WM regs based on current mode
3251 * and plane configuration.
3252 *
3253 * There are several cases to deal with here:
3254 * - normal (i.e. non-self-refresh)
3255 * - self-refresh (SR) mode
3256 * - lines are large relative to FIFO size (buffer can hold up to 2)
3257 * - lines are small relative to FIFO size (buffer can hold more than 2
3258 * lines), so need to account for TLB latency
3259 *
3260 * The normal calculation is:
3261 * watermark = dotclock * bytes per pixel * latency
3262 * where latency is platform & configuration dependent (we assume pessimal
3263 * values here).
3264 *
3265 * The SR calculation is:
3266 * watermark = (trunc(latency/line time)+1) * surface width *
3267 * bytes per pixel
3268 * where
3269 * line time = htotal / dotclock
Zhao Yakuifa143212010-06-12 14:32:23 +08003270 * surface width = hdisplay for normal plane and 64 for cursor
Shaohua Li7662c8b2009-06-26 11:23:55 +08003271 * and latency is assumed to be high, as above.
3272 *
3273 * The final value programmed to the register should always be rounded up,
3274 * and include an extra 2 entries to account for clock crossings.
3275 *
3276 * We don't use the sprite, so we can ignore that. And on Crestline we have
3277 * to set the non-SR watermarks to 8.
3278 */
3279static void intel_update_watermarks(struct drm_device *dev)
3280{
Jesse Barnese70236a2009-09-21 10:42:27 -07003281 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003282 struct drm_crtc *crtc;
3283 struct intel_crtc *intel_crtc;
3284 int sr_hdisplay = 0;
3285 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3286 int enabled = 0, pixel_size = 0;
Zhao Yakuifa143212010-06-12 14:32:23 +08003287 int sr_htotal = 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003288
Zhenyu Wangc03342f2009-09-29 11:01:23 +08003289 if (!dev_priv->display.update_wm)
3290 return;
3291
Shaohua Li7662c8b2009-06-26 11:23:55 +08003292 /* Get the clock config from both planes */
3293 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3294 intel_crtc = to_intel_crtc(crtc);
3295 if (crtc->enabled) {
3296 enabled++;
3297 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003298 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003299 intel_crtc->pipe, crtc->mode.clock);
3300 planea_clock = crtc->mode.clock;
3301 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08003302 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003303 intel_crtc->pipe, crtc->mode.clock);
3304 planeb_clock = crtc->mode.clock;
3305 }
3306 sr_hdisplay = crtc->mode.hdisplay;
3307 sr_clock = crtc->mode.clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003308 sr_htotal = crtc->mode.htotal;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003309 if (crtc->fb)
3310 pixel_size = crtc->fb->bits_per_pixel / 8;
3311 else
3312 pixel_size = 4; /* by default */
3313 }
3314 }
3315
3316 if (enabled <= 0)
3317 return;
3318
Jesse Barnese70236a2009-09-21 10:42:27 -07003319 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003320 sr_hdisplay, sr_htotal, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003321}
3322
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003323static int intel_crtc_mode_set(struct drm_crtc *crtc,
3324 struct drm_display_mode *mode,
3325 struct drm_display_mode *adjusted_mode,
3326 int x, int y,
3327 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003328{
3329 struct drm_device *dev = crtc->dev;
3330 struct drm_i915_private *dev_priv = dev->dev_private;
3331 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3332 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003333 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003334 int fp_reg = (pipe == 0) ? FPA0 : FPB0;
3335 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
3336 int dpll_md_reg = (intel_crtc->pipe == 0) ? DPLL_A_MD : DPLL_B_MD;
Jesse Barnes80824002009-09-10 15:28:06 -07003337 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Jesse Barnes79e53942008-11-07 14:24:08 -08003338 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
3339 int htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
3340 int hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
3341 int hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
3342 int vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
3343 int vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
3344 int vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
Jesse Barnes80824002009-09-10 15:28:06 -07003345 int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE;
3346 int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS;
Jesse Barnes79e53942008-11-07 14:24:08 -08003347 int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC;
Eric Anholtc751ce42010-03-25 11:48:48 -07003348 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003349 intel_clock_t clock, reduced_clock;
3350 u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf;
3351 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003352 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003353 bool is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003354 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003355 struct drm_encoder *encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003356 struct intel_encoder *intel_encoder = NULL;
Ma Lingd4906092009-03-18 20:13:27 +08003357 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003358 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003359 struct fdi_m_n m_n = {0};
3360 int data_m1_reg = (pipe == 0) ? PIPEA_DATA_M1 : PIPEB_DATA_M1;
3361 int data_n1_reg = (pipe == 0) ? PIPEA_DATA_N1 : PIPEB_DATA_N1;
3362 int link_m1_reg = (pipe == 0) ? PIPEA_LINK_M1 : PIPEB_LINK_M1;
3363 int link_n1_reg = (pipe == 0) ? PIPEA_LINK_N1 : PIPEB_LINK_N1;
3364 int pch_fp_reg = (pipe == 0) ? PCH_FPA0 : PCH_FPB0;
3365 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
3366 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003367 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
3368 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang541998a2009-06-05 15:38:44 +08003369 int lvds_reg = LVDS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003370 u32 temp;
3371 int sdvo_pixel_multiply;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003372 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08003373
3374 drm_vblank_pre_modeset(dev, pipe);
3375
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003376 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003377
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003378 if (!encoder || encoder->crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003379 continue;
3380
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003381 intel_encoder = enc_to_intel_encoder(encoder);
3382
Eric Anholt21d40d32010-03-25 11:11:14 -07003383 switch (intel_encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003384 case INTEL_OUTPUT_LVDS:
3385 is_lvds = true;
3386 break;
3387 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003388 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003389 is_sdvo = true;
Eric Anholt21d40d32010-03-25 11:11:14 -07003390 if (intel_encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003391 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003392 break;
3393 case INTEL_OUTPUT_DVO:
3394 is_dvo = true;
3395 break;
3396 case INTEL_OUTPUT_TVOUT:
3397 is_tv = true;
3398 break;
3399 case INTEL_OUTPUT_ANALOG:
3400 is_crt = true;
3401 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003402 case INTEL_OUTPUT_DISPLAYPORT:
3403 is_dp = true;
3404 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003405 case INTEL_OUTPUT_EDP:
3406 is_edp = true;
3407 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003408 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003409
Eric Anholtc751ce42010-03-25 11:48:48 -07003410 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003411 }
3412
Eric Anholtc751ce42010-03-25 11:48:48 -07003413 if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003414 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08003415 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3416 refclk / 1000);
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003417 } else if (IS_I9XX(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003418 refclk = 96000;
Eric Anholtbad720f2009-10-22 16:11:14 -07003419 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003420 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08003421 } else {
3422 refclk = 48000;
3423 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003424
Jesse Barnes79e53942008-11-07 14:24:08 -08003425
Ma Lingd4906092009-03-18 20:13:27 +08003426 /*
3427 * Returns a set of divisors for the desired target clock with the given
3428 * refclk, or FALSE. The returned values represent the clock equation:
3429 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3430 */
3431 limit = intel_limit(crtc);
3432 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003433 if (!ok) {
3434 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01003435 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003436 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003437 }
3438
Zhao Yakuiddc90032010-01-06 22:05:56 +08003439 if (is_lvds && dev_priv->lvds_downclock_avail) {
3440 has_reduced_clock = limit->find_pll(limit, crtc,
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003441 dev_priv->lvds_downclock,
Jesse Barnes652c3932009-08-17 13:31:43 -07003442 refclk,
3443 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003444 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
3445 /*
3446 * If the different P is found, it means that we can't
3447 * switch the display clock by using the FP0/FP1.
3448 * In such case we will disable the LVDS downclock
3449 * feature.
3450 */
3451 DRM_DEBUG_KMS("Different P is found for "
3452 "LVDS clock/downclock\n");
3453 has_reduced_clock = 0;
3454 }
Jesse Barnes652c3932009-08-17 13:31:43 -07003455 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003456 /* SDVO TV has fixed PLL values depend on its clock range,
3457 this mirrors vbios setting. */
3458 if (is_sdvo && is_tv) {
3459 if (adjusted_mode->clock >= 100000
3460 && adjusted_mode->clock < 140500) {
3461 clock.p1 = 2;
3462 clock.p2 = 10;
3463 clock.n = 3;
3464 clock.m1 = 16;
3465 clock.m2 = 8;
3466 } else if (adjusted_mode->clock >= 140500
3467 && adjusted_mode->clock <= 200000) {
3468 clock.p1 = 1;
3469 clock.p2 = 10;
3470 clock.n = 6;
3471 clock.m1 = 12;
3472 clock.m2 = 8;
3473 }
3474 }
3475
Zhenyu Wang2c072452009-06-05 15:38:42 +08003476 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07003477 if (HAS_PCH_SPLIT(dev)) {
Adam Jackson77ffb592010-04-12 11:38:44 -04003478 int lane = 0, link_bw, bpp;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003479 /* eDP doesn't require FDI link, so just set DP M/N
3480 according to current link config */
3481 if (is_edp) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003482 target_clock = mode->clock;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003483 intel_edp_link_config(intel_encoder,
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003484 &lane, &link_bw);
3485 } else {
3486 /* DP over FDI requires target mode clock
3487 instead of link clock */
3488 if (is_dp)
3489 target_clock = mode->clock;
3490 else
3491 target_clock = adjusted_mode->clock;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003492 link_bw = 270000;
3493 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00003494
3495 /* determine panel color depth */
3496 temp = I915_READ(pipeconf_reg);
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003497 temp &= ~PIPE_BPC_MASK;
3498 if (is_lvds) {
3499 int lvds_reg = I915_READ(PCH_LVDS);
3500 /* the BPC will be 6 if it is 18-bit LVDS panel */
3501 if ((lvds_reg & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
3502 temp |= PIPE_8BPC;
3503 else
3504 temp |= PIPE_6BPC;
Zhao Yakui36e83a12010-06-12 14:32:21 +08003505 } else if (is_edp || (is_dp && intel_pch_has_edp(crtc))) {
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08003506 switch (dev_priv->edp_bpp/3) {
3507 case 8:
3508 temp |= PIPE_8BPC;
3509 break;
3510 case 10:
3511 temp |= PIPE_10BPC;
3512 break;
3513 case 6:
3514 temp |= PIPE_6BPC;
3515 break;
3516 case 12:
3517 temp |= PIPE_12BPC;
3518 break;
3519 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003520 } else
3521 temp |= PIPE_8BPC;
3522 I915_WRITE(pipeconf_reg, temp);
3523 I915_READ(pipeconf_reg);
Zhenyu Wang58a27472009-09-25 08:01:28 +00003524
3525 switch (temp & PIPE_BPC_MASK) {
3526 case PIPE_8BPC:
3527 bpp = 24;
3528 break;
3529 case PIPE_10BPC:
3530 bpp = 30;
3531 break;
3532 case PIPE_6BPC:
3533 bpp = 18;
3534 break;
3535 case PIPE_12BPC:
3536 bpp = 36;
3537 break;
3538 default:
3539 DRM_ERROR("unknown pipe bpc value\n");
3540 bpp = 24;
3541 }
3542
Adam Jackson77ffb592010-04-12 11:38:44 -04003543 if (!lane) {
3544 /*
3545 * Account for spread spectrum to avoid
3546 * oversubscribing the link. Max center spread
3547 * is 2.5%; use 5% for safety's sake.
3548 */
3549 u32 bps = target_clock * bpp * 21 / 20;
3550 lane = bps / (link_bw * 8) + 1;
3551 }
3552
3553 intel_crtc->fdi_lanes = lane;
3554
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003555 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003556 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003557
Zhenyu Wangc038e512009-10-19 15:43:48 +08003558 /* Ironlake: try to setup display ref clock before DPLL
3559 * enabling. This is only under driver's control after
3560 * PCH B stepping, previous chipset stepping should be
3561 * ignoring this setting.
3562 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003563 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003564 temp = I915_READ(PCH_DREF_CONTROL);
3565 /* Always enable nonspread source */
3566 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
3567 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
3568 I915_WRITE(PCH_DREF_CONTROL, temp);
3569 POSTING_READ(PCH_DREF_CONTROL);
3570
3571 temp &= ~DREF_SSC_SOURCE_MASK;
3572 temp |= DREF_SSC_SOURCE_ENABLE;
3573 I915_WRITE(PCH_DREF_CONTROL, temp);
3574 POSTING_READ(PCH_DREF_CONTROL);
3575
3576 udelay(200);
3577
3578 if (is_edp) {
3579 if (dev_priv->lvds_use_ssc) {
3580 temp |= DREF_SSC1_ENABLE;
3581 I915_WRITE(PCH_DREF_CONTROL, temp);
3582 POSTING_READ(PCH_DREF_CONTROL);
3583
3584 udelay(200);
3585
3586 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3587 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
3588 I915_WRITE(PCH_DREF_CONTROL, temp);
3589 POSTING_READ(PCH_DREF_CONTROL);
3590 } else {
3591 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
3592 I915_WRITE(PCH_DREF_CONTROL, temp);
3593 POSTING_READ(PCH_DREF_CONTROL);
3594 }
3595 }
3596 }
3597
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003598 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08003599 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003600 if (has_reduced_clock)
3601 fp2 = (1 << reduced_clock.n) << 16 |
3602 reduced_clock.m1 << 8 | reduced_clock.m2;
3603 } else {
Shaohua Li21778322009-02-23 15:19:16 +08003604 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003605 if (has_reduced_clock)
3606 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
3607 reduced_clock.m2;
3608 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003609
Eric Anholtbad720f2009-10-22 16:11:14 -07003610 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003611 dpll = DPLL_VGA_MODE_DIS;
3612
Jesse Barnes79e53942008-11-07 14:24:08 -08003613 if (IS_I9XX(dev)) {
3614 if (is_lvds)
3615 dpll |= DPLLB_MODE_LVDS;
3616 else
3617 dpll |= DPLLB_MODE_DAC_SERIAL;
3618 if (is_sdvo) {
3619 dpll |= DPLL_DVO_HIGH_SPEED;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003620 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
Sean Young942642a2009-08-06 17:35:50 +08003621 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003622 dpll |= (sdvo_pixel_multiply - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
Eric Anholtbad720f2009-10-22 16:11:14 -07003623 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003624 dpll |= (sdvo_pixel_multiply - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003625 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003626 if (is_dp)
3627 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003628
3629 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003630 if (IS_PINEVIEW(dev))
3631 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003632 else {
Shaohua Li21778322009-02-23 15:19:16 +08003633 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003634 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003635 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003636 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07003637 if (IS_G4X(dev) && has_reduced_clock)
3638 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003639 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003640 switch (clock.p2) {
3641 case 5:
3642 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3643 break;
3644 case 7:
3645 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3646 break;
3647 case 10:
3648 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3649 break;
3650 case 14:
3651 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3652 break;
3653 }
Eric Anholtbad720f2009-10-22 16:11:14 -07003654 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003655 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3656 } else {
3657 if (is_lvds) {
3658 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3659 } else {
3660 if (clock.p1 == 2)
3661 dpll |= PLL_P1_DIVIDE_BY_TWO;
3662 else
3663 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3664 if (clock.p2 == 4)
3665 dpll |= PLL_P2_DIVIDE_BY_4;
3666 }
3667 }
3668
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003669 if (is_sdvo && is_tv)
3670 dpll |= PLL_REF_INPUT_TVCLKINBC;
3671 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08003672 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003673 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08003674 dpll |= 3;
Eric Anholtc751ce42010-03-25 11:48:48 -07003675 else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003676 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08003677 else
3678 dpll |= PLL_REF_INPUT_DREFCLK;
3679
3680 /* setup pipeconf */
3681 pipeconf = I915_READ(pipeconf_reg);
3682
3683 /* Set up the display plane register */
3684 dspcntr = DISPPLANE_GAMMA_ENABLE;
3685
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003686 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08003687 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07003688 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003689 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07003690 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003691 else
3692 dspcntr |= DISPPLANE_SEL_PIPE_B;
3693 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003694
3695 if (pipe == 0 && !IS_I965G(dev)) {
3696 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3697 * core speed.
3698 *
3699 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3700 * pipe == 0 check?
3701 */
Jesse Barnese70236a2009-09-21 10:42:27 -07003702 if (mode->clock >
3703 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Jesse Barnes79e53942008-11-07 14:24:08 -08003704 pipeconf |= PIPEACONF_DOUBLE_WIDE;
3705 else
3706 pipeconf &= ~PIPEACONF_DOUBLE_WIDE;
3707 }
3708
Linus Torvalds8d86dc62010-06-08 20:16:28 -07003709 dspcntr |= DISPLAY_PLANE_ENABLE;
3710 pipeconf |= PIPEACONF_ENABLE;
3711 dpll |= DPLL_VCO_ENABLE;
3712
3713
Jesse Barnes79e53942008-11-07 14:24:08 -08003714 /* Disable the panel fitter if it was on our pipe */
Eric Anholtbad720f2009-10-22 16:11:14 -07003715 if (!HAS_PCH_SPLIT(dev) && intel_panel_fitter_pipe(dev) == pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08003716 I915_WRITE(PFIT_CONTROL, 0);
3717
Zhao Yakui28c97732009-10-09 11:39:41 +08003718 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08003719 drm_mode_debug_printmodeline(mode);
3720
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003721 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07003722 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003723 fp_reg = pch_fp_reg;
3724 dpll_reg = pch_dpll_reg;
3725 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003726
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003727 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003728 ironlake_disable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003729 } else if ((dpll & DPLL_VCO_ENABLE)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003730 I915_WRITE(fp_reg, fp);
3731 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
3732 I915_READ(dpll_reg);
3733 udelay(150);
3734 }
3735
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003736 /* enable transcoder DPLL */
3737 if (HAS_PCH_CPT(dev)) {
3738 temp = I915_READ(PCH_DPLL_SEL);
3739 if (trans_dpll_sel == 0)
3740 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
3741 else
3742 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
3743 I915_WRITE(PCH_DPLL_SEL, temp);
3744 I915_READ(PCH_DPLL_SEL);
3745 udelay(150);
3746 }
3747
Jesse Barnes79e53942008-11-07 14:24:08 -08003748 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3749 * This is an exception to the general rule that mode_set doesn't turn
3750 * things on.
3751 */
3752 if (is_lvds) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08003753 u32 lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08003754
Eric Anholtbad720f2009-10-22 16:11:14 -07003755 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08003756 lvds_reg = PCH_LVDS;
3757
3758 lvds = I915_READ(lvds_reg);
Adam Jackson0f3ee802010-03-31 11:41:51 -04003759 lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003760 if (pipe == 1) {
3761 if (HAS_PCH_CPT(dev))
3762 lvds |= PORT_TRANS_B_SEL_CPT;
3763 else
3764 lvds |= LVDS_PIPEB_SELECT;
3765 } else {
3766 if (HAS_PCH_CPT(dev))
3767 lvds &= ~PORT_TRANS_SEL_MASK;
3768 else
3769 lvds &= ~LVDS_PIPEB_SELECT;
3770 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08003771 /* set the corresponsding LVDS_BORDER bit */
3772 lvds |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08003773 /* Set the B0-B3 data pairs corresponding to whether we're going to
3774 * set the DPLLs for dual-channel mode or not.
3775 */
3776 if (clock.p2 == 7)
3777 lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3778 else
3779 lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3780
3781 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3782 * appropriately here, but we need to look more thoroughly into how
3783 * panels behave in the two modes.
3784 */
Zhao Yakui898822c2010-01-04 16:29:30 +08003785 /* set the dithering flag */
3786 if (IS_I965G(dev)) {
3787 if (dev_priv->lvds_dither) {
Adam Jackson0a31a442010-04-19 15:57:25 -04003788 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakui898822c2010-01-04 16:29:30 +08003789 pipeconf |= PIPE_ENABLE_DITHER;
Adam Jackson0a31a442010-04-19 15:57:25 -04003790 pipeconf |= PIPE_DITHER_TYPE_ST01;
3791 } else
Zhao Yakui898822c2010-01-04 16:29:30 +08003792 lvds |= LVDS_ENABLE_DITHER;
3793 } else {
Adam Jackson0a31a442010-04-19 15:57:25 -04003794 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakui898822c2010-01-04 16:29:30 +08003795 pipeconf &= ~PIPE_ENABLE_DITHER;
Adam Jackson0a31a442010-04-19 15:57:25 -04003796 pipeconf &= ~PIPE_DITHER_TYPE_MASK;
3797 } else
Zhao Yakui898822c2010-01-04 16:29:30 +08003798 lvds &= ~LVDS_ENABLE_DITHER;
3799 }
3800 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08003801 I915_WRITE(lvds_reg, lvds);
3802 I915_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003803 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003804 if (is_dp)
3805 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003806 else if (HAS_PCH_SPLIT(dev)) {
3807 /* For non-DP output, clear any trans DP clock recovery setting.*/
3808 if (pipe == 0) {
3809 I915_WRITE(TRANSA_DATA_M1, 0);
3810 I915_WRITE(TRANSA_DATA_N1, 0);
3811 I915_WRITE(TRANSA_DP_LINK_M1, 0);
3812 I915_WRITE(TRANSA_DP_LINK_N1, 0);
3813 } else {
3814 I915_WRITE(TRANSB_DATA_M1, 0);
3815 I915_WRITE(TRANSB_DATA_N1, 0);
3816 I915_WRITE(TRANSB_DP_LINK_M1, 0);
3817 I915_WRITE(TRANSB_DP_LINK_N1, 0);
3818 }
3819 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003820
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003821 if (!is_edp) {
3822 I915_WRITE(fp_reg, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003823 I915_WRITE(dpll_reg, dpll);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003824 I915_READ(dpll_reg);
3825 /* Wait for the clocks to stabilize. */
3826 udelay(150);
3827
Eric Anholtbad720f2009-10-22 16:11:14 -07003828 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) {
Zhao Yakuibb66c512009-09-10 15:45:49 +08003829 if (is_sdvo) {
3830 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
3831 I915_WRITE(dpll_md_reg, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) |
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003832 ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT));
Zhao Yakuibb66c512009-09-10 15:45:49 +08003833 } else
3834 I915_WRITE(dpll_md_reg, 0);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003835 } else {
3836 /* write it again -- the BIOS does, after all */
3837 I915_WRITE(dpll_reg, dpll);
3838 }
3839 I915_READ(dpll_reg);
3840 /* Wait for the clocks to stabilize. */
3841 udelay(150);
Jesse Barnes79e53942008-11-07 14:24:08 -08003842 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003843
Jesse Barnes652c3932009-08-17 13:31:43 -07003844 if (is_lvds && has_reduced_clock && i915_powersave) {
3845 I915_WRITE(fp_reg + 4, fp2);
3846 intel_crtc->lowfreq_avail = true;
3847 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003848 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003849 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
3850 }
3851 } else {
3852 I915_WRITE(fp_reg + 4, fp);
3853 intel_crtc->lowfreq_avail = false;
3854 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003855 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003856 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3857 }
3858 }
3859
Krzysztof Halasa734b4152010-05-25 18:41:46 +02003860 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
3861 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
3862 /* the chip adds 2 halflines automatically */
3863 adjusted_mode->crtc_vdisplay -= 1;
3864 adjusted_mode->crtc_vtotal -= 1;
3865 adjusted_mode->crtc_vblank_start -= 1;
3866 adjusted_mode->crtc_vblank_end -= 1;
3867 adjusted_mode->crtc_vsync_end -= 1;
3868 adjusted_mode->crtc_vsync_start -= 1;
3869 } else
3870 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
3871
Jesse Barnes79e53942008-11-07 14:24:08 -08003872 I915_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) |
3873 ((adjusted_mode->crtc_htotal - 1) << 16));
3874 I915_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) |
3875 ((adjusted_mode->crtc_hblank_end - 1) << 16));
3876 I915_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) |
3877 ((adjusted_mode->crtc_hsync_end - 1) << 16));
3878 I915_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) |
3879 ((adjusted_mode->crtc_vtotal - 1) << 16));
3880 I915_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) |
3881 ((adjusted_mode->crtc_vblank_end - 1) << 16));
3882 I915_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) |
3883 ((adjusted_mode->crtc_vsync_end - 1) << 16));
3884 /* pipesrc and dspsize control the size that is scaled from, which should
3885 * always be the user's requested size.
3886 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003887 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003888 I915_WRITE(dspsize_reg, ((mode->vdisplay - 1) << 16) |
3889 (mode->hdisplay - 1));
3890 I915_WRITE(dsppos_reg, 0);
3891 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003892 I915_WRITE(pipesrc_reg, ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08003893
Eric Anholtbad720f2009-10-22 16:11:14 -07003894 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003895 I915_WRITE(data_m1_reg, TU_SIZE(m_n.tu) | m_n.gmch_m);
3896 I915_WRITE(data_n1_reg, TU_SIZE(m_n.tu) | m_n.gmch_n);
3897 I915_WRITE(link_m1_reg, m_n.link_m);
3898 I915_WRITE(link_n1_reg, m_n.link_n);
3899
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003900 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003901 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003902 } else {
3903 /* enable FDI RX PLL too */
3904 temp = I915_READ(fdi_rx_reg);
3905 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003906 I915_READ(fdi_rx_reg);
3907 udelay(200);
3908
3909 /* enable FDI TX PLL too */
3910 temp = I915_READ(fdi_tx_reg);
3911 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
3912 I915_READ(fdi_tx_reg);
3913
3914 /* enable FDI RX PCDCLK */
3915 temp = I915_READ(fdi_rx_reg);
3916 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
3917 I915_READ(fdi_rx_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003918 udelay(200);
3919 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003920 }
3921
Jesse Barnes79e53942008-11-07 14:24:08 -08003922 I915_WRITE(pipeconf_reg, pipeconf);
3923 I915_READ(pipeconf_reg);
3924
3925 intel_wait_for_vblank(dev);
3926
Eric Anholtc2416fc2009-11-05 15:30:35 -08003927 if (IS_IRONLAKE(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08003928 /* enable address swizzle for tiling buffer */
3929 temp = I915_READ(DISP_ARB_CTL);
3930 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
3931 }
3932
Jesse Barnes79e53942008-11-07 14:24:08 -08003933 I915_WRITE(dspcntr_reg, dspcntr);
3934
3935 /* Flush the plane changes */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003936 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003937
Jesse Barnes74dff282009-09-14 15:39:40 -07003938 if ((IS_I965G(dev) || plane == 0))
3939 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnese70236a2009-09-21 10:42:27 -07003940
Shaohua Li7662c8b2009-06-26 11:23:55 +08003941 intel_update_watermarks(dev);
3942
Jesse Barnes79e53942008-11-07 14:24:08 -08003943 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003944
Chris Wilson1f803ee2009-06-06 09:45:59 +01003945 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003946}
3947
3948/** Loads the palette/gamma unit for the CRTC with the prepared values */
3949void intel_crtc_load_lut(struct drm_crtc *crtc)
3950{
3951 struct drm_device *dev = crtc->dev;
3952 struct drm_i915_private *dev_priv = dev->dev_private;
3953 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3954 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
3955 int i;
3956
3957 /* The clocks have to be on to load the palette. */
3958 if (!crtc->enabled)
3959 return;
3960
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003961 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07003962 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003963 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
3964 LGC_PALETTE_B;
3965
Jesse Barnes79e53942008-11-07 14:24:08 -08003966 for (i = 0; i < 256; i++) {
3967 I915_WRITE(palreg + 4 * i,
3968 (intel_crtc->lut_r[i] << 16) |
3969 (intel_crtc->lut_g[i] << 8) |
3970 intel_crtc->lut_b[i]);
3971 }
3972}
3973
3974static int intel_crtc_cursor_set(struct drm_crtc *crtc,
3975 struct drm_file *file_priv,
3976 uint32_t handle,
3977 uint32_t width, uint32_t height)
3978{
3979 struct drm_device *dev = crtc->dev;
3980 struct drm_i915_private *dev_priv = dev->dev_private;
3981 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3982 struct drm_gem_object *bo;
3983 struct drm_i915_gem_object *obj_priv;
3984 int pipe = intel_crtc->pipe;
3985 uint32_t control = (pipe == 0) ? CURACNTR : CURBCNTR;
3986 uint32_t base = (pipe == 0) ? CURABASE : CURBBASE;
Jesse Barnes14b603912009-05-20 16:47:08 -04003987 uint32_t temp = I915_READ(control);
Jesse Barnes79e53942008-11-07 14:24:08 -08003988 size_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003989 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003990
Zhao Yakui28c97732009-10-09 11:39:41 +08003991 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08003992
3993 /* if we want to turn off the cursor ignore width and height */
3994 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003995 DRM_DEBUG_KMS("cursor off\n");
Jesse Barnes14b603912009-05-20 16:47:08 -04003996 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
3997 temp &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
3998 temp |= CURSOR_MODE_DISABLE;
3999 } else {
4000 temp &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
4001 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004002 addr = 0;
4003 bo = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004004 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004005 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004006 }
4007
4008 /* Currently we only support 64x64 cursors */
4009 if (width != 64 || height != 64) {
4010 DRM_ERROR("we currently only support 64x64 cursors\n");
4011 return -EINVAL;
4012 }
4013
4014 bo = drm_gem_object_lookup(dev, file_priv, handle);
4015 if (!bo)
4016 return -ENOENT;
4017
Daniel Vetter23010e42010-03-08 13:35:02 +01004018 obj_priv = to_intel_bo(bo);
Jesse Barnes79e53942008-11-07 14:24:08 -08004019
4020 if (bo->size < width * height * 4) {
4021 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004022 ret = -ENOMEM;
4023 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004024 }
4025
Dave Airlie71acb5e2008-12-30 20:31:46 +10004026 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004027 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004028 if (!dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004029 ret = i915_gem_object_pin(bo, PAGE_SIZE);
4030 if (ret) {
4031 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004032 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004033 }
Chris Wilsone7b526b2010-06-02 08:30:48 +01004034
4035 ret = i915_gem_object_set_to_gtt_domain(bo, 0);
4036 if (ret) {
4037 DRM_ERROR("failed to move cursor bo into the GTT\n");
4038 goto fail_unpin;
4039 }
4040
Jesse Barnes79e53942008-11-07 14:24:08 -08004041 addr = obj_priv->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004042 } else {
4043 ret = i915_gem_attach_phys_object(dev, bo, (pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1);
4044 if (ret) {
4045 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004046 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004047 }
4048 addr = obj_priv->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004049 }
4050
Jesse Barnes14b603912009-05-20 16:47:08 -04004051 if (!IS_I9XX(dev))
4052 I915_WRITE(CURSIZE, (height << 12) | width);
4053
4054 /* Hooray for CUR*CNTR differences */
4055 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
4056 temp &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4057 temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4058 temp |= (pipe << 28); /* Connect to correct pipe */
4059 } else {
4060 temp &= ~(CURSOR_FORMAT_MASK);
4061 temp |= CURSOR_ENABLE;
4062 temp |= CURSOR_FORMAT_ARGB | CURSOR_GAMMA_ENABLE;
4063 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004064
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004065 finish:
Jesse Barnes79e53942008-11-07 14:24:08 -08004066 I915_WRITE(control, temp);
4067 I915_WRITE(base, addr);
4068
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004069 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004070 if (dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004071 if (intel_crtc->cursor_bo != bo)
4072 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4073 } else
4074 i915_gem_object_unpin(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004075 drm_gem_object_unreference(intel_crtc->cursor_bo);
4076 }
Jesse Barnes80824002009-09-10 15:28:06 -07004077
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004078 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004079
4080 intel_crtc->cursor_addr = addr;
4081 intel_crtc->cursor_bo = bo;
4082
Jesse Barnes79e53942008-11-07 14:24:08 -08004083 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004084fail_unpin:
4085 i915_gem_object_unpin(bo);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004086fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004087 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004088fail:
4089 drm_gem_object_unreference_unlocked(bo);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004090 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004091}
4092
4093static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4094{
4095 struct drm_device *dev = crtc->dev;
4096 struct drm_i915_private *dev_priv = dev->dev_private;
4097 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07004098 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08004099 int pipe = intel_crtc->pipe;
4100 uint32_t temp = 0;
4101 uint32_t adder;
4102
Jesse Barnes652c3932009-08-17 13:31:43 -07004103 if (crtc->fb) {
4104 intel_fb = to_intel_framebuffer(crtc->fb);
4105 intel_mark_busy(dev, intel_fb->obj);
4106 }
4107
Jesse Barnes79e53942008-11-07 14:24:08 -08004108 if (x < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07004109 temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004110 x = -x;
4111 }
4112 if (y < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07004113 temp |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004114 y = -y;
4115 }
4116
Keith Packard2245fda2009-05-30 20:42:29 -07004117 temp |= x << CURSOR_X_SHIFT;
4118 temp |= y << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004119
4120 adder = intel_crtc->cursor_addr;
4121 I915_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp);
4122 I915_WRITE((pipe == 0) ? CURABASE : CURBBASE, adder);
4123
4124 return 0;
4125}
4126
4127/** Sets the color ramps on behalf of RandR */
4128void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4129 u16 blue, int regno)
4130{
4131 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4132
4133 intel_crtc->lut_r[regno] = red >> 8;
4134 intel_crtc->lut_g[regno] = green >> 8;
4135 intel_crtc->lut_b[regno] = blue >> 8;
4136}
4137
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004138void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4139 u16 *blue, int regno)
4140{
4141 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4142
4143 *red = intel_crtc->lut_r[regno] << 8;
4144 *green = intel_crtc->lut_g[regno] << 8;
4145 *blue = intel_crtc->lut_b[regno] << 8;
4146}
4147
Jesse Barnes79e53942008-11-07 14:24:08 -08004148static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
4149 u16 *blue, uint32_t size)
4150{
4151 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4152 int i;
4153
4154 if (size != 256)
4155 return;
4156
4157 for (i = 0; i < 256; i++) {
4158 intel_crtc->lut_r[i] = red[i] >> 8;
4159 intel_crtc->lut_g[i] = green[i] >> 8;
4160 intel_crtc->lut_b[i] = blue[i] >> 8;
4161 }
4162
4163 intel_crtc_load_lut(crtc);
4164}
4165
4166/**
4167 * Get a pipe with a simple mode set on it for doing load-based monitor
4168 * detection.
4169 *
4170 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07004171 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08004172 *
Eric Anholtc751ce42010-03-25 11:48:48 -07004173 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08004174 * configured for it. In the future, it could choose to temporarily disable
4175 * some outputs to free up a pipe for its use.
4176 *
4177 * \return crtc, or NULL if no pipes are available.
4178 */
4179
4180/* VESA 640x480x72Hz mode to set on the pipe */
4181static struct drm_display_mode load_detect_mode = {
4182 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4183 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4184};
4185
Eric Anholt21d40d32010-03-25 11:11:14 -07004186struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004187 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08004188 struct drm_display_mode *mode,
4189 int *dpms_mode)
4190{
4191 struct intel_crtc *intel_crtc;
4192 struct drm_crtc *possible_crtc;
4193 struct drm_crtc *supported_crtc =NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004194 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004195 struct drm_crtc *crtc = NULL;
4196 struct drm_device *dev = encoder->dev;
4197 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4198 struct drm_crtc_helper_funcs *crtc_funcs;
4199 int i = -1;
4200
4201 /*
4202 * Algorithm gets a little messy:
4203 * - if the connector already has an assigned crtc, use it (but make
4204 * sure it's on first)
4205 * - try to find the first unused crtc that can drive this connector,
4206 * and use that if we find one
4207 * - if there are no unused crtcs available, try to use the first
4208 * one we found that supports the connector
4209 */
4210
4211 /* See if we already have a CRTC for this connector */
4212 if (encoder->crtc) {
4213 crtc = encoder->crtc;
4214 /* Make sure the crtc and connector are running */
4215 intel_crtc = to_intel_crtc(crtc);
4216 *dpms_mode = intel_crtc->dpms_mode;
4217 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4218 crtc_funcs = crtc->helper_private;
4219 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4220 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
4221 }
4222 return crtc;
4223 }
4224
4225 /* Find an unused one (if possible) */
4226 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
4227 i++;
4228 if (!(encoder->possible_crtcs & (1 << i)))
4229 continue;
4230 if (!possible_crtc->enabled) {
4231 crtc = possible_crtc;
4232 break;
4233 }
4234 if (!supported_crtc)
4235 supported_crtc = possible_crtc;
4236 }
4237
4238 /*
4239 * If we didn't find an unused CRTC, don't use any.
4240 */
4241 if (!crtc) {
4242 return NULL;
4243 }
4244
4245 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004246 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07004247 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004248
4249 intel_crtc = to_intel_crtc(crtc);
4250 *dpms_mode = intel_crtc->dpms_mode;
4251
4252 if (!crtc->enabled) {
4253 if (!mode)
4254 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05004255 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004256 } else {
4257 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4258 crtc_funcs = crtc->helper_private;
4259 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4260 }
4261
4262 /* Add this connector to the crtc */
4263 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
4264 encoder_funcs->commit(encoder);
4265 }
4266 /* let the connector get through one full cycle before testing */
4267 intel_wait_for_vblank(dev);
4268
4269 return crtc;
4270}
4271
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004272void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
4273 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08004274{
Eric Anholt21d40d32010-03-25 11:11:14 -07004275 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004276 struct drm_device *dev = encoder->dev;
4277 struct drm_crtc *crtc = encoder->crtc;
4278 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4279 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
4280
Eric Anholt21d40d32010-03-25 11:11:14 -07004281 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004282 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004283 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004284 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004285 crtc->enabled = drm_helper_crtc_in_use(crtc);
4286 drm_helper_disable_unused_functions(dev);
4287 }
4288
Eric Anholtc751ce42010-03-25 11:48:48 -07004289 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08004290 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4291 if (encoder->crtc == crtc)
4292 encoder_funcs->dpms(encoder, dpms_mode);
4293 crtc_funcs->dpms(crtc, dpms_mode);
4294 }
4295}
4296
4297/* Returns the clock of the currently programmed mode of the given pipe. */
4298static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4299{
4300 struct drm_i915_private *dev_priv = dev->dev_private;
4301 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4302 int pipe = intel_crtc->pipe;
4303 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4304 u32 fp;
4305 intel_clock_t clock;
4306
4307 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4308 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4309 else
4310 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4311
4312 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004313 if (IS_PINEVIEW(dev)) {
4314 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
4315 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08004316 } else {
4317 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
4318 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
4319 }
4320
Jesse Barnes79e53942008-11-07 14:24:08 -08004321 if (IS_I9XX(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004322 if (IS_PINEVIEW(dev))
4323 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
4324 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08004325 else
4326 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08004327 DPLL_FPA01_P1_POST_DIV_SHIFT);
4328
4329 switch (dpll & DPLL_MODE_MASK) {
4330 case DPLLB_MODE_DAC_SERIAL:
4331 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
4332 5 : 10;
4333 break;
4334 case DPLLB_MODE_LVDS:
4335 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
4336 7 : 14;
4337 break;
4338 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08004339 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08004340 "mode\n", (int)(dpll & DPLL_MODE_MASK));
4341 return 0;
4342 }
4343
4344 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08004345 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004346 } else {
4347 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
4348
4349 if (is_lvds) {
4350 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
4351 DPLL_FPA01_P1_POST_DIV_SHIFT);
4352 clock.p2 = 14;
4353
4354 if ((dpll & PLL_REF_INPUT_MASK) ==
4355 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
4356 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08004357 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004358 } else
Shaohua Li21778322009-02-23 15:19:16 +08004359 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004360 } else {
4361 if (dpll & PLL_P1_DIVIDE_BY_TWO)
4362 clock.p1 = 2;
4363 else {
4364 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
4365 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
4366 }
4367 if (dpll & PLL_P2_DIVIDE_BY_4)
4368 clock.p2 = 4;
4369 else
4370 clock.p2 = 2;
4371
Shaohua Li21778322009-02-23 15:19:16 +08004372 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004373 }
4374 }
4375
4376 /* XXX: It would be nice to validate the clocks, but we can't reuse
4377 * i830PllIsValid() because it relies on the xf86_config connector
4378 * configuration being accurate, which it isn't necessarily.
4379 */
4380
4381 return clock.dot;
4382}
4383
4384/** Returns the currently programmed mode of the given pipe. */
4385struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
4386 struct drm_crtc *crtc)
4387{
4388 struct drm_i915_private *dev_priv = dev->dev_private;
4389 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4390 int pipe = intel_crtc->pipe;
4391 struct drm_display_mode *mode;
4392 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
4393 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
4394 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
4395 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
4396
4397 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
4398 if (!mode)
4399 return NULL;
4400
4401 mode->clock = intel_crtc_clock_get(dev, crtc);
4402 mode->hdisplay = (htot & 0xffff) + 1;
4403 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
4404 mode->hsync_start = (hsync & 0xffff) + 1;
4405 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
4406 mode->vdisplay = (vtot & 0xffff) + 1;
4407 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
4408 mode->vsync_start = (vsync & 0xffff) + 1;
4409 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
4410
4411 drm_mode_set_name(mode);
4412 drm_mode_set_crtcinfo(mode, 0);
4413
4414 return mode;
4415}
4416
Jesse Barnes652c3932009-08-17 13:31:43 -07004417#define GPU_IDLE_TIMEOUT 500 /* ms */
4418
4419/* When this timer fires, we've been idle for awhile */
4420static void intel_gpu_idle_timer(unsigned long arg)
4421{
4422 struct drm_device *dev = (struct drm_device *)arg;
4423 drm_i915_private_t *dev_priv = dev->dev_private;
4424
Zhao Yakui44d98a62009-10-09 11:39:40 +08004425 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004426
4427 dev_priv->busy = false;
4428
Eric Anholt01dfba92009-09-06 15:18:53 -07004429 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004430}
4431
Jesse Barnes652c3932009-08-17 13:31:43 -07004432#define CRTC_IDLE_TIMEOUT 1000 /* ms */
4433
4434static void intel_crtc_idle_timer(unsigned long arg)
4435{
4436 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
4437 struct drm_crtc *crtc = &intel_crtc->base;
4438 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
4439
Zhao Yakui44d98a62009-10-09 11:39:40 +08004440 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004441
4442 intel_crtc->busy = false;
4443
Eric Anholt01dfba92009-09-06 15:18:53 -07004444 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004445}
4446
4447static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule)
4448{
4449 struct drm_device *dev = crtc->dev;
4450 drm_i915_private_t *dev_priv = dev->dev_private;
4451 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4452 int pipe = intel_crtc->pipe;
4453 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4454 int dpll = I915_READ(dpll_reg);
4455
Eric Anholtbad720f2009-10-22 16:11:14 -07004456 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004457 return;
4458
4459 if (!dev_priv->lvds_downclock_avail)
4460 return;
4461
4462 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004463 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004464
4465 /* Unlock panel regs */
4466 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16));
4467
4468 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
4469 I915_WRITE(dpll_reg, dpll);
4470 dpll = I915_READ(dpll_reg);
4471 intel_wait_for_vblank(dev);
4472 dpll = I915_READ(dpll_reg);
4473 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08004474 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004475
4476 /* ...and lock them again */
4477 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4478 }
4479
4480 /* Schedule downclock */
4481 if (schedule)
4482 mod_timer(&intel_crtc->idle_timer, jiffies +
4483 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4484}
4485
4486static void intel_decrease_pllclock(struct drm_crtc *crtc)
4487{
4488 struct drm_device *dev = crtc->dev;
4489 drm_i915_private_t *dev_priv = dev->dev_private;
4490 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4491 int pipe = intel_crtc->pipe;
4492 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4493 int dpll = I915_READ(dpll_reg);
4494
Eric Anholtbad720f2009-10-22 16:11:14 -07004495 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004496 return;
4497
4498 if (!dev_priv->lvds_downclock_avail)
4499 return;
4500
4501 /*
4502 * Since this is called by a timer, we should never get here in
4503 * the manual case.
4504 */
4505 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004506 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004507
4508 /* Unlock panel regs */
4509 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16));
4510
4511 dpll |= DISPLAY_RATE_SELECT_FPA1;
4512 I915_WRITE(dpll_reg, dpll);
4513 dpll = I915_READ(dpll_reg);
4514 intel_wait_for_vblank(dev);
4515 dpll = I915_READ(dpll_reg);
4516 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08004517 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004518
4519 /* ...and lock them again */
4520 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4521 }
4522
4523}
4524
4525/**
4526 * intel_idle_update - adjust clocks for idleness
4527 * @work: work struct
4528 *
4529 * Either the GPU or display (or both) went idle. Check the busy status
4530 * here and adjust the CRTC and GPU clocks as necessary.
4531 */
4532static void intel_idle_update(struct work_struct *work)
4533{
4534 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
4535 idle_work);
4536 struct drm_device *dev = dev_priv->dev;
4537 struct drm_crtc *crtc;
4538 struct intel_crtc *intel_crtc;
Li Peng45ac22c2010-06-12 23:38:35 +08004539 int enabled = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004540
4541 if (!i915_powersave)
4542 return;
4543
4544 mutex_lock(&dev->struct_mutex);
4545
Jesse Barnes7648fa92010-05-20 14:28:11 -07004546 i915_update_gfx_val(dev_priv);
4547
Jesse Barnes652c3932009-08-17 13:31:43 -07004548 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4549 /* Skip inactive CRTCs */
4550 if (!crtc->fb)
4551 continue;
4552
Li Peng45ac22c2010-06-12 23:38:35 +08004553 enabled++;
Jesse Barnes652c3932009-08-17 13:31:43 -07004554 intel_crtc = to_intel_crtc(crtc);
4555 if (!intel_crtc->busy)
4556 intel_decrease_pllclock(crtc);
4557 }
4558
Li Peng45ac22c2010-06-12 23:38:35 +08004559 if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) {
4560 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
4561 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
4562 }
4563
Jesse Barnes652c3932009-08-17 13:31:43 -07004564 mutex_unlock(&dev->struct_mutex);
4565}
4566
4567/**
4568 * intel_mark_busy - mark the GPU and possibly the display busy
4569 * @dev: drm device
4570 * @obj: object we're operating on
4571 *
4572 * Callers can use this function to indicate that the GPU is busy processing
4573 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
4574 * buffer), we'll also mark the display as busy, so we know to increase its
4575 * clock frequency.
4576 */
4577void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj)
4578{
4579 drm_i915_private_t *dev_priv = dev->dev_private;
4580 struct drm_crtc *crtc = NULL;
4581 struct intel_framebuffer *intel_fb;
4582 struct intel_crtc *intel_crtc;
4583
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08004584 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4585 return;
4586
Li Peng060e6452010-02-10 01:54:24 +08004587 if (!dev_priv->busy) {
4588 if (IS_I945G(dev) || IS_I945GM(dev)) {
4589 u32 fw_blc_self;
Li Pengee980b82010-01-27 19:01:11 +08004590
Li Peng060e6452010-02-10 01:54:24 +08004591 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4592 fw_blc_self = I915_READ(FW_BLC_SELF);
4593 fw_blc_self &= ~FW_BLC_SELF_EN;
4594 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4595 }
Chris Wilson28cf7982009-11-30 01:08:56 +00004596 dev_priv->busy = true;
Li Peng060e6452010-02-10 01:54:24 +08004597 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00004598 mod_timer(&dev_priv->idle_timer, jiffies +
4599 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07004600
4601 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4602 if (!crtc->fb)
4603 continue;
4604
4605 intel_crtc = to_intel_crtc(crtc);
4606 intel_fb = to_intel_framebuffer(crtc->fb);
4607 if (intel_fb->obj == obj) {
4608 if (!intel_crtc->busy) {
Li Peng060e6452010-02-10 01:54:24 +08004609 if (IS_I945G(dev) || IS_I945GM(dev)) {
4610 u32 fw_blc_self;
4611
4612 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4613 fw_blc_self = I915_READ(FW_BLC_SELF);
4614 fw_blc_self &= ~FW_BLC_SELF_EN;
4615 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4616 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004617 /* Non-busy -> busy, upclock */
4618 intel_increase_pllclock(crtc, true);
4619 intel_crtc->busy = true;
4620 } else {
4621 /* Busy -> busy, put off timer */
4622 mod_timer(&intel_crtc->idle_timer, jiffies +
4623 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4624 }
4625 }
4626 }
4627}
4628
Jesse Barnes79e53942008-11-07 14:24:08 -08004629static void intel_crtc_destroy(struct drm_crtc *crtc)
4630{
4631 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4632
4633 drm_crtc_cleanup(crtc);
4634 kfree(intel_crtc);
4635}
4636
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004637struct intel_unpin_work {
4638 struct work_struct work;
4639 struct drm_device *dev;
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004640 struct drm_gem_object *old_fb_obj;
4641 struct drm_gem_object *pending_flip_obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004642 struct drm_pending_vblank_event *event;
4643 int pending;
4644};
4645
4646static void intel_unpin_work_fn(struct work_struct *__work)
4647{
4648 struct intel_unpin_work *work =
4649 container_of(__work, struct intel_unpin_work, work);
4650
4651 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004652 i915_gem_object_unpin(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004653 drm_gem_object_unreference(work->pending_flip_obj);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004654 drm_gem_object_unreference(work->old_fb_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004655 mutex_unlock(&work->dev->struct_mutex);
4656 kfree(work);
4657}
4658
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004659static void do_intel_finish_page_flip(struct drm_device *dev,
4660 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004661{
4662 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004663 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4664 struct intel_unpin_work *work;
4665 struct drm_i915_gem_object *obj_priv;
4666 struct drm_pending_vblank_event *e;
4667 struct timeval now;
4668 unsigned long flags;
4669
4670 /* Ignore early vblank irqs */
4671 if (intel_crtc == NULL)
4672 return;
4673
4674 spin_lock_irqsave(&dev->event_lock, flags);
4675 work = intel_crtc->unpin_work;
4676 if (work == NULL || !work->pending) {
4677 spin_unlock_irqrestore(&dev->event_lock, flags);
4678 return;
4679 }
4680
4681 intel_crtc->unpin_work = NULL;
4682 drm_vblank_put(dev, intel_crtc->pipe);
4683
4684 if (work->event) {
4685 e = work->event;
4686 do_gettimeofday(&now);
4687 e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe);
4688 e->event.tv_sec = now.tv_sec;
4689 e->event.tv_usec = now.tv_usec;
4690 list_add_tail(&e->base.link,
4691 &e->base.file_priv->event_list);
4692 wake_up_interruptible(&e->base.file_priv->event_wait);
4693 }
4694
4695 spin_unlock_irqrestore(&dev->event_lock, flags);
4696
Daniel Vetter23010e42010-03-08 13:35:02 +01004697 obj_priv = to_intel_bo(work->pending_flip_obj);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004698
4699 /* Initial scanout buffer will have a 0 pending flip count */
4700 if ((atomic_read(&obj_priv->pending_flip) == 0) ||
4701 atomic_dec_and_test(&obj_priv->pending_flip))
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004702 DRM_WAKEUP(&dev_priv->pending_flip_queue);
4703 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07004704
4705 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004706}
4707
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004708void intel_finish_page_flip(struct drm_device *dev, int pipe)
4709{
4710 drm_i915_private_t *dev_priv = dev->dev_private;
4711 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4712
4713 do_intel_finish_page_flip(dev, crtc);
4714}
4715
4716void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
4717{
4718 drm_i915_private_t *dev_priv = dev->dev_private;
4719 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
4720
4721 do_intel_finish_page_flip(dev, crtc);
4722}
4723
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004724void intel_prepare_page_flip(struct drm_device *dev, int plane)
4725{
4726 drm_i915_private_t *dev_priv = dev->dev_private;
4727 struct intel_crtc *intel_crtc =
4728 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
4729 unsigned long flags;
4730
4731 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004732 if (intel_crtc->unpin_work) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004733 intel_crtc->unpin_work->pending = 1;
Jesse Barnesde3f4402010-01-14 13:18:02 -08004734 } else {
4735 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
4736 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004737 spin_unlock_irqrestore(&dev->event_lock, flags);
4738}
4739
4740static int intel_crtc_page_flip(struct drm_crtc *crtc,
4741 struct drm_framebuffer *fb,
4742 struct drm_pending_vblank_event *event)
4743{
4744 struct drm_device *dev = crtc->dev;
4745 struct drm_i915_private *dev_priv = dev->dev_private;
4746 struct intel_framebuffer *intel_fb;
4747 struct drm_i915_gem_object *obj_priv;
4748 struct drm_gem_object *obj;
4749 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4750 struct intel_unpin_work *work;
4751 unsigned long flags;
Zhenyu Wangaacef092010-02-09 09:46:20 +08004752 int pipesrc_reg = (intel_crtc->pipe == 0) ? PIPEASRC : PIPEBSRC;
4753 int ret, pipesrc;
Jesse Barnes83f7fd02010-04-05 14:03:51 -07004754 u32 flip_mask;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004755
4756 work = kzalloc(sizeof *work, GFP_KERNEL);
4757 if (work == NULL)
4758 return -ENOMEM;
4759
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004760 work->event = event;
4761 work->dev = crtc->dev;
4762 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004763 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004764 INIT_WORK(&work->work, intel_unpin_work_fn);
4765
4766 /* We borrow the event spin lock for protecting unpin_work */
4767 spin_lock_irqsave(&dev->event_lock, flags);
4768 if (intel_crtc->unpin_work) {
4769 spin_unlock_irqrestore(&dev->event_lock, flags);
4770 kfree(work);
Chris Wilson468f0b42010-05-27 13:18:13 +01004771
4772 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004773 return -EBUSY;
4774 }
4775 intel_crtc->unpin_work = work;
4776 spin_unlock_irqrestore(&dev->event_lock, flags);
4777
4778 intel_fb = to_intel_framebuffer(fb);
4779 obj = intel_fb->obj;
4780
Chris Wilson468f0b42010-05-27 13:18:13 +01004781 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004782 ret = intel_pin_and_fence_fb_obj(dev, obj);
4783 if (ret != 0) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004784 mutex_unlock(&dev->struct_mutex);
Chris Wilson468f0b42010-05-27 13:18:13 +01004785
4786 spin_lock_irqsave(&dev->event_lock, flags);
4787 intel_crtc->unpin_work = NULL;
4788 spin_unlock_irqrestore(&dev->event_lock, flags);
4789
4790 kfree(work);
4791
4792 DRM_DEBUG_DRIVER("flip queue: %p pin & fence failed\n",
4793 to_intel_bo(obj));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004794 return ret;
4795 }
4796
Jesse Barnes75dfca82010-02-10 15:09:44 -08004797 /* Reference the objects for the scheduled work. */
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004798 drm_gem_object_reference(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004799 drm_gem_object_reference(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004800
4801 crtc->fb = fb;
4802 i915_gem_object_flush_write_domain(obj);
4803 drm_vblank_get(dev, intel_crtc->pipe);
Daniel Vetter23010e42010-03-08 13:35:02 +01004804 obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004805 atomic_inc(&obj_priv->pending_flip);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004806 work->pending_flip_obj = obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004807
Jesse Barnes83f7fd02010-04-05 14:03:51 -07004808 if (intel_crtc->plane)
4809 flip_mask = I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
4810 else
4811 flip_mask = I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT;
4812
4813 /* Wait for any previous flip to finish */
4814 if (IS_GEN3(dev))
4815 while (I915_READ(ISR) & flip_mask)
4816 ;
4817
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004818 BEGIN_LP_RING(4);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004819 if (IS_I965G(dev)) {
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004820 OUT_RING(MI_DISPLAY_FLIP |
4821 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4822 OUT_RING(fb->pitch);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004823 OUT_RING(obj_priv->gtt_offset | obj_priv->tiling_mode);
Zhenyu Wangaacef092010-02-09 09:46:20 +08004824 pipesrc = I915_READ(pipesrc_reg);
4825 OUT_RING(pipesrc & 0x0fff0fff);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004826 } else {
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004827 OUT_RING(MI_DISPLAY_FLIP_I915 |
4828 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4829 OUT_RING(fb->pitch);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004830 OUT_RING(obj_priv->gtt_offset);
4831 OUT_RING(MI_NOOP);
4832 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004833 ADVANCE_LP_RING();
4834
4835 mutex_unlock(&dev->struct_mutex);
4836
Jesse Barnese5510fa2010-07-01 16:48:37 -07004837 trace_i915_flip_request(intel_crtc->plane, obj);
4838
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004839 return 0;
4840}
4841
Jesse Barnes79e53942008-11-07 14:24:08 -08004842static const struct drm_crtc_helper_funcs intel_helper_funcs = {
4843 .dpms = intel_crtc_dpms,
4844 .mode_fixup = intel_crtc_mode_fixup,
4845 .mode_set = intel_crtc_mode_set,
4846 .mode_set_base = intel_pipe_set_base,
4847 .prepare = intel_crtc_prepare,
4848 .commit = intel_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10004849 .load_lut = intel_crtc_load_lut,
Jesse Barnes79e53942008-11-07 14:24:08 -08004850};
4851
4852static const struct drm_crtc_funcs intel_crtc_funcs = {
4853 .cursor_set = intel_crtc_cursor_set,
4854 .cursor_move = intel_crtc_cursor_move,
4855 .gamma_set = intel_crtc_gamma_set,
4856 .set_config = drm_crtc_helper_set_config,
4857 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004858 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08004859};
4860
4861
Hannes Ederb358d0a2008-12-18 21:18:47 +01004862static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08004863{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004864 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004865 struct intel_crtc *intel_crtc;
4866 int i;
4867
4868 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
4869 if (intel_crtc == NULL)
4870 return;
4871
4872 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
4873
4874 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
4875 intel_crtc->pipe = pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004876 intel_crtc->plane = pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004877 for (i = 0; i < 256; i++) {
4878 intel_crtc->lut_r[i] = i;
4879 intel_crtc->lut_g[i] = i;
4880 intel_crtc->lut_b[i] = i;
4881 }
4882
Jesse Barnes80824002009-09-10 15:28:06 -07004883 /* Swap pipes & planes for FBC on pre-965 */
4884 intel_crtc->pipe = pipe;
4885 intel_crtc->plane = pipe;
4886 if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004887 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07004888 intel_crtc->plane = ((pipe == 0) ? 1 : 0);
4889 }
4890
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004891 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
4892 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
4893 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
4894 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
4895
Jesse Barnes79e53942008-11-07 14:24:08 -08004896 intel_crtc->cursor_addr = 0;
4897 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4898 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
4899
Jesse Barnes652c3932009-08-17 13:31:43 -07004900 intel_crtc->busy = false;
4901
4902 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
4903 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004904}
4905
Carl Worth08d7b3d2009-04-29 14:43:54 -07004906int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
4907 struct drm_file *file_priv)
4908{
4909 drm_i915_private_t *dev_priv = dev->dev_private;
4910 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02004911 struct drm_mode_object *drmmode_obj;
4912 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004913
4914 if (!dev_priv) {
4915 DRM_ERROR("called with no initialization\n");
4916 return -EINVAL;
4917 }
4918
Daniel Vetterc05422d2009-08-11 16:05:30 +02004919 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
4920 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07004921
Daniel Vetterc05422d2009-08-11 16:05:30 +02004922 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07004923 DRM_ERROR("no such CRTC id\n");
4924 return -EINVAL;
4925 }
4926
Daniel Vetterc05422d2009-08-11 16:05:30 +02004927 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
4928 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004929
Daniel Vetterc05422d2009-08-11 16:05:30 +02004930 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004931}
4932
Jesse Barnes79e53942008-11-07 14:24:08 -08004933struct drm_crtc *intel_get_crtc_from_pipe(struct drm_device *dev, int pipe)
4934{
4935 struct drm_crtc *crtc = NULL;
4936
4937 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4939 if (intel_crtc->pipe == pipe)
4940 break;
4941 }
4942 return crtc;
4943}
4944
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004945static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08004946{
4947 int index_mask = 0;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004948 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004949 int entry = 0;
4950
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004951 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
4952 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07004953 if (type_mask & intel_encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08004954 index_mask |= (1 << entry);
4955 entry++;
4956 }
4957 return index_mask;
4958}
4959
4960
4961static void intel_setup_outputs(struct drm_device *dev)
4962{
Eric Anholt725e30a2009-01-22 13:01:02 -08004963 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08004964 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004965
4966 intel_crt_init(dev);
4967
4968 /* Set up integrated LVDS */
Zhenyu Wang541998a2009-06-05 15:38:44 +08004969 if (IS_MOBILE(dev) && !IS_I830(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004970 intel_lvds_init(dev);
4971
Eric Anholtbad720f2009-10-22 16:11:14 -07004972 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004973 int found;
4974
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004975 if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED))
4976 intel_dp_init(dev, DP_A);
4977
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004978 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08004979 /* PCH SDVOB multiplex with HDMIB */
4980 found = intel_sdvo_init(dev, PCH_SDVOB);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004981 if (!found)
4982 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004983 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
4984 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004985 }
4986
4987 if (I915_READ(HDMIC) & PORT_DETECTED)
4988 intel_hdmi_init(dev, HDMIC);
4989
4990 if (I915_READ(HDMID) & PORT_DETECTED)
4991 intel_hdmi_init(dev, HDMID);
4992
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004993 if (I915_READ(PCH_DP_C) & DP_DETECTED)
4994 intel_dp_init(dev, PCH_DP_C);
4995
4996 if (I915_READ(PCH_DP_D) & DP_DETECTED)
4997 intel_dp_init(dev, PCH_DP_D);
4998
Zhenyu Wang103a1962009-11-27 11:44:36 +08004999 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08005000 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08005001
Eric Anholt725e30a2009-01-22 13:01:02 -08005002 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005003 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005004 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005005 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
5006 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005007 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005008 }
Ma Ling27185ae2009-08-24 13:50:23 +08005009
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005010 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
5011 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005012 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005013 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005014 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005015
5016 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005017
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005018 if (I915_READ(SDVOB) & SDVO_DETECTED) {
5019 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005020 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005021 }
Ma Ling27185ae2009-08-24 13:50:23 +08005022
5023 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
5024
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005025 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
5026 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005027 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005028 }
5029 if (SUPPORTS_INTEGRATED_DP(dev)) {
5030 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005031 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005032 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005033 }
Ma Ling27185ae2009-08-24 13:50:23 +08005034
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005035 if (SUPPORTS_INTEGRATED_DP(dev) &&
5036 (I915_READ(DP_D) & DP_DETECTED)) {
5037 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005038 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005039 }
Eric Anholtbad720f2009-10-22 16:11:14 -07005040 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005041 intel_dvo_init(dev);
5042
Zhenyu Wang103a1962009-11-27 11:44:36 +08005043 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005044 intel_tv_init(dev);
5045
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005046 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
5047 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08005048
Eric Anholt21d40d32010-03-25 11:11:14 -07005049 encoder->possible_crtcs = intel_encoder->crtc_mask;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005050 encoder->possible_clones = intel_encoder_clones(dev,
Eric Anholt21d40d32010-03-25 11:11:14 -07005051 intel_encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08005052 }
5053}
5054
5055static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
5056{
5057 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005058
5059 drm_framebuffer_cleanup(fb);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005060 drm_gem_object_unreference_unlocked(intel_fb->obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005061
5062 kfree(intel_fb);
5063}
5064
5065static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
5066 struct drm_file *file_priv,
5067 unsigned int *handle)
5068{
5069 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
5070 struct drm_gem_object *object = intel_fb->obj;
5071
5072 return drm_gem_handle_create(file_priv, object, handle);
5073}
5074
5075static const struct drm_framebuffer_funcs intel_fb_funcs = {
5076 .destroy = intel_user_framebuffer_destroy,
5077 .create_handle = intel_user_framebuffer_create_handle,
5078};
5079
Dave Airlie38651672010-03-30 05:34:13 +00005080int intel_framebuffer_init(struct drm_device *dev,
5081 struct intel_framebuffer *intel_fb,
5082 struct drm_mode_fb_cmd *mode_cmd,
5083 struct drm_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08005084{
Jesse Barnes79e53942008-11-07 14:24:08 -08005085 int ret;
5086
Jesse Barnes79e53942008-11-07 14:24:08 -08005087 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
5088 if (ret) {
5089 DRM_ERROR("framebuffer init failed %d\n", ret);
5090 return ret;
5091 }
5092
5093 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08005094 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08005095 return 0;
5096}
5097
Jesse Barnes79e53942008-11-07 14:24:08 -08005098static struct drm_framebuffer *
5099intel_user_framebuffer_create(struct drm_device *dev,
5100 struct drm_file *filp,
5101 struct drm_mode_fb_cmd *mode_cmd)
5102{
5103 struct drm_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00005104 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005105 int ret;
5106
5107 obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle);
5108 if (!obj)
5109 return NULL;
5110
Dave Airlie38651672010-03-30 05:34:13 +00005111 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5112 if (!intel_fb)
5113 return NULL;
5114
5115 ret = intel_framebuffer_init(dev, intel_fb,
5116 mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005117 if (ret) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00005118 drm_gem_object_unreference_unlocked(obj);
Dave Airlie38651672010-03-30 05:34:13 +00005119 kfree(intel_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005120 return NULL;
5121 }
5122
Dave Airlie38651672010-03-30 05:34:13 +00005123 return &intel_fb->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005124}
5125
Jesse Barnes79e53942008-11-07 14:24:08 -08005126static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08005127 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005128 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08005129};
5130
Chris Wilson9ea8d052010-01-04 18:57:56 +00005131static struct drm_gem_object *
5132intel_alloc_power_context(struct drm_device *dev)
5133{
5134 struct drm_gem_object *pwrctx;
5135 int ret;
5136
Daniel Vetterac52bc52010-04-09 19:05:06 +00005137 pwrctx = i915_gem_alloc_object(dev, 4096);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005138 if (!pwrctx) {
5139 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
5140 return NULL;
5141 }
5142
5143 mutex_lock(&dev->struct_mutex);
5144 ret = i915_gem_object_pin(pwrctx, 4096);
5145 if (ret) {
5146 DRM_ERROR("failed to pin power context: %d\n", ret);
5147 goto err_unref;
5148 }
5149
5150 ret = i915_gem_object_set_to_gtt_domain(pwrctx, 1);
5151 if (ret) {
5152 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
5153 goto err_unpin;
5154 }
5155 mutex_unlock(&dev->struct_mutex);
5156
5157 return pwrctx;
5158
5159err_unpin:
5160 i915_gem_object_unpin(pwrctx);
5161err_unref:
5162 drm_gem_object_unreference(pwrctx);
5163 mutex_unlock(&dev->struct_mutex);
5164 return NULL;
5165}
5166
Jesse Barnes7648fa92010-05-20 14:28:11 -07005167bool ironlake_set_drps(struct drm_device *dev, u8 val)
5168{
5169 struct drm_i915_private *dev_priv = dev->dev_private;
5170 u16 rgvswctl;
5171
5172 rgvswctl = I915_READ16(MEMSWCTL);
5173 if (rgvswctl & MEMCTL_CMD_STS) {
5174 DRM_DEBUG("gpu busy, RCS change rejected\n");
5175 return false; /* still busy with another command */
5176 }
5177
5178 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5179 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5180 I915_WRITE16(MEMSWCTL, rgvswctl);
5181 POSTING_READ16(MEMSWCTL);
5182
5183 rgvswctl |= MEMCTL_CMD_STS;
5184 I915_WRITE16(MEMSWCTL, rgvswctl);
5185
5186 return true;
5187}
5188
Jesse Barnesf97108d2010-01-29 11:27:07 -08005189void ironlake_enable_drps(struct drm_device *dev)
5190{
5191 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005192 u32 rgvmodectl = I915_READ(MEMMODECTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005193 u8 fmax, fmin, fstart, vstart;
5194 int i = 0;
5195
5196 /* 100ms RC evaluation intervals */
5197 I915_WRITE(RCUPEI, 100000);
5198 I915_WRITE(RCDNEI, 100000);
5199
5200 /* Set max/min thresholds to 90ms and 80ms respectively */
5201 I915_WRITE(RCBMAXAVG, 90000);
5202 I915_WRITE(RCBMINAVG, 80000);
5203
5204 I915_WRITE(MEMIHYST, 1);
5205
5206 /* Set up min, max, and cur for interrupt handling */
5207 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5208 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5209 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5210 MEMMODE_FSTART_SHIFT;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005211 fstart = fmax;
5212
Jesse Barnesf97108d2010-01-29 11:27:07 -08005213 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
5214 PXVFREQ_PX_SHIFT;
5215
Jesse Barnes7648fa92010-05-20 14:28:11 -07005216 dev_priv->fmax = fstart; /* IPS callback will increase this */
5217 dev_priv->fstart = fstart;
5218
5219 dev_priv->max_delay = fmax;
Jesse Barnesf97108d2010-01-29 11:27:07 -08005220 dev_priv->min_delay = fmin;
5221 dev_priv->cur_delay = fstart;
5222
Jesse Barnes7648fa92010-05-20 14:28:11 -07005223 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", fmax, fmin,
5224 fstart);
5225
Jesse Barnesf97108d2010-01-29 11:27:07 -08005226 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5227
5228 /*
5229 * Interrupts will be enabled in ironlake_irq_postinstall
5230 */
5231
5232 I915_WRITE(VIDSTART, vstart);
5233 POSTING_READ(VIDSTART);
5234
5235 rgvmodectl |= MEMMODE_SWMODE_EN;
5236 I915_WRITE(MEMMODECTL, rgvmodectl);
5237
5238 while (I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) {
5239 if (i++ > 100) {
5240 DRM_ERROR("stuck trying to change perf mode\n");
5241 break;
5242 }
5243 msleep(1);
5244 }
5245 msleep(1);
5246
Jesse Barnes7648fa92010-05-20 14:28:11 -07005247 ironlake_set_drps(dev, fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005248
Jesse Barnes7648fa92010-05-20 14:28:11 -07005249 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
5250 I915_READ(0x112e0);
5251 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
5252 dev_priv->last_count2 = I915_READ(0x112f4);
5253 getrawmonotonic(&dev_priv->last_time2);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005254}
5255
5256void ironlake_disable_drps(struct drm_device *dev)
5257{
5258 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005259 u16 rgvswctl = I915_READ16(MEMSWCTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005260
5261 /* Ack interrupts, disable EFC interrupt */
5262 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5263 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5264 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5265 I915_WRITE(DEIIR, DE_PCU_EVENT);
5266 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5267
5268 /* Go back to the starting frequency */
Jesse Barnes7648fa92010-05-20 14:28:11 -07005269 ironlake_set_drps(dev, dev_priv->fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005270 msleep(1);
5271 rgvswctl |= MEMCTL_CMD_STS;
5272 I915_WRITE(MEMSWCTL, rgvswctl);
5273 msleep(1);
5274
5275}
5276
Jesse Barnes7648fa92010-05-20 14:28:11 -07005277static unsigned long intel_pxfreq(u32 vidfreq)
5278{
5279 unsigned long freq;
5280 int div = (vidfreq & 0x3f0000) >> 16;
5281 int post = (vidfreq & 0x3000) >> 12;
5282 int pre = (vidfreq & 0x7);
5283
5284 if (!pre)
5285 return 0;
5286
5287 freq = ((div * 133333) / ((1<<post) * pre));
5288
5289 return freq;
5290}
5291
5292void intel_init_emon(struct drm_device *dev)
5293{
5294 struct drm_i915_private *dev_priv = dev->dev_private;
5295 u32 lcfuse;
5296 u8 pxw[16];
5297 int i;
5298
5299 /* Disable to program */
5300 I915_WRITE(ECR, 0);
5301 POSTING_READ(ECR);
5302
5303 /* Program energy weights for various events */
5304 I915_WRITE(SDEW, 0x15040d00);
5305 I915_WRITE(CSIEW0, 0x007f0000);
5306 I915_WRITE(CSIEW1, 0x1e220004);
5307 I915_WRITE(CSIEW2, 0x04000004);
5308
5309 for (i = 0; i < 5; i++)
5310 I915_WRITE(PEW + (i * 4), 0);
5311 for (i = 0; i < 3; i++)
5312 I915_WRITE(DEW + (i * 4), 0);
5313
5314 /* Program P-state weights to account for frequency power adjustment */
5315 for (i = 0; i < 16; i++) {
5316 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5317 unsigned long freq = intel_pxfreq(pxvidfreq);
5318 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5319 PXVFREQ_PX_SHIFT;
5320 unsigned long val;
5321
5322 val = vid * vid;
5323 val *= (freq / 1000);
5324 val *= 255;
5325 val /= (127*127*900);
5326 if (val > 0xff)
5327 DRM_ERROR("bad pxval: %ld\n", val);
5328 pxw[i] = val;
5329 }
5330 /* Render standby states get 0 weight */
5331 pxw[14] = 0;
5332 pxw[15] = 0;
5333
5334 for (i = 0; i < 4; i++) {
5335 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5336 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5337 I915_WRITE(PXW + (i * 4), val);
5338 }
5339
5340 /* Adjust magic regs to magic values (more experimental results) */
5341 I915_WRITE(OGW0, 0);
5342 I915_WRITE(OGW1, 0);
5343 I915_WRITE(EG0, 0x00007f00);
5344 I915_WRITE(EG1, 0x0000000e);
5345 I915_WRITE(EG2, 0x000e0000);
5346 I915_WRITE(EG3, 0x68000300);
5347 I915_WRITE(EG4, 0x42000000);
5348 I915_WRITE(EG5, 0x00140031);
5349 I915_WRITE(EG6, 0);
5350 I915_WRITE(EG7, 0);
5351
5352 for (i = 0; i < 8; i++)
5353 I915_WRITE(PXWL + (i * 4), 0);
5354
5355 /* Enable PMON + select events */
5356 I915_WRITE(ECR, 0x80000019);
5357
5358 lcfuse = I915_READ(LCFUSE02);
5359
5360 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
5361}
5362
Jesse Barnes652c3932009-08-17 13:31:43 -07005363void intel_init_clock_gating(struct drm_device *dev)
5364{
5365 struct drm_i915_private *dev_priv = dev->dev_private;
5366
5367 /*
5368 * Disable clock gating reported to work incorrectly according to the
5369 * specs, but enable as much else as we can.
5370 */
Eric Anholtbad720f2009-10-22 16:11:14 -07005371 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07005372 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
5373
5374 if (IS_IRONLAKE(dev)) {
5375 /* Required for FBC */
5376 dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE;
5377 /* Required for CxSR */
5378 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
5379
5380 I915_WRITE(PCH_3DCGDIS0,
5381 MARIUNIT_CLOCK_GATE_DISABLE |
5382 SVSMUNIT_CLOCK_GATE_DISABLE);
5383 }
5384
5385 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005386
5387 /*
5388 * According to the spec the following bits should be set in
5389 * order to enable memory self-refresh
5390 * The bit 22/21 of 0x42004
5391 * The bit 5 of 0x42020
5392 * The bit 15 of 0x45000
5393 */
5394 if (IS_IRONLAKE(dev)) {
5395 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5396 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5397 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
5398 I915_WRITE(ILK_DSPCLK_GATE,
5399 (I915_READ(ILK_DSPCLK_GATE) |
5400 ILK_DPARB_CLK_GATE));
5401 I915_WRITE(DISP_ARB_CTL,
5402 (I915_READ(DISP_ARB_CTL) |
5403 DISP_FBC_WM_DIS));
5404 }
Zhenyu Wangc03342f2009-09-29 11:01:23 +08005405 return;
5406 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005407 uint32_t dspclk_gate;
5408 I915_WRITE(RENCLK_GATE_D1, 0);
5409 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5410 GS_UNIT_CLOCK_GATE_DISABLE |
5411 CL_UNIT_CLOCK_GATE_DISABLE);
5412 I915_WRITE(RAMCLK_GATE_D, 0);
5413 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5414 OVRUNIT_CLOCK_GATE_DISABLE |
5415 OVCUNIT_CLOCK_GATE_DISABLE;
5416 if (IS_GM45(dev))
5417 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5418 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
5419 } else if (IS_I965GM(dev)) {
5420 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5421 I915_WRITE(RENCLK_GATE_D2, 0);
5422 I915_WRITE(DSPCLK_GATE_D, 0);
5423 I915_WRITE(RAMCLK_GATE_D, 0);
5424 I915_WRITE16(DEUC, 0);
5425 } else if (IS_I965G(dev)) {
5426 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5427 I965_RCC_CLOCK_GATE_DISABLE |
5428 I965_RCPB_CLOCK_GATE_DISABLE |
5429 I965_ISC_CLOCK_GATE_DISABLE |
5430 I965_FBC_CLOCK_GATE_DISABLE);
5431 I915_WRITE(RENCLK_GATE_D2, 0);
5432 } else if (IS_I9XX(dev)) {
5433 u32 dstate = I915_READ(D_STATE);
5434
5435 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5436 DSTATE_DOT_CLOCK_GATING;
5437 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005438 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005439 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5440 } else if (IS_I830(dev)) {
5441 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5442 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005443
5444 /*
5445 * GPU can automatically power down the render unit if given a page
5446 * to save state.
5447 */
Andrew Lutomirski1d3c36ad2009-12-21 10:10:22 -05005448 if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005449 struct drm_i915_gem_object *obj_priv = NULL;
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005450
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005451 if (dev_priv->pwrctx) {
Daniel Vetter23010e42010-03-08 13:35:02 +01005452 obj_priv = to_intel_bo(dev_priv->pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005453 } else {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005454 struct drm_gem_object *pwrctx;
5455
5456 pwrctx = intel_alloc_power_context(dev);
5457 if (pwrctx) {
5458 dev_priv->pwrctx = pwrctx;
Daniel Vetter23010e42010-03-08 13:35:02 +01005459 obj_priv = to_intel_bo(pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005460 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005461 }
5462
Chris Wilson9ea8d052010-01-04 18:57:56 +00005463 if (obj_priv) {
5464 I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN);
5465 I915_WRITE(MCHBAR_RENDER_STANDBY,
5466 I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT);
5467 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005468 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005469}
5470
Jesse Barnese70236a2009-09-21 10:42:27 -07005471/* Set up chip specific display functions */
5472static void intel_init_display(struct drm_device *dev)
5473{
5474 struct drm_i915_private *dev_priv = dev->dev_private;
5475
5476 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07005477 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005478 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07005479 else
5480 dev_priv->display.dpms = i9xx_crtc_dpms;
5481
Adam Jacksonee5382a2010-04-23 11:17:39 -04005482 if (I915_HAS_FBC(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07005483 if (IS_GM45(dev)) {
5484 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5485 dev_priv->display.enable_fbc = g4x_enable_fbc;
5486 dev_priv->display.disable_fbc = g4x_disable_fbc;
Robert Hooker8d06a1e2010-03-19 15:13:27 -04005487 } else if (IS_I965GM(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005488 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5489 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5490 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5491 }
Jesse Barnes74dff282009-09-14 15:39:40 -07005492 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07005493 }
5494
5495 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005496 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07005497 dev_priv->display.get_display_clock_speed =
5498 i945_get_display_clock_speed;
5499 else if (IS_I915G(dev))
5500 dev_priv->display.get_display_clock_speed =
5501 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005502 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005503 dev_priv->display.get_display_clock_speed =
5504 i9xx_misc_get_display_clock_speed;
5505 else if (IS_I915GM(dev))
5506 dev_priv->display.get_display_clock_speed =
5507 i915gm_get_display_clock_speed;
5508 else if (IS_I865G(dev))
5509 dev_priv->display.get_display_clock_speed =
5510 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005511 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005512 dev_priv->display.get_display_clock_speed =
5513 i855_get_display_clock_speed;
5514 else /* 852, 830 */
5515 dev_priv->display.get_display_clock_speed =
5516 i830_get_display_clock_speed;
5517
5518 /* For FIFO watermark updates */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005519 if (HAS_PCH_SPLIT(dev)) {
5520 if (IS_IRONLAKE(dev)) {
5521 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
5522 dev_priv->display.update_wm = ironlake_update_wm;
5523 else {
5524 DRM_DEBUG_KMS("Failed to get proper latency. "
5525 "Disable CxSR\n");
5526 dev_priv->display.update_wm = NULL;
5527 }
5528 } else
5529 dev_priv->display.update_wm = NULL;
5530 } else if (IS_PINEVIEW(dev)) {
Zhao Yakuid4294342010-03-22 22:45:36 +08005531 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
Li Peng95534262010-05-18 18:58:44 +08005532 dev_priv->is_ddr3,
Zhao Yakuid4294342010-03-22 22:45:36 +08005533 dev_priv->fsb_freq,
5534 dev_priv->mem_freq)) {
5535 DRM_INFO("failed to find known CxSR latency "
Li Peng95534262010-05-18 18:58:44 +08005536 "(found ddr%s fsb freq %d, mem freq %d), "
Zhao Yakuid4294342010-03-22 22:45:36 +08005537 "disabling CxSR\n",
Li Peng95534262010-05-18 18:58:44 +08005538 (dev_priv->is_ddr3 == 1) ? "3": "2",
Zhao Yakuid4294342010-03-22 22:45:36 +08005539 dev_priv->fsb_freq, dev_priv->mem_freq);
5540 /* Disable CxSR and never update its watermark again */
5541 pineview_disable_cxsr(dev);
5542 dev_priv->display.update_wm = NULL;
5543 } else
5544 dev_priv->display.update_wm = pineview_update_wm;
5545 } else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005546 dev_priv->display.update_wm = g4x_update_wm;
5547 else if (IS_I965G(dev))
5548 dev_priv->display.update_wm = i965_update_wm;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005549 else if (IS_I9XX(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005550 dev_priv->display.update_wm = i9xx_update_wm;
5551 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005552 } else if (IS_I85X(dev)) {
5553 dev_priv->display.update_wm = i9xx_update_wm;
5554 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005555 } else {
Adam Jackson8f4695e2010-04-16 18:20:57 -04005556 dev_priv->display.update_wm = i830_update_wm;
5557 if (IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005558 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5559 else
5560 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005561 }
5562}
5563
Jesse Barnes79e53942008-11-07 14:24:08 -08005564void intel_modeset_init(struct drm_device *dev)
5565{
Jesse Barnes652c3932009-08-17 13:31:43 -07005566 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005567 int i;
5568
5569 drm_mode_config_init(dev);
5570
5571 dev->mode_config.min_width = 0;
5572 dev->mode_config.min_height = 0;
5573
5574 dev->mode_config.funcs = (void *)&intel_mode_funcs;
5575
Jesse Barnese70236a2009-09-21 10:42:27 -07005576 intel_init_display(dev);
5577
Jesse Barnes79e53942008-11-07 14:24:08 -08005578 if (IS_I965G(dev)) {
5579 dev->mode_config.max_width = 8192;
5580 dev->mode_config.max_height = 8192;
Keith Packard5e4d6fa2009-07-12 23:53:17 -07005581 } else if (IS_I9XX(dev)) {
5582 dev->mode_config.max_width = 4096;
5583 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08005584 } else {
5585 dev->mode_config.max_width = 2048;
5586 dev->mode_config.max_height = 2048;
5587 }
5588
5589 /* set memory base */
5590 if (IS_I9XX(dev))
5591 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2);
5592 else
5593 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0);
5594
5595 if (IS_MOBILE(dev) || IS_I9XX(dev))
Dave Airliea3524f12010-06-06 18:59:41 +10005596 dev_priv->num_pipe = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08005597 else
Dave Airliea3524f12010-06-06 18:59:41 +10005598 dev_priv->num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08005599 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10005600 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08005601
Dave Airliea3524f12010-06-06 18:59:41 +10005602 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005603 intel_crtc_init(dev, i);
5604 }
5605
5606 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07005607
5608 intel_init_clock_gating(dev);
5609
Jesse Barnes7648fa92010-05-20 14:28:11 -07005610 if (IS_IRONLAKE_M(dev)) {
Jesse Barnesf97108d2010-01-29 11:27:07 -08005611 ironlake_enable_drps(dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07005612 intel_init_emon(dev);
5613 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08005614
Jesse Barnes652c3932009-08-17 13:31:43 -07005615 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
5616 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
5617 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02005618
5619 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005620}
5621
5622void intel_modeset_cleanup(struct drm_device *dev)
5623{
Jesse Barnes652c3932009-08-17 13:31:43 -07005624 struct drm_i915_private *dev_priv = dev->dev_private;
5625 struct drm_crtc *crtc;
5626 struct intel_crtc *intel_crtc;
5627
5628 mutex_lock(&dev->struct_mutex);
5629
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005630 drm_kms_helper_poll_fini(dev);
Dave Airlie38651672010-03-30 05:34:13 +00005631 intel_fbdev_fini(dev);
5632
Jesse Barnes652c3932009-08-17 13:31:43 -07005633 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5634 /* Skip inactive CRTCs */
5635 if (!crtc->fb)
5636 continue;
5637
5638 intel_crtc = to_intel_crtc(crtc);
5639 intel_increase_pllclock(crtc, false);
5640 del_timer_sync(&intel_crtc->idle_timer);
5641 }
5642
Jesse Barnes652c3932009-08-17 13:31:43 -07005643 del_timer_sync(&dev_priv->idle_timer);
5644
Jesse Barnese70236a2009-09-21 10:42:27 -07005645 if (dev_priv->display.disable_fbc)
5646 dev_priv->display.disable_fbc(dev);
5647
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005648 if (dev_priv->pwrctx) {
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005649 struct drm_i915_gem_object *obj_priv;
5650
Daniel Vetter23010e42010-03-08 13:35:02 +01005651 obj_priv = to_intel_bo(dev_priv->pwrctx);
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005652 I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN);
5653 I915_READ(PWRCTXA);
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005654 i915_gem_object_unpin(dev_priv->pwrctx);
5655 drm_gem_object_unreference(dev_priv->pwrctx);
5656 }
5657
Jesse Barnesf97108d2010-01-29 11:27:07 -08005658 if (IS_IRONLAKE_M(dev))
5659 ironlake_disable_drps(dev);
5660
Kristian Høgsberg69341a52009-11-11 12:19:17 -05005661 mutex_unlock(&dev->struct_mutex);
5662
Jesse Barnes79e53942008-11-07 14:24:08 -08005663 drm_mode_config_cleanup(dev);
5664}
5665
5666
Dave Airlie28d52042009-09-21 14:33:58 +10005667/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005668 * Return which encoder is currently attached for connector.
5669 */
5670struct drm_encoder *intel_attached_encoder (struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08005671{
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005672 struct drm_mode_object *obj;
5673 struct drm_encoder *encoder;
5674 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08005675
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005676 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5677 if (connector->encoder_ids[i] == 0)
5678 break;
5679
5680 obj = drm_mode_object_find(connector->dev,
5681 connector->encoder_ids[i],
5682 DRM_MODE_OBJECT_ENCODER);
5683 if (!obj)
5684 continue;
5685
5686 encoder = obj_to_encoder(obj);
5687 return encoder;
5688 }
5689 return NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005690}
Dave Airlie28d52042009-09-21 14:33:58 +10005691
5692/*
5693 * set vga decode state - true == enable VGA decode
5694 */
5695int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
5696{
5697 struct drm_i915_private *dev_priv = dev->dev_private;
5698 u16 gmch_ctrl;
5699
5700 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
5701 if (state)
5702 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
5703 else
5704 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
5705 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
5706 return 0;
5707}