blob: 714bf539918b2a495f7f66b27d886d6881582691 [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"
Dave Airlieab2c0672009-12-04 10:55:24 +100036#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080037
38#include "drm_crtc_helper.h"
39
Zhenyu Wang32f9d652009-07-24 01:00:32 +080040#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
41
Jesse Barnes79e53942008-11-07 14:24:08 -080042bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080043static void intel_update_watermarks(struct drm_device *dev);
Jesse Barnes652c3932009-08-17 13:31:43 -070044static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule);
Jesse Barnes79e53942008-11-07 14:24:08 -080045
46typedef struct {
47 /* given values */
48 int n;
49 int m1, m2;
50 int p1, p2;
51 /* derived values */
52 int dot;
53 int vco;
54 int m;
55 int p;
56} intel_clock_t;
57
58typedef struct {
59 int min, max;
60} intel_range_t;
61
62typedef struct {
63 int dot_limit;
64 int p2_slow, p2_fast;
65} intel_p2_t;
66
67#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080068typedef struct intel_limit intel_limit_t;
69struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080070 intel_range_t dot, vco, n, m, m1, m2, p, p1;
71 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080072 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
73 int, int, intel_clock_t *);
74};
Jesse Barnes79e53942008-11-07 14:24:08 -080075
76#define I8XX_DOT_MIN 25000
77#define I8XX_DOT_MAX 350000
78#define I8XX_VCO_MIN 930000
79#define I8XX_VCO_MAX 1400000
80#define I8XX_N_MIN 3
81#define I8XX_N_MAX 16
82#define I8XX_M_MIN 96
83#define I8XX_M_MAX 140
84#define I8XX_M1_MIN 18
85#define I8XX_M1_MAX 26
86#define I8XX_M2_MIN 6
87#define I8XX_M2_MAX 16
88#define I8XX_P_MIN 4
89#define I8XX_P_MAX 128
90#define I8XX_P1_MIN 2
91#define I8XX_P1_MAX 33
92#define I8XX_P1_LVDS_MIN 1
93#define I8XX_P1_LVDS_MAX 6
94#define I8XX_P2_SLOW 4
95#define I8XX_P2_FAST 2
96#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e3952009-07-17 11:44:30 +080097#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -080098#define I8XX_P2_SLOW_LIMIT 165000
99
100#define I9XX_DOT_MIN 20000
101#define I9XX_DOT_MAX 400000
102#define I9XX_VCO_MIN 1400000
103#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500104#define PINEVIEW_VCO_MIN 1700000
105#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500106#define I9XX_N_MIN 1
107#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500108/* Pineview's Ncounter is a ring counter */
109#define PINEVIEW_N_MIN 3
110#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800111#define I9XX_M_MIN 70
112#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500113#define PINEVIEW_M_MIN 2
114#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800115#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500116#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800117#define I9XX_M2_MIN 5
118#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500119/* Pineview M1 is reserved, and must be 0 */
120#define PINEVIEW_M1_MIN 0
121#define PINEVIEW_M1_MAX 0
122#define PINEVIEW_M2_MIN 0
123#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800124#define I9XX_P_SDVO_DAC_MIN 5
125#define I9XX_P_SDVO_DAC_MAX 80
126#define I9XX_P_LVDS_MIN 7
127#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500128#define PINEVIEW_P_LVDS_MIN 7
129#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800130#define I9XX_P1_MIN 1
131#define I9XX_P1_MAX 8
132#define I9XX_P2_SDVO_DAC_SLOW 10
133#define I9XX_P2_SDVO_DAC_FAST 5
134#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
135#define I9XX_P2_LVDS_SLOW 14
136#define I9XX_P2_LVDS_FAST 7
137#define I9XX_P2_LVDS_SLOW_LIMIT 112000
138
Ma Ling044c7c42009-03-18 20:13:23 +0800139/*The parameter is for SDVO on G4x platform*/
140#define G4X_DOT_SDVO_MIN 25000
141#define G4X_DOT_SDVO_MAX 270000
142#define G4X_VCO_MIN 1750000
143#define G4X_VCO_MAX 3500000
144#define G4X_N_SDVO_MIN 1
145#define G4X_N_SDVO_MAX 4
146#define G4X_M_SDVO_MIN 104
147#define G4X_M_SDVO_MAX 138
148#define G4X_M1_SDVO_MIN 17
149#define G4X_M1_SDVO_MAX 23
150#define G4X_M2_SDVO_MIN 5
151#define G4X_M2_SDVO_MAX 11
152#define G4X_P_SDVO_MIN 10
153#define G4X_P_SDVO_MAX 30
154#define G4X_P1_SDVO_MIN 1
155#define G4X_P1_SDVO_MAX 3
156#define G4X_P2_SDVO_SLOW 10
157#define G4X_P2_SDVO_FAST 10
158#define G4X_P2_SDVO_LIMIT 270000
159
160/*The parameter is for HDMI_DAC on G4x platform*/
161#define G4X_DOT_HDMI_DAC_MIN 22000
162#define G4X_DOT_HDMI_DAC_MAX 400000
163#define G4X_N_HDMI_DAC_MIN 1
164#define G4X_N_HDMI_DAC_MAX 4
165#define G4X_M_HDMI_DAC_MIN 104
166#define G4X_M_HDMI_DAC_MAX 138
167#define G4X_M1_HDMI_DAC_MIN 16
168#define G4X_M1_HDMI_DAC_MAX 23
169#define G4X_M2_HDMI_DAC_MIN 5
170#define G4X_M2_HDMI_DAC_MAX 11
171#define G4X_P_HDMI_DAC_MIN 5
172#define G4X_P_HDMI_DAC_MAX 80
173#define G4X_P1_HDMI_DAC_MIN 1
174#define G4X_P1_HDMI_DAC_MAX 8
175#define G4X_P2_HDMI_DAC_SLOW 10
176#define G4X_P2_HDMI_DAC_FAST 5
177#define G4X_P2_HDMI_DAC_LIMIT 165000
178
179/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
180#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
181#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
182#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
183#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
184#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
185#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
186#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
187#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
188#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
189#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
190#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
191#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
192#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
193#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
194#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
195#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
196#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
197
198/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
199#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
200#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
201#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
202#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
203#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
204#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
205#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
206#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
207#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
208#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
209#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
210#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
211#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
212#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
213#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
214#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
215#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
216
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700217/*The parameter is for DISPLAY PORT on G4x platform*/
218#define G4X_DOT_DISPLAY_PORT_MIN 161670
219#define G4X_DOT_DISPLAY_PORT_MAX 227000
220#define G4X_N_DISPLAY_PORT_MIN 1
221#define G4X_N_DISPLAY_PORT_MAX 2
222#define G4X_M_DISPLAY_PORT_MIN 97
223#define G4X_M_DISPLAY_PORT_MAX 108
224#define G4X_M1_DISPLAY_PORT_MIN 0x10
225#define G4X_M1_DISPLAY_PORT_MAX 0x12
226#define G4X_M2_DISPLAY_PORT_MIN 0x05
227#define G4X_M2_DISPLAY_PORT_MAX 0x06
228#define G4X_P_DISPLAY_PORT_MIN 10
229#define G4X_P_DISPLAY_PORT_MAX 20
230#define G4X_P1_DISPLAY_PORT_MIN 1
231#define G4X_P1_DISPLAY_PORT_MAX 2
232#define G4X_P2_DISPLAY_PORT_SLOW 10
233#define G4X_P2_DISPLAY_PORT_FAST 10
234#define G4X_P2_DISPLAY_PORT_LIMIT 0
235
Eric Anholtbad720f2009-10-22 16:11:14 -0700236/* Ironlake / Sandybridge */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800237/* as we calculate clock using (register_value + 2) for
238 N/M1/M2, so here the range value for them is (actual_value-2).
239 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500240#define IRONLAKE_DOT_MIN 25000
241#define IRONLAKE_DOT_MAX 350000
242#define IRONLAKE_VCO_MIN 1760000
243#define IRONLAKE_VCO_MAX 3510000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500244#define IRONLAKE_M1_MIN 12
Zhao Yakuia59e3852010-01-06 22:05:57 +0800245#define IRONLAKE_M1_MAX 22
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500246#define IRONLAKE_M2_MIN 5
247#define IRONLAKE_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500248#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800249
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800250/* We have parameter ranges for different type of outputs. */
251
252/* DAC & HDMI Refclk 120Mhz */
253#define IRONLAKE_DAC_N_MIN 1
254#define IRONLAKE_DAC_N_MAX 5
255#define IRONLAKE_DAC_M_MIN 79
256#define IRONLAKE_DAC_M_MAX 127
257#define IRONLAKE_DAC_P_MIN 5
258#define IRONLAKE_DAC_P_MAX 80
259#define IRONLAKE_DAC_P1_MIN 1
260#define IRONLAKE_DAC_P1_MAX 8
261#define IRONLAKE_DAC_P2_SLOW 10
262#define IRONLAKE_DAC_P2_FAST 5
263
264/* LVDS single-channel 120Mhz refclk */
265#define IRONLAKE_LVDS_S_N_MIN 1
266#define IRONLAKE_LVDS_S_N_MAX 3
267#define IRONLAKE_LVDS_S_M_MIN 79
268#define IRONLAKE_LVDS_S_M_MAX 118
269#define IRONLAKE_LVDS_S_P_MIN 28
270#define IRONLAKE_LVDS_S_P_MAX 112
271#define IRONLAKE_LVDS_S_P1_MIN 2
272#define IRONLAKE_LVDS_S_P1_MAX 8
273#define IRONLAKE_LVDS_S_P2_SLOW 14
274#define IRONLAKE_LVDS_S_P2_FAST 14
275
276/* LVDS dual-channel 120Mhz refclk */
277#define IRONLAKE_LVDS_D_N_MIN 1
278#define IRONLAKE_LVDS_D_N_MAX 3
279#define IRONLAKE_LVDS_D_M_MIN 79
280#define IRONLAKE_LVDS_D_M_MAX 127
281#define IRONLAKE_LVDS_D_P_MIN 14
282#define IRONLAKE_LVDS_D_P_MAX 56
283#define IRONLAKE_LVDS_D_P1_MIN 2
284#define IRONLAKE_LVDS_D_P1_MAX 8
285#define IRONLAKE_LVDS_D_P2_SLOW 7
286#define IRONLAKE_LVDS_D_P2_FAST 7
287
288/* LVDS single-channel 100Mhz refclk */
289#define IRONLAKE_LVDS_S_SSC_N_MIN 1
290#define IRONLAKE_LVDS_S_SSC_N_MAX 2
291#define IRONLAKE_LVDS_S_SSC_M_MIN 79
292#define IRONLAKE_LVDS_S_SSC_M_MAX 126
293#define IRONLAKE_LVDS_S_SSC_P_MIN 28
294#define IRONLAKE_LVDS_S_SSC_P_MAX 112
295#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
296#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
297#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
298#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
299
300/* LVDS dual-channel 100Mhz refclk */
301#define IRONLAKE_LVDS_D_SSC_N_MIN 1
302#define IRONLAKE_LVDS_D_SSC_N_MAX 3
303#define IRONLAKE_LVDS_D_SSC_M_MIN 79
304#define IRONLAKE_LVDS_D_SSC_M_MAX 126
305#define IRONLAKE_LVDS_D_SSC_P_MIN 14
306#define IRONLAKE_LVDS_D_SSC_P_MAX 42
307#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
308#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
309#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
310#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
311
312/* DisplayPort */
313#define IRONLAKE_DP_N_MIN 1
314#define IRONLAKE_DP_N_MAX 2
315#define IRONLAKE_DP_M_MIN 81
316#define IRONLAKE_DP_M_MAX 90
317#define IRONLAKE_DP_P_MIN 10
318#define IRONLAKE_DP_P_MAX 20
319#define IRONLAKE_DP_P2_FAST 10
320#define IRONLAKE_DP_P2_SLOW 10
321#define IRONLAKE_DP_P2_LIMIT 0
322#define IRONLAKE_DP_P1_MIN 1
323#define IRONLAKE_DP_P1_MAX 2
Zhao Yakui45476682009-12-31 16:06:04 +0800324
Ma Lingd4906092009-03-18 20:13:27 +0800325static bool
326intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
327 int target, int refclk, intel_clock_t *best_clock);
328static bool
329intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
330 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800331
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700332static bool
333intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
334 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800335static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500336intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
337 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700338
Keith Packarde4b36692009-06-05 19:22:17 -0700339static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800340 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
341 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
342 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
343 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
344 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
345 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
346 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
347 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
348 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
349 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800350 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700351};
352
353static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800354 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
355 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
356 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
357 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
358 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
359 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
360 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
361 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
362 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
363 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800364 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700365};
366
367static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800368 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
369 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
370 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
371 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
372 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
373 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
374 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
375 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
376 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
377 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800378 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700379};
380
381static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800382 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
383 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
384 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
385 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
386 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
387 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
388 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
389 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
390 /* The single-channel range is 25-112Mhz, and dual-channel
391 * is 80-224Mhz. Prefer single channel as much as possible.
392 */
393 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
394 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800395 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700396};
397
Ma Ling044c7c42009-03-18 20:13:23 +0800398 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700399static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800400 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
401 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
402 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
403 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
404 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
405 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
406 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
407 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
408 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
409 .p2_slow = G4X_P2_SDVO_SLOW,
410 .p2_fast = G4X_P2_SDVO_FAST
411 },
Ma Lingd4906092009-03-18 20:13:27 +0800412 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700413};
414
415static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800416 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
417 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
418 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
419 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
420 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
421 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
422 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
423 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
424 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
425 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
426 .p2_fast = G4X_P2_HDMI_DAC_FAST
427 },
Ma Lingd4906092009-03-18 20:13:27 +0800428 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700429};
430
431static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800432 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
433 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
434 .vco = { .min = G4X_VCO_MIN,
435 .max = G4X_VCO_MAX },
436 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
437 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
438 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
439 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
440 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
441 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
442 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
443 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
444 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
445 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
446 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
447 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
448 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
449 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
450 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
451 },
Ma Lingd4906092009-03-18 20:13:27 +0800452 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700453};
454
455static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800456 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
457 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
458 .vco = { .min = G4X_VCO_MIN,
459 .max = G4X_VCO_MAX },
460 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
461 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
462 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
463 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
464 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
465 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
466 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
467 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
468 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
469 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
470 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
471 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
472 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
473 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
474 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
475 },
Ma Lingd4906092009-03-18 20:13:27 +0800476 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700477};
478
479static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700480 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
481 .max = G4X_DOT_DISPLAY_PORT_MAX },
482 .vco = { .min = G4X_VCO_MIN,
483 .max = G4X_VCO_MAX},
484 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
485 .max = G4X_N_DISPLAY_PORT_MAX },
486 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
487 .max = G4X_M_DISPLAY_PORT_MAX },
488 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
489 .max = G4X_M1_DISPLAY_PORT_MAX },
490 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
491 .max = G4X_M2_DISPLAY_PORT_MAX },
492 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
493 .max = G4X_P_DISPLAY_PORT_MAX },
494 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
495 .max = G4X_P1_DISPLAY_PORT_MAX},
496 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
497 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
498 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
499 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700500};
501
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500502static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800503 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500504 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
505 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
506 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
507 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
508 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800509 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
510 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
511 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
512 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800513 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700514};
515
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500516static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800517 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500518 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
519 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
520 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
521 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
522 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
523 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800524 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500525 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800526 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
527 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800528 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700529};
530
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800531static const intel_limit_t intel_limits_ironlake_dac = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500532 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
533 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800534 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
535 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500536 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
537 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800538 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
539 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500540 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800541 .p2_slow = IRONLAKE_DAC_P2_SLOW,
542 .p2_fast = IRONLAKE_DAC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800543 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700544};
545
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800546static const intel_limit_t intel_limits_ironlake_single_lvds = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500547 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
548 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800549 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
550 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500551 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
552 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800553 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
554 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500555 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800556 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
557 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
558 .find_pll = intel_g4x_find_best_PLL,
559};
560
561static const intel_limit_t intel_limits_ironlake_dual_lvds = {
562 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
563 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
564 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
565 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
566 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
567 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
568 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
569 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
570 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
571 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
572 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
573 .find_pll = intel_g4x_find_best_PLL,
574};
575
576static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
577 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
578 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
579 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
580 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
581 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
582 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
583 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
584 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
585 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
586 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
587 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
588 .find_pll = intel_g4x_find_best_PLL,
589};
590
591static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
592 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
593 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
594 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
595 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
596 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
597 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
598 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
599 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
600 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
601 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
602 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800603 .find_pll = intel_g4x_find_best_PLL,
604};
605
606static const intel_limit_t intel_limits_ironlake_display_port = {
607 .dot = { .min = IRONLAKE_DOT_MIN,
608 .max = IRONLAKE_DOT_MAX },
609 .vco = { .min = IRONLAKE_VCO_MIN,
610 .max = IRONLAKE_VCO_MAX},
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800611 .n = { .min = IRONLAKE_DP_N_MIN,
612 .max = IRONLAKE_DP_N_MAX },
613 .m = { .min = IRONLAKE_DP_M_MIN,
614 .max = IRONLAKE_DP_M_MAX },
Zhao Yakui45476682009-12-31 16:06:04 +0800615 .m1 = { .min = IRONLAKE_M1_MIN,
616 .max = IRONLAKE_M1_MAX },
617 .m2 = { .min = IRONLAKE_M2_MIN,
618 .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800619 .p = { .min = IRONLAKE_DP_P_MIN,
620 .max = IRONLAKE_DP_P_MAX },
621 .p1 = { .min = IRONLAKE_DP_P1_MIN,
622 .max = IRONLAKE_DP_P1_MAX},
623 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
624 .p2_slow = IRONLAKE_DP_P2_SLOW,
625 .p2_fast = IRONLAKE_DP_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800626 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800627};
628
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500629static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800630{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800631 struct drm_device *dev = crtc->dev;
632 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800633 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800634 int refclk = 120;
635
636 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
637 if (dev_priv->lvds_use_ssc && dev_priv->lvds_ssc_freq == 100)
638 refclk = 100;
639
640 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
641 LVDS_CLKB_POWER_UP) {
642 /* LVDS dual channel */
643 if (refclk == 100)
644 limit = &intel_limits_ironlake_dual_lvds_100m;
645 else
646 limit = &intel_limits_ironlake_dual_lvds;
647 } else {
648 if (refclk == 100)
649 limit = &intel_limits_ironlake_single_lvds_100m;
650 else
651 limit = &intel_limits_ironlake_single_lvds;
652 }
653 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800654 HAS_eDP)
655 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800656 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800657 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800658
659 return limit;
660}
661
Ma Ling044c7c42009-03-18 20:13:23 +0800662static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
663{
664 struct drm_device *dev = crtc->dev;
665 struct drm_i915_private *dev_priv = dev->dev_private;
666 const intel_limit_t *limit;
667
668 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
669 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
670 LVDS_CLKB_POWER_UP)
671 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700672 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800673 else
674 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700675 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800676 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
677 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700678 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800679 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700680 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700681 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700682 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800683 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700684 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800685
686 return limit;
687}
688
Jesse Barnes79e53942008-11-07 14:24:08 -0800689static const intel_limit_t *intel_limit(struct drm_crtc *crtc)
690{
691 struct drm_device *dev = crtc->dev;
692 const intel_limit_t *limit;
693
Eric Anholtbad720f2009-10-22 16:11:14 -0700694 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500695 limit = intel_ironlake_limit(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800696 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800697 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500698 } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800699 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700700 limit = &intel_limits_i9xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800701 else
Keith Packarde4b36692009-06-05 19:22:17 -0700702 limit = &intel_limits_i9xx_sdvo;
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500703 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800704 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500705 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800706 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500707 limit = &intel_limits_pineview_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800708 } else {
709 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700710 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800711 else
Keith Packarde4b36692009-06-05 19:22:17 -0700712 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800713 }
714 return limit;
715}
716
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500717/* m1 is reserved as 0 in Pineview, n is a ring counter */
718static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800719{
Shaohua Li21778322009-02-23 15:19:16 +0800720 clock->m = clock->m2 + 2;
721 clock->p = clock->p1 * clock->p2;
722 clock->vco = refclk * clock->m / clock->n;
723 clock->dot = clock->vco / clock->p;
724}
725
726static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
727{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500728 if (IS_PINEVIEW(dev)) {
729 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800730 return;
731 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800732 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
733 clock->p = clock->p1 * clock->p2;
734 clock->vco = refclk * clock->m / (clock->n + 2);
735 clock->dot = clock->vco / clock->p;
736}
737
Jesse Barnes79e53942008-11-07 14:24:08 -0800738/**
739 * Returns whether any output on the specified pipe is of the specified type
740 */
741bool intel_pipe_has_type (struct drm_crtc *crtc, int type)
742{
743 struct drm_device *dev = crtc->dev;
744 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800745 struct drm_encoder *l_entry;
Jesse Barnes79e53942008-11-07 14:24:08 -0800746
Zhenyu Wangc5e4df32010-03-30 14:39:27 +0800747 list_for_each_entry(l_entry, &mode_config->encoder_list, head) {
748 if (l_entry && l_entry->crtc == crtc) {
749 struct intel_encoder *intel_encoder = enc_to_intel_encoder(l_entry);
Eric Anholt21d40d32010-03-25 11:11:14 -0700750 if (intel_encoder->type == type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800751 return true;
752 }
753 }
754 return false;
755}
756
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800757#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800758/**
759 * Returns whether the given set of divisors are valid for a given refclk with
760 * the given connectors.
761 */
762
763static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock)
764{
765 const intel_limit_t *limit = intel_limit (crtc);
Shaohua Li21778322009-02-23 15:19:16 +0800766 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800767
768 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
769 INTELPllInvalid ("p1 out of range\n");
770 if (clock->p < limit->p.min || limit->p.max < clock->p)
771 INTELPllInvalid ("p out of range\n");
772 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
773 INTELPllInvalid ("m2 out of range\n");
774 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
775 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500776 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800777 INTELPllInvalid ("m1 <= m2\n");
778 if (clock->m < limit->m.min || limit->m.max < clock->m)
779 INTELPllInvalid ("m out of range\n");
780 if (clock->n < limit->n.min || limit->n.max < clock->n)
781 INTELPllInvalid ("n out of range\n");
782 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
783 INTELPllInvalid ("vco out of range\n");
784 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
785 * connector, etc., rather than just a single range.
786 */
787 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
788 INTELPllInvalid ("dot out of range\n");
789
790 return true;
791}
792
Ma Lingd4906092009-03-18 20:13:27 +0800793static bool
794intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
795 int target, int refclk, intel_clock_t *best_clock)
796
Jesse Barnes79e53942008-11-07 14:24:08 -0800797{
798 struct drm_device *dev = crtc->dev;
799 struct drm_i915_private *dev_priv = dev->dev_private;
800 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800801 int err = target;
802
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200803 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800804 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800805 /*
806 * For LVDS, if the panel is on, just rely on its current
807 * settings for dual-channel. We haven't figured out how to
808 * reliably set up different single/dual channel state, if we
809 * even can.
810 */
811 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
812 LVDS_CLKB_POWER_UP)
813 clock.p2 = limit->p2.p2_fast;
814 else
815 clock.p2 = limit->p2.p2_slow;
816 } else {
817 if (target < limit->p2.dot_limit)
818 clock.p2 = limit->p2.p2_slow;
819 else
820 clock.p2 = limit->p2.p2_fast;
821 }
822
823 memset (best_clock, 0, sizeof (*best_clock));
824
Zhao Yakui42158662009-11-20 11:24:18 +0800825 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
826 clock.m1++) {
827 for (clock.m2 = limit->m2.min;
828 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500829 /* m1 is always 0 in Pineview */
830 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800831 break;
832 for (clock.n = limit->n.min;
833 clock.n <= limit->n.max; clock.n++) {
834 for (clock.p1 = limit->p1.min;
835 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800836 int this_err;
837
Shaohua Li21778322009-02-23 15:19:16 +0800838 intel_clock(dev, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800839
840 if (!intel_PLL_is_valid(crtc, &clock))
841 continue;
842
843 this_err = abs(clock.dot - target);
844 if (this_err < err) {
845 *best_clock = clock;
846 err = this_err;
847 }
848 }
849 }
850 }
851 }
852
853 return (err != target);
854}
855
Ma Lingd4906092009-03-18 20:13:27 +0800856static bool
857intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
858 int target, int refclk, intel_clock_t *best_clock)
859{
860 struct drm_device *dev = crtc->dev;
861 struct drm_i915_private *dev_priv = dev->dev_private;
862 intel_clock_t clock;
863 int max_n;
864 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400865 /* approximately equals target * 0.00585 */
866 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800867 found = false;
868
869 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800870 int lvds_reg;
871
Eric Anholtc619eed2010-01-28 16:45:52 -0800872 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800873 lvds_reg = PCH_LVDS;
874 else
875 lvds_reg = LVDS;
876 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800877 LVDS_CLKB_POWER_UP)
878 clock.p2 = limit->p2.p2_fast;
879 else
880 clock.p2 = limit->p2.p2_slow;
881 } else {
882 if (target < limit->p2.dot_limit)
883 clock.p2 = limit->p2.p2_slow;
884 else
885 clock.p2 = limit->p2.p2_fast;
886 }
887
888 memset(best_clock, 0, sizeof(*best_clock));
889 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200890 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800891 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200892 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800893 for (clock.m1 = limit->m1.max;
894 clock.m1 >= limit->m1.min; clock.m1--) {
895 for (clock.m2 = limit->m2.max;
896 clock.m2 >= limit->m2.min; clock.m2--) {
897 for (clock.p1 = limit->p1.max;
898 clock.p1 >= limit->p1.min; clock.p1--) {
899 int this_err;
900
Shaohua Li21778322009-02-23 15:19:16 +0800901 intel_clock(dev, refclk, &clock);
Ma Lingd4906092009-03-18 20:13:27 +0800902 if (!intel_PLL_is_valid(crtc, &clock))
903 continue;
904 this_err = abs(clock.dot - target) ;
905 if (this_err < err_most) {
906 *best_clock = clock;
907 err_most = this_err;
908 max_n = clock.n;
909 found = true;
910 }
911 }
912 }
913 }
914 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800915 return found;
916}
Ma Lingd4906092009-03-18 20:13:27 +0800917
Zhenyu Wang2c072452009-06-05 15:38:42 +0800918static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500919intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
920 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800921{
922 struct drm_device *dev = crtc->dev;
923 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800924
925 /* return directly when it is eDP */
926 if (HAS_eDP)
927 return true;
928
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800929 if (target < 200000) {
930 clock.n = 1;
931 clock.p1 = 2;
932 clock.p2 = 10;
933 clock.m1 = 12;
934 clock.m2 = 9;
935 } else {
936 clock.n = 2;
937 clock.p1 = 1;
938 clock.p2 = 10;
939 clock.m1 = 14;
940 clock.m2 = 8;
941 }
942 intel_clock(dev, refclk, &clock);
943 memcpy(best_clock, &clock, sizeof(intel_clock_t));
944 return true;
945}
946
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700947/* DisplayPort has only two frequencies, 162MHz and 270MHz */
948static bool
949intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
950 int target, int refclk, intel_clock_t *best_clock)
951{
952 intel_clock_t clock;
953 if (target < 200000) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700954 clock.p1 = 2;
955 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700956 clock.n = 2;
957 clock.m1 = 23;
958 clock.m2 = 8;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700959 } else {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700960 clock.p1 = 1;
961 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700962 clock.n = 1;
963 clock.m1 = 14;
964 clock.m2 = 2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700965 }
Keith Packardb3d25492009-06-24 23:09:15 -0700966 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
967 clock.p = (clock.p1 * clock.p2);
968 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
Jesse Barnesfe798b972009-10-20 07:55:28 +0900969 clock.vco = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700970 memcpy(best_clock, &clock, sizeof(intel_clock_t));
971 return true;
972}
973
Jesse Barnes79e53942008-11-07 14:24:08 -0800974void
975intel_wait_for_vblank(struct drm_device *dev)
976{
977 /* Wait for 20ms, i.e. one cycle at 50hz. */
Jesse Barnes81255562010-08-02 12:07:50 -0700978 if (in_dbg_master())
979 mdelay(20); /* The kernel debugger cannot call msleep() */
980 else
981 msleep(20);
Jesse Barnes79e53942008-11-07 14:24:08 -0800982}
983
Jesse Barnes80824002009-09-10 15:28:06 -0700984/* Parameters have changed, update FBC info */
985static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
986{
987 struct drm_device *dev = crtc->dev;
988 struct drm_i915_private *dev_priv = dev->dev_private;
989 struct drm_framebuffer *fb = crtc->fb;
990 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +0100991 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -0700992 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
993 int plane, i;
994 u32 fbc_ctl, fbc_ctl2;
995
996 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
997
998 if (fb->pitch < dev_priv->cfb_pitch)
999 dev_priv->cfb_pitch = fb->pitch;
1000
1001 /* FBC_CTL wants 64B units */
1002 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1003 dev_priv->cfb_fence = obj_priv->fence_reg;
1004 dev_priv->cfb_plane = intel_crtc->plane;
1005 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1006
1007 /* Clear old tags */
1008 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1009 I915_WRITE(FBC_TAG + (i * 4), 0);
1010
1011 /* Set it up... */
1012 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
1013 if (obj_priv->tiling_mode != I915_TILING_NONE)
1014 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1015 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1016 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1017
1018 /* enable it... */
1019 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001020 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001021 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001022 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1023 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
1024 if (obj_priv->tiling_mode != I915_TILING_NONE)
1025 fbc_ctl |= dev_priv->cfb_fence;
1026 I915_WRITE(FBC_CONTROL, fbc_ctl);
1027
Zhao Yakui28c97732009-10-09 11:39:41 +08001028 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Jesse Barnes80824002009-09-10 15:28:06 -07001029 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
1030}
1031
1032void i8xx_disable_fbc(struct drm_device *dev)
1033{
1034 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9517a922010-05-21 09:40:45 -07001035 unsigned long timeout = jiffies + msecs_to_jiffies(1);
Jesse Barnes80824002009-09-10 15:28:06 -07001036 u32 fbc_ctl;
1037
Jesse Barnesc1a1cdc2009-09-16 15:05:00 -07001038 if (!I915_HAS_FBC(dev))
1039 return;
1040
Jesse Barnes9517a922010-05-21 09:40:45 -07001041 if (!(I915_READ(FBC_CONTROL) & FBC_CTL_EN))
1042 return; /* Already off, just return */
1043
Jesse Barnes80824002009-09-10 15:28:06 -07001044 /* Disable compression */
1045 fbc_ctl = I915_READ(FBC_CONTROL);
1046 fbc_ctl &= ~FBC_CTL_EN;
1047 I915_WRITE(FBC_CONTROL, fbc_ctl);
1048
1049 /* Wait for compressing bit to clear */
Jesse Barnes9517a922010-05-21 09:40:45 -07001050 while (I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) {
1051 if (time_after(jiffies, timeout)) {
1052 DRM_DEBUG_DRIVER("FBC idle timed out\n");
1053 break;
1054 }
1055 ; /* do nothing */
1056 }
Jesse Barnes80824002009-09-10 15:28:06 -07001057
1058 intel_wait_for_vblank(dev);
1059
Zhao Yakui28c97732009-10-09 11:39:41 +08001060 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001061}
1062
Adam Jacksonee5382a2010-04-23 11:17:39 -04001063static bool i8xx_fbc_enabled(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001064{
Jesse Barnes80824002009-09-10 15:28:06 -07001065 struct drm_i915_private *dev_priv = dev->dev_private;
1066
1067 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1068}
1069
Jesse Barnes74dff282009-09-14 15:39:40 -07001070static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1071{
1072 struct drm_device *dev = crtc->dev;
1073 struct drm_i915_private *dev_priv = dev->dev_private;
1074 struct drm_framebuffer *fb = crtc->fb;
1075 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001076 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes74dff282009-09-14 15:39:40 -07001077 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1078 int plane = (intel_crtc->plane == 0 ? DPFC_CTL_PLANEA :
1079 DPFC_CTL_PLANEB);
1080 unsigned long stall_watermark = 200;
1081 u32 dpfc_ctl;
1082
1083 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1084 dev_priv->cfb_fence = obj_priv->fence_reg;
1085 dev_priv->cfb_plane = intel_crtc->plane;
1086
1087 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
1088 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1089 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1090 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1091 } else {
1092 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1093 }
1094
1095 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1096 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1097 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1098 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1099 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1100
1101 /* enable it... */
1102 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1103
Zhao Yakui28c97732009-10-09 11:39:41 +08001104 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001105}
1106
1107void g4x_disable_fbc(struct drm_device *dev)
1108{
1109 struct drm_i915_private *dev_priv = dev->dev_private;
1110 u32 dpfc_ctl;
1111
1112 /* Disable compression */
1113 dpfc_ctl = I915_READ(DPFC_CONTROL);
1114 dpfc_ctl &= ~DPFC_CTL_EN;
1115 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1116 intel_wait_for_vblank(dev);
1117
Zhao Yakui28c97732009-10-09 11:39:41 +08001118 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes74dff282009-09-14 15:39:40 -07001119}
1120
Adam Jacksonee5382a2010-04-23 11:17:39 -04001121static bool g4x_fbc_enabled(struct drm_device *dev)
Jesse Barnes74dff282009-09-14 15:39:40 -07001122{
Jesse Barnes74dff282009-09-14 15:39:40 -07001123 struct drm_i915_private *dev_priv = dev->dev_private;
1124
1125 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1126}
1127
Adam Jacksonee5382a2010-04-23 11:17:39 -04001128bool intel_fbc_enabled(struct drm_device *dev)
1129{
1130 struct drm_i915_private *dev_priv = dev->dev_private;
1131
1132 if (!dev_priv->display.fbc_enabled)
1133 return false;
1134
1135 return dev_priv->display.fbc_enabled(dev);
1136}
1137
1138void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1139{
1140 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1141
1142 if (!dev_priv->display.enable_fbc)
1143 return;
1144
1145 dev_priv->display.enable_fbc(crtc, interval);
1146}
1147
1148void intel_disable_fbc(struct drm_device *dev)
1149{
1150 struct drm_i915_private *dev_priv = dev->dev_private;
1151
1152 if (!dev_priv->display.disable_fbc)
1153 return;
1154
1155 dev_priv->display.disable_fbc(dev);
1156}
1157
Jesse Barnes80824002009-09-10 15:28:06 -07001158/**
1159 * intel_update_fbc - enable/disable FBC as needed
1160 * @crtc: CRTC to point the compressor at
1161 * @mode: mode in use
1162 *
1163 * Set up the framebuffer compression hardware at mode set time. We
1164 * enable it if possible:
1165 * - plane A only (on pre-965)
1166 * - no pixel mulitply/line duplication
1167 * - no alpha buffer discard
1168 * - no dual wide
1169 * - framebuffer <= 2048 in width, 1536 in height
1170 *
1171 * We can't assume that any compression will take place (worst case),
1172 * so the compressed buffer has to be the same size as the uncompressed
1173 * one. It also must reside (along with the line length buffer) in
1174 * stolen memory.
1175 *
1176 * We need to enable/disable FBC on a global basis.
1177 */
1178static void intel_update_fbc(struct drm_crtc *crtc,
1179 struct drm_display_mode *mode)
1180{
1181 struct drm_device *dev = crtc->dev;
1182 struct drm_i915_private *dev_priv = dev->dev_private;
1183 struct drm_framebuffer *fb = crtc->fb;
1184 struct intel_framebuffer *intel_fb;
1185 struct drm_i915_gem_object *obj_priv;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001186 struct drm_crtc *tmp_crtc;
Jesse Barnes80824002009-09-10 15:28:06 -07001187 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1188 int plane = intel_crtc->plane;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001189 int crtcs_enabled = 0;
1190
1191 DRM_DEBUG_KMS("\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001192
1193 if (!i915_powersave)
1194 return;
1195
Adam Jacksonee5382a2010-04-23 11:17:39 -04001196 if (!I915_HAS_FBC(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07001197 return;
1198
Jesse Barnes80824002009-09-10 15:28:06 -07001199 if (!crtc->fb)
1200 return;
1201
1202 intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001203 obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -07001204
1205 /*
1206 * If FBC is already on, we just have to verify that we can
1207 * keep it that way...
1208 * Need to disable if:
Jesse Barnes9c928d12010-07-23 15:20:00 -07001209 * - more than one pipe is active
Jesse Barnes80824002009-09-10 15:28:06 -07001210 * - changing FBC params (stride, fence, mode)
1211 * - new fb is too large to fit in compressed buffer
1212 * - going to an unsupported config (interlace, pixel multiply, etc.)
1213 */
Jesse Barnes9c928d12010-07-23 15:20:00 -07001214 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
1215 if (tmp_crtc->enabled)
1216 crtcs_enabled++;
1217 }
1218 DRM_DEBUG_KMS("%d pipes active\n", crtcs_enabled);
1219 if (crtcs_enabled > 1) {
1220 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
1221 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
1222 goto out_disable;
1223 }
Jesse Barnes80824002009-09-10 15:28:06 -07001224 if (intel_fb->obj->size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001225 DRM_DEBUG_KMS("framebuffer too large, disabling "
1226 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001227 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001228 goto out_disable;
1229 }
1230 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
1231 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001232 DRM_DEBUG_KMS("mode incompatible with compression, "
1233 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001234 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001235 goto out_disable;
1236 }
1237 if ((mode->hdisplay > 2048) ||
1238 (mode->vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001239 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001240 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001241 goto out_disable;
1242 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001243 if ((IS_I915GM(dev) || IS_I945GM(dev)) && plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001244 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001245 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001246 goto out_disable;
1247 }
1248 if (obj_priv->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001249 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001250 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001251 goto out_disable;
1252 }
1253
Jason Wesselc924b932010-08-05 09:22:32 -05001254 /* If the kernel debugger is active, always disable compression */
1255 if (in_dbg_master())
1256 goto out_disable;
1257
Adam Jacksonee5382a2010-04-23 11:17:39 -04001258 if (intel_fbc_enabled(dev)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001259 /* We can re-enable it in this case, but need to update pitch */
Adam Jacksonee5382a2010-04-23 11:17:39 -04001260 if ((fb->pitch > dev_priv->cfb_pitch) ||
1261 (obj_priv->fence_reg != dev_priv->cfb_fence) ||
1262 (plane != dev_priv->cfb_plane))
1263 intel_disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001264 }
1265
Adam Jacksonee5382a2010-04-23 11:17:39 -04001266 /* Now try to turn it back on if possible */
1267 if (!intel_fbc_enabled(dev))
1268 intel_enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001269
1270 return;
1271
1272out_disable:
Jesse Barnes80824002009-09-10 15:28:06 -07001273 /* Multiple disables should be harmless */
Chris Wilsona9394062010-05-27 13:18:16 +01001274 if (intel_fbc_enabled(dev)) {
1275 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Adam Jacksonee5382a2010-04-23 11:17:39 -04001276 intel_disable_fbc(dev);
Chris Wilsona9394062010-05-27 13:18:16 +01001277 }
Jesse Barnes80824002009-09-10 15:28:06 -07001278}
1279
Chris Wilson127bd2a2010-07-23 23:32:05 +01001280int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001281intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj)
1282{
Daniel Vetter23010e42010-03-08 13:35:02 +01001283 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001284 u32 alignment;
1285 int ret;
1286
1287 switch (obj_priv->tiling_mode) {
1288 case I915_TILING_NONE:
1289 alignment = 64 * 1024;
1290 break;
1291 case I915_TILING_X:
1292 /* pin() will align the object as required by fence */
1293 alignment = 0;
1294 break;
1295 case I915_TILING_Y:
1296 /* FIXME: Is this true? */
1297 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1298 return -EINVAL;
1299 default:
1300 BUG();
1301 }
1302
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001303 ret = i915_gem_object_pin(obj, alignment);
1304 if (ret != 0)
1305 return ret;
1306
1307 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1308 * fence, whereas 965+ only requires a fence if using
1309 * framebuffer compression. For simplicity, we always install
1310 * a fence as the cost is not that onerous.
1311 */
1312 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
1313 obj_priv->tiling_mode != I915_TILING_NONE) {
1314 ret = i915_gem_object_get_fence_reg(obj);
1315 if (ret != 0) {
1316 i915_gem_object_unpin(obj);
1317 return ret;
1318 }
1319 }
1320
1321 return 0;
1322}
1323
Jesse Barnes81255562010-08-02 12:07:50 -07001324/* Assume fb object is pinned & idle & fenced and just update base pointers */
1325static int
1326intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1327 int x, int y)
1328{
1329 struct drm_device *dev = crtc->dev;
1330 struct drm_i915_private *dev_priv = dev->dev_private;
1331 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1332 struct intel_framebuffer *intel_fb;
1333 struct drm_i915_gem_object *obj_priv;
1334 struct drm_gem_object *obj;
1335 int plane = intel_crtc->plane;
1336 unsigned long Start, Offset;
1337 int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR);
1338 int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF);
1339 int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE;
1340 int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF);
1341 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1342 u32 dspcntr;
1343
1344 switch (plane) {
1345 case 0:
1346 case 1:
1347 break;
1348 default:
1349 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1350 return -EINVAL;
1351 }
1352
1353 intel_fb = to_intel_framebuffer(fb);
1354 obj = intel_fb->obj;
1355 obj_priv = to_intel_bo(obj);
1356
1357 dspcntr = I915_READ(dspcntr_reg);
1358 /* Mask out pixel format bits in case we change it */
1359 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1360 switch (fb->bits_per_pixel) {
1361 case 8:
1362 dspcntr |= DISPPLANE_8BPP;
1363 break;
1364 case 16:
1365 if (fb->depth == 15)
1366 dspcntr |= DISPPLANE_15_16BPP;
1367 else
1368 dspcntr |= DISPPLANE_16BPP;
1369 break;
1370 case 24:
1371 case 32:
1372 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1373 break;
1374 default:
1375 DRM_ERROR("Unknown color depth\n");
1376 return -EINVAL;
1377 }
1378 if (IS_I965G(dev)) {
1379 if (obj_priv->tiling_mode != I915_TILING_NONE)
1380 dspcntr |= DISPPLANE_TILED;
1381 else
1382 dspcntr &= ~DISPPLANE_TILED;
1383 }
1384
1385 if (IS_IRONLAKE(dev))
1386 /* must disable */
1387 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1388
1389 I915_WRITE(dspcntr_reg, dspcntr);
1390
1391 Start = obj_priv->gtt_offset;
1392 Offset = y * fb->pitch + x * (fb->bits_per_pixel / 8);
1393
1394 DRM_DEBUG("Writing base %08lX %08lX %d %d\n", Start, Offset, x, y);
1395 I915_WRITE(dspstride, fb->pitch);
1396 if (IS_I965G(dev)) {
1397 I915_WRITE(dspbase, Offset);
1398 I915_READ(dspbase);
1399 I915_WRITE(dspsurf, Start);
1400 I915_READ(dspsurf);
1401 I915_WRITE(dsptileoff, (y << 16) | x);
1402 } else {
1403 I915_WRITE(dspbase, Start + Offset);
1404 I915_READ(dspbase);
1405 }
1406
1407 if ((IS_I965G(dev) || plane == 0))
1408 intel_update_fbc(crtc, &crtc->mode);
1409
1410 intel_wait_for_vblank(dev);
1411 intel_increase_pllclock(crtc, true);
1412
1413 return 0;
1414}
1415
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001416static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001417intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1418 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001419{
1420 struct drm_device *dev = crtc->dev;
1421 struct drm_i915_private *dev_priv = dev->dev_private;
1422 struct drm_i915_master_private *master_priv;
1423 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1424 struct intel_framebuffer *intel_fb;
1425 struct drm_i915_gem_object *obj_priv;
1426 struct drm_gem_object *obj;
1427 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001428 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08001429 unsigned long Start, Offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001430 int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR);
1431 int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF);
1432 int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE;
1433 int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF);
1434 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001435 u32 dspcntr;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001436 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001437
1438 /* no fb bound */
1439 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001440 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001441 return 0;
1442 }
1443
Jesse Barnes80824002009-09-10 15:28:06 -07001444 switch (plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001445 case 0:
1446 case 1:
1447 break;
1448 default:
Jesse Barnes80824002009-09-10 15:28:06 -07001449 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001450 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001451 }
1452
1453 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08001454 obj = intel_fb->obj;
Daniel Vetter23010e42010-03-08 13:35:02 +01001455 obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08001456
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001457 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001458 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001459 if (ret != 0) {
1460 mutex_unlock(&dev->struct_mutex);
1461 return ret;
1462 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001463
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08001464 ret = i915_gem_object_set_to_display_plane(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001465 if (ret != 0) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001466 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001467 mutex_unlock(&dev->struct_mutex);
1468 return ret;
1469 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001470
1471 dspcntr = I915_READ(dspcntr_reg);
Jesse Barnes712531b2009-01-09 13:56:14 -08001472 /* Mask out pixel format bits in case we change it */
1473 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Jesse Barnes79e53942008-11-07 14:24:08 -08001474 switch (crtc->fb->bits_per_pixel) {
1475 case 8:
1476 dspcntr |= DISPPLANE_8BPP;
1477 break;
1478 case 16:
1479 if (crtc->fb->depth == 15)
1480 dspcntr |= DISPPLANE_15_16BPP;
1481 else
1482 dspcntr |= DISPPLANE_16BPP;
1483 break;
1484 case 24:
1485 case 32:
Kristian Høgsberga4f45cf2009-10-19 14:35:30 -04001486 if (crtc->fb->depth == 30)
1487 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1488 else
1489 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
Jesse Barnes79e53942008-11-07 14:24:08 -08001490 break;
1491 default:
1492 DRM_ERROR("Unknown color depth\n");
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001493 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001494 mutex_unlock(&dev->struct_mutex);
1495 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001496 }
Jesse Barnesf5448472009-04-14 14:17:47 -07001497 if (IS_I965G(dev)) {
1498 if (obj_priv->tiling_mode != I915_TILING_NONE)
1499 dspcntr |= DISPPLANE_TILED;
1500 else
1501 dspcntr &= ~DISPPLANE_TILED;
1502 }
1503
Eric Anholtbad720f2009-10-22 16:11:14 -07001504 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang553bd142009-09-02 10:57:52 +08001505 /* must disable */
1506 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1507
Jesse Barnes79e53942008-11-07 14:24:08 -08001508 I915_WRITE(dspcntr_reg, dspcntr);
1509
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001510 Start = obj_priv->gtt_offset;
1511 Offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
1512
Chris Wilsona7faf322010-05-27 13:18:17 +01001513 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
1514 Start, Offset, x, y, crtc->fb->pitch);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001515 I915_WRITE(dspstride, crtc->fb->pitch);
Jesse Barnes79e53942008-11-07 14:24:08 -08001516 if (IS_I965G(dev)) {
1517 I915_WRITE(dspbase, Offset);
1518 I915_READ(dspbase);
1519 I915_WRITE(dspsurf, Start);
1520 I915_READ(dspsurf);
Jesse Barnesf5448472009-04-14 14:17:47 -07001521 I915_WRITE(dsptileoff, (y << 16) | x);
Jesse Barnes79e53942008-11-07 14:24:08 -08001522 } else {
1523 I915_WRITE(dspbase, Start + Offset);
1524 I915_READ(dspbase);
1525 }
1526
Jesse Barnes74dff282009-09-14 15:39:40 -07001527 if ((IS_I965G(dev) || plane == 0))
Jesse Barnesedb81952009-09-17 17:06:47 -07001528 intel_update_fbc(crtc, &crtc->mode);
1529
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001530 intel_wait_for_vblank(dev);
1531
1532 if (old_fb) {
1533 intel_fb = to_intel_framebuffer(old_fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001534 obj_priv = to_intel_bo(intel_fb->obj);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001535 i915_gem_object_unpin(intel_fb->obj);
1536 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001537 intel_increase_pllclock(crtc, true);
1538
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001539 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001540
1541 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001542 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001543
1544 master_priv = dev->primary->master->driver_priv;
1545 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001546 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001547
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001548 if (pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001549 master_priv->sarea_priv->pipeB_x = x;
1550 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001551 } else {
1552 master_priv->sarea_priv->pipeA_x = x;
1553 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001554 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001555
1556 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001557}
1558
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001559/* Disable the VGA plane that we never use */
1560static void i915_disable_vga (struct drm_device *dev)
1561{
1562 struct drm_i915_private *dev_priv = dev->dev_private;
1563 u8 sr1;
1564 u32 vga_reg;
1565
Eric Anholtbad720f2009-10-22 16:11:14 -07001566 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001567 vga_reg = CPU_VGACNTRL;
1568 else
1569 vga_reg = VGACNTRL;
1570
1571 if (I915_READ(vga_reg) & VGA_DISP_DISABLE)
1572 return;
1573
1574 I915_WRITE8(VGA_SR_INDEX, 1);
1575 sr1 = I915_READ8(VGA_SR_DATA);
1576 I915_WRITE8(VGA_SR_DATA, sr1 | (1 << 5));
1577 udelay(100);
1578
1579 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
1580}
1581
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001582static void ironlake_disable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001583{
1584 struct drm_device *dev = crtc->dev;
1585 struct drm_i915_private *dev_priv = dev->dev_private;
1586 u32 dpa_ctl;
1587
Zhao Yakui28c97732009-10-09 11:39:41 +08001588 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001589 dpa_ctl = I915_READ(DP_A);
1590 dpa_ctl &= ~DP_PLL_ENABLE;
1591 I915_WRITE(DP_A, dpa_ctl);
1592}
1593
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001594static void ironlake_enable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001595{
1596 struct drm_device *dev = crtc->dev;
1597 struct drm_i915_private *dev_priv = dev->dev_private;
1598 u32 dpa_ctl;
1599
1600 dpa_ctl = I915_READ(DP_A);
1601 dpa_ctl |= DP_PLL_ENABLE;
1602 I915_WRITE(DP_A, dpa_ctl);
1603 udelay(200);
1604}
1605
1606
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001607static void ironlake_set_pll_edp (struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001608{
1609 struct drm_device *dev = crtc->dev;
1610 struct drm_i915_private *dev_priv = dev->dev_private;
1611 u32 dpa_ctl;
1612
Zhao Yakui28c97732009-10-09 11:39:41 +08001613 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001614 dpa_ctl = I915_READ(DP_A);
1615 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1616
1617 if (clock < 200000) {
1618 u32 temp;
1619 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1620 /* workaround for 160Mhz:
1621 1) program 0x4600c bits 15:0 = 0x8124
1622 2) program 0x46010 bit 0 = 1
1623 3) program 0x46034 bit 24 = 1
1624 4) program 0x64000 bit 14 = 1
1625 */
1626 temp = I915_READ(0x4600c);
1627 temp &= 0xffff0000;
1628 I915_WRITE(0x4600c, temp | 0x8124);
1629
1630 temp = I915_READ(0x46010);
1631 I915_WRITE(0x46010, temp | 1);
1632
1633 temp = I915_READ(0x46034);
1634 I915_WRITE(0x46034, temp | (1 << 24));
1635 } else {
1636 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1637 }
1638 I915_WRITE(DP_A, dpa_ctl);
1639
1640 udelay(500);
1641}
1642
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001643/* The FDI link training functions for ILK/Ibexpeak. */
1644static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1645{
1646 struct drm_device *dev = crtc->dev;
1647 struct drm_i915_private *dev_priv = dev->dev_private;
1648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1649 int pipe = intel_crtc->pipe;
1650 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1651 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1652 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1653 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1654 u32 temp, tries = 0;
1655
1656 /* enable CPU FDI TX and PCH FDI RX */
1657 temp = I915_READ(fdi_tx_reg);
1658 temp |= FDI_TX_ENABLE;
Adam Jackson77ffb592010-04-12 11:38:44 -04001659 temp &= ~(7 << 19);
1660 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001661 temp &= ~FDI_LINK_TRAIN_NONE;
1662 temp |= FDI_LINK_TRAIN_PATTERN_1;
1663 I915_WRITE(fdi_tx_reg, temp);
1664 I915_READ(fdi_tx_reg);
1665
1666 temp = I915_READ(fdi_rx_reg);
1667 temp &= ~FDI_LINK_TRAIN_NONE;
1668 temp |= FDI_LINK_TRAIN_PATTERN_1;
1669 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1670 I915_READ(fdi_rx_reg);
1671 udelay(150);
1672
1673 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1674 for train result */
1675 temp = I915_READ(fdi_rx_imr_reg);
1676 temp &= ~FDI_RX_SYMBOL_LOCK;
1677 temp &= ~FDI_RX_BIT_LOCK;
1678 I915_WRITE(fdi_rx_imr_reg, temp);
1679 I915_READ(fdi_rx_imr_reg);
1680 udelay(150);
1681
1682 for (;;) {
1683 temp = I915_READ(fdi_rx_iir_reg);
1684 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1685
1686 if ((temp & FDI_RX_BIT_LOCK)) {
1687 DRM_DEBUG_KMS("FDI train 1 done.\n");
1688 I915_WRITE(fdi_rx_iir_reg,
1689 temp | FDI_RX_BIT_LOCK);
1690 break;
1691 }
1692
1693 tries++;
1694
1695 if (tries > 5) {
1696 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1697 break;
1698 }
1699 }
1700
1701 /* Train 2 */
1702 temp = I915_READ(fdi_tx_reg);
1703 temp &= ~FDI_LINK_TRAIN_NONE;
1704 temp |= FDI_LINK_TRAIN_PATTERN_2;
1705 I915_WRITE(fdi_tx_reg, temp);
1706
1707 temp = I915_READ(fdi_rx_reg);
1708 temp &= ~FDI_LINK_TRAIN_NONE;
1709 temp |= FDI_LINK_TRAIN_PATTERN_2;
1710 I915_WRITE(fdi_rx_reg, temp);
1711 udelay(150);
1712
1713 tries = 0;
1714
1715 for (;;) {
1716 temp = I915_READ(fdi_rx_iir_reg);
1717 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1718
1719 if (temp & FDI_RX_SYMBOL_LOCK) {
1720 I915_WRITE(fdi_rx_iir_reg,
1721 temp | FDI_RX_SYMBOL_LOCK);
1722 DRM_DEBUG_KMS("FDI train 2 done.\n");
1723 break;
1724 }
1725
1726 tries++;
1727
1728 if (tries > 5) {
1729 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1730 break;
1731 }
1732 }
1733
1734 DRM_DEBUG_KMS("FDI train done\n");
1735}
1736
1737static int snb_b_fdi_train_param [] = {
1738 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1739 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1740 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1741 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1742};
1743
1744/* The FDI link training functions for SNB/Cougarpoint. */
1745static void gen6_fdi_link_train(struct drm_crtc *crtc)
1746{
1747 struct drm_device *dev = crtc->dev;
1748 struct drm_i915_private *dev_priv = dev->dev_private;
1749 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1750 int pipe = intel_crtc->pipe;
1751 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1752 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1753 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1754 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1755 u32 temp, i;
1756
1757 /* enable CPU FDI TX and PCH FDI RX */
1758 temp = I915_READ(fdi_tx_reg);
1759 temp |= FDI_TX_ENABLE;
Adam Jackson77ffb592010-04-12 11:38:44 -04001760 temp &= ~(7 << 19);
1761 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001762 temp &= ~FDI_LINK_TRAIN_NONE;
1763 temp |= FDI_LINK_TRAIN_PATTERN_1;
1764 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1765 /* SNB-B */
1766 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1767 I915_WRITE(fdi_tx_reg, temp);
1768 I915_READ(fdi_tx_reg);
1769
1770 temp = I915_READ(fdi_rx_reg);
1771 if (HAS_PCH_CPT(dev)) {
1772 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1773 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1774 } else {
1775 temp &= ~FDI_LINK_TRAIN_NONE;
1776 temp |= FDI_LINK_TRAIN_PATTERN_1;
1777 }
1778 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1779 I915_READ(fdi_rx_reg);
1780 udelay(150);
1781
1782 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1783 for train result */
1784 temp = I915_READ(fdi_rx_imr_reg);
1785 temp &= ~FDI_RX_SYMBOL_LOCK;
1786 temp &= ~FDI_RX_BIT_LOCK;
1787 I915_WRITE(fdi_rx_imr_reg, temp);
1788 I915_READ(fdi_rx_imr_reg);
1789 udelay(150);
1790
1791 for (i = 0; i < 4; i++ ) {
1792 temp = I915_READ(fdi_tx_reg);
1793 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1794 temp |= snb_b_fdi_train_param[i];
1795 I915_WRITE(fdi_tx_reg, temp);
1796 udelay(500);
1797
1798 temp = I915_READ(fdi_rx_iir_reg);
1799 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1800
1801 if (temp & FDI_RX_BIT_LOCK) {
1802 I915_WRITE(fdi_rx_iir_reg,
1803 temp | FDI_RX_BIT_LOCK);
1804 DRM_DEBUG_KMS("FDI train 1 done.\n");
1805 break;
1806 }
1807 }
1808 if (i == 4)
1809 DRM_DEBUG_KMS("FDI train 1 fail!\n");
1810
1811 /* Train 2 */
1812 temp = I915_READ(fdi_tx_reg);
1813 temp &= ~FDI_LINK_TRAIN_NONE;
1814 temp |= FDI_LINK_TRAIN_PATTERN_2;
1815 if (IS_GEN6(dev)) {
1816 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1817 /* SNB-B */
1818 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1819 }
1820 I915_WRITE(fdi_tx_reg, temp);
1821
1822 temp = I915_READ(fdi_rx_reg);
1823 if (HAS_PCH_CPT(dev)) {
1824 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1825 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1826 } else {
1827 temp &= ~FDI_LINK_TRAIN_NONE;
1828 temp |= FDI_LINK_TRAIN_PATTERN_2;
1829 }
1830 I915_WRITE(fdi_rx_reg, temp);
1831 udelay(150);
1832
1833 for (i = 0; i < 4; i++ ) {
1834 temp = I915_READ(fdi_tx_reg);
1835 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1836 temp |= snb_b_fdi_train_param[i];
1837 I915_WRITE(fdi_tx_reg, temp);
1838 udelay(500);
1839
1840 temp = I915_READ(fdi_rx_iir_reg);
1841 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1842
1843 if (temp & FDI_RX_SYMBOL_LOCK) {
1844 I915_WRITE(fdi_rx_iir_reg,
1845 temp | FDI_RX_SYMBOL_LOCK);
1846 DRM_DEBUG_KMS("FDI train 2 done.\n");
1847 break;
1848 }
1849 }
1850 if (i == 4)
1851 DRM_DEBUG_KMS("FDI train 2 fail!\n");
1852
1853 DRM_DEBUG_KMS("FDI train done.\n");
1854}
1855
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001856static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08001857{
1858 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001859 struct drm_i915_private *dev_priv = dev->dev_private;
1860 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1861 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001862 int plane = intel_crtc->plane;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001863 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
1864 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1865 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1866 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
1867 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1868 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001869 int transconf_reg = (pipe == 0) ? TRANSACONF : TRANSBCONF;
1870 int pf_ctl_reg = (pipe == 0) ? PFA_CTL_1 : PFB_CTL_1;
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001871 int pf_win_size = (pipe == 0) ? PFA_WIN_SZ : PFB_WIN_SZ;
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001872 int pf_win_pos = (pipe == 0) ? PFA_WIN_POS : PFB_WIN_POS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001873 int cpu_htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
1874 int cpu_hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
1875 int cpu_hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
1876 int cpu_vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
1877 int cpu_vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
1878 int cpu_vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
1879 int trans_htot_reg = (pipe == 0) ? TRANS_HTOTAL_A : TRANS_HTOTAL_B;
1880 int trans_hblank_reg = (pipe == 0) ? TRANS_HBLANK_A : TRANS_HBLANK_B;
1881 int trans_hsync_reg = (pipe == 0) ? TRANS_HSYNC_A : TRANS_HSYNC_B;
1882 int trans_vtot_reg = (pipe == 0) ? TRANS_VTOTAL_A : TRANS_VTOTAL_B;
1883 int trans_vblank_reg = (pipe == 0) ? TRANS_VBLANK_A : TRANS_VBLANK_B;
1884 int trans_vsync_reg = (pipe == 0) ? TRANS_VSYNC_A : TRANS_VSYNC_B;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001885 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001886 u32 temp;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001887 int n;
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001888 u32 pipe_bpc;
1889
1890 temp = I915_READ(pipeconf_reg);
1891 pipe_bpc = temp & PIPE_BPC_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001892
1893 /* XXX: When our outputs are all unaware of DPMS modes other than off
1894 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
1895 */
1896 switch (mode) {
1897 case DRM_MODE_DPMS_ON:
1898 case DRM_MODE_DPMS_STANDBY:
1899 case DRM_MODE_DPMS_SUSPEND:
Zhao Yakui28c97732009-10-09 11:39:41 +08001900 DRM_DEBUG_KMS("crtc %d dpms on\n", pipe);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001901
1902 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1903 temp = I915_READ(PCH_LVDS);
1904 if ((temp & LVDS_PORT_EN) == 0) {
1905 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
1906 POSTING_READ(PCH_LVDS);
1907 }
1908 }
1909
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001910 if (HAS_eDP) {
1911 /* enable eDP PLL */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001912 ironlake_enable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001913 } else {
Zhenyu Wang2c072452009-06-05 15:38:42 +08001914
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001915 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
1916 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001917 /*
1918 * make the BPC in FDI Rx be consistent with that in
1919 * pipeconf reg.
1920 */
1921 temp &= ~(0x7 << 16);
1922 temp |= (pipe_bpc << 11);
Adam Jackson77ffb592010-04-12 11:38:44 -04001923 temp &= ~(7 << 19);
1924 temp |= (intel_crtc->fdi_lanes - 1) << 19;
1925 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001926 I915_READ(fdi_rx_reg);
1927 udelay(200);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001928
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001929 /* Switch from Rawclk to PCDclk */
1930 temp = I915_READ(fdi_rx_reg);
1931 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001932 I915_READ(fdi_rx_reg);
1933 udelay(200);
1934
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001935 /* Enable CPU FDI TX PLL, always on for Ironlake */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001936 temp = I915_READ(fdi_tx_reg);
1937 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
1938 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
1939 I915_READ(fdi_tx_reg);
1940 udelay(100);
1941 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001942 }
1943
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001944 /* Enable panel fitting for LVDS */
1945 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1946 temp = I915_READ(pf_ctl_reg);
Zhenyu Wangb1f60b72009-10-19 15:43:49 +08001947 I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3);
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001948
1949 /* currently full aspect */
1950 I915_WRITE(pf_win_pos, 0);
1951
1952 I915_WRITE(pf_win_size,
1953 (dev_priv->panel_fixed_mode->hdisplay << 16) |
1954 (dev_priv->panel_fixed_mode->vdisplay));
1955 }
1956
Zhenyu Wang2c072452009-06-05 15:38:42 +08001957 /* Enable CPU pipe */
1958 temp = I915_READ(pipeconf_reg);
1959 if ((temp & PIPEACONF_ENABLE) == 0) {
1960 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
1961 I915_READ(pipeconf_reg);
1962 udelay(100);
1963 }
1964
1965 /* configure and enable CPU plane */
1966 temp = I915_READ(dspcntr_reg);
1967 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
1968 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
1969 /* Flush the plane changes */
1970 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1971 }
1972
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001973 if (!HAS_eDP) {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001974 /* For PCH output, training FDI link */
1975 if (IS_GEN6(dev))
1976 gen6_fdi_link_train(crtc);
1977 else
1978 ironlake_fdi_link_train(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001979
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001980 /* enable PCH DPLL */
1981 temp = I915_READ(pch_dpll_reg);
1982 if ((temp & DPLL_VCO_ENABLE) == 0) {
1983 I915_WRITE(pch_dpll_reg, temp | DPLL_VCO_ENABLE);
1984 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001985 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001986 udelay(200);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001987
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001988 if (HAS_PCH_CPT(dev)) {
1989 /* Be sure PCH DPLL SEL is set */
1990 temp = I915_READ(PCH_DPLL_SEL);
1991 if (trans_dpll_sel == 0 &&
1992 (temp & TRANSA_DPLL_ENABLE) == 0)
1993 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
1994 else if (trans_dpll_sel == 1 &&
1995 (temp & TRANSB_DPLL_ENABLE) == 0)
1996 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
1997 I915_WRITE(PCH_DPLL_SEL, temp);
1998 I915_READ(PCH_DPLL_SEL);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001999 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002000
2001 /* set transcoder timing */
2002 I915_WRITE(trans_htot_reg, I915_READ(cpu_htot_reg));
2003 I915_WRITE(trans_hblank_reg, I915_READ(cpu_hblank_reg));
2004 I915_WRITE(trans_hsync_reg, I915_READ(cpu_hsync_reg));
2005
2006 I915_WRITE(trans_vtot_reg, I915_READ(cpu_vtot_reg));
2007 I915_WRITE(trans_vblank_reg, I915_READ(cpu_vblank_reg));
2008 I915_WRITE(trans_vsync_reg, I915_READ(cpu_vsync_reg));
2009
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002010 /* enable normal train */
2011 temp = I915_READ(fdi_tx_reg);
2012 temp &= ~FDI_LINK_TRAIN_NONE;
2013 I915_WRITE(fdi_tx_reg, temp | FDI_LINK_TRAIN_NONE |
2014 FDI_TX_ENHANCE_FRAME_ENABLE);
2015 I915_READ(fdi_tx_reg);
2016
2017 temp = I915_READ(fdi_rx_reg);
2018 if (HAS_PCH_CPT(dev)) {
2019 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2020 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2021 } else {
2022 temp &= ~FDI_LINK_TRAIN_NONE;
2023 temp |= FDI_LINK_TRAIN_NONE;
2024 }
2025 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2026 I915_READ(fdi_rx_reg);
2027
2028 /* wait one idle pattern time */
2029 udelay(100);
2030
Zhenyu Wange3421a12010-04-08 09:43:27 +08002031 /* For PCH DP, enable TRANS_DP_CTL */
2032 if (HAS_PCH_CPT(dev) &&
2033 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
2034 int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B;
2035 int reg;
2036
2037 reg = I915_READ(trans_dp_ctl);
2038 reg &= ~TRANS_DP_PORT_SEL_MASK;
2039 reg = TRANS_DP_OUTPUT_ENABLE |
2040 TRANS_DP_ENH_FRAMING |
2041 TRANS_DP_VSYNC_ACTIVE_HIGH |
2042 TRANS_DP_HSYNC_ACTIVE_HIGH;
2043
2044 switch (intel_trans_dp_port_sel(crtc)) {
2045 case PCH_DP_B:
2046 reg |= TRANS_DP_PORT_SEL_B;
2047 break;
2048 case PCH_DP_C:
2049 reg |= TRANS_DP_PORT_SEL_C;
2050 break;
2051 case PCH_DP_D:
2052 reg |= TRANS_DP_PORT_SEL_D;
2053 break;
2054 default:
2055 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
2056 reg |= TRANS_DP_PORT_SEL_B;
2057 break;
2058 }
2059
2060 I915_WRITE(trans_dp_ctl, reg);
2061 POSTING_READ(trans_dp_ctl);
2062 }
2063
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002064 /* enable PCH transcoder */
2065 temp = I915_READ(transconf_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002066 /*
2067 * make the BPC in transcoder be consistent with
2068 * that in pipeconf reg.
2069 */
2070 temp &= ~PIPE_BPC_MASK;
2071 temp |= pipe_bpc;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002072 I915_WRITE(transconf_reg, temp | TRANS_ENABLE);
2073 I915_READ(transconf_reg);
2074
2075 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) == 0)
2076 ;
2077
Zhenyu Wang2c072452009-06-05 15:38:42 +08002078 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002079
2080 intel_crtc_load_lut(crtc);
2081
2082 break;
2083 case DRM_MODE_DPMS_OFF:
Zhao Yakui28c97732009-10-09 11:39:41 +08002084 DRM_DEBUG_KMS("crtc %d dpms off\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002085
Li Pengc062df62010-01-23 00:12:58 +08002086 drm_vblank_off(dev, pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002087 /* Disable display plane */
2088 temp = I915_READ(dspcntr_reg);
2089 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
2090 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
2091 /* Flush the plane changes */
2092 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2093 I915_READ(dspbase_reg);
2094 }
2095
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002096 i915_disable_vga(dev);
2097
Zhenyu Wang2c072452009-06-05 15:38:42 +08002098 /* disable cpu pipe, disable after all planes disabled */
2099 temp = I915_READ(pipeconf_reg);
2100 if ((temp & PIPEACONF_ENABLE) != 0) {
2101 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
2102 I915_READ(pipeconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002103 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002104 /* wait for cpu pipe off, pipe state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002105 while ((I915_READ(pipeconf_reg) & I965_PIPECONF_ACTIVE) != 0) {
2106 n++;
2107 if (n < 60) {
2108 udelay(500);
2109 continue;
2110 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002111 DRM_DEBUG_KMS("pipe %d off delay\n",
2112 pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002113 break;
2114 }
2115 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002116 } else
Zhao Yakui28c97732009-10-09 11:39:41 +08002117 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002118
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002119 udelay(100);
2120
2121 /* Disable PF */
2122 temp = I915_READ(pf_ctl_reg);
2123 if ((temp & PF_ENABLE) != 0) {
2124 I915_WRITE(pf_ctl_reg, temp & ~PF_ENABLE);
2125 I915_READ(pf_ctl_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002126 }
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002127 I915_WRITE(pf_win_size, 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002128 POSTING_READ(pf_win_size);
2129
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002130
Zhenyu Wang2c072452009-06-05 15:38:42 +08002131 /* disable CPU FDI tx and PCH FDI rx */
2132 temp = I915_READ(fdi_tx_reg);
2133 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_ENABLE);
2134 I915_READ(fdi_tx_reg);
2135
2136 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002137 /* BPC in FDI rx is consistent with that in pipeconf */
2138 temp &= ~(0x07 << 16);
2139 temp |= (pipe_bpc << 11);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002140 I915_WRITE(fdi_rx_reg, temp & ~FDI_RX_ENABLE);
2141 I915_READ(fdi_rx_reg);
2142
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002143 udelay(100);
2144
Zhenyu Wang2c072452009-06-05 15:38:42 +08002145 /* still set train pattern 1 */
2146 temp = I915_READ(fdi_tx_reg);
2147 temp &= ~FDI_LINK_TRAIN_NONE;
2148 temp |= FDI_LINK_TRAIN_PATTERN_1;
2149 I915_WRITE(fdi_tx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002150 POSTING_READ(fdi_tx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002151
2152 temp = I915_READ(fdi_rx_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002153 if (HAS_PCH_CPT(dev)) {
2154 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2155 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2156 } else {
2157 temp &= ~FDI_LINK_TRAIN_NONE;
2158 temp |= FDI_LINK_TRAIN_PATTERN_1;
2159 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002160 I915_WRITE(fdi_rx_reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002161 POSTING_READ(fdi_rx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002162
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002163 udelay(100);
2164
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002165 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2166 temp = I915_READ(PCH_LVDS);
2167 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2168 I915_READ(PCH_LVDS);
2169 udelay(100);
2170 }
2171
Zhenyu Wang2c072452009-06-05 15:38:42 +08002172 /* disable PCH transcoder */
2173 temp = I915_READ(transconf_reg);
2174 if ((temp & TRANS_ENABLE) != 0) {
2175 I915_WRITE(transconf_reg, temp & ~TRANS_ENABLE);
2176 I915_READ(transconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002177 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002178 /* wait for PCH transcoder off, transcoder state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002179 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) != 0) {
2180 n++;
2181 if (n < 60) {
2182 udelay(500);
2183 continue;
2184 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002185 DRM_DEBUG_KMS("transcoder %d off "
2186 "delay\n", pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08002187 break;
2188 }
2189 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002190 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002191
Zhao Yakui8faf3b32010-01-04 16:29:31 +08002192 temp = I915_READ(transconf_reg);
2193 /* BPC in transcoder is consistent with that in pipeconf */
2194 temp &= ~PIPE_BPC_MASK;
2195 temp |= pipe_bpc;
2196 I915_WRITE(transconf_reg, temp);
2197 I915_READ(transconf_reg);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002198 udelay(100);
2199
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002200 if (HAS_PCH_CPT(dev)) {
Zhenyu Wange3421a12010-04-08 09:43:27 +08002201 /* disable TRANS_DP_CTL */
2202 int trans_dp_ctl = (pipe == 0) ? TRANS_DP_CTL_A : TRANS_DP_CTL_B;
2203 int reg;
2204
2205 reg = I915_READ(trans_dp_ctl);
2206 reg &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
2207 I915_WRITE(trans_dp_ctl, reg);
2208 POSTING_READ(trans_dp_ctl);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002209
2210 /* disable DPLL_SEL */
2211 temp = I915_READ(PCH_DPLL_SEL);
2212 if (trans_dpll_sel == 0)
2213 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2214 else
2215 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2216 I915_WRITE(PCH_DPLL_SEL, temp);
2217 I915_READ(PCH_DPLL_SEL);
2218
2219 }
2220
Zhenyu Wang2c072452009-06-05 15:38:42 +08002221 /* disable PCH DPLL */
2222 temp = I915_READ(pch_dpll_reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002223 I915_WRITE(pch_dpll_reg, temp & ~DPLL_VCO_ENABLE);
2224 I915_READ(pch_dpll_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002225
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002226 if (HAS_eDP) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002227 ironlake_disable_pll_edp(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002228 }
2229
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002230 /* Switch from PCDclk to Rawclk */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002231 temp = I915_READ(fdi_rx_reg);
2232 temp &= ~FDI_SEL_PCDCLK;
2233 I915_WRITE(fdi_rx_reg, temp);
2234 I915_READ(fdi_rx_reg);
2235
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002236 /* Disable CPU FDI TX PLL */
2237 temp = I915_READ(fdi_tx_reg);
2238 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_PLL_ENABLE);
2239 I915_READ(fdi_tx_reg);
2240 udelay(100);
2241
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002242 temp = I915_READ(fdi_rx_reg);
2243 temp &= ~FDI_RX_PLL_ENABLE;
2244 I915_WRITE(fdi_rx_reg, temp);
2245 I915_READ(fdi_rx_reg);
2246
Zhenyu Wang2c072452009-06-05 15:38:42 +08002247 /* Wait for the clocks to turn off. */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08002248 udelay(100);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002249 break;
2250 }
2251}
2252
Daniel Vetter02e792f2009-09-15 22:57:34 +02002253static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2254{
2255 struct intel_overlay *overlay;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002256 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +02002257
2258 if (!enable && intel_crtc->overlay) {
2259 overlay = intel_crtc->overlay;
2260 mutex_lock(&overlay->dev->struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002261 for (;;) {
2262 ret = intel_overlay_switch_off(overlay);
2263 if (ret == 0)
2264 break;
2265
2266 ret = intel_overlay_recover_from_interrupt(overlay, 0);
2267 if (ret != 0) {
2268 /* overlay doesn't react anymore. Usually
2269 * results in a black screen and an unkillable
2270 * X server. */
2271 BUG();
2272 overlay->hw_wedged = HW_WEDGED;
2273 break;
2274 }
2275 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002276 mutex_unlock(&overlay->dev->struct_mutex);
2277 }
2278 /* Let userspace switch the overlay on again. In most cases userspace
2279 * has to recompute where to put it anyway. */
2280
2281 return;
2282}
2283
Zhenyu Wang2c072452009-06-05 15:38:42 +08002284static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2285{
2286 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002287 struct drm_i915_private *dev_priv = dev->dev_private;
2288 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2289 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002290 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002291 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
Jesse Barnes80824002009-09-10 15:28:06 -07002292 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
2293 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
Jesse Barnes79e53942008-11-07 14:24:08 -08002294 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
2295 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08002296
2297 /* XXX: When our outputs are all unaware of DPMS modes other than off
2298 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2299 */
2300 switch (mode) {
2301 case DRM_MODE_DPMS_ON:
2302 case DRM_MODE_DPMS_STANDBY:
2303 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes629598d2009-10-20 07:37:32 +09002304 intel_update_watermarks(dev);
2305
Jesse Barnes79e53942008-11-07 14:24:08 -08002306 /* Enable the DPLL */
2307 temp = I915_READ(dpll_reg);
2308 if ((temp & DPLL_VCO_ENABLE) == 0) {
2309 I915_WRITE(dpll_reg, temp);
2310 I915_READ(dpll_reg);
2311 /* Wait for the clocks to stabilize. */
2312 udelay(150);
2313 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2314 I915_READ(dpll_reg);
2315 /* Wait for the clocks to stabilize. */
2316 udelay(150);
2317 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
2318 I915_READ(dpll_reg);
2319 /* Wait for the clocks to stabilize. */
2320 udelay(150);
2321 }
2322
2323 /* Enable the pipe */
2324 temp = I915_READ(pipeconf_reg);
2325 if ((temp & PIPEACONF_ENABLE) == 0)
2326 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
2327
2328 /* Enable the plane */
2329 temp = I915_READ(dspcntr_reg);
2330 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
2331 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
2332 /* Flush the plane changes */
2333 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2334 }
2335
2336 intel_crtc_load_lut(crtc);
2337
Jesse Barnes74dff282009-09-14 15:39:40 -07002338 if ((IS_I965G(dev) || plane == 0))
2339 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnes80824002009-09-10 15:28:06 -07002340
Jesse Barnes79e53942008-11-07 14:24:08 -08002341 /* Give the overlay scaler a chance to enable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002342 intel_crtc_dpms_overlay(intel_crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08002343 break;
2344 case DRM_MODE_DPMS_OFF:
Shaohua Li7662c8b2009-06-26 11:23:55 +08002345 intel_update_watermarks(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002346
Jesse Barnes79e53942008-11-07 14:24:08 -08002347 /* Give the overlay scaler a chance to disable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002348 intel_crtc_dpms_overlay(intel_crtc, false);
Li Peng778c9022009-11-09 12:51:22 +08002349 drm_vblank_off(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08002350
Jesse Barnese70236a2009-09-21 10:42:27 -07002351 if (dev_priv->cfb_plane == plane &&
2352 dev_priv->display.disable_fbc)
2353 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07002354
Jesse Barnes79e53942008-11-07 14:24:08 -08002355 /* Disable the VGA plane that we never use */
Zhenyu Wang24f119c2009-07-24 01:00:28 +08002356 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08002357
2358 /* Disable display plane */
2359 temp = I915_READ(dspcntr_reg);
2360 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
2361 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
2362 /* Flush the plane changes */
2363 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
2364 I915_READ(dspbase_reg);
2365 }
2366
2367 if (!IS_I9XX(dev)) {
2368 /* Wait for vblank for the disable to take effect */
2369 intel_wait_for_vblank(dev);
2370 }
2371
Jesse Barnesb690e962010-07-19 13:53:12 -07002372 /* Don't disable pipe A or pipe A PLLs if needed */
2373 if (pipeconf_reg == PIPEACONF &&
2374 (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2375 goto skip_pipe_off;
2376
Jesse Barnes79e53942008-11-07 14:24:08 -08002377 /* Next, disable display pipes */
2378 temp = I915_READ(pipeconf_reg);
2379 if ((temp & PIPEACONF_ENABLE) != 0) {
2380 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
2381 I915_READ(pipeconf_reg);
2382 }
2383
2384 /* Wait for vblank for the disable to take effect. */
2385 intel_wait_for_vblank(dev);
2386
2387 temp = I915_READ(dpll_reg);
2388 if ((temp & DPLL_VCO_ENABLE) != 0) {
2389 I915_WRITE(dpll_reg, temp & ~DPLL_VCO_ENABLE);
2390 I915_READ(dpll_reg);
2391 }
Jesse Barnesb690e962010-07-19 13:53:12 -07002392 skip_pipe_off:
Jesse Barnes79e53942008-11-07 14:24:08 -08002393 /* Wait for the clocks to turn off. */
2394 udelay(150);
2395 break;
2396 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002397}
2398
2399/**
2400 * Sets the power management mode of the pipe and plane.
2401 *
2402 * This code should probably grow support for turning the cursor off and back
2403 * on appropriately at the same time as we're turning the pipe off/on.
2404 */
2405static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2406{
2407 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002408 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002409 struct drm_i915_master_private *master_priv;
2410 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2411 int pipe = intel_crtc->pipe;
2412 bool enabled;
2413
Jesse Barnese70236a2009-09-21 10:42:27 -07002414 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002415
Daniel Vetter65655d42009-08-11 16:05:31 +02002416 intel_crtc->dpms_mode = mode;
2417
Jesse Barnes79e53942008-11-07 14:24:08 -08002418 if (!dev->primary->master)
2419 return;
2420
2421 master_priv = dev->primary->master->driver_priv;
2422 if (!master_priv->sarea_priv)
2423 return;
2424
2425 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2426
2427 switch (pipe) {
2428 case 0:
2429 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2430 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2431 break;
2432 case 1:
2433 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2434 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2435 break;
2436 default:
2437 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2438 break;
2439 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002440}
2441
2442static void intel_crtc_prepare (struct drm_crtc *crtc)
2443{
2444 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2445 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2446}
2447
2448static void intel_crtc_commit (struct drm_crtc *crtc)
2449{
2450 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2451 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
2452}
2453
2454void intel_encoder_prepare (struct drm_encoder *encoder)
2455{
2456 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2457 /* lvds has its own version of prepare see intel_lvds_prepare */
2458 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2459}
2460
2461void intel_encoder_commit (struct drm_encoder *encoder)
2462{
2463 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2464 /* lvds has its own version of commit see intel_lvds_commit */
2465 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2466}
2467
2468static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2469 struct drm_display_mode *mode,
2470 struct drm_display_mode *adjusted_mode)
2471{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002472 struct drm_device *dev = crtc->dev;
Eric Anholtbad720f2009-10-22 16:11:14 -07002473 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002474 /* FDI link clock is fixed at 2.7G */
2475 if (mode->clock * 3 > 27000 * 4)
2476 return MODE_CLOCK_HIGH;
2477 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002478 return true;
2479}
2480
Jesse Barnese70236a2009-09-21 10:42:27 -07002481static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002482{
Jesse Barnese70236a2009-09-21 10:42:27 -07002483 return 400000;
2484}
Jesse Barnes79e53942008-11-07 14:24:08 -08002485
Jesse Barnese70236a2009-09-21 10:42:27 -07002486static int i915_get_display_clock_speed(struct drm_device *dev)
2487{
2488 return 333000;
2489}
Jesse Barnes79e53942008-11-07 14:24:08 -08002490
Jesse Barnese70236a2009-09-21 10:42:27 -07002491static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2492{
2493 return 200000;
2494}
Jesse Barnes79e53942008-11-07 14:24:08 -08002495
Jesse Barnese70236a2009-09-21 10:42:27 -07002496static int i915gm_get_display_clock_speed(struct drm_device *dev)
2497{
2498 u16 gcfgc = 0;
2499
2500 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2501
2502 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002503 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002504 else {
2505 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2506 case GC_DISPLAY_CLOCK_333_MHZ:
2507 return 333000;
2508 default:
2509 case GC_DISPLAY_CLOCK_190_200_MHZ:
2510 return 190000;
2511 }
2512 }
2513}
Jesse Barnes79e53942008-11-07 14:24:08 -08002514
Jesse Barnese70236a2009-09-21 10:42:27 -07002515static int i865_get_display_clock_speed(struct drm_device *dev)
2516{
2517 return 266000;
2518}
2519
2520static int i855_get_display_clock_speed(struct drm_device *dev)
2521{
2522 u16 hpllcc = 0;
2523 /* Assume that the hardware is in the high speed state. This
2524 * should be the default.
2525 */
2526 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2527 case GC_CLOCK_133_200:
2528 case GC_CLOCK_100_200:
2529 return 200000;
2530 case GC_CLOCK_166_250:
2531 return 250000;
2532 case GC_CLOCK_100_133:
2533 return 133000;
2534 }
2535
2536 /* Shouldn't happen */
2537 return 0;
2538}
2539
2540static int i830_get_display_clock_speed(struct drm_device *dev)
2541{
2542 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002543}
2544
Jesse Barnes79e53942008-11-07 14:24:08 -08002545/**
2546 * Return the pipe currently connected to the panel fitter,
2547 * or -1 if the panel fitter is not present or not in use
2548 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002549int intel_panel_fitter_pipe (struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002550{
2551 struct drm_i915_private *dev_priv = dev->dev_private;
2552 u32 pfit_control;
2553
2554 /* i830 doesn't have a panel fitter */
2555 if (IS_I830(dev))
2556 return -1;
2557
2558 pfit_control = I915_READ(PFIT_CONTROL);
2559
2560 /* See if the panel fitter is in use */
2561 if ((pfit_control & PFIT_ENABLE) == 0)
2562 return -1;
2563
2564 /* 965 can place panel fitter on either pipe */
2565 if (IS_I965G(dev))
2566 return (pfit_control >> 29) & 0x3;
2567
2568 /* older chips can only use pipe 1 */
2569 return 1;
2570}
2571
Zhenyu Wang2c072452009-06-05 15:38:42 +08002572struct fdi_m_n {
2573 u32 tu;
2574 u32 gmch_m;
2575 u32 gmch_n;
2576 u32 link_m;
2577 u32 link_n;
2578};
2579
2580static void
2581fdi_reduce_ratio(u32 *num, u32 *den)
2582{
2583 while (*num > 0xffffff || *den > 0xffffff) {
2584 *num >>= 1;
2585 *den >>= 1;
2586 }
2587}
2588
2589#define DATA_N 0x800000
2590#define LINK_N 0x80000
2591
2592static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002593ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2594 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002595{
2596 u64 temp;
2597
2598 m_n->tu = 64; /* default size */
2599
2600 temp = (u64) DATA_N * pixel_clock;
2601 temp = div_u64(temp, link_clock);
Zhenyu Wang58a27472009-09-25 08:01:28 +00002602 m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes);
2603 m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */
Zhenyu Wang2c072452009-06-05 15:38:42 +08002604 m_n->gmch_n = DATA_N;
2605 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2606
2607 temp = (u64) LINK_N * pixel_clock;
2608 m_n->link_m = div_u64(temp, link_clock);
2609 m_n->link_n = LINK_N;
2610 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2611}
2612
2613
Shaohua Li7662c8b2009-06-26 11:23:55 +08002614struct intel_watermark_params {
2615 unsigned long fifo_size;
2616 unsigned long max_wm;
2617 unsigned long default_wm;
2618 unsigned long guard_size;
2619 unsigned long cacheline_size;
2620};
2621
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002622/* Pineview has different values for various configs */
2623static struct intel_watermark_params pineview_display_wm = {
2624 PINEVIEW_DISPLAY_FIFO,
2625 PINEVIEW_MAX_WM,
2626 PINEVIEW_DFT_WM,
2627 PINEVIEW_GUARD_WM,
2628 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002629};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002630static struct intel_watermark_params pineview_display_hplloff_wm = {
2631 PINEVIEW_DISPLAY_FIFO,
2632 PINEVIEW_MAX_WM,
2633 PINEVIEW_DFT_HPLLOFF_WM,
2634 PINEVIEW_GUARD_WM,
2635 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002636};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002637static struct intel_watermark_params pineview_cursor_wm = {
2638 PINEVIEW_CURSOR_FIFO,
2639 PINEVIEW_CURSOR_MAX_WM,
2640 PINEVIEW_CURSOR_DFT_WM,
2641 PINEVIEW_CURSOR_GUARD_WM,
2642 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002643};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002644static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2645 PINEVIEW_CURSOR_FIFO,
2646 PINEVIEW_CURSOR_MAX_WM,
2647 PINEVIEW_CURSOR_DFT_WM,
2648 PINEVIEW_CURSOR_GUARD_WM,
2649 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002650};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002651static struct intel_watermark_params g4x_wm_info = {
2652 G4X_FIFO_SIZE,
2653 G4X_MAX_WM,
2654 G4X_MAX_WM,
2655 2,
2656 G4X_FIFO_LINE_SIZE,
2657};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002658static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002659 I945_FIFO_SIZE,
2660 I915_MAX_WM,
2661 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002662 2,
2663 I915_FIFO_LINE_SIZE
2664};
2665static struct intel_watermark_params i915_wm_info = {
2666 I915_FIFO_SIZE,
2667 I915_MAX_WM,
2668 1,
2669 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002670 I915_FIFO_LINE_SIZE
2671};
2672static struct intel_watermark_params i855_wm_info = {
2673 I855GM_FIFO_SIZE,
2674 I915_MAX_WM,
2675 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002676 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002677 I830_FIFO_LINE_SIZE
2678};
2679static struct intel_watermark_params i830_wm_info = {
2680 I830_FIFO_SIZE,
2681 I915_MAX_WM,
2682 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002683 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002684 I830_FIFO_LINE_SIZE
2685};
2686
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002687static struct intel_watermark_params ironlake_display_wm_info = {
2688 ILK_DISPLAY_FIFO,
2689 ILK_DISPLAY_MAXWM,
2690 ILK_DISPLAY_DFTWM,
2691 2,
2692 ILK_FIFO_LINE_SIZE
2693};
2694
2695static struct intel_watermark_params ironlake_display_srwm_info = {
2696 ILK_DISPLAY_SR_FIFO,
2697 ILK_DISPLAY_MAX_SRWM,
2698 ILK_DISPLAY_DFT_SRWM,
2699 2,
2700 ILK_FIFO_LINE_SIZE
2701};
2702
2703static struct intel_watermark_params ironlake_cursor_srwm_info = {
2704 ILK_CURSOR_SR_FIFO,
2705 ILK_CURSOR_MAX_SRWM,
2706 ILK_CURSOR_DFT_SRWM,
2707 2,
2708 ILK_FIFO_LINE_SIZE
2709};
2710
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002711/**
2712 * intel_calculate_wm - calculate watermark level
2713 * @clock_in_khz: pixel clock
2714 * @wm: chip FIFO params
2715 * @pixel_size: display pixel size
2716 * @latency_ns: memory latency for the platform
2717 *
2718 * Calculate the watermark level (the level at which the display plane will
2719 * start fetching from memory again). Each chip has a different display
2720 * FIFO size and allocation, so the caller needs to figure that out and pass
2721 * in the correct intel_watermark_params structure.
2722 *
2723 * As the pixel clock runs, the FIFO will be drained at a rate that depends
2724 * on the pixel size. When it reaches the watermark level, it'll start
2725 * fetching FIFO line sized based chunks from memory until the FIFO fills
2726 * past the watermark point. If the FIFO drains completely, a FIFO underrun
2727 * will occur, and a display engine hang could result.
2728 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002729static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
2730 struct intel_watermark_params *wm,
2731 int pixel_size,
2732 unsigned long latency_ns)
2733{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002734 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002735
Jesse Barnesd6604672009-09-11 12:25:56 -07002736 /*
2737 * Note: we need to make sure we don't overflow for various clock &
2738 * latency values.
2739 * clocks go from a few thousand to several hundred thousand.
2740 * latency is usually a few thousand
2741 */
2742 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
2743 1000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002744 entries_required /= wm->cacheline_size;
2745
Zhao Yakui28c97732009-10-09 11:39:41 +08002746 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002747
2748 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
2749
Zhao Yakui28c97732009-10-09 11:39:41 +08002750 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002751
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002752 /* Don't promote wm_size to unsigned... */
2753 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002754 wm_size = wm->max_wm;
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002755 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002756 wm_size = wm->default_wm;
2757 return wm_size;
2758}
2759
2760struct cxsr_latency {
2761 int is_desktop;
Li Peng95534262010-05-18 18:58:44 +08002762 int is_ddr3;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002763 unsigned long fsb_freq;
2764 unsigned long mem_freq;
2765 unsigned long display_sr;
2766 unsigned long display_hpll_disable;
2767 unsigned long cursor_sr;
2768 unsigned long cursor_hpll_disable;
2769};
2770
2771static struct cxsr_latency cxsr_latency_table[] = {
Li Peng95534262010-05-18 18:58:44 +08002772 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
2773 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
2774 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
2775 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
2776 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002777
Li Peng95534262010-05-18 18:58:44 +08002778 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
2779 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
2780 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
2781 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
2782 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002783
Li Peng95534262010-05-18 18:58:44 +08002784 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
2785 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
2786 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
2787 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
2788 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002789
Li Peng95534262010-05-18 18:58:44 +08002790 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
2791 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
2792 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
2793 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
2794 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002795
Li Peng95534262010-05-18 18:58:44 +08002796 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
2797 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
2798 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
2799 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
2800 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002801
Li Peng95534262010-05-18 18:58:44 +08002802 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
2803 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
2804 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
2805 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
2806 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002807};
2808
Li Peng95534262010-05-18 18:58:44 +08002809static struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, int is_ddr3,
2810 int fsb, int mem)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002811{
2812 int i;
2813 struct cxsr_latency *latency;
2814
2815 if (fsb == 0 || mem == 0)
2816 return NULL;
2817
2818 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
2819 latency = &cxsr_latency_table[i];
2820 if (is_desktop == latency->is_desktop &&
Li Peng95534262010-05-18 18:58:44 +08002821 is_ddr3 == latency->is_ddr3 &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302822 fsb == latency->fsb_freq && mem == latency->mem_freq)
2823 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002824 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302825
Zhao Yakui28c97732009-10-09 11:39:41 +08002826 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302827
2828 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002829}
2830
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002831static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002832{
2833 struct drm_i915_private *dev_priv = dev->dev_private;
2834 u32 reg;
2835
2836 /* deactivate cxsr */
2837 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002838 reg &= ~(PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002839 I915_WRITE(DSPFW3, reg);
2840 DRM_INFO("Big FIFO is disabled\n");
2841}
2842
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07002843/*
2844 * Latency for FIFO fetches is dependent on several factors:
2845 * - memory configuration (speed, channels)
2846 * - chipset
2847 * - current MCH state
2848 * It can be fairly high in some situations, so here we assume a fairly
2849 * pessimal value. It's a tradeoff between extra memory fetches (if we
2850 * set this value too high, the FIFO will fetch frequently to stay full)
2851 * and power consumption (set it too low to save power and we might see
2852 * FIFO underruns and display "flicker").
2853 *
2854 * A value of 5us seems to be a good balance; safe for very low end
2855 * platforms but not overly aggressive on lower latency configs.
2856 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002857static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002858
Jesse Barnese70236a2009-09-21 10:42:27 -07002859static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002860{
2861 struct drm_i915_private *dev_priv = dev->dev_private;
2862 uint32_t dsparb = I915_READ(DSPARB);
2863 int size;
2864
Jesse Barnese70236a2009-09-21 10:42:27 -07002865 if (plane == 0)
Jesse Barnesf3601322009-07-22 12:54:59 -07002866 size = dsparb & 0x7f;
Jesse Barnese70236a2009-09-21 10:42:27 -07002867 else
2868 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) -
2869 (dsparb & 0x7f);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002870
Zhao Yakui28c97732009-10-09 11:39:41 +08002871 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2872 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002873
2874 return size;
2875}
Shaohua Li7662c8b2009-06-26 11:23:55 +08002876
Jesse Barnese70236a2009-09-21 10:42:27 -07002877static int i85x_get_fifo_size(struct drm_device *dev, int plane)
2878{
2879 struct drm_i915_private *dev_priv = dev->dev_private;
2880 uint32_t dsparb = I915_READ(DSPARB);
2881 int size;
2882
2883 if (plane == 0)
2884 size = dsparb & 0x1ff;
2885 else
2886 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) -
2887 (dsparb & 0x1ff);
2888 size >>= 1; /* Convert to cachelines */
2889
Zhao Yakui28c97732009-10-09 11:39:41 +08002890 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2891 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002892
2893 return size;
2894}
2895
2896static int i845_get_fifo_size(struct drm_device *dev, int plane)
2897{
2898 struct drm_i915_private *dev_priv = dev->dev_private;
2899 uint32_t dsparb = I915_READ(DSPARB);
2900 int size;
2901
2902 size = dsparb & 0x7f;
2903 size >>= 2; /* Convert to cachelines */
2904
Zhao Yakui28c97732009-10-09 11:39:41 +08002905 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2906 plane ? "B" : "A",
Jesse Barnese70236a2009-09-21 10:42:27 -07002907 size);
2908
2909 return size;
2910}
2911
2912static int i830_get_fifo_size(struct drm_device *dev, int plane)
2913{
2914 struct drm_i915_private *dev_priv = dev->dev_private;
2915 uint32_t dsparb = I915_READ(DSPARB);
2916 int size;
2917
2918 size = dsparb & 0x7f;
2919 size >>= 1; /* Convert to cachelines */
2920
Zhao Yakui28c97732009-10-09 11:39:41 +08002921 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2922 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002923
2924 return size;
2925}
2926
Zhao Yakuid4294342010-03-22 22:45:36 +08002927static void pineview_update_wm(struct drm_device *dev, int planea_clock,
2928 int planeb_clock, int sr_hdisplay, int pixel_size)
2929{
2930 struct drm_i915_private *dev_priv = dev->dev_private;
2931 u32 reg;
2932 unsigned long wm;
2933 struct cxsr_latency *latency;
2934 int sr_clock;
2935
Li Peng95534262010-05-18 18:58:44 +08002936 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
2937 dev_priv->fsb_freq, dev_priv->mem_freq);
Zhao Yakuid4294342010-03-22 22:45:36 +08002938 if (!latency) {
2939 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
2940 pineview_disable_cxsr(dev);
2941 return;
2942 }
2943
2944 if (!planea_clock || !planeb_clock) {
2945 sr_clock = planea_clock ? planea_clock : planeb_clock;
2946
2947 /* Display SR */
2948 wm = intel_calculate_wm(sr_clock, &pineview_display_wm,
2949 pixel_size, latency->display_sr);
2950 reg = I915_READ(DSPFW1);
2951 reg &= ~DSPFW_SR_MASK;
2952 reg |= wm << DSPFW_SR_SHIFT;
2953 I915_WRITE(DSPFW1, reg);
2954 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
2955
2956 /* cursor SR */
2957 wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm,
2958 pixel_size, latency->cursor_sr);
2959 reg = I915_READ(DSPFW3);
2960 reg &= ~DSPFW_CURSOR_SR_MASK;
2961 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
2962 I915_WRITE(DSPFW3, reg);
2963
2964 /* Display HPLL off SR */
2965 wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm,
2966 pixel_size, latency->display_hpll_disable);
2967 reg = I915_READ(DSPFW3);
2968 reg &= ~DSPFW_HPLL_SR_MASK;
2969 reg |= wm & DSPFW_HPLL_SR_MASK;
2970 I915_WRITE(DSPFW3, reg);
2971
2972 /* cursor HPLL off SR */
2973 wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm,
2974 pixel_size, latency->cursor_hpll_disable);
2975 reg = I915_READ(DSPFW3);
2976 reg &= ~DSPFW_HPLL_CURSOR_MASK;
2977 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
2978 I915_WRITE(DSPFW3, reg);
2979 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
2980
2981 /* activate cxsr */
2982 reg = I915_READ(DSPFW3);
2983 reg |= PINEVIEW_SELF_REFRESH_EN;
2984 I915_WRITE(DSPFW3, reg);
2985 DRM_DEBUG_KMS("Self-refresh is enabled\n");
2986 } else {
2987 pineview_disable_cxsr(dev);
2988 DRM_DEBUG_KMS("Self-refresh is disabled\n");
2989 }
2990}
2991
Jesse Barnes0e442c62009-10-19 10:09:33 +09002992static void g4x_update_wm(struct drm_device *dev, int planea_clock,
2993 int planeb_clock, int sr_hdisplay, int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07002994{
2995 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002996 int total_size, cacheline_size;
2997 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
2998 struct intel_watermark_params planea_params, planeb_params;
2999 unsigned long line_time_us;
3000 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07003001
Jesse Barnes0e442c62009-10-19 10:09:33 +09003002 /* Create copies of the base settings for each pipe */
3003 planea_params = planeb_params = g4x_wm_info;
3004
3005 /* Grab a couple of global values before we overwrite them */
3006 total_size = planea_params.fifo_size;
3007 cacheline_size = planea_params.cacheline_size;
3008
3009 /*
3010 * Note: we need to make sure we don't overflow for various clock &
3011 * latency values.
3012 * clocks go from a few thousand to several hundred thousand.
3013 * latency is usually a few thousand
3014 */
3015 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
3016 1000;
3017 entries_required /= G4X_FIFO_LINE_SIZE;
3018 planea_wm = entries_required + planea_params.guard_size;
3019
3020 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
3021 1000;
3022 entries_required /= G4X_FIFO_LINE_SIZE;
3023 planeb_wm = entries_required + planeb_params.guard_size;
3024
3025 cursora_wm = cursorb_wm = 16;
3026 cursor_sr = 32;
3027
3028 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
3029
3030 /* Calc sr entries for one plane configs */
3031 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3032 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003033 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003034
3035 sr_clock = planea_clock ? planea_clock : planeb_clock;
3036 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
3037
3038 /* Use ns/us then divide to preserve precision */
3039 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
3040 pixel_size * sr_hdisplay) / 1000;
3041 sr_entries = roundup(sr_entries / cacheline_size, 1);
3042 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
3043 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303044 } else {
3045 /* Turn off self refresh if both pipes are enabled */
3046 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3047 & ~FW_BLC_SELF_EN);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003048 }
3049
3050 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
3051 planea_wm, planeb_wm, sr_entries);
3052
3053 planea_wm &= 0x3f;
3054 planeb_wm &= 0x3f;
3055
3056 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
3057 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
3058 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
3059 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
3060 (cursora_wm << DSPFW_CURSORA_SHIFT));
3061 /* HPLL off in SR has some issues on G4x... disable it */
3062 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
3063 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07003064}
3065
Jesse Barnes1dc75462009-10-19 10:08:17 +09003066static void i965_update_wm(struct drm_device *dev, int planea_clock,
3067 int planeb_clock, int sr_hdisplay, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003068{
3069 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003070 unsigned long line_time_us;
3071 int sr_clock, sr_entries, srwm = 1;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003072
Jesse Barnes1dc75462009-10-19 10:08:17 +09003073 /* Calc sr entries for one plane configs */
3074 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3075 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003076 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003077
3078 sr_clock = planea_clock ? planea_clock : planeb_clock;
3079 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
3080
3081 /* Use ns/us then divide to preserve precision */
3082 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
3083 pixel_size * sr_hdisplay) / 1000;
3084 sr_entries = roundup(sr_entries / I915_FIFO_LINE_SIZE, 1);
3085 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
3086 srwm = I945_FIFO_SIZE - sr_entries;
3087 if (srwm < 0)
3088 srwm = 1;
3089 srwm &= 0x3f;
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003090 if (IS_I965GM(dev))
3091 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303092 } else {
3093 /* Turn off self refresh if both pipes are enabled */
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003094 if (IS_I965GM(dev))
3095 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3096 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003097 }
3098
3099 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3100 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003101
3102 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09003103 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
3104 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003105 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
3106}
3107
3108static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
3109 int planeb_clock, int sr_hdisplay, int pixel_size)
3110{
3111 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003112 uint32_t fwater_lo;
3113 uint32_t fwater_hi;
3114 int total_size, cacheline_size, cwm, srwm = 1;
3115 int planea_wm, planeb_wm;
3116 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003117 unsigned long line_time_us;
3118 int sr_clock, sr_entries = 0;
3119
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003120 /* Create copies of the base settings for each pipe */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003121 if (IS_I965GM(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003122 planea_params = planeb_params = i945_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003123 else if (IS_I9XX(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003124 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003125 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003126 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003127
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003128 /* Grab a couple of global values before we overwrite them */
3129 total_size = planea_params.fifo_size;
3130 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003131
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003132 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07003133 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3134 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003135
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003136 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
3137 pixel_size, latency_ns);
3138 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
3139 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08003140 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003141
3142 /*
3143 * Overlay gets an aggressive default since video jitter is bad.
3144 */
3145 cwm = 2;
3146
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003147 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07003148 if (HAS_FW_BLC(dev) && sr_hdisplay &&
3149 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003150 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003151 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003152
Shaohua Li7662c8b2009-06-26 11:23:55 +08003153 sr_clock = planea_clock ? planea_clock : planeb_clock;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003154 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
3155
3156 /* Use ns/us then divide to preserve precision */
3157 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
3158 pixel_size * sr_hdisplay) / 1000;
3159 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui28c97732009-10-09 11:39:41 +08003160 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003161 srwm = total_size - sr_entries;
3162 if (srwm < 0)
3163 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08003164
3165 if (IS_I945G(dev) || IS_I945GM(dev))
3166 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3167 else if (IS_I915GM(dev)) {
3168 /* 915M has a smaller SRWM field */
3169 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
3170 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3171 }
David John33c5fd12010-01-27 15:19:08 +05303172 } else {
3173 /* Turn off self refresh if both pipes are enabled */
Li Pengee980b82010-01-27 19:01:11 +08003174 if (IS_I945G(dev) || IS_I945GM(dev)) {
3175 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3176 & ~FW_BLC_SELF_EN);
3177 } else if (IS_I915GM(dev)) {
3178 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3179 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08003180 }
3181
Zhao Yakui28c97732009-10-09 11:39:41 +08003182 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003183 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003184
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003185 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3186 fwater_hi = (cwm & 0x1f);
3187
3188 /* Set request length to 8 cachelines per fetch */
3189 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3190 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003191
3192 I915_WRITE(FW_BLC, fwater_lo);
3193 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003194}
3195
Jesse Barnese70236a2009-09-21 10:42:27 -07003196static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
3197 int unused2, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003198{
3199 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07003200 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003201 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003202
Jesse Barnese70236a2009-09-21 10:42:27 -07003203 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003204
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003205 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
3206 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07003207 fwater_lo |= (3<<8) | planea_wm;
3208
Zhao Yakui28c97732009-10-09 11:39:41 +08003209 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003210
3211 I915_WRITE(FW_BLC, fwater_lo);
3212}
3213
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003214#define ILK_LP0_PLANE_LATENCY 700
3215
3216static void ironlake_update_wm(struct drm_device *dev, int planea_clock,
3217 int planeb_clock, int sr_hdisplay, int pixel_size)
3218{
3219 struct drm_i915_private *dev_priv = dev->dev_private;
3220 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
3221 int sr_wm, cursor_wm;
3222 unsigned long line_time_us;
3223 int sr_clock, entries_required;
3224 u32 reg_value;
3225
3226 /* Calculate and update the watermark for plane A */
3227 if (planea_clock) {
3228 entries_required = ((planea_clock / 1000) * pixel_size *
3229 ILK_LP0_PLANE_LATENCY) / 1000;
3230 entries_required = DIV_ROUND_UP(entries_required,
3231 ironlake_display_wm_info.cacheline_size);
3232 planea_wm = entries_required +
3233 ironlake_display_wm_info.guard_size;
3234
3235 if (planea_wm > (int)ironlake_display_wm_info.max_wm)
3236 planea_wm = ironlake_display_wm_info.max_wm;
3237
3238 cursora_wm = 16;
3239 reg_value = I915_READ(WM0_PIPEA_ILK);
3240 reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
3241 reg_value |= (planea_wm << WM0_PIPE_PLANE_SHIFT) |
3242 (cursora_wm & WM0_PIPE_CURSOR_MASK);
3243 I915_WRITE(WM0_PIPEA_ILK, reg_value);
3244 DRM_DEBUG_KMS("FIFO watermarks For pipe A - plane %d, "
3245 "cursor: %d\n", planea_wm, cursora_wm);
3246 }
3247 /* Calculate and update the watermark for plane B */
3248 if (planeb_clock) {
3249 entries_required = ((planeb_clock / 1000) * pixel_size *
3250 ILK_LP0_PLANE_LATENCY) / 1000;
3251 entries_required = DIV_ROUND_UP(entries_required,
3252 ironlake_display_wm_info.cacheline_size);
3253 planeb_wm = entries_required +
3254 ironlake_display_wm_info.guard_size;
3255
3256 if (planeb_wm > (int)ironlake_display_wm_info.max_wm)
3257 planeb_wm = ironlake_display_wm_info.max_wm;
3258
3259 cursorb_wm = 16;
3260 reg_value = I915_READ(WM0_PIPEB_ILK);
3261 reg_value &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
3262 reg_value |= (planeb_wm << WM0_PIPE_PLANE_SHIFT) |
3263 (cursorb_wm & WM0_PIPE_CURSOR_MASK);
3264 I915_WRITE(WM0_PIPEB_ILK, reg_value);
3265 DRM_DEBUG_KMS("FIFO watermarks For pipe B - plane %d, "
3266 "cursor: %d\n", planeb_wm, cursorb_wm);
3267 }
3268
3269 /*
3270 * Calculate and update the self-refresh watermark only when one
3271 * display plane is used.
3272 */
3273 if (!planea_clock || !planeb_clock) {
3274 int line_count;
3275 /* Read the self-refresh latency. The unit is 0.5us */
3276 int ilk_sr_latency = I915_READ(MLTR_ILK) & ILK_SRLT_MASK;
3277
3278 sr_clock = planea_clock ? planea_clock : planeb_clock;
3279 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
3280
3281 /* Use ns/us then divide to preserve precision */
3282 line_count = ((ilk_sr_latency * 500) / line_time_us + 1000)
3283 / 1000;
3284
3285 /* calculate the self-refresh watermark for display plane */
3286 entries_required = line_count * sr_hdisplay * pixel_size;
3287 entries_required = DIV_ROUND_UP(entries_required,
3288 ironlake_display_srwm_info.cacheline_size);
3289 sr_wm = entries_required +
3290 ironlake_display_srwm_info.guard_size;
3291
3292 /* calculate the self-refresh watermark for display cursor */
3293 entries_required = line_count * pixel_size * 64;
3294 entries_required = DIV_ROUND_UP(entries_required,
3295 ironlake_cursor_srwm_info.cacheline_size);
3296 cursor_wm = entries_required +
3297 ironlake_cursor_srwm_info.guard_size;
3298
3299 /* configure watermark and enable self-refresh */
3300 reg_value = I915_READ(WM1_LP_ILK);
3301 reg_value &= ~(WM1_LP_LATENCY_MASK | WM1_LP_SR_MASK |
3302 WM1_LP_CURSOR_MASK);
3303 reg_value |= WM1_LP_SR_EN |
3304 (ilk_sr_latency << WM1_LP_LATENCY_SHIFT) |
3305 (sr_wm << WM1_LP_SR_SHIFT) | cursor_wm;
3306
3307 I915_WRITE(WM1_LP_ILK, reg_value);
3308 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3309 "cursor %d\n", sr_wm, cursor_wm);
3310
3311 } else {
3312 /* Turn off self refresh if both pipes are enabled */
3313 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
3314 }
3315}
Shaohua Li7662c8b2009-06-26 11:23:55 +08003316/**
3317 * intel_update_watermarks - update FIFO watermark values based on current modes
3318 *
3319 * Calculate watermark values for the various WM regs based on current mode
3320 * and plane configuration.
3321 *
3322 * There are several cases to deal with here:
3323 * - normal (i.e. non-self-refresh)
3324 * - self-refresh (SR) mode
3325 * - lines are large relative to FIFO size (buffer can hold up to 2)
3326 * - lines are small relative to FIFO size (buffer can hold more than 2
3327 * lines), so need to account for TLB latency
3328 *
3329 * The normal calculation is:
3330 * watermark = dotclock * bytes per pixel * latency
3331 * where latency is platform & configuration dependent (we assume pessimal
3332 * values here).
3333 *
3334 * The SR calculation is:
3335 * watermark = (trunc(latency/line time)+1) * surface width *
3336 * bytes per pixel
3337 * where
3338 * line time = htotal / dotclock
3339 * and latency is assumed to be high, as above.
3340 *
3341 * The final value programmed to the register should always be rounded up,
3342 * and include an extra 2 entries to account for clock crossings.
3343 *
3344 * We don't use the sprite, so we can ignore that. And on Crestline we have
3345 * to set the non-SR watermarks to 8.
3346 */
3347static void intel_update_watermarks(struct drm_device *dev)
3348{
Jesse Barnese70236a2009-09-21 10:42:27 -07003349 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003350 struct drm_crtc *crtc;
3351 struct intel_crtc *intel_crtc;
3352 int sr_hdisplay = 0;
3353 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3354 int enabled = 0, pixel_size = 0;
3355
Zhenyu Wangc03342f2009-09-29 11:01:23 +08003356 if (!dev_priv->display.update_wm)
3357 return;
3358
Shaohua Li7662c8b2009-06-26 11:23:55 +08003359 /* Get the clock config from both planes */
3360 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3361 intel_crtc = to_intel_crtc(crtc);
3362 if (crtc->enabled) {
3363 enabled++;
3364 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003365 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003366 intel_crtc->pipe, crtc->mode.clock);
3367 planea_clock = crtc->mode.clock;
3368 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08003369 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08003370 intel_crtc->pipe, crtc->mode.clock);
3371 planeb_clock = crtc->mode.clock;
3372 }
3373 sr_hdisplay = crtc->mode.hdisplay;
3374 sr_clock = crtc->mode.clock;
3375 if (crtc->fb)
3376 pixel_size = crtc->fb->bits_per_pixel / 8;
3377 else
3378 pixel_size = 4; /* by default */
3379 }
3380 }
3381
3382 if (enabled <= 0)
3383 return;
3384
Jesse Barnese70236a2009-09-21 10:42:27 -07003385 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
3386 sr_hdisplay, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003387}
3388
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003389static int intel_crtc_mode_set(struct drm_crtc *crtc,
3390 struct drm_display_mode *mode,
3391 struct drm_display_mode *adjusted_mode,
3392 int x, int y,
3393 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003394{
3395 struct drm_device *dev = crtc->dev;
3396 struct drm_i915_private *dev_priv = dev->dev_private;
3397 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3398 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003399 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003400 int fp_reg = (pipe == 0) ? FPA0 : FPB0;
3401 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
3402 int dpll_md_reg = (intel_crtc->pipe == 0) ? DPLL_A_MD : DPLL_B_MD;
Jesse Barnes80824002009-09-10 15:28:06 -07003403 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Jesse Barnes79e53942008-11-07 14:24:08 -08003404 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
3405 int htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
3406 int hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
3407 int hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
3408 int vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
3409 int vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
3410 int vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
Jesse Barnes80824002009-09-10 15:28:06 -07003411 int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE;
3412 int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS;
Jesse Barnes79e53942008-11-07 14:24:08 -08003413 int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC;
Eric Anholtc751ce42010-03-25 11:48:48 -07003414 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003415 intel_clock_t clock, reduced_clock;
3416 u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf;
3417 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003418 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003419 bool is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003420 struct drm_mode_config *mode_config = &dev->mode_config;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003421 struct drm_encoder *encoder;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003422 struct intel_encoder *intel_encoder = NULL;
Ma Lingd4906092009-03-18 20:13:27 +08003423 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003424 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003425 struct fdi_m_n m_n = {0};
3426 int data_m1_reg = (pipe == 0) ? PIPEA_DATA_M1 : PIPEB_DATA_M1;
3427 int data_n1_reg = (pipe == 0) ? PIPEA_DATA_N1 : PIPEB_DATA_N1;
3428 int link_m1_reg = (pipe == 0) ? PIPEA_LINK_M1 : PIPEB_LINK_M1;
3429 int link_n1_reg = (pipe == 0) ? PIPEA_LINK_N1 : PIPEB_LINK_N1;
3430 int pch_fp_reg = (pipe == 0) ? PCH_FPA0 : PCH_FPB0;
3431 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
3432 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003433 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
3434 int trans_dpll_sel = (pipe == 0) ? 0 : 1;
Zhenyu Wang541998a2009-06-05 15:38:44 +08003435 int lvds_reg = LVDS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003436 u32 temp;
3437 int sdvo_pixel_multiply;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003438 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08003439
3440 drm_vblank_pre_modeset(dev, pipe);
3441
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003442 list_for_each_entry(encoder, &mode_config->encoder_list, head) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003443
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003444 if (!encoder || encoder->crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003445 continue;
3446
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08003447 intel_encoder = enc_to_intel_encoder(encoder);
3448
Eric Anholt21d40d32010-03-25 11:11:14 -07003449 switch (intel_encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003450 case INTEL_OUTPUT_LVDS:
3451 is_lvds = true;
3452 break;
3453 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003454 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003455 is_sdvo = true;
Eric Anholt21d40d32010-03-25 11:11:14 -07003456 if (intel_encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003457 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003458 break;
3459 case INTEL_OUTPUT_DVO:
3460 is_dvo = true;
3461 break;
3462 case INTEL_OUTPUT_TVOUT:
3463 is_tv = true;
3464 break;
3465 case INTEL_OUTPUT_ANALOG:
3466 is_crt = true;
3467 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003468 case INTEL_OUTPUT_DISPLAYPORT:
3469 is_dp = true;
3470 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003471 case INTEL_OUTPUT_EDP:
3472 is_edp = true;
3473 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003474 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003475
Eric Anholtc751ce42010-03-25 11:48:48 -07003476 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003477 }
3478
Eric Anholtc751ce42010-03-25 11:48:48 -07003479 if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003480 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08003481 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3482 refclk / 1000);
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003483 } else if (IS_I9XX(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003484 refclk = 96000;
Eric Anholtbad720f2009-10-22 16:11:14 -07003485 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003486 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08003487 } else {
3488 refclk = 48000;
3489 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003490
Jesse Barnes79e53942008-11-07 14:24:08 -08003491
Ma Lingd4906092009-03-18 20:13:27 +08003492 /*
3493 * Returns a set of divisors for the desired target clock with the given
3494 * refclk, or FALSE. The returned values represent the clock equation:
3495 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3496 */
3497 limit = intel_limit(crtc);
3498 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003499 if (!ok) {
3500 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01003501 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003502 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003503 }
3504
Zhao Yakuiddc90032010-01-06 22:05:56 +08003505 if (is_lvds && dev_priv->lvds_downclock_avail) {
3506 has_reduced_clock = limit->find_pll(limit, crtc,
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003507 dev_priv->lvds_downclock,
Jesse Barnes652c3932009-08-17 13:31:43 -07003508 refclk,
3509 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003510 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
3511 /*
3512 * If the different P is found, it means that we can't
3513 * switch the display clock by using the FP0/FP1.
3514 * In such case we will disable the LVDS downclock
3515 * feature.
3516 */
3517 DRM_DEBUG_KMS("Different P is found for "
3518 "LVDS clock/downclock\n");
3519 has_reduced_clock = 0;
3520 }
Jesse Barnes652c3932009-08-17 13:31:43 -07003521 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003522 /* SDVO TV has fixed PLL values depend on its clock range,
3523 this mirrors vbios setting. */
3524 if (is_sdvo && is_tv) {
3525 if (adjusted_mode->clock >= 100000
3526 && adjusted_mode->clock < 140500) {
3527 clock.p1 = 2;
3528 clock.p2 = 10;
3529 clock.n = 3;
3530 clock.m1 = 16;
3531 clock.m2 = 8;
3532 } else if (adjusted_mode->clock >= 140500
3533 && adjusted_mode->clock <= 200000) {
3534 clock.p1 = 1;
3535 clock.p2 = 10;
3536 clock.n = 6;
3537 clock.m1 = 12;
3538 clock.m2 = 8;
3539 }
3540 }
3541
Zhenyu Wang2c072452009-06-05 15:38:42 +08003542 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07003543 if (HAS_PCH_SPLIT(dev)) {
Adam Jackson77ffb592010-04-12 11:38:44 -04003544 int lane = 0, link_bw, bpp;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003545 /* eDP doesn't require FDI link, so just set DP M/N
3546 according to current link config */
3547 if (is_edp) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003548 target_clock = mode->clock;
Zhenyu Wang55f78c42010-03-29 16:13:57 +08003549 intel_edp_link_config(intel_encoder,
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003550 &lane, &link_bw);
3551 } else {
3552 /* DP over FDI requires target mode clock
3553 instead of link clock */
3554 if (is_dp)
3555 target_clock = mode->clock;
3556 else
3557 target_clock = adjusted_mode->clock;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003558 link_bw = 270000;
3559 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00003560
3561 /* determine panel color depth */
3562 temp = I915_READ(pipeconf_reg);
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003563 temp &= ~PIPE_BPC_MASK;
3564 if (is_lvds) {
3565 int lvds_reg = I915_READ(PCH_LVDS);
3566 /* the BPC will be 6 if it is 18-bit LVDS panel */
3567 if ((lvds_reg & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
3568 temp |= PIPE_8BPC;
3569 else
3570 temp |= PIPE_6BPC;
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08003571 } else if (is_edp) {
3572 switch (dev_priv->edp_bpp/3) {
3573 case 8:
3574 temp |= PIPE_8BPC;
3575 break;
3576 case 10:
3577 temp |= PIPE_10BPC;
3578 break;
3579 case 6:
3580 temp |= PIPE_6BPC;
3581 break;
3582 case 12:
3583 temp |= PIPE_12BPC;
3584 break;
3585 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003586 } else
3587 temp |= PIPE_8BPC;
3588 I915_WRITE(pipeconf_reg, temp);
3589 I915_READ(pipeconf_reg);
Zhenyu Wang58a27472009-09-25 08:01:28 +00003590
3591 switch (temp & PIPE_BPC_MASK) {
3592 case PIPE_8BPC:
3593 bpp = 24;
3594 break;
3595 case PIPE_10BPC:
3596 bpp = 30;
3597 break;
3598 case PIPE_6BPC:
3599 bpp = 18;
3600 break;
3601 case PIPE_12BPC:
3602 bpp = 36;
3603 break;
3604 default:
3605 DRM_ERROR("unknown pipe bpc value\n");
3606 bpp = 24;
3607 }
3608
Adam Jackson77ffb592010-04-12 11:38:44 -04003609 if (!lane) {
3610 /*
3611 * Account for spread spectrum to avoid
3612 * oversubscribing the link. Max center spread
3613 * is 2.5%; use 5% for safety's sake.
3614 */
3615 u32 bps = target_clock * bpp * 21 / 20;
3616 lane = bps / (link_bw * 8) + 1;
3617 }
3618
3619 intel_crtc->fdi_lanes = lane;
3620
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003621 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003622 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003623
Zhenyu Wangc038e512009-10-19 15:43:48 +08003624 /* Ironlake: try to setup display ref clock before DPLL
3625 * enabling. This is only under driver's control after
3626 * PCH B stepping, previous chipset stepping should be
3627 * ignoring this setting.
3628 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003629 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003630 temp = I915_READ(PCH_DREF_CONTROL);
3631 /* Always enable nonspread source */
3632 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
3633 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
3634 I915_WRITE(PCH_DREF_CONTROL, temp);
3635 POSTING_READ(PCH_DREF_CONTROL);
3636
3637 temp &= ~DREF_SSC_SOURCE_MASK;
3638 temp |= DREF_SSC_SOURCE_ENABLE;
3639 I915_WRITE(PCH_DREF_CONTROL, temp);
3640 POSTING_READ(PCH_DREF_CONTROL);
3641
3642 udelay(200);
3643
3644 if (is_edp) {
3645 if (dev_priv->lvds_use_ssc) {
3646 temp |= DREF_SSC1_ENABLE;
3647 I915_WRITE(PCH_DREF_CONTROL, temp);
3648 POSTING_READ(PCH_DREF_CONTROL);
3649
3650 udelay(200);
3651
3652 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3653 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
3654 I915_WRITE(PCH_DREF_CONTROL, temp);
3655 POSTING_READ(PCH_DREF_CONTROL);
3656 } else {
3657 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
3658 I915_WRITE(PCH_DREF_CONTROL, temp);
3659 POSTING_READ(PCH_DREF_CONTROL);
3660 }
3661 }
3662 }
3663
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003664 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08003665 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003666 if (has_reduced_clock)
3667 fp2 = (1 << reduced_clock.n) << 16 |
3668 reduced_clock.m1 << 8 | reduced_clock.m2;
3669 } else {
Shaohua Li21778322009-02-23 15:19:16 +08003670 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003671 if (has_reduced_clock)
3672 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
3673 reduced_clock.m2;
3674 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003675
Eric Anholtbad720f2009-10-22 16:11:14 -07003676 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003677 dpll = DPLL_VGA_MODE_DIS;
3678
Jesse Barnes79e53942008-11-07 14:24:08 -08003679 if (IS_I9XX(dev)) {
3680 if (is_lvds)
3681 dpll |= DPLLB_MODE_LVDS;
3682 else
3683 dpll |= DPLLB_MODE_DAC_SERIAL;
3684 if (is_sdvo) {
3685 dpll |= DPLL_DVO_HIGH_SPEED;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003686 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
Sean Young942642a2009-08-06 17:35:50 +08003687 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003688 dpll |= (sdvo_pixel_multiply - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
Eric Anholtbad720f2009-10-22 16:11:14 -07003689 else if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003690 dpll |= (sdvo_pixel_multiply - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003691 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003692 if (is_dp)
3693 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003694
3695 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003696 if (IS_PINEVIEW(dev))
3697 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003698 else {
Shaohua Li21778322009-02-23 15:19:16 +08003699 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003700 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003701 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003702 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07003703 if (IS_G4X(dev) && has_reduced_clock)
3704 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003705 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003706 switch (clock.p2) {
3707 case 5:
3708 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3709 break;
3710 case 7:
3711 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3712 break;
3713 case 10:
3714 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3715 break;
3716 case 14:
3717 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3718 break;
3719 }
Eric Anholtbad720f2009-10-22 16:11:14 -07003720 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003721 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3722 } else {
3723 if (is_lvds) {
3724 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3725 } else {
3726 if (clock.p1 == 2)
3727 dpll |= PLL_P1_DIVIDE_BY_TWO;
3728 else
3729 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3730 if (clock.p2 == 4)
3731 dpll |= PLL_P2_DIVIDE_BY_4;
3732 }
3733 }
3734
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003735 if (is_sdvo && is_tv)
3736 dpll |= PLL_REF_INPUT_TVCLKINBC;
3737 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08003738 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003739 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08003740 dpll |= 3;
Eric Anholtc751ce42010-03-25 11:48:48 -07003741 else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003742 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08003743 else
3744 dpll |= PLL_REF_INPUT_DREFCLK;
3745
3746 /* setup pipeconf */
3747 pipeconf = I915_READ(pipeconf_reg);
3748
3749 /* Set up the display plane register */
3750 dspcntr = DISPPLANE_GAMMA_ENABLE;
3751
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003752 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08003753 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07003754 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003755 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07003756 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003757 else
3758 dspcntr |= DISPPLANE_SEL_PIPE_B;
3759 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003760
3761 if (pipe == 0 && !IS_I965G(dev)) {
3762 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3763 * core speed.
3764 *
3765 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3766 * pipe == 0 check?
3767 */
Jesse Barnese70236a2009-09-21 10:42:27 -07003768 if (mode->clock >
3769 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Jesse Barnes79e53942008-11-07 14:24:08 -08003770 pipeconf |= PIPEACONF_DOUBLE_WIDE;
3771 else
3772 pipeconf &= ~PIPEACONF_DOUBLE_WIDE;
3773 }
3774
Linus Torvalds8d86dc62010-06-08 20:16:28 -07003775 dspcntr |= DISPLAY_PLANE_ENABLE;
3776 pipeconf |= PIPEACONF_ENABLE;
3777 dpll |= DPLL_VCO_ENABLE;
3778
3779
Jesse Barnes79e53942008-11-07 14:24:08 -08003780 /* Disable the panel fitter if it was on our pipe */
Eric Anholtbad720f2009-10-22 16:11:14 -07003781 if (!HAS_PCH_SPLIT(dev) && intel_panel_fitter_pipe(dev) == pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08003782 I915_WRITE(PFIT_CONTROL, 0);
3783
Zhao Yakui28c97732009-10-09 11:39:41 +08003784 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08003785 drm_mode_debug_printmodeline(mode);
3786
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003787 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07003788 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003789 fp_reg = pch_fp_reg;
3790 dpll_reg = pch_dpll_reg;
3791 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003792
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003793 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003794 ironlake_disable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003795 } else if ((dpll & DPLL_VCO_ENABLE)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003796 I915_WRITE(fp_reg, fp);
3797 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
3798 I915_READ(dpll_reg);
3799 udelay(150);
3800 }
3801
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003802 /* enable transcoder DPLL */
3803 if (HAS_PCH_CPT(dev)) {
3804 temp = I915_READ(PCH_DPLL_SEL);
3805 if (trans_dpll_sel == 0)
3806 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
3807 else
3808 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
3809 I915_WRITE(PCH_DPLL_SEL, temp);
3810 I915_READ(PCH_DPLL_SEL);
3811 udelay(150);
3812 }
3813
Jesse Barnes79e53942008-11-07 14:24:08 -08003814 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3815 * This is an exception to the general rule that mode_set doesn't turn
3816 * things on.
3817 */
3818 if (is_lvds) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08003819 u32 lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08003820
Eric Anholtbad720f2009-10-22 16:11:14 -07003821 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08003822 lvds_reg = PCH_LVDS;
3823
3824 lvds = I915_READ(lvds_reg);
Adam Jackson0f3ee802010-03-31 11:41:51 -04003825 lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003826 if (pipe == 1) {
3827 if (HAS_PCH_CPT(dev))
3828 lvds |= PORT_TRANS_B_SEL_CPT;
3829 else
3830 lvds |= LVDS_PIPEB_SELECT;
3831 } else {
3832 if (HAS_PCH_CPT(dev))
3833 lvds &= ~PORT_TRANS_SEL_MASK;
3834 else
3835 lvds &= ~LVDS_PIPEB_SELECT;
3836 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08003837 /* set the corresponsding LVDS_BORDER bit */
3838 lvds |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08003839 /* Set the B0-B3 data pairs corresponding to whether we're going to
3840 * set the DPLLs for dual-channel mode or not.
3841 */
3842 if (clock.p2 == 7)
3843 lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3844 else
3845 lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3846
3847 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3848 * appropriately here, but we need to look more thoroughly into how
3849 * panels behave in the two modes.
3850 */
Zhao Yakui898822c2010-01-04 16:29:30 +08003851 /* set the dithering flag */
3852 if (IS_I965G(dev)) {
3853 if (dev_priv->lvds_dither) {
Adam Jackson0a31a442010-04-19 15:57:25 -04003854 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakui898822c2010-01-04 16:29:30 +08003855 pipeconf |= PIPE_ENABLE_DITHER;
Chris Wilsona392a102010-07-25 23:09:13 +01003856 pipeconf &= ~PIPE_DITHER_TYPE_MASK;
Adam Jackson0a31a442010-04-19 15:57:25 -04003857 pipeconf |= PIPE_DITHER_TYPE_ST01;
3858 } else
Zhao Yakui898822c2010-01-04 16:29:30 +08003859 lvds |= LVDS_ENABLE_DITHER;
3860 } else {
Adam Jackson0a31a442010-04-19 15:57:25 -04003861 if (HAS_PCH_SPLIT(dev)) {
Zhao Yakui898822c2010-01-04 16:29:30 +08003862 pipeconf &= ~PIPE_ENABLE_DITHER;
Adam Jackson0a31a442010-04-19 15:57:25 -04003863 pipeconf &= ~PIPE_DITHER_TYPE_MASK;
3864 } else
Zhao Yakui898822c2010-01-04 16:29:30 +08003865 lvds &= ~LVDS_ENABLE_DITHER;
3866 }
3867 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08003868 I915_WRITE(lvds_reg, lvds);
3869 I915_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003870 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003871 if (is_dp)
3872 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003873 else if (HAS_PCH_SPLIT(dev)) {
3874 /* For non-DP output, clear any trans DP clock recovery setting.*/
3875 if (pipe == 0) {
3876 I915_WRITE(TRANSA_DATA_M1, 0);
3877 I915_WRITE(TRANSA_DATA_N1, 0);
3878 I915_WRITE(TRANSA_DP_LINK_M1, 0);
3879 I915_WRITE(TRANSA_DP_LINK_N1, 0);
3880 } else {
3881 I915_WRITE(TRANSB_DATA_M1, 0);
3882 I915_WRITE(TRANSB_DATA_N1, 0);
3883 I915_WRITE(TRANSB_DP_LINK_M1, 0);
3884 I915_WRITE(TRANSB_DP_LINK_N1, 0);
3885 }
3886 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003887
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003888 if (!is_edp) {
3889 I915_WRITE(fp_reg, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003890 I915_WRITE(dpll_reg, dpll);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003891 I915_READ(dpll_reg);
3892 /* Wait for the clocks to stabilize. */
3893 udelay(150);
3894
Eric Anholtbad720f2009-10-22 16:11:14 -07003895 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) {
Zhao Yakuibb66c512009-09-10 15:45:49 +08003896 if (is_sdvo) {
3897 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
3898 I915_WRITE(dpll_md_reg, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) |
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003899 ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT));
Zhao Yakuibb66c512009-09-10 15:45:49 +08003900 } else
3901 I915_WRITE(dpll_md_reg, 0);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003902 } else {
3903 /* write it again -- the BIOS does, after all */
3904 I915_WRITE(dpll_reg, dpll);
3905 }
3906 I915_READ(dpll_reg);
3907 /* Wait for the clocks to stabilize. */
3908 udelay(150);
Jesse Barnes79e53942008-11-07 14:24:08 -08003909 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003910
Jesse Barnes652c3932009-08-17 13:31:43 -07003911 if (is_lvds && has_reduced_clock && i915_powersave) {
3912 I915_WRITE(fp_reg + 4, fp2);
3913 intel_crtc->lowfreq_avail = true;
3914 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003915 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003916 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
3917 }
3918 } else {
3919 I915_WRITE(fp_reg + 4, fp);
3920 intel_crtc->lowfreq_avail = false;
3921 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003922 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003923 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3924 }
3925 }
3926
Krzysztof Halasa734b4152010-05-25 18:41:46 +02003927 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
3928 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
3929 /* the chip adds 2 halflines automatically */
3930 adjusted_mode->crtc_vdisplay -= 1;
3931 adjusted_mode->crtc_vtotal -= 1;
3932 adjusted_mode->crtc_vblank_start -= 1;
3933 adjusted_mode->crtc_vblank_end -= 1;
3934 adjusted_mode->crtc_vsync_end -= 1;
3935 adjusted_mode->crtc_vsync_start -= 1;
3936 } else
3937 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
3938
Jesse Barnes79e53942008-11-07 14:24:08 -08003939 I915_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) |
3940 ((adjusted_mode->crtc_htotal - 1) << 16));
3941 I915_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) |
3942 ((adjusted_mode->crtc_hblank_end - 1) << 16));
3943 I915_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) |
3944 ((adjusted_mode->crtc_hsync_end - 1) << 16));
3945 I915_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) |
3946 ((adjusted_mode->crtc_vtotal - 1) << 16));
3947 I915_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) |
3948 ((adjusted_mode->crtc_vblank_end - 1) << 16));
3949 I915_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) |
3950 ((adjusted_mode->crtc_vsync_end - 1) << 16));
3951 /* pipesrc and dspsize control the size that is scaled from, which should
3952 * always be the user's requested size.
3953 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003954 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003955 I915_WRITE(dspsize_reg, ((mode->vdisplay - 1) << 16) |
3956 (mode->hdisplay - 1));
3957 I915_WRITE(dsppos_reg, 0);
3958 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003959 I915_WRITE(pipesrc_reg, ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08003960
Eric Anholtbad720f2009-10-22 16:11:14 -07003961 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003962 I915_WRITE(data_m1_reg, TU_SIZE(m_n.tu) | m_n.gmch_m);
3963 I915_WRITE(data_n1_reg, TU_SIZE(m_n.tu) | m_n.gmch_n);
3964 I915_WRITE(link_m1_reg, m_n.link_m);
3965 I915_WRITE(link_n1_reg, m_n.link_n);
3966
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003967 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003968 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003969 } else {
3970 /* enable FDI RX PLL too */
3971 temp = I915_READ(fdi_rx_reg);
3972 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003973 I915_READ(fdi_rx_reg);
3974 udelay(200);
3975
3976 /* enable FDI TX PLL too */
3977 temp = I915_READ(fdi_tx_reg);
3978 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
3979 I915_READ(fdi_tx_reg);
3980
3981 /* enable FDI RX PCDCLK */
3982 temp = I915_READ(fdi_rx_reg);
3983 I915_WRITE(fdi_rx_reg, temp | FDI_SEL_PCDCLK);
3984 I915_READ(fdi_rx_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003985 udelay(200);
3986 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003987 }
3988
Jesse Barnes79e53942008-11-07 14:24:08 -08003989 I915_WRITE(pipeconf_reg, pipeconf);
3990 I915_READ(pipeconf_reg);
3991
3992 intel_wait_for_vblank(dev);
3993
Eric Anholtc2416fc2009-11-05 15:30:35 -08003994 if (IS_IRONLAKE(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08003995 /* enable address swizzle for tiling buffer */
3996 temp = I915_READ(DISP_ARB_CTL);
3997 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
3998 }
3999
Jesse Barnes79e53942008-11-07 14:24:08 -08004000 I915_WRITE(dspcntr_reg, dspcntr);
4001
4002 /* Flush the plane changes */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004003 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004004
Jesse Barnes74dff282009-09-14 15:39:40 -07004005 if ((IS_I965G(dev) || plane == 0))
4006 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnese70236a2009-09-21 10:42:27 -07004007
Shaohua Li7662c8b2009-06-26 11:23:55 +08004008 intel_update_watermarks(dev);
4009
Jesse Barnes79e53942008-11-07 14:24:08 -08004010 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004011
Chris Wilson1f803ee2009-06-06 09:45:59 +01004012 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004013}
4014
4015/** Loads the palette/gamma unit for the CRTC with the prepared values */
4016void intel_crtc_load_lut(struct drm_crtc *crtc)
4017{
4018 struct drm_device *dev = crtc->dev;
4019 struct drm_i915_private *dev_priv = dev->dev_private;
4020 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4021 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
4022 int i;
4023
4024 /* The clocks have to be on to load the palette. */
4025 if (!crtc->enabled)
4026 return;
4027
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004028 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004029 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004030 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
4031 LGC_PALETTE_B;
4032
Jesse Barnes79e53942008-11-07 14:24:08 -08004033 for (i = 0; i < 256; i++) {
4034 I915_WRITE(palreg + 4 * i,
4035 (intel_crtc->lut_r[i] << 16) |
4036 (intel_crtc->lut_g[i] << 8) |
4037 intel_crtc->lut_b[i]);
4038 }
4039}
4040
4041static int intel_crtc_cursor_set(struct drm_crtc *crtc,
4042 struct drm_file *file_priv,
4043 uint32_t handle,
4044 uint32_t width, uint32_t height)
4045{
4046 struct drm_device *dev = crtc->dev;
4047 struct drm_i915_private *dev_priv = dev->dev_private;
4048 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4049 struct drm_gem_object *bo;
4050 struct drm_i915_gem_object *obj_priv;
4051 int pipe = intel_crtc->pipe;
4052 uint32_t control = (pipe == 0) ? CURACNTR : CURBCNTR;
4053 uint32_t base = (pipe == 0) ? CURABASE : CURBBASE;
Jesse Barnes14b603912009-05-20 16:47:08 -04004054 uint32_t temp = I915_READ(control);
Jesse Barnes79e53942008-11-07 14:24:08 -08004055 size_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004056 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004057
Zhao Yakui28c97732009-10-09 11:39:41 +08004058 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08004059
4060 /* if we want to turn off the cursor ignore width and height */
4061 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004062 DRM_DEBUG_KMS("cursor off\n");
Jesse Barnes14b603912009-05-20 16:47:08 -04004063 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
4064 temp &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4065 temp |= CURSOR_MODE_DISABLE;
4066 } else {
4067 temp &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
4068 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004069 addr = 0;
4070 bo = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004071 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004072 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004073 }
4074
4075 /* Currently we only support 64x64 cursors */
4076 if (width != 64 || height != 64) {
4077 DRM_ERROR("we currently only support 64x64 cursors\n");
4078 return -EINVAL;
4079 }
4080
4081 bo = drm_gem_object_lookup(dev, file_priv, handle);
4082 if (!bo)
4083 return -ENOENT;
4084
Daniel Vetter23010e42010-03-08 13:35:02 +01004085 obj_priv = to_intel_bo(bo);
Jesse Barnes79e53942008-11-07 14:24:08 -08004086
4087 if (bo->size < width * height * 4) {
4088 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004089 ret = -ENOMEM;
4090 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004091 }
4092
Dave Airlie71acb5e2008-12-30 20:31:46 +10004093 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004094 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004095 if (!dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004096 ret = i915_gem_object_pin(bo, PAGE_SIZE);
4097 if (ret) {
4098 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004099 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004100 }
Chris Wilsone7b526b2010-06-02 08:30:48 +01004101
4102 ret = i915_gem_object_set_to_gtt_domain(bo, 0);
4103 if (ret) {
4104 DRM_ERROR("failed to move cursor bo into the GTT\n");
4105 goto fail_unpin;
4106 }
4107
Jesse Barnes79e53942008-11-07 14:24:08 -08004108 addr = obj_priv->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004109 } else {
4110 ret = i915_gem_attach_phys_object(dev, bo, (pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1);
4111 if (ret) {
4112 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004113 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004114 }
4115 addr = obj_priv->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004116 }
4117
Jesse Barnes14b603912009-05-20 16:47:08 -04004118 if (!IS_I9XX(dev))
4119 I915_WRITE(CURSIZE, (height << 12) | width);
4120
4121 /* Hooray for CUR*CNTR differences */
4122 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
4123 temp &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4124 temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4125 temp |= (pipe << 28); /* Connect to correct pipe */
4126 } else {
4127 temp &= ~(CURSOR_FORMAT_MASK);
4128 temp |= CURSOR_ENABLE;
4129 temp |= CURSOR_FORMAT_ARGB | CURSOR_GAMMA_ENABLE;
4130 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004131
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004132 finish:
Jesse Barnes79e53942008-11-07 14:24:08 -08004133 I915_WRITE(control, temp);
4134 I915_WRITE(base, addr);
4135
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004136 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004137 if (dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004138 if (intel_crtc->cursor_bo != bo)
4139 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4140 } else
4141 i915_gem_object_unpin(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004142 drm_gem_object_unreference(intel_crtc->cursor_bo);
4143 }
Jesse Barnes80824002009-09-10 15:28:06 -07004144
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004145 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004146
4147 intel_crtc->cursor_addr = addr;
4148 intel_crtc->cursor_bo = bo;
4149
Jesse Barnes79e53942008-11-07 14:24:08 -08004150 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004151fail_unpin:
4152 i915_gem_object_unpin(bo);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004153fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004154 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004155fail:
4156 drm_gem_object_unreference_unlocked(bo);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004157 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004158}
4159
4160static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4161{
4162 struct drm_device *dev = crtc->dev;
4163 struct drm_i915_private *dev_priv = dev->dev_private;
4164 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07004165 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08004166 int pipe = intel_crtc->pipe;
4167 uint32_t temp = 0;
4168 uint32_t adder;
4169
Jesse Barnes652c3932009-08-17 13:31:43 -07004170 if (crtc->fb) {
4171 intel_fb = to_intel_framebuffer(crtc->fb);
4172 intel_mark_busy(dev, intel_fb->obj);
4173 }
4174
Jesse Barnes79e53942008-11-07 14:24:08 -08004175 if (x < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07004176 temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004177 x = -x;
4178 }
4179 if (y < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07004180 temp |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004181 y = -y;
4182 }
4183
Keith Packard2245fda2009-05-30 20:42:29 -07004184 temp |= x << CURSOR_X_SHIFT;
4185 temp |= y << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004186
4187 adder = intel_crtc->cursor_addr;
4188 I915_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp);
4189 I915_WRITE((pipe == 0) ? CURABASE : CURBBASE, adder);
4190
4191 return 0;
4192}
4193
4194/** Sets the color ramps on behalf of RandR */
4195void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4196 u16 blue, int regno)
4197{
4198 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4199
4200 intel_crtc->lut_r[regno] = red >> 8;
4201 intel_crtc->lut_g[regno] = green >> 8;
4202 intel_crtc->lut_b[regno] = blue >> 8;
4203}
4204
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004205void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4206 u16 *blue, int regno)
4207{
4208 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4209
4210 *red = intel_crtc->lut_r[regno] << 8;
4211 *green = intel_crtc->lut_g[regno] << 8;
4212 *blue = intel_crtc->lut_b[regno] << 8;
4213}
4214
Jesse Barnes79e53942008-11-07 14:24:08 -08004215static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
4216 u16 *blue, uint32_t size)
4217{
4218 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4219 int i;
4220
4221 if (size != 256)
4222 return;
4223
4224 for (i = 0; i < 256; i++) {
4225 intel_crtc->lut_r[i] = red[i] >> 8;
4226 intel_crtc->lut_g[i] = green[i] >> 8;
4227 intel_crtc->lut_b[i] = blue[i] >> 8;
4228 }
4229
4230 intel_crtc_load_lut(crtc);
4231}
4232
4233/**
4234 * Get a pipe with a simple mode set on it for doing load-based monitor
4235 * detection.
4236 *
4237 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07004238 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08004239 *
Eric Anholtc751ce42010-03-25 11:48:48 -07004240 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08004241 * configured for it. In the future, it could choose to temporarily disable
4242 * some outputs to free up a pipe for its use.
4243 *
4244 * \return crtc, or NULL if no pipes are available.
4245 */
4246
4247/* VESA 640x480x72Hz mode to set on the pipe */
4248static struct drm_display_mode load_detect_mode = {
4249 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4250 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4251};
4252
Eric Anholt21d40d32010-03-25 11:11:14 -07004253struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004254 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08004255 struct drm_display_mode *mode,
4256 int *dpms_mode)
4257{
4258 struct intel_crtc *intel_crtc;
4259 struct drm_crtc *possible_crtc;
4260 struct drm_crtc *supported_crtc =NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004261 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004262 struct drm_crtc *crtc = NULL;
4263 struct drm_device *dev = encoder->dev;
4264 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4265 struct drm_crtc_helper_funcs *crtc_funcs;
4266 int i = -1;
4267
4268 /*
4269 * Algorithm gets a little messy:
4270 * - if the connector already has an assigned crtc, use it (but make
4271 * sure it's on first)
4272 * - try to find the first unused crtc that can drive this connector,
4273 * and use that if we find one
4274 * - if there are no unused crtcs available, try to use the first
4275 * one we found that supports the connector
4276 */
4277
4278 /* See if we already have a CRTC for this connector */
4279 if (encoder->crtc) {
4280 crtc = encoder->crtc;
4281 /* Make sure the crtc and connector are running */
4282 intel_crtc = to_intel_crtc(crtc);
4283 *dpms_mode = intel_crtc->dpms_mode;
4284 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4285 crtc_funcs = crtc->helper_private;
4286 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4287 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
4288 }
4289 return crtc;
4290 }
4291
4292 /* Find an unused one (if possible) */
4293 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
4294 i++;
4295 if (!(encoder->possible_crtcs & (1 << i)))
4296 continue;
4297 if (!possible_crtc->enabled) {
4298 crtc = possible_crtc;
4299 break;
4300 }
4301 if (!supported_crtc)
4302 supported_crtc = possible_crtc;
4303 }
4304
4305 /*
4306 * If we didn't find an unused CRTC, don't use any.
4307 */
4308 if (!crtc) {
4309 return NULL;
4310 }
4311
4312 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004313 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07004314 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004315
4316 intel_crtc = to_intel_crtc(crtc);
4317 *dpms_mode = intel_crtc->dpms_mode;
4318
4319 if (!crtc->enabled) {
4320 if (!mode)
4321 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05004322 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004323 } else {
4324 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4325 crtc_funcs = crtc->helper_private;
4326 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4327 }
4328
4329 /* Add this connector to the crtc */
4330 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
4331 encoder_funcs->commit(encoder);
4332 }
4333 /* let the connector get through one full cycle before testing */
4334 intel_wait_for_vblank(dev);
4335
4336 return crtc;
4337}
4338
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004339void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
4340 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08004341{
Eric Anholt21d40d32010-03-25 11:11:14 -07004342 struct drm_encoder *encoder = &intel_encoder->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004343 struct drm_device *dev = encoder->dev;
4344 struct drm_crtc *crtc = encoder->crtc;
4345 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4346 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
4347
Eric Anholt21d40d32010-03-25 11:11:14 -07004348 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004349 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004350 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004351 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004352 crtc->enabled = drm_helper_crtc_in_use(crtc);
4353 drm_helper_disable_unused_functions(dev);
4354 }
4355
Eric Anholtc751ce42010-03-25 11:48:48 -07004356 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08004357 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4358 if (encoder->crtc == crtc)
4359 encoder_funcs->dpms(encoder, dpms_mode);
4360 crtc_funcs->dpms(crtc, dpms_mode);
4361 }
4362}
4363
4364/* Returns the clock of the currently programmed mode of the given pipe. */
4365static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4366{
4367 struct drm_i915_private *dev_priv = dev->dev_private;
4368 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4369 int pipe = intel_crtc->pipe;
4370 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4371 u32 fp;
4372 intel_clock_t clock;
4373
4374 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4375 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4376 else
4377 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4378
4379 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004380 if (IS_PINEVIEW(dev)) {
4381 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
4382 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08004383 } else {
4384 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
4385 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
4386 }
4387
Jesse Barnes79e53942008-11-07 14:24:08 -08004388 if (IS_I9XX(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004389 if (IS_PINEVIEW(dev))
4390 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
4391 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08004392 else
4393 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08004394 DPLL_FPA01_P1_POST_DIV_SHIFT);
4395
4396 switch (dpll & DPLL_MODE_MASK) {
4397 case DPLLB_MODE_DAC_SERIAL:
4398 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
4399 5 : 10;
4400 break;
4401 case DPLLB_MODE_LVDS:
4402 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
4403 7 : 14;
4404 break;
4405 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08004406 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08004407 "mode\n", (int)(dpll & DPLL_MODE_MASK));
4408 return 0;
4409 }
4410
4411 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08004412 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004413 } else {
4414 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
4415
4416 if (is_lvds) {
4417 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
4418 DPLL_FPA01_P1_POST_DIV_SHIFT);
4419 clock.p2 = 14;
4420
4421 if ((dpll & PLL_REF_INPUT_MASK) ==
4422 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
4423 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08004424 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004425 } else
Shaohua Li21778322009-02-23 15:19:16 +08004426 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004427 } else {
4428 if (dpll & PLL_P1_DIVIDE_BY_TWO)
4429 clock.p1 = 2;
4430 else {
4431 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
4432 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
4433 }
4434 if (dpll & PLL_P2_DIVIDE_BY_4)
4435 clock.p2 = 4;
4436 else
4437 clock.p2 = 2;
4438
Shaohua Li21778322009-02-23 15:19:16 +08004439 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004440 }
4441 }
4442
4443 /* XXX: It would be nice to validate the clocks, but we can't reuse
4444 * i830PllIsValid() because it relies on the xf86_config connector
4445 * configuration being accurate, which it isn't necessarily.
4446 */
4447
4448 return clock.dot;
4449}
4450
4451/** Returns the currently programmed mode of the given pipe. */
4452struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
4453 struct drm_crtc *crtc)
4454{
4455 struct drm_i915_private *dev_priv = dev->dev_private;
4456 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4457 int pipe = intel_crtc->pipe;
4458 struct drm_display_mode *mode;
4459 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
4460 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
4461 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
4462 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
4463
4464 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
4465 if (!mode)
4466 return NULL;
4467
4468 mode->clock = intel_crtc_clock_get(dev, crtc);
4469 mode->hdisplay = (htot & 0xffff) + 1;
4470 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
4471 mode->hsync_start = (hsync & 0xffff) + 1;
4472 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
4473 mode->vdisplay = (vtot & 0xffff) + 1;
4474 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
4475 mode->vsync_start = (vsync & 0xffff) + 1;
4476 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
4477
4478 drm_mode_set_name(mode);
4479 drm_mode_set_crtcinfo(mode, 0);
4480
4481 return mode;
4482}
4483
Jesse Barnes652c3932009-08-17 13:31:43 -07004484#define GPU_IDLE_TIMEOUT 500 /* ms */
4485
4486/* When this timer fires, we've been idle for awhile */
4487static void intel_gpu_idle_timer(unsigned long arg)
4488{
4489 struct drm_device *dev = (struct drm_device *)arg;
4490 drm_i915_private_t *dev_priv = dev->dev_private;
4491
Zhao Yakui44d98a62009-10-09 11:39:40 +08004492 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004493
4494 dev_priv->busy = false;
4495
Eric Anholt01dfba92009-09-06 15:18:53 -07004496 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004497}
4498
Jesse Barnes652c3932009-08-17 13:31:43 -07004499#define CRTC_IDLE_TIMEOUT 1000 /* ms */
4500
4501static void intel_crtc_idle_timer(unsigned long arg)
4502{
4503 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
4504 struct drm_crtc *crtc = &intel_crtc->base;
4505 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
4506
Zhao Yakui44d98a62009-10-09 11:39:40 +08004507 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004508
4509 intel_crtc->busy = false;
4510
Eric Anholt01dfba92009-09-06 15:18:53 -07004511 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004512}
4513
4514static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule)
4515{
4516 struct drm_device *dev = crtc->dev;
4517 drm_i915_private_t *dev_priv = dev->dev_private;
4518 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4519 int pipe = intel_crtc->pipe;
4520 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4521 int dpll = I915_READ(dpll_reg);
4522
Eric Anholtbad720f2009-10-22 16:11:14 -07004523 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004524 return;
4525
4526 if (!dev_priv->lvds_downclock_avail)
4527 return;
4528
4529 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004530 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004531
4532 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07004533 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
4534 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07004535
4536 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
4537 I915_WRITE(dpll_reg, dpll);
4538 dpll = I915_READ(dpll_reg);
4539 intel_wait_for_vblank(dev);
4540 dpll = I915_READ(dpll_reg);
4541 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08004542 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004543
4544 /* ...and lock them again */
4545 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4546 }
4547
4548 /* Schedule downclock */
4549 if (schedule)
4550 mod_timer(&intel_crtc->idle_timer, jiffies +
4551 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4552}
4553
4554static void intel_decrease_pllclock(struct drm_crtc *crtc)
4555{
4556 struct drm_device *dev = crtc->dev;
4557 drm_i915_private_t *dev_priv = dev->dev_private;
4558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4559 int pipe = intel_crtc->pipe;
4560 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4561 int dpll = I915_READ(dpll_reg);
4562
Eric Anholtbad720f2009-10-22 16:11:14 -07004563 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004564 return;
4565
4566 if (!dev_priv->lvds_downclock_avail)
4567 return;
4568
4569 /*
4570 * Since this is called by a timer, we should never get here in
4571 * the manual case.
4572 */
4573 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004574 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004575
4576 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07004577 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
4578 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07004579
4580 dpll |= DISPLAY_RATE_SELECT_FPA1;
4581 I915_WRITE(dpll_reg, dpll);
4582 dpll = I915_READ(dpll_reg);
4583 intel_wait_for_vblank(dev);
4584 dpll = I915_READ(dpll_reg);
4585 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08004586 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004587
4588 /* ...and lock them again */
4589 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4590 }
4591
4592}
4593
4594/**
4595 * intel_idle_update - adjust clocks for idleness
4596 * @work: work struct
4597 *
4598 * Either the GPU or display (or both) went idle. Check the busy status
4599 * here and adjust the CRTC and GPU clocks as necessary.
4600 */
4601static void intel_idle_update(struct work_struct *work)
4602{
4603 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
4604 idle_work);
4605 struct drm_device *dev = dev_priv->dev;
4606 struct drm_crtc *crtc;
4607 struct intel_crtc *intel_crtc;
Li Peng45ac22c2010-06-12 23:38:35 +08004608 int enabled = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004609
4610 if (!i915_powersave)
4611 return;
4612
4613 mutex_lock(&dev->struct_mutex);
4614
Jesse Barnes7648fa92010-05-20 14:28:11 -07004615 i915_update_gfx_val(dev_priv);
4616
Jesse Barnes652c3932009-08-17 13:31:43 -07004617 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4618 /* Skip inactive CRTCs */
4619 if (!crtc->fb)
4620 continue;
4621
Li Peng45ac22c2010-06-12 23:38:35 +08004622 enabled++;
Jesse Barnes652c3932009-08-17 13:31:43 -07004623 intel_crtc = to_intel_crtc(crtc);
4624 if (!intel_crtc->busy)
4625 intel_decrease_pllclock(crtc);
4626 }
4627
Li Peng45ac22c2010-06-12 23:38:35 +08004628 if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) {
4629 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
4630 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
4631 }
4632
Jesse Barnes652c3932009-08-17 13:31:43 -07004633 mutex_unlock(&dev->struct_mutex);
4634}
4635
4636/**
4637 * intel_mark_busy - mark the GPU and possibly the display busy
4638 * @dev: drm device
4639 * @obj: object we're operating on
4640 *
4641 * Callers can use this function to indicate that the GPU is busy processing
4642 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
4643 * buffer), we'll also mark the display as busy, so we know to increase its
4644 * clock frequency.
4645 */
4646void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj)
4647{
4648 drm_i915_private_t *dev_priv = dev->dev_private;
4649 struct drm_crtc *crtc = NULL;
4650 struct intel_framebuffer *intel_fb;
4651 struct intel_crtc *intel_crtc;
4652
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08004653 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4654 return;
4655
Li Peng060e6452010-02-10 01:54:24 +08004656 if (!dev_priv->busy) {
4657 if (IS_I945G(dev) || IS_I945GM(dev)) {
4658 u32 fw_blc_self;
Li Pengee980b82010-01-27 19:01:11 +08004659
Li Peng060e6452010-02-10 01:54:24 +08004660 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4661 fw_blc_self = I915_READ(FW_BLC_SELF);
4662 fw_blc_self &= ~FW_BLC_SELF_EN;
4663 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4664 }
Chris Wilson28cf7982009-11-30 01:08:56 +00004665 dev_priv->busy = true;
Li Peng060e6452010-02-10 01:54:24 +08004666 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00004667 mod_timer(&dev_priv->idle_timer, jiffies +
4668 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07004669
4670 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4671 if (!crtc->fb)
4672 continue;
4673
4674 intel_crtc = to_intel_crtc(crtc);
4675 intel_fb = to_intel_framebuffer(crtc->fb);
4676 if (intel_fb->obj == obj) {
4677 if (!intel_crtc->busy) {
Li Peng060e6452010-02-10 01:54:24 +08004678 if (IS_I945G(dev) || IS_I945GM(dev)) {
4679 u32 fw_blc_self;
4680
4681 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4682 fw_blc_self = I915_READ(FW_BLC_SELF);
4683 fw_blc_self &= ~FW_BLC_SELF_EN;
4684 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4685 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004686 /* Non-busy -> busy, upclock */
4687 intel_increase_pllclock(crtc, true);
4688 intel_crtc->busy = true;
4689 } else {
4690 /* Busy -> busy, put off timer */
4691 mod_timer(&intel_crtc->idle_timer, jiffies +
4692 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4693 }
4694 }
4695 }
4696}
4697
Jesse Barnes79e53942008-11-07 14:24:08 -08004698static void intel_crtc_destroy(struct drm_crtc *crtc)
4699{
4700 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4701
4702 drm_crtc_cleanup(crtc);
4703 kfree(intel_crtc);
4704}
4705
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004706struct intel_unpin_work {
4707 struct work_struct work;
4708 struct drm_device *dev;
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004709 struct drm_gem_object *old_fb_obj;
4710 struct drm_gem_object *pending_flip_obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004711 struct drm_pending_vblank_event *event;
4712 int pending;
4713};
4714
4715static void intel_unpin_work_fn(struct work_struct *__work)
4716{
4717 struct intel_unpin_work *work =
4718 container_of(__work, struct intel_unpin_work, work);
4719
4720 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004721 i915_gem_object_unpin(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004722 drm_gem_object_unreference(work->pending_flip_obj);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004723 drm_gem_object_unreference(work->old_fb_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004724 mutex_unlock(&work->dev->struct_mutex);
4725 kfree(work);
4726}
4727
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004728static void do_intel_finish_page_flip(struct drm_device *dev,
4729 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004730{
4731 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004732 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4733 struct intel_unpin_work *work;
4734 struct drm_i915_gem_object *obj_priv;
4735 struct drm_pending_vblank_event *e;
4736 struct timeval now;
4737 unsigned long flags;
4738
4739 /* Ignore early vblank irqs */
4740 if (intel_crtc == NULL)
4741 return;
4742
4743 spin_lock_irqsave(&dev->event_lock, flags);
4744 work = intel_crtc->unpin_work;
4745 if (work == NULL || !work->pending) {
4746 spin_unlock_irqrestore(&dev->event_lock, flags);
4747 return;
4748 }
4749
4750 intel_crtc->unpin_work = NULL;
4751 drm_vblank_put(dev, intel_crtc->pipe);
4752
4753 if (work->event) {
4754 e = work->event;
4755 do_gettimeofday(&now);
4756 e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe);
4757 e->event.tv_sec = now.tv_sec;
4758 e->event.tv_usec = now.tv_usec;
4759 list_add_tail(&e->base.link,
4760 &e->base.file_priv->event_list);
4761 wake_up_interruptible(&e->base.file_priv->event_wait);
4762 }
4763
4764 spin_unlock_irqrestore(&dev->event_lock, flags);
4765
Daniel Vetter23010e42010-03-08 13:35:02 +01004766 obj_priv = to_intel_bo(work->pending_flip_obj);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004767
4768 /* Initial scanout buffer will have a 0 pending flip count */
4769 if ((atomic_read(&obj_priv->pending_flip) == 0) ||
4770 atomic_dec_and_test(&obj_priv->pending_flip))
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004771 DRM_WAKEUP(&dev_priv->pending_flip_queue);
4772 schedule_work(&work->work);
4773}
4774
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004775void intel_finish_page_flip(struct drm_device *dev, int pipe)
4776{
4777 drm_i915_private_t *dev_priv = dev->dev_private;
4778 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4779
4780 do_intel_finish_page_flip(dev, crtc);
4781}
4782
4783void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
4784{
4785 drm_i915_private_t *dev_priv = dev->dev_private;
4786 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
4787
4788 do_intel_finish_page_flip(dev, crtc);
4789}
4790
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004791void intel_prepare_page_flip(struct drm_device *dev, int plane)
4792{
4793 drm_i915_private_t *dev_priv = dev->dev_private;
4794 struct intel_crtc *intel_crtc =
4795 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
4796 unsigned long flags;
4797
4798 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004799 if (intel_crtc->unpin_work) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004800 intel_crtc->unpin_work->pending = 1;
Jesse Barnesde3f4402010-01-14 13:18:02 -08004801 } else {
4802 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
4803 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004804 spin_unlock_irqrestore(&dev->event_lock, flags);
4805}
4806
4807static int intel_crtc_page_flip(struct drm_crtc *crtc,
4808 struct drm_framebuffer *fb,
4809 struct drm_pending_vblank_event *event)
4810{
4811 struct drm_device *dev = crtc->dev;
4812 struct drm_i915_private *dev_priv = dev->dev_private;
4813 struct intel_framebuffer *intel_fb;
4814 struct drm_i915_gem_object *obj_priv;
4815 struct drm_gem_object *obj;
4816 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4817 struct intel_unpin_work *work;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004818 unsigned long flags, offset;
Zhenyu Wangaacef092010-02-09 09:46:20 +08004819 int pipesrc_reg = (intel_crtc->pipe == 0) ? PIPEASRC : PIPEBSRC;
4820 int ret, pipesrc;
Jesse Barnes83f7fd02010-04-05 14:03:51 -07004821 u32 flip_mask;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004822
4823 work = kzalloc(sizeof *work, GFP_KERNEL);
4824 if (work == NULL)
4825 return -ENOMEM;
4826
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004827 work->event = event;
4828 work->dev = crtc->dev;
4829 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004830 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004831 INIT_WORK(&work->work, intel_unpin_work_fn);
4832
4833 /* We borrow the event spin lock for protecting unpin_work */
4834 spin_lock_irqsave(&dev->event_lock, flags);
4835 if (intel_crtc->unpin_work) {
4836 spin_unlock_irqrestore(&dev->event_lock, flags);
4837 kfree(work);
Chris Wilson468f0b42010-05-27 13:18:13 +01004838
4839 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004840 return -EBUSY;
4841 }
4842 intel_crtc->unpin_work = work;
4843 spin_unlock_irqrestore(&dev->event_lock, flags);
4844
4845 intel_fb = to_intel_framebuffer(fb);
4846 obj = intel_fb->obj;
4847
Chris Wilson468f0b42010-05-27 13:18:13 +01004848 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004849 ret = intel_pin_and_fence_fb_obj(dev, obj);
4850 if (ret != 0) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004851 mutex_unlock(&dev->struct_mutex);
Chris Wilson468f0b42010-05-27 13:18:13 +01004852
4853 spin_lock_irqsave(&dev->event_lock, flags);
4854 intel_crtc->unpin_work = NULL;
4855 spin_unlock_irqrestore(&dev->event_lock, flags);
4856
4857 kfree(work);
4858
4859 DRM_DEBUG_DRIVER("flip queue: %p pin & fence failed\n",
4860 to_intel_bo(obj));
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004861 return ret;
4862 }
4863
Jesse Barnes75dfca82010-02-10 15:09:44 -08004864 /* Reference the objects for the scheduled work. */
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004865 drm_gem_object_reference(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004866 drm_gem_object_reference(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004867
4868 crtc->fb = fb;
4869 i915_gem_object_flush_write_domain(obj);
4870 drm_vblank_get(dev, intel_crtc->pipe);
Daniel Vetter23010e42010-03-08 13:35:02 +01004871 obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004872 atomic_inc(&obj_priv->pending_flip);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004873 work->pending_flip_obj = obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004874
Jesse Barnes83f7fd02010-04-05 14:03:51 -07004875 if (intel_crtc->plane)
4876 flip_mask = I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
4877 else
4878 flip_mask = I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT;
4879
4880 /* Wait for any previous flip to finish */
4881 if (IS_GEN3(dev))
4882 while (I915_READ(ISR) & flip_mask)
4883 ;
4884
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004885 /* Offset into the new buffer for cases of shared fbs between CRTCs */
4886 offset = obj_priv->gtt_offset;
4887 offset += (crtc->y * fb->pitch) + (crtc->x * (fb->bits_per_pixel) / 8);
4888
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004889 BEGIN_LP_RING(4);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004890 if (IS_I965G(dev)) {
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004891 OUT_RING(MI_DISPLAY_FLIP |
4892 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4893 OUT_RING(fb->pitch);
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004894 OUT_RING(offset | obj_priv->tiling_mode);
Zhenyu Wangaacef092010-02-09 09:46:20 +08004895 pipesrc = I915_READ(pipesrc_reg);
4896 OUT_RING(pipesrc & 0x0fff0fff);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004897 } else {
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004898 OUT_RING(MI_DISPLAY_FLIP_I915 |
4899 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4900 OUT_RING(fb->pitch);
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004901 OUT_RING(offset);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004902 OUT_RING(MI_NOOP);
4903 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004904 ADVANCE_LP_RING();
4905
4906 mutex_unlock(&dev->struct_mutex);
4907
4908 return 0;
4909}
4910
Jesse Barnes79e53942008-11-07 14:24:08 -08004911static const struct drm_crtc_helper_funcs intel_helper_funcs = {
4912 .dpms = intel_crtc_dpms,
4913 .mode_fixup = intel_crtc_mode_fixup,
4914 .mode_set = intel_crtc_mode_set,
4915 .mode_set_base = intel_pipe_set_base,
Jesse Barnes81255562010-08-02 12:07:50 -07004916 .mode_set_base_atomic = intel_pipe_set_base_atomic,
Jesse Barnes79e53942008-11-07 14:24:08 -08004917 .prepare = intel_crtc_prepare,
4918 .commit = intel_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10004919 .load_lut = intel_crtc_load_lut,
Jesse Barnes79e53942008-11-07 14:24:08 -08004920};
4921
4922static const struct drm_crtc_funcs intel_crtc_funcs = {
4923 .cursor_set = intel_crtc_cursor_set,
4924 .cursor_move = intel_crtc_cursor_move,
4925 .gamma_set = intel_crtc_gamma_set,
4926 .set_config = drm_crtc_helper_set_config,
4927 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004928 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08004929};
4930
4931
Hannes Ederb358d0a2008-12-18 21:18:47 +01004932static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08004933{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004934 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004935 struct intel_crtc *intel_crtc;
4936 int i;
4937
4938 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
4939 if (intel_crtc == NULL)
4940 return;
4941
4942 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
4943
4944 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
4945 intel_crtc->pipe = pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004946 intel_crtc->plane = pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004947 for (i = 0; i < 256; i++) {
4948 intel_crtc->lut_r[i] = i;
4949 intel_crtc->lut_g[i] = i;
4950 intel_crtc->lut_b[i] = i;
4951 }
4952
Jesse Barnes80824002009-09-10 15:28:06 -07004953 /* Swap pipes & planes for FBC on pre-965 */
4954 intel_crtc->pipe = pipe;
4955 intel_crtc->plane = pipe;
4956 if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004957 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07004958 intel_crtc->plane = ((pipe == 0) ? 1 : 0);
4959 }
4960
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004961 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
4962 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
4963 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
4964 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
4965
Jesse Barnes79e53942008-11-07 14:24:08 -08004966 intel_crtc->cursor_addr = 0;
4967 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4968 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
4969
Jesse Barnes652c3932009-08-17 13:31:43 -07004970 intel_crtc->busy = false;
4971
4972 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
4973 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004974}
4975
Carl Worth08d7b3d2009-04-29 14:43:54 -07004976int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
4977 struct drm_file *file_priv)
4978{
4979 drm_i915_private_t *dev_priv = dev->dev_private;
4980 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02004981 struct drm_mode_object *drmmode_obj;
4982 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004983
4984 if (!dev_priv) {
4985 DRM_ERROR("called with no initialization\n");
4986 return -EINVAL;
4987 }
4988
Daniel Vetterc05422d2009-08-11 16:05:30 +02004989 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
4990 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07004991
Daniel Vetterc05422d2009-08-11 16:05:30 +02004992 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07004993 DRM_ERROR("no such CRTC id\n");
4994 return -EINVAL;
4995 }
4996
Daniel Vetterc05422d2009-08-11 16:05:30 +02004997 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
4998 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004999
Daniel Vetterc05422d2009-08-11 16:05:30 +02005000 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005001}
5002
Jesse Barnes79e53942008-11-07 14:24:08 -08005003struct drm_crtc *intel_get_crtc_from_pipe(struct drm_device *dev, int pipe)
5004{
5005 struct drm_crtc *crtc = NULL;
5006
5007 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5009 if (intel_crtc->pipe == pipe)
5010 break;
5011 }
5012 return crtc;
5013}
5014
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005015static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005016{
5017 int index_mask = 0;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005018 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005019 int entry = 0;
5020
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005021 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
5022 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07005023 if (type_mask & intel_encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005024 index_mask |= (1 << entry);
5025 entry++;
5026 }
5027 return index_mask;
5028}
5029
5030
5031static void intel_setup_outputs(struct drm_device *dev)
5032{
Eric Anholt725e30a2009-01-22 13:01:02 -08005033 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005034 struct drm_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005035
5036 intel_crt_init(dev);
5037
5038 /* Set up integrated LVDS */
Zhenyu Wang541998a2009-06-05 15:38:44 +08005039 if (IS_MOBILE(dev) && !IS_I830(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005040 intel_lvds_init(dev);
5041
Eric Anholtbad720f2009-10-22 16:11:14 -07005042 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005043 int found;
5044
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005045 if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED))
5046 intel_dp_init(dev, DP_A);
5047
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005048 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08005049 /* PCH SDVOB multiplex with HDMIB */
5050 found = intel_sdvo_init(dev, PCH_SDVOB);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005051 if (!found)
5052 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005053 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
5054 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005055 }
5056
5057 if (I915_READ(HDMIC) & PORT_DETECTED)
5058 intel_hdmi_init(dev, HDMIC);
5059
5060 if (I915_READ(HDMID) & PORT_DETECTED)
5061 intel_hdmi_init(dev, HDMID);
5062
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005063 if (I915_READ(PCH_DP_C) & DP_DETECTED)
5064 intel_dp_init(dev, PCH_DP_C);
5065
5066 if (I915_READ(PCH_DP_D) & DP_DETECTED)
5067 intel_dp_init(dev, PCH_DP_D);
5068
Zhenyu Wang103a1962009-11-27 11:44:36 +08005069 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08005070 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08005071
Eric Anholt725e30a2009-01-22 13:01:02 -08005072 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005073 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005074 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005075 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
5076 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005077 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005078 }
Ma Ling27185ae2009-08-24 13:50:23 +08005079
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005080 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
5081 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005082 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005083 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005084 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005085
5086 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005087
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005088 if (I915_READ(SDVOB) & SDVO_DETECTED) {
5089 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005090 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005091 }
Ma Ling27185ae2009-08-24 13:50:23 +08005092
5093 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
5094
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005095 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
5096 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005097 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005098 }
5099 if (SUPPORTS_INTEGRATED_DP(dev)) {
5100 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005101 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005102 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005103 }
Ma Ling27185ae2009-08-24 13:50:23 +08005104
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005105 if (SUPPORTS_INTEGRATED_DP(dev) &&
5106 (I915_READ(DP_D) & DP_DETECTED)) {
5107 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005108 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005109 }
Eric Anholtbad720f2009-10-22 16:11:14 -07005110 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005111 intel_dvo_init(dev);
5112
Zhenyu Wang103a1962009-11-27 11:44:36 +08005113 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005114 intel_tv_init(dev);
5115
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005116 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
5117 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08005118
Eric Anholt21d40d32010-03-25 11:11:14 -07005119 encoder->possible_crtcs = intel_encoder->crtc_mask;
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005120 encoder->possible_clones = intel_encoder_clones(dev,
Eric Anholt21d40d32010-03-25 11:11:14 -07005121 intel_encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08005122 }
5123}
5124
5125static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
5126{
5127 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005128
5129 drm_framebuffer_cleanup(fb);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005130 drm_gem_object_unreference_unlocked(intel_fb->obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005131
5132 kfree(intel_fb);
5133}
5134
5135static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
5136 struct drm_file *file_priv,
5137 unsigned int *handle)
5138{
5139 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
5140 struct drm_gem_object *object = intel_fb->obj;
5141
5142 return drm_gem_handle_create(file_priv, object, handle);
5143}
5144
5145static const struct drm_framebuffer_funcs intel_fb_funcs = {
5146 .destroy = intel_user_framebuffer_destroy,
5147 .create_handle = intel_user_framebuffer_create_handle,
5148};
5149
Dave Airlie38651672010-03-30 05:34:13 +00005150int intel_framebuffer_init(struct drm_device *dev,
5151 struct intel_framebuffer *intel_fb,
5152 struct drm_mode_fb_cmd *mode_cmd,
5153 struct drm_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08005154{
Jesse Barnes79e53942008-11-07 14:24:08 -08005155 int ret;
5156
Jesse Barnes79e53942008-11-07 14:24:08 -08005157 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
5158 if (ret) {
5159 DRM_ERROR("framebuffer init failed %d\n", ret);
5160 return ret;
5161 }
5162
5163 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08005164 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08005165 return 0;
5166}
5167
Jesse Barnes79e53942008-11-07 14:24:08 -08005168static struct drm_framebuffer *
5169intel_user_framebuffer_create(struct drm_device *dev,
5170 struct drm_file *filp,
5171 struct drm_mode_fb_cmd *mode_cmd)
5172{
5173 struct drm_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00005174 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005175 int ret;
5176
5177 obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle);
5178 if (!obj)
5179 return NULL;
5180
Dave Airlie38651672010-03-30 05:34:13 +00005181 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5182 if (!intel_fb)
5183 return NULL;
5184
5185 ret = intel_framebuffer_init(dev, intel_fb,
5186 mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005187 if (ret) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00005188 drm_gem_object_unreference_unlocked(obj);
Dave Airlie38651672010-03-30 05:34:13 +00005189 kfree(intel_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005190 return NULL;
5191 }
5192
Dave Airlie38651672010-03-30 05:34:13 +00005193 return &intel_fb->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005194}
5195
Jesse Barnes79e53942008-11-07 14:24:08 -08005196static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08005197 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005198 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08005199};
5200
Chris Wilson9ea8d052010-01-04 18:57:56 +00005201static struct drm_gem_object *
5202intel_alloc_power_context(struct drm_device *dev)
5203{
5204 struct drm_gem_object *pwrctx;
5205 int ret;
5206
Daniel Vetterac52bc52010-04-09 19:05:06 +00005207 pwrctx = i915_gem_alloc_object(dev, 4096);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005208 if (!pwrctx) {
5209 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
5210 return NULL;
5211 }
5212
5213 mutex_lock(&dev->struct_mutex);
5214 ret = i915_gem_object_pin(pwrctx, 4096);
5215 if (ret) {
5216 DRM_ERROR("failed to pin power context: %d\n", ret);
5217 goto err_unref;
5218 }
5219
5220 ret = i915_gem_object_set_to_gtt_domain(pwrctx, 1);
5221 if (ret) {
5222 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
5223 goto err_unpin;
5224 }
5225 mutex_unlock(&dev->struct_mutex);
5226
5227 return pwrctx;
5228
5229err_unpin:
5230 i915_gem_object_unpin(pwrctx);
5231err_unref:
5232 drm_gem_object_unreference(pwrctx);
5233 mutex_unlock(&dev->struct_mutex);
5234 return NULL;
5235}
5236
Jesse Barnes7648fa92010-05-20 14:28:11 -07005237bool ironlake_set_drps(struct drm_device *dev, u8 val)
5238{
5239 struct drm_i915_private *dev_priv = dev->dev_private;
5240 u16 rgvswctl;
5241
5242 rgvswctl = I915_READ16(MEMSWCTL);
5243 if (rgvswctl & MEMCTL_CMD_STS) {
5244 DRM_DEBUG("gpu busy, RCS change rejected\n");
5245 return false; /* still busy with another command */
5246 }
5247
5248 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5249 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5250 I915_WRITE16(MEMSWCTL, rgvswctl);
5251 POSTING_READ16(MEMSWCTL);
5252
5253 rgvswctl |= MEMCTL_CMD_STS;
5254 I915_WRITE16(MEMSWCTL, rgvswctl);
5255
5256 return true;
5257}
5258
Jesse Barnesf97108d2010-01-29 11:27:07 -08005259void ironlake_enable_drps(struct drm_device *dev)
5260{
5261 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005262 u32 rgvmodectl = I915_READ(MEMMODECTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005263 u8 fmax, fmin, fstart, vstart;
5264 int i = 0;
5265
5266 /* 100ms RC evaluation intervals */
5267 I915_WRITE(RCUPEI, 100000);
5268 I915_WRITE(RCDNEI, 100000);
5269
5270 /* Set max/min thresholds to 90ms and 80ms respectively */
5271 I915_WRITE(RCBMAXAVG, 90000);
5272 I915_WRITE(RCBMINAVG, 80000);
5273
5274 I915_WRITE(MEMIHYST, 1);
5275
5276 /* Set up min, max, and cur for interrupt handling */
5277 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5278 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5279 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5280 MEMMODE_FSTART_SHIFT;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005281 fstart = fmax;
5282
Jesse Barnesf97108d2010-01-29 11:27:07 -08005283 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
5284 PXVFREQ_PX_SHIFT;
5285
Jesse Barnes7648fa92010-05-20 14:28:11 -07005286 dev_priv->fmax = fstart; /* IPS callback will increase this */
5287 dev_priv->fstart = fstart;
5288
5289 dev_priv->max_delay = fmax;
Jesse Barnesf97108d2010-01-29 11:27:07 -08005290 dev_priv->min_delay = fmin;
5291 dev_priv->cur_delay = fstart;
5292
Jesse Barnes7648fa92010-05-20 14:28:11 -07005293 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", fmax, fmin,
5294 fstart);
5295
Jesse Barnesf97108d2010-01-29 11:27:07 -08005296 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5297
5298 /*
5299 * Interrupts will be enabled in ironlake_irq_postinstall
5300 */
5301
5302 I915_WRITE(VIDSTART, vstart);
5303 POSTING_READ(VIDSTART);
5304
5305 rgvmodectl |= MEMMODE_SWMODE_EN;
5306 I915_WRITE(MEMMODECTL, rgvmodectl);
5307
5308 while (I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) {
5309 if (i++ > 100) {
5310 DRM_ERROR("stuck trying to change perf mode\n");
5311 break;
5312 }
5313 msleep(1);
5314 }
5315 msleep(1);
5316
Jesse Barnes7648fa92010-05-20 14:28:11 -07005317 ironlake_set_drps(dev, fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005318
Jesse Barnes7648fa92010-05-20 14:28:11 -07005319 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
5320 I915_READ(0x112e0);
5321 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
5322 dev_priv->last_count2 = I915_READ(0x112f4);
5323 getrawmonotonic(&dev_priv->last_time2);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005324}
5325
5326void ironlake_disable_drps(struct drm_device *dev)
5327{
5328 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005329 u16 rgvswctl = I915_READ16(MEMSWCTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005330
5331 /* Ack interrupts, disable EFC interrupt */
5332 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5333 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5334 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5335 I915_WRITE(DEIIR, DE_PCU_EVENT);
5336 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5337
5338 /* Go back to the starting frequency */
Jesse Barnes7648fa92010-05-20 14:28:11 -07005339 ironlake_set_drps(dev, dev_priv->fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005340 msleep(1);
5341 rgvswctl |= MEMCTL_CMD_STS;
5342 I915_WRITE(MEMSWCTL, rgvswctl);
5343 msleep(1);
5344
5345}
5346
Jesse Barnes7648fa92010-05-20 14:28:11 -07005347static unsigned long intel_pxfreq(u32 vidfreq)
5348{
5349 unsigned long freq;
5350 int div = (vidfreq & 0x3f0000) >> 16;
5351 int post = (vidfreq & 0x3000) >> 12;
5352 int pre = (vidfreq & 0x7);
5353
5354 if (!pre)
5355 return 0;
5356
5357 freq = ((div * 133333) / ((1<<post) * pre));
5358
5359 return freq;
5360}
5361
5362void intel_init_emon(struct drm_device *dev)
5363{
5364 struct drm_i915_private *dev_priv = dev->dev_private;
5365 u32 lcfuse;
5366 u8 pxw[16];
5367 int i;
5368
5369 /* Disable to program */
5370 I915_WRITE(ECR, 0);
5371 POSTING_READ(ECR);
5372
5373 /* Program energy weights for various events */
5374 I915_WRITE(SDEW, 0x15040d00);
5375 I915_WRITE(CSIEW0, 0x007f0000);
5376 I915_WRITE(CSIEW1, 0x1e220004);
5377 I915_WRITE(CSIEW2, 0x04000004);
5378
5379 for (i = 0; i < 5; i++)
5380 I915_WRITE(PEW + (i * 4), 0);
5381 for (i = 0; i < 3; i++)
5382 I915_WRITE(DEW + (i * 4), 0);
5383
5384 /* Program P-state weights to account for frequency power adjustment */
5385 for (i = 0; i < 16; i++) {
5386 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5387 unsigned long freq = intel_pxfreq(pxvidfreq);
5388 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5389 PXVFREQ_PX_SHIFT;
5390 unsigned long val;
5391
5392 val = vid * vid;
5393 val *= (freq / 1000);
5394 val *= 255;
5395 val /= (127*127*900);
5396 if (val > 0xff)
5397 DRM_ERROR("bad pxval: %ld\n", val);
5398 pxw[i] = val;
5399 }
5400 /* Render standby states get 0 weight */
5401 pxw[14] = 0;
5402 pxw[15] = 0;
5403
5404 for (i = 0; i < 4; i++) {
5405 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5406 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5407 I915_WRITE(PXW + (i * 4), val);
5408 }
5409
5410 /* Adjust magic regs to magic values (more experimental results) */
5411 I915_WRITE(OGW0, 0);
5412 I915_WRITE(OGW1, 0);
5413 I915_WRITE(EG0, 0x00007f00);
5414 I915_WRITE(EG1, 0x0000000e);
5415 I915_WRITE(EG2, 0x000e0000);
5416 I915_WRITE(EG3, 0x68000300);
5417 I915_WRITE(EG4, 0x42000000);
5418 I915_WRITE(EG5, 0x00140031);
5419 I915_WRITE(EG6, 0);
5420 I915_WRITE(EG7, 0);
5421
5422 for (i = 0; i < 8; i++)
5423 I915_WRITE(PXWL + (i * 4), 0);
5424
5425 /* Enable PMON + select events */
5426 I915_WRITE(ECR, 0x80000019);
5427
5428 lcfuse = I915_READ(LCFUSE02);
5429
5430 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
5431}
5432
Jesse Barnes652c3932009-08-17 13:31:43 -07005433void intel_init_clock_gating(struct drm_device *dev)
5434{
5435 struct drm_i915_private *dev_priv = dev->dev_private;
5436
5437 /*
5438 * Disable clock gating reported to work incorrectly according to the
5439 * specs, but enable as much else as we can.
5440 */
Eric Anholtbad720f2009-10-22 16:11:14 -07005441 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07005442 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
5443
5444 if (IS_IRONLAKE(dev)) {
5445 /* Required for FBC */
5446 dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE;
5447 /* Required for CxSR */
5448 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
5449
5450 I915_WRITE(PCH_3DCGDIS0,
5451 MARIUNIT_CLOCK_GATE_DISABLE |
5452 SVSMUNIT_CLOCK_GATE_DISABLE);
5453 }
5454
5455 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005456
5457 /*
5458 * According to the spec the following bits should be set in
5459 * order to enable memory self-refresh
5460 * The bit 22/21 of 0x42004
5461 * The bit 5 of 0x42020
5462 * The bit 15 of 0x45000
5463 */
5464 if (IS_IRONLAKE(dev)) {
5465 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5466 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5467 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
5468 I915_WRITE(ILK_DSPCLK_GATE,
5469 (I915_READ(ILK_DSPCLK_GATE) |
5470 ILK_DPARB_CLK_GATE));
5471 I915_WRITE(DISP_ARB_CTL,
5472 (I915_READ(DISP_ARB_CTL) |
5473 DISP_FBC_WM_DIS));
5474 }
Zhenyu Wangc03342f2009-09-29 11:01:23 +08005475 return;
5476 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005477 uint32_t dspclk_gate;
5478 I915_WRITE(RENCLK_GATE_D1, 0);
5479 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5480 GS_UNIT_CLOCK_GATE_DISABLE |
5481 CL_UNIT_CLOCK_GATE_DISABLE);
5482 I915_WRITE(RAMCLK_GATE_D, 0);
5483 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5484 OVRUNIT_CLOCK_GATE_DISABLE |
5485 OVCUNIT_CLOCK_GATE_DISABLE;
5486 if (IS_GM45(dev))
5487 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5488 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
5489 } else if (IS_I965GM(dev)) {
5490 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5491 I915_WRITE(RENCLK_GATE_D2, 0);
5492 I915_WRITE(DSPCLK_GATE_D, 0);
5493 I915_WRITE(RAMCLK_GATE_D, 0);
5494 I915_WRITE16(DEUC, 0);
5495 } else if (IS_I965G(dev)) {
5496 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5497 I965_RCC_CLOCK_GATE_DISABLE |
5498 I965_RCPB_CLOCK_GATE_DISABLE |
5499 I965_ISC_CLOCK_GATE_DISABLE |
5500 I965_FBC_CLOCK_GATE_DISABLE);
5501 I915_WRITE(RENCLK_GATE_D2, 0);
5502 } else if (IS_I9XX(dev)) {
5503 u32 dstate = I915_READ(D_STATE);
5504
5505 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5506 DSTATE_DOT_CLOCK_GATING;
5507 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005508 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005509 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5510 } else if (IS_I830(dev)) {
5511 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5512 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005513
5514 /*
5515 * GPU can automatically power down the render unit if given a page
5516 * to save state.
5517 */
Andrew Lutomirski1d3c36ad2009-12-21 10:10:22 -05005518 if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005519 struct drm_i915_gem_object *obj_priv = NULL;
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005520
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005521 if (dev_priv->pwrctx) {
Daniel Vetter23010e42010-03-08 13:35:02 +01005522 obj_priv = to_intel_bo(dev_priv->pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005523 } else {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005524 struct drm_gem_object *pwrctx;
5525
5526 pwrctx = intel_alloc_power_context(dev);
5527 if (pwrctx) {
5528 dev_priv->pwrctx = pwrctx;
Daniel Vetter23010e42010-03-08 13:35:02 +01005529 obj_priv = to_intel_bo(pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005530 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005531 }
5532
Chris Wilson9ea8d052010-01-04 18:57:56 +00005533 if (obj_priv) {
5534 I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN);
5535 I915_WRITE(MCHBAR_RENDER_STANDBY,
5536 I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT);
5537 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005538 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005539}
5540
Jesse Barnese70236a2009-09-21 10:42:27 -07005541/* Set up chip specific display functions */
5542static void intel_init_display(struct drm_device *dev)
5543{
5544 struct drm_i915_private *dev_priv = dev->dev_private;
5545
5546 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07005547 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005548 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07005549 else
5550 dev_priv->display.dpms = i9xx_crtc_dpms;
5551
Adam Jacksonee5382a2010-04-23 11:17:39 -04005552 if (I915_HAS_FBC(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07005553 if (IS_GM45(dev)) {
5554 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5555 dev_priv->display.enable_fbc = g4x_enable_fbc;
5556 dev_priv->display.disable_fbc = g4x_disable_fbc;
Robert Hooker8d06a1e2010-03-19 15:13:27 -04005557 } else if (IS_I965GM(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005558 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5559 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5560 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5561 }
Jesse Barnes74dff282009-09-14 15:39:40 -07005562 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07005563 }
5564
5565 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005566 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07005567 dev_priv->display.get_display_clock_speed =
5568 i945_get_display_clock_speed;
5569 else if (IS_I915G(dev))
5570 dev_priv->display.get_display_clock_speed =
5571 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005572 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005573 dev_priv->display.get_display_clock_speed =
5574 i9xx_misc_get_display_clock_speed;
5575 else if (IS_I915GM(dev))
5576 dev_priv->display.get_display_clock_speed =
5577 i915gm_get_display_clock_speed;
5578 else if (IS_I865G(dev))
5579 dev_priv->display.get_display_clock_speed =
5580 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005581 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005582 dev_priv->display.get_display_clock_speed =
5583 i855_get_display_clock_speed;
5584 else /* 852, 830 */
5585 dev_priv->display.get_display_clock_speed =
5586 i830_get_display_clock_speed;
5587
5588 /* For FIFO watermark updates */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005589 if (HAS_PCH_SPLIT(dev)) {
5590 if (IS_IRONLAKE(dev)) {
5591 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
5592 dev_priv->display.update_wm = ironlake_update_wm;
5593 else {
5594 DRM_DEBUG_KMS("Failed to get proper latency. "
5595 "Disable CxSR\n");
5596 dev_priv->display.update_wm = NULL;
5597 }
5598 } else
5599 dev_priv->display.update_wm = NULL;
5600 } else if (IS_PINEVIEW(dev)) {
Zhao Yakuid4294342010-03-22 22:45:36 +08005601 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
Li Peng95534262010-05-18 18:58:44 +08005602 dev_priv->is_ddr3,
Zhao Yakuid4294342010-03-22 22:45:36 +08005603 dev_priv->fsb_freq,
5604 dev_priv->mem_freq)) {
5605 DRM_INFO("failed to find known CxSR latency "
Li Peng95534262010-05-18 18:58:44 +08005606 "(found ddr%s fsb freq %d, mem freq %d), "
Zhao Yakuid4294342010-03-22 22:45:36 +08005607 "disabling CxSR\n",
Li Peng95534262010-05-18 18:58:44 +08005608 (dev_priv->is_ddr3 == 1) ? "3": "2",
Zhao Yakuid4294342010-03-22 22:45:36 +08005609 dev_priv->fsb_freq, dev_priv->mem_freq);
5610 /* Disable CxSR and never update its watermark again */
5611 pineview_disable_cxsr(dev);
5612 dev_priv->display.update_wm = NULL;
5613 } else
5614 dev_priv->display.update_wm = pineview_update_wm;
5615 } else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005616 dev_priv->display.update_wm = g4x_update_wm;
5617 else if (IS_I965G(dev))
5618 dev_priv->display.update_wm = i965_update_wm;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005619 else if (IS_I9XX(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005620 dev_priv->display.update_wm = i9xx_update_wm;
5621 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005622 } else if (IS_I85X(dev)) {
5623 dev_priv->display.update_wm = i9xx_update_wm;
5624 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005625 } else {
Adam Jackson8f4695e2010-04-16 18:20:57 -04005626 dev_priv->display.update_wm = i830_update_wm;
5627 if (IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005628 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5629 else
5630 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005631 }
5632}
5633
Jesse Barnesb690e962010-07-19 13:53:12 -07005634/*
5635 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
5636 * resume, or other times. This quirk makes sure that's the case for
5637 * affected systems.
5638 */
5639static void quirk_pipea_force (struct drm_device *dev)
5640{
5641 struct drm_i915_private *dev_priv = dev->dev_private;
5642
5643 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
5644 DRM_DEBUG_DRIVER("applying pipe a force quirk\n");
5645}
5646
5647struct intel_quirk {
5648 int device;
5649 int subsystem_vendor;
5650 int subsystem_device;
5651 void (*hook)(struct drm_device *dev);
5652};
5653
5654struct intel_quirk intel_quirks[] = {
5655 /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */
5656 { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force },
5657 /* HP Mini needs pipe A force quirk (LP: #322104) */
5658 { 0x27ae,0x103c, 0x361a, quirk_pipea_force },
5659
5660 /* Thinkpad R31 needs pipe A force quirk */
5661 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
5662 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
5663 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
5664
5665 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
5666 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
5667 /* ThinkPad X40 needs pipe A force quirk */
5668
5669 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
5670 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
5671
5672 /* 855 & before need to leave pipe A & dpll A up */
5673 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
5674 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
5675};
5676
5677static void intel_init_quirks(struct drm_device *dev)
5678{
5679 struct pci_dev *d = dev->pdev;
5680 int i;
5681
5682 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
5683 struct intel_quirk *q = &intel_quirks[i];
5684
5685 if (d->device == q->device &&
5686 (d->subsystem_vendor == q->subsystem_vendor ||
5687 q->subsystem_vendor == PCI_ANY_ID) &&
5688 (d->subsystem_device == q->subsystem_device ||
5689 q->subsystem_device == PCI_ANY_ID))
5690 q->hook(dev);
5691 }
5692}
5693
Jesse Barnes79e53942008-11-07 14:24:08 -08005694void intel_modeset_init(struct drm_device *dev)
5695{
Jesse Barnes652c3932009-08-17 13:31:43 -07005696 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005697 int i;
5698
5699 drm_mode_config_init(dev);
5700
5701 dev->mode_config.min_width = 0;
5702 dev->mode_config.min_height = 0;
5703
5704 dev->mode_config.funcs = (void *)&intel_mode_funcs;
5705
Jesse Barnesb690e962010-07-19 13:53:12 -07005706 intel_init_quirks(dev);
5707
Jesse Barnese70236a2009-09-21 10:42:27 -07005708 intel_init_display(dev);
5709
Jesse Barnes79e53942008-11-07 14:24:08 -08005710 if (IS_I965G(dev)) {
5711 dev->mode_config.max_width = 8192;
5712 dev->mode_config.max_height = 8192;
Keith Packard5e4d6fa2009-07-12 23:53:17 -07005713 } else if (IS_I9XX(dev)) {
5714 dev->mode_config.max_width = 4096;
5715 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08005716 } else {
5717 dev->mode_config.max_width = 2048;
5718 dev->mode_config.max_height = 2048;
5719 }
5720
5721 /* set memory base */
5722 if (IS_I9XX(dev))
5723 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2);
5724 else
5725 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0);
5726
5727 if (IS_MOBILE(dev) || IS_I9XX(dev))
Dave Airliea3524f12010-06-06 18:59:41 +10005728 dev_priv->num_pipe = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08005729 else
Dave Airliea3524f12010-06-06 18:59:41 +10005730 dev_priv->num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08005731 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10005732 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08005733
Dave Airliea3524f12010-06-06 18:59:41 +10005734 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005735 intel_crtc_init(dev, i);
5736 }
5737
5738 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07005739
5740 intel_init_clock_gating(dev);
5741
Jesse Barnes7648fa92010-05-20 14:28:11 -07005742 if (IS_IRONLAKE_M(dev)) {
Jesse Barnesf97108d2010-01-29 11:27:07 -08005743 ironlake_enable_drps(dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07005744 intel_init_emon(dev);
5745 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08005746
Jesse Barnes652c3932009-08-17 13:31:43 -07005747 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
5748 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
5749 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02005750
5751 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08005752}
5753
5754void intel_modeset_cleanup(struct drm_device *dev)
5755{
Jesse Barnes652c3932009-08-17 13:31:43 -07005756 struct drm_i915_private *dev_priv = dev->dev_private;
5757 struct drm_crtc *crtc;
5758 struct intel_crtc *intel_crtc;
5759
5760 mutex_lock(&dev->struct_mutex);
5761
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005762 drm_kms_helper_poll_fini(dev);
Dave Airlie38651672010-03-30 05:34:13 +00005763 intel_fbdev_fini(dev);
5764
Jesse Barnes652c3932009-08-17 13:31:43 -07005765 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5766 /* Skip inactive CRTCs */
5767 if (!crtc->fb)
5768 continue;
5769
5770 intel_crtc = to_intel_crtc(crtc);
5771 intel_increase_pllclock(crtc, false);
5772 del_timer_sync(&intel_crtc->idle_timer);
5773 }
5774
Jesse Barnes652c3932009-08-17 13:31:43 -07005775 del_timer_sync(&dev_priv->idle_timer);
5776
Jesse Barnese70236a2009-09-21 10:42:27 -07005777 if (dev_priv->display.disable_fbc)
5778 dev_priv->display.disable_fbc(dev);
5779
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005780 if (dev_priv->pwrctx) {
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005781 struct drm_i915_gem_object *obj_priv;
5782
Daniel Vetter23010e42010-03-08 13:35:02 +01005783 obj_priv = to_intel_bo(dev_priv->pwrctx);
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05005784 I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN);
5785 I915_READ(PWRCTXA);
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005786 i915_gem_object_unpin(dev_priv->pwrctx);
5787 drm_gem_object_unreference(dev_priv->pwrctx);
5788 }
5789
Jesse Barnesf97108d2010-01-29 11:27:07 -08005790 if (IS_IRONLAKE_M(dev))
5791 ironlake_disable_drps(dev);
5792
Kristian Høgsberg69341a52009-11-11 12:19:17 -05005793 mutex_unlock(&dev->struct_mutex);
5794
Jesse Barnes79e53942008-11-07 14:24:08 -08005795 drm_mode_config_cleanup(dev);
5796}
5797
5798
Dave Airlie28d52042009-09-21 14:33:58 +10005799/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005800 * Return which encoder is currently attached for connector.
5801 */
5802struct drm_encoder *intel_attached_encoder (struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08005803{
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005804 struct drm_mode_object *obj;
5805 struct drm_encoder *encoder;
5806 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08005807
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08005808 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5809 if (connector->encoder_ids[i] == 0)
5810 break;
5811
5812 obj = drm_mode_object_find(connector->dev,
5813 connector->encoder_ids[i],
5814 DRM_MODE_OBJECT_ENCODER);
5815 if (!obj)
5816 continue;
5817
5818 encoder = obj_to_encoder(obj);
5819 return encoder;
5820 }
5821 return NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005822}
Dave Airlie28d52042009-09-21 14:33:58 +10005823
5824/*
5825 * set vga decode state - true == enable VGA decode
5826 */
5827int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
5828{
5829 struct drm_i915_private *dev_priv = dev->dev_private;
5830 u16 gmch_ctrl;
5831
5832 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
5833 if (state)
5834 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
5835 else
5836 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
5837 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
5838 return 0;
5839}