blob: 1e2a17d66ebbe2b5b25705029127788fb0781f4d [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Jesse Barnesc1c7af62009-09-10 15:28:03 -070027#include <linux/module.h>
28#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080029#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080030#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070032#include <linux/vgaarb.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "drmP.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070037#include "i915_trace.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100038#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080039
40#include "drm_crtc_helper.h"
41
Zhenyu Wang32f9d652009-07-24 01:00:32 +080042#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
43
Jesse Barnes79e53942008-11-07 14:24:08 -080044bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080045static void intel_update_watermarks(struct drm_device *dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +020046static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010047static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080048
49typedef struct {
50 /* given values */
51 int n;
52 int m1, m2;
53 int p1, p2;
54 /* derived values */
55 int dot;
56 int vco;
57 int m;
58 int p;
59} intel_clock_t;
60
61typedef struct {
62 int min, max;
63} intel_range_t;
64
65typedef struct {
66 int dot_limit;
67 int p2_slow, p2_fast;
68} intel_p2_t;
69
70#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080071typedef struct intel_limit intel_limit_t;
72struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080073 intel_range_t dot, vco, n, m, m1, m2, p, p1;
74 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080075 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
76 int, int, intel_clock_t *);
77};
Jesse Barnes79e53942008-11-07 14:24:08 -080078
79#define I8XX_DOT_MIN 25000
80#define I8XX_DOT_MAX 350000
81#define I8XX_VCO_MIN 930000
82#define I8XX_VCO_MAX 1400000
83#define I8XX_N_MIN 3
84#define I8XX_N_MAX 16
85#define I8XX_M_MIN 96
86#define I8XX_M_MAX 140
87#define I8XX_M1_MIN 18
88#define I8XX_M1_MAX 26
89#define I8XX_M2_MIN 6
90#define I8XX_M2_MAX 16
91#define I8XX_P_MIN 4
92#define I8XX_P_MAX 128
93#define I8XX_P1_MIN 2
94#define I8XX_P1_MAX 33
95#define I8XX_P1_LVDS_MIN 1
96#define I8XX_P1_LVDS_MAX 6
97#define I8XX_P2_SLOW 4
98#define I8XX_P2_FAST 2
99#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e3952009-07-17 11:44:30 +0800100#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -0800101#define I8XX_P2_SLOW_LIMIT 165000
102
103#define I9XX_DOT_MIN 20000
104#define I9XX_DOT_MAX 400000
105#define I9XX_VCO_MIN 1400000
106#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500107#define PINEVIEW_VCO_MIN 1700000
108#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500109#define I9XX_N_MIN 1
110#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500111/* Pineview's Ncounter is a ring counter */
112#define PINEVIEW_N_MIN 3
113#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800114#define I9XX_M_MIN 70
115#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500116#define PINEVIEW_M_MIN 2
117#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800118#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500119#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800120#define I9XX_M2_MIN 5
121#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500122/* Pineview M1 is reserved, and must be 0 */
123#define PINEVIEW_M1_MIN 0
124#define PINEVIEW_M1_MAX 0
125#define PINEVIEW_M2_MIN 0
126#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800127#define I9XX_P_SDVO_DAC_MIN 5
128#define I9XX_P_SDVO_DAC_MAX 80
129#define I9XX_P_LVDS_MIN 7
130#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500131#define PINEVIEW_P_LVDS_MIN 7
132#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800133#define I9XX_P1_MIN 1
134#define I9XX_P1_MAX 8
135#define I9XX_P2_SDVO_DAC_SLOW 10
136#define I9XX_P2_SDVO_DAC_FAST 5
137#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
138#define I9XX_P2_LVDS_SLOW 14
139#define I9XX_P2_LVDS_FAST 7
140#define I9XX_P2_LVDS_SLOW_LIMIT 112000
141
Ma Ling044c7c42009-03-18 20:13:23 +0800142/*The parameter is for SDVO on G4x platform*/
143#define G4X_DOT_SDVO_MIN 25000
144#define G4X_DOT_SDVO_MAX 270000
145#define G4X_VCO_MIN 1750000
146#define G4X_VCO_MAX 3500000
147#define G4X_N_SDVO_MIN 1
148#define G4X_N_SDVO_MAX 4
149#define G4X_M_SDVO_MIN 104
150#define G4X_M_SDVO_MAX 138
151#define G4X_M1_SDVO_MIN 17
152#define G4X_M1_SDVO_MAX 23
153#define G4X_M2_SDVO_MIN 5
154#define G4X_M2_SDVO_MAX 11
155#define G4X_P_SDVO_MIN 10
156#define G4X_P_SDVO_MAX 30
157#define G4X_P1_SDVO_MIN 1
158#define G4X_P1_SDVO_MAX 3
159#define G4X_P2_SDVO_SLOW 10
160#define G4X_P2_SDVO_FAST 10
161#define G4X_P2_SDVO_LIMIT 270000
162
163/*The parameter is for HDMI_DAC on G4x platform*/
164#define G4X_DOT_HDMI_DAC_MIN 22000
165#define G4X_DOT_HDMI_DAC_MAX 400000
166#define G4X_N_HDMI_DAC_MIN 1
167#define G4X_N_HDMI_DAC_MAX 4
168#define G4X_M_HDMI_DAC_MIN 104
169#define G4X_M_HDMI_DAC_MAX 138
170#define G4X_M1_HDMI_DAC_MIN 16
171#define G4X_M1_HDMI_DAC_MAX 23
172#define G4X_M2_HDMI_DAC_MIN 5
173#define G4X_M2_HDMI_DAC_MAX 11
174#define G4X_P_HDMI_DAC_MIN 5
175#define G4X_P_HDMI_DAC_MAX 80
176#define G4X_P1_HDMI_DAC_MIN 1
177#define G4X_P1_HDMI_DAC_MAX 8
178#define G4X_P2_HDMI_DAC_SLOW 10
179#define G4X_P2_HDMI_DAC_FAST 5
180#define G4X_P2_HDMI_DAC_LIMIT 165000
181
182/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
183#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
184#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
185#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
186#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
187#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
188#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
189#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
190#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
191#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
192#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
193#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
194#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
195#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
196#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
197#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
198#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
199#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
200
201/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
202#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
203#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
204#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
205#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
206#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
207#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
208#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
209#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
210#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
211#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
212#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
213#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
214#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
215#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
216#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
217#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
218#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
219
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700220/*The parameter is for DISPLAY PORT on G4x platform*/
221#define G4X_DOT_DISPLAY_PORT_MIN 161670
222#define G4X_DOT_DISPLAY_PORT_MAX 227000
223#define G4X_N_DISPLAY_PORT_MIN 1
224#define G4X_N_DISPLAY_PORT_MAX 2
225#define G4X_M_DISPLAY_PORT_MIN 97
226#define G4X_M_DISPLAY_PORT_MAX 108
227#define G4X_M1_DISPLAY_PORT_MIN 0x10
228#define G4X_M1_DISPLAY_PORT_MAX 0x12
229#define G4X_M2_DISPLAY_PORT_MIN 0x05
230#define G4X_M2_DISPLAY_PORT_MAX 0x06
231#define G4X_P_DISPLAY_PORT_MIN 10
232#define G4X_P_DISPLAY_PORT_MAX 20
233#define G4X_P1_DISPLAY_PORT_MIN 1
234#define G4X_P1_DISPLAY_PORT_MAX 2
235#define G4X_P2_DISPLAY_PORT_SLOW 10
236#define G4X_P2_DISPLAY_PORT_FAST 10
237#define G4X_P2_DISPLAY_PORT_LIMIT 0
238
Eric Anholtbad720f2009-10-22 16:11:14 -0700239/* Ironlake / Sandybridge */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800240/* as we calculate clock using (register_value + 2) for
241 N/M1/M2, so here the range value for them is (actual_value-2).
242 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500243#define IRONLAKE_DOT_MIN 25000
244#define IRONLAKE_DOT_MAX 350000
245#define IRONLAKE_VCO_MIN 1760000
246#define IRONLAKE_VCO_MAX 3510000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500247#define IRONLAKE_M1_MIN 12
Zhao Yakuia59e3852010-01-06 22:05:57 +0800248#define IRONLAKE_M1_MAX 22
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500249#define IRONLAKE_M2_MIN 5
250#define IRONLAKE_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500251#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800252
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800253/* We have parameter ranges for different type of outputs. */
254
255/* DAC & HDMI Refclk 120Mhz */
256#define IRONLAKE_DAC_N_MIN 1
257#define IRONLAKE_DAC_N_MAX 5
258#define IRONLAKE_DAC_M_MIN 79
259#define IRONLAKE_DAC_M_MAX 127
260#define IRONLAKE_DAC_P_MIN 5
261#define IRONLAKE_DAC_P_MAX 80
262#define IRONLAKE_DAC_P1_MIN 1
263#define IRONLAKE_DAC_P1_MAX 8
264#define IRONLAKE_DAC_P2_SLOW 10
265#define IRONLAKE_DAC_P2_FAST 5
266
267/* LVDS single-channel 120Mhz refclk */
268#define IRONLAKE_LVDS_S_N_MIN 1
269#define IRONLAKE_LVDS_S_N_MAX 3
270#define IRONLAKE_LVDS_S_M_MIN 79
271#define IRONLAKE_LVDS_S_M_MAX 118
272#define IRONLAKE_LVDS_S_P_MIN 28
273#define IRONLAKE_LVDS_S_P_MAX 112
274#define IRONLAKE_LVDS_S_P1_MIN 2
275#define IRONLAKE_LVDS_S_P1_MAX 8
276#define IRONLAKE_LVDS_S_P2_SLOW 14
277#define IRONLAKE_LVDS_S_P2_FAST 14
278
279/* LVDS dual-channel 120Mhz refclk */
280#define IRONLAKE_LVDS_D_N_MIN 1
281#define IRONLAKE_LVDS_D_N_MAX 3
282#define IRONLAKE_LVDS_D_M_MIN 79
283#define IRONLAKE_LVDS_D_M_MAX 127
284#define IRONLAKE_LVDS_D_P_MIN 14
285#define IRONLAKE_LVDS_D_P_MAX 56
286#define IRONLAKE_LVDS_D_P1_MIN 2
287#define IRONLAKE_LVDS_D_P1_MAX 8
288#define IRONLAKE_LVDS_D_P2_SLOW 7
289#define IRONLAKE_LVDS_D_P2_FAST 7
290
291/* LVDS single-channel 100Mhz refclk */
292#define IRONLAKE_LVDS_S_SSC_N_MIN 1
293#define IRONLAKE_LVDS_S_SSC_N_MAX 2
294#define IRONLAKE_LVDS_S_SSC_M_MIN 79
295#define IRONLAKE_LVDS_S_SSC_M_MAX 126
296#define IRONLAKE_LVDS_S_SSC_P_MIN 28
297#define IRONLAKE_LVDS_S_SSC_P_MAX 112
298#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
299#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
300#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
301#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
302
303/* LVDS dual-channel 100Mhz refclk */
304#define IRONLAKE_LVDS_D_SSC_N_MIN 1
305#define IRONLAKE_LVDS_D_SSC_N_MAX 3
306#define IRONLAKE_LVDS_D_SSC_M_MIN 79
307#define IRONLAKE_LVDS_D_SSC_M_MAX 126
308#define IRONLAKE_LVDS_D_SSC_P_MIN 14
309#define IRONLAKE_LVDS_D_SSC_P_MAX 42
310#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
311#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
312#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
313#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
314
315/* DisplayPort */
316#define IRONLAKE_DP_N_MIN 1
317#define IRONLAKE_DP_N_MAX 2
318#define IRONLAKE_DP_M_MIN 81
319#define IRONLAKE_DP_M_MAX 90
320#define IRONLAKE_DP_P_MIN 10
321#define IRONLAKE_DP_P_MAX 20
322#define IRONLAKE_DP_P2_FAST 10
323#define IRONLAKE_DP_P2_SLOW 10
324#define IRONLAKE_DP_P2_LIMIT 0
325#define IRONLAKE_DP_P1_MIN 1
326#define IRONLAKE_DP_P1_MAX 2
Zhao Yakui45476682009-12-31 16:06:04 +0800327
Jesse Barnes2377b742010-07-07 14:06:43 -0700328/* FDI */
329#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
330
Ma Lingd4906092009-03-18 20:13:27 +0800331static bool
332intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
333 int target, int refclk, intel_clock_t *best_clock);
334static bool
335intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
336 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800337
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700338static bool
339intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
340 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800341static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500342intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
343 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700344
Chris Wilson021357a2010-09-07 20:54:59 +0100345static inline u32 /* units of 100MHz */
346intel_fdi_link_freq(struct drm_device *dev)
347{
348 struct drm_i915_private *dev_priv = dev->dev_private;
349 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
350}
351
Keith Packarde4b36692009-06-05 19:22:17 -0700352static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800353 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
354 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
355 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
356 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
357 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
358 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
359 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
360 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
361 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
362 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800363 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700364};
365
366static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800367 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
368 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
369 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
370 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
371 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
372 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
373 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
374 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
375 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
376 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800377 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700378};
379
380static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800381 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
382 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
383 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
384 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
385 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
386 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
387 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
388 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
389 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
390 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800391 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700392};
393
394static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800395 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
396 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
397 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
398 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
399 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
400 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
401 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
402 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
403 /* The single-channel range is 25-112Mhz, and dual-channel
404 * is 80-224Mhz. Prefer single channel as much as possible.
405 */
406 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
407 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800408 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700409};
410
Ma Ling044c7c42009-03-18 20:13:23 +0800411 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700412static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800413 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
414 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
415 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
416 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
417 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
418 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
419 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
420 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
421 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
422 .p2_slow = G4X_P2_SDVO_SLOW,
423 .p2_fast = G4X_P2_SDVO_FAST
424 },
Ma Lingd4906092009-03-18 20:13:27 +0800425 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700426};
427
428static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800429 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
430 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
431 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
432 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
433 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
434 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
435 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
436 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
437 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
438 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
439 .p2_fast = G4X_P2_HDMI_DAC_FAST
440 },
Ma Lingd4906092009-03-18 20:13:27 +0800441 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700442};
443
444static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800445 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
446 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
447 .vco = { .min = G4X_VCO_MIN,
448 .max = G4X_VCO_MAX },
449 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
450 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
451 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
452 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
453 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
454 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
455 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
456 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
457 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
458 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
459 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
460 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
461 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
462 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
463 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
464 },
Ma Lingd4906092009-03-18 20:13:27 +0800465 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700466};
467
468static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800469 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
470 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
471 .vco = { .min = G4X_VCO_MIN,
472 .max = G4X_VCO_MAX },
473 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
474 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
475 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
476 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
477 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
478 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
479 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
480 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
481 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
482 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
483 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
484 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
485 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
486 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
487 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
488 },
Ma Lingd4906092009-03-18 20:13:27 +0800489 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700490};
491
492static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700493 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
494 .max = G4X_DOT_DISPLAY_PORT_MAX },
495 .vco = { .min = G4X_VCO_MIN,
496 .max = G4X_VCO_MAX},
497 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
498 .max = G4X_N_DISPLAY_PORT_MAX },
499 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
500 .max = G4X_M_DISPLAY_PORT_MAX },
501 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
502 .max = G4X_M1_DISPLAY_PORT_MAX },
503 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
504 .max = G4X_M2_DISPLAY_PORT_MAX },
505 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
506 .max = G4X_P_DISPLAY_PORT_MAX },
507 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
508 .max = G4X_P1_DISPLAY_PORT_MAX},
509 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
510 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
511 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
512 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700513};
514
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500515static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800516 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500517 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
518 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
519 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
520 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
521 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800522 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
523 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
524 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
525 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800526 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700527};
528
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500529static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800530 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500531 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
532 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
533 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
534 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
535 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
536 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800537 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500538 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800539 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
540 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800541 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700542};
543
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800544static const intel_limit_t intel_limits_ironlake_dac = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500545 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
546 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800547 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
548 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500549 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
550 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800551 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
552 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500553 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800554 .p2_slow = IRONLAKE_DAC_P2_SLOW,
555 .p2_fast = IRONLAKE_DAC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800556 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700557};
558
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800559static const intel_limit_t intel_limits_ironlake_single_lvds = {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500560 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
561 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800562 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
563 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500564 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
565 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800566 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
567 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500568 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800569 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
570 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
571 .find_pll = intel_g4x_find_best_PLL,
572};
573
574static const intel_limit_t intel_limits_ironlake_dual_lvds = {
575 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
576 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
577 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
578 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
579 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
580 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
581 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
582 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
583 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
584 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
585 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
586 .find_pll = intel_g4x_find_best_PLL,
587};
588
589static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
590 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
591 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
592 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
593 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
594 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
595 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
596 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
597 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
598 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
599 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
600 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
601 .find_pll = intel_g4x_find_best_PLL,
602};
603
604static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
605 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
606 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
607 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
608 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
609 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
610 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
611 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
612 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
613 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
614 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
615 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800616 .find_pll = intel_g4x_find_best_PLL,
617};
618
619static const intel_limit_t intel_limits_ironlake_display_port = {
620 .dot = { .min = IRONLAKE_DOT_MIN,
621 .max = IRONLAKE_DOT_MAX },
622 .vco = { .min = IRONLAKE_VCO_MIN,
623 .max = IRONLAKE_VCO_MAX},
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800624 .n = { .min = IRONLAKE_DP_N_MIN,
625 .max = IRONLAKE_DP_N_MAX },
626 .m = { .min = IRONLAKE_DP_M_MIN,
627 .max = IRONLAKE_DP_M_MAX },
Zhao Yakui45476682009-12-31 16:06:04 +0800628 .m1 = { .min = IRONLAKE_M1_MIN,
629 .max = IRONLAKE_M1_MAX },
630 .m2 = { .min = IRONLAKE_M2_MIN,
631 .max = IRONLAKE_M2_MAX },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800632 .p = { .min = IRONLAKE_DP_P_MIN,
633 .max = IRONLAKE_DP_P_MAX },
634 .p1 = { .min = IRONLAKE_DP_P1_MIN,
635 .max = IRONLAKE_DP_P1_MAX},
636 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
637 .p2_slow = IRONLAKE_DP_P2_SLOW,
638 .p2_fast = IRONLAKE_DP_P2_FAST },
Zhao Yakui45476682009-12-31 16:06:04 +0800639 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800640};
641
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500642static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800643{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800644 struct drm_device *dev = crtc->dev;
645 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800646 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800647 int refclk = 120;
648
649 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
650 if (dev_priv->lvds_use_ssc && dev_priv->lvds_ssc_freq == 100)
651 refclk = 100;
652
653 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
654 LVDS_CLKB_POWER_UP) {
655 /* LVDS dual channel */
656 if (refclk == 100)
657 limit = &intel_limits_ironlake_dual_lvds_100m;
658 else
659 limit = &intel_limits_ironlake_dual_lvds;
660 } else {
661 if (refclk == 100)
662 limit = &intel_limits_ironlake_single_lvds_100m;
663 else
664 limit = &intel_limits_ironlake_single_lvds;
665 }
666 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800667 HAS_eDP)
668 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800669 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800670 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800671
672 return limit;
673}
674
Ma Ling044c7c42009-03-18 20:13:23 +0800675static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
676{
677 struct drm_device *dev = crtc->dev;
678 struct drm_i915_private *dev_priv = dev->dev_private;
679 const intel_limit_t *limit;
680
681 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
682 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
683 LVDS_CLKB_POWER_UP)
684 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700685 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800686 else
687 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700688 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800689 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
690 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700691 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800692 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700693 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700694 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700695 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800696 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700697 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800698
699 return limit;
700}
701
Jesse Barnes79e53942008-11-07 14:24:08 -0800702static const intel_limit_t *intel_limit(struct drm_crtc *crtc)
703{
704 struct drm_device *dev = crtc->dev;
705 const intel_limit_t *limit;
706
Eric Anholtbad720f2009-10-22 16:11:14 -0700707 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500708 limit = intel_ironlake_limit(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800709 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800710 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500711 } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800712 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700713 limit = &intel_limits_i9xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800714 else
Keith Packarde4b36692009-06-05 19:22:17 -0700715 limit = &intel_limits_i9xx_sdvo;
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500716 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800717 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500718 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800719 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500720 limit = &intel_limits_pineview_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800721 } else {
722 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700723 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800724 else
Keith Packarde4b36692009-06-05 19:22:17 -0700725 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800726 }
727 return limit;
728}
729
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500730/* m1 is reserved as 0 in Pineview, n is a ring counter */
731static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800732{
Shaohua Li21778322009-02-23 15:19:16 +0800733 clock->m = clock->m2 + 2;
734 clock->p = clock->p1 * clock->p2;
735 clock->vco = refclk * clock->m / clock->n;
736 clock->dot = clock->vco / clock->p;
737}
738
739static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
740{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500741 if (IS_PINEVIEW(dev)) {
742 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800743 return;
744 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800745 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
746 clock->p = clock->p1 * clock->p2;
747 clock->vco = refclk * clock->m / (clock->n + 2);
748 clock->dot = clock->vco / clock->p;
749}
750
Jesse Barnes79e53942008-11-07 14:24:08 -0800751/**
752 * Returns whether any output on the specified pipe is of the specified type
753 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100754bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800755{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100756 struct drm_device *dev = crtc->dev;
757 struct drm_mode_config *mode_config = &dev->mode_config;
758 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800759
Chris Wilson4ef69c72010-09-09 15:14:28 +0100760 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
761 if (encoder->base.crtc == crtc && encoder->type == type)
762 return true;
763
764 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800765}
766
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800767#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800768/**
769 * Returns whether the given set of divisors are valid for a given refclk with
770 * the given connectors.
771 */
772
773static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock)
774{
775 const intel_limit_t *limit = intel_limit (crtc);
Shaohua Li21778322009-02-23 15:19:16 +0800776 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800777
778 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
779 INTELPllInvalid ("p1 out of range\n");
780 if (clock->p < limit->p.min || limit->p.max < clock->p)
781 INTELPllInvalid ("p out of range\n");
782 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
783 INTELPllInvalid ("m2 out of range\n");
784 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
785 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500786 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800787 INTELPllInvalid ("m1 <= m2\n");
788 if (clock->m < limit->m.min || limit->m.max < clock->m)
789 INTELPllInvalid ("m out of range\n");
790 if (clock->n < limit->n.min || limit->n.max < clock->n)
791 INTELPllInvalid ("n out of range\n");
792 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
793 INTELPllInvalid ("vco out of range\n");
794 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
795 * connector, etc., rather than just a single range.
796 */
797 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
798 INTELPllInvalid ("dot out of range\n");
799
800 return true;
801}
802
Ma Lingd4906092009-03-18 20:13:27 +0800803static bool
804intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
805 int target, int refclk, intel_clock_t *best_clock)
806
Jesse Barnes79e53942008-11-07 14:24:08 -0800807{
808 struct drm_device *dev = crtc->dev;
809 struct drm_i915_private *dev_priv = dev->dev_private;
810 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800811 int err = target;
812
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200813 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800814 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800815 /*
816 * For LVDS, if the panel is on, just rely on its current
817 * settings for dual-channel. We haven't figured out how to
818 * reliably set up different single/dual channel state, if we
819 * even can.
820 */
821 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
822 LVDS_CLKB_POWER_UP)
823 clock.p2 = limit->p2.p2_fast;
824 else
825 clock.p2 = limit->p2.p2_slow;
826 } else {
827 if (target < limit->p2.dot_limit)
828 clock.p2 = limit->p2.p2_slow;
829 else
830 clock.p2 = limit->p2.p2_fast;
831 }
832
833 memset (best_clock, 0, sizeof (*best_clock));
834
Zhao Yakui42158662009-11-20 11:24:18 +0800835 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
836 clock.m1++) {
837 for (clock.m2 = limit->m2.min;
838 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500839 /* m1 is always 0 in Pineview */
840 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800841 break;
842 for (clock.n = limit->n.min;
843 clock.n <= limit->n.max; clock.n++) {
844 for (clock.p1 = limit->p1.min;
845 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800846 int this_err;
847
Shaohua Li21778322009-02-23 15:19:16 +0800848 intel_clock(dev, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800849
850 if (!intel_PLL_is_valid(crtc, &clock))
851 continue;
852
853 this_err = abs(clock.dot - target);
854 if (this_err < err) {
855 *best_clock = clock;
856 err = this_err;
857 }
858 }
859 }
860 }
861 }
862
863 return (err != target);
864}
865
Ma Lingd4906092009-03-18 20:13:27 +0800866static bool
867intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
868 int target, int refclk, intel_clock_t *best_clock)
869{
870 struct drm_device *dev = crtc->dev;
871 struct drm_i915_private *dev_priv = dev->dev_private;
872 intel_clock_t clock;
873 int max_n;
874 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400875 /* approximately equals target * 0.00585 */
876 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800877 found = false;
878
879 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800880 int lvds_reg;
881
Eric Anholtc619eed2010-01-28 16:45:52 -0800882 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800883 lvds_reg = PCH_LVDS;
884 else
885 lvds_reg = LVDS;
886 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800887 LVDS_CLKB_POWER_UP)
888 clock.p2 = limit->p2.p2_fast;
889 else
890 clock.p2 = limit->p2.p2_slow;
891 } else {
892 if (target < limit->p2.dot_limit)
893 clock.p2 = limit->p2.p2_slow;
894 else
895 clock.p2 = limit->p2.p2_fast;
896 }
897
898 memset(best_clock, 0, sizeof(*best_clock));
899 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200900 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800901 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200902 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800903 for (clock.m1 = limit->m1.max;
904 clock.m1 >= limit->m1.min; clock.m1--) {
905 for (clock.m2 = limit->m2.max;
906 clock.m2 >= limit->m2.min; clock.m2--) {
907 for (clock.p1 = limit->p1.max;
908 clock.p1 >= limit->p1.min; clock.p1--) {
909 int this_err;
910
Shaohua Li21778322009-02-23 15:19:16 +0800911 intel_clock(dev, refclk, &clock);
Ma Lingd4906092009-03-18 20:13:27 +0800912 if (!intel_PLL_is_valid(crtc, &clock))
913 continue;
914 this_err = abs(clock.dot - target) ;
915 if (this_err < err_most) {
916 *best_clock = clock;
917 err_most = this_err;
918 max_n = clock.n;
919 found = true;
920 }
921 }
922 }
923 }
924 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800925 return found;
926}
Ma Lingd4906092009-03-18 20:13:27 +0800927
Zhenyu Wang2c072452009-06-05 15:38:42 +0800928static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500929intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
930 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800931{
932 struct drm_device *dev = crtc->dev;
933 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800934
935 /* return directly when it is eDP */
936 if (HAS_eDP)
937 return true;
938
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800939 if (target < 200000) {
940 clock.n = 1;
941 clock.p1 = 2;
942 clock.p2 = 10;
943 clock.m1 = 12;
944 clock.m2 = 9;
945 } else {
946 clock.n = 2;
947 clock.p1 = 1;
948 clock.p2 = 10;
949 clock.m1 = 14;
950 clock.m2 = 8;
951 }
952 intel_clock(dev, refclk, &clock);
953 memcpy(best_clock, &clock, sizeof(intel_clock_t));
954 return true;
955}
956
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700957/* DisplayPort has only two frequencies, 162MHz and 270MHz */
958static bool
959intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
960 int target, int refclk, intel_clock_t *best_clock)
961{
Chris Wilson5eddb702010-09-11 13:48:45 +0100962 intel_clock_t clock;
963 if (target < 200000) {
964 clock.p1 = 2;
965 clock.p2 = 10;
966 clock.n = 2;
967 clock.m1 = 23;
968 clock.m2 = 8;
969 } else {
970 clock.p1 = 1;
971 clock.p2 = 10;
972 clock.n = 1;
973 clock.m1 = 14;
974 clock.m2 = 2;
975 }
976 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
977 clock.p = (clock.p1 * clock.p2);
978 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
979 clock.vco = 0;
980 memcpy(best_clock, &clock, sizeof(intel_clock_t));
981 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700982}
983
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700984/**
985 * intel_wait_for_vblank - wait for vblank on a given pipe
986 * @dev: drm device
987 * @pipe: pipe to wait for
988 *
989 * Wait for vblank to occur on a given pipe. Needed for various bits of
990 * mode setting code.
991 */
992void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800993{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700994 struct drm_i915_private *dev_priv = dev->dev_private;
995 int pipestat_reg = (pipe == 0 ? PIPEASTAT : PIPEBSTAT);
996
Chris Wilson300387c2010-09-05 20:25:43 +0100997 /* Clear existing vblank status. Note this will clear any other
998 * sticky status fields as well.
999 *
1000 * This races with i915_driver_irq_handler() with the result
1001 * that either function could miss a vblank event. Here it is not
1002 * fatal, as we will either wait upon the next vblank interrupt or
1003 * timeout. Generally speaking intel_wait_for_vblank() is only
1004 * called during modeset at which time the GPU should be idle and
1005 * should *not* be performing page flips and thus not waiting on
1006 * vblanks...
1007 * Currently, the result of us stealing a vblank from the irq
1008 * handler is that a single frame will be skipped during swapbuffers.
1009 */
1010 I915_WRITE(pipestat_reg,
1011 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
1012
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001013 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +01001014 if (wait_for(I915_READ(pipestat_reg) &
1015 PIPE_VBLANK_INTERRUPT_STATUS,
1016 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001017 DRM_DEBUG_KMS("vblank wait timed out\n");
1018}
1019
1020/**
1021 * intel_wait_for_vblank_off - wait for vblank after disabling a pipe
1022 * @dev: drm device
1023 * @pipe: pipe to wait for
1024 *
1025 * After disabling a pipe, we can't wait for vblank in the usual way,
1026 * spinning on the vblank interrupt status bit, since we won't actually
1027 * see an interrupt when the pipe is disabled.
1028 *
1029 * So this function waits for the display line value to settle (it
1030 * usually ends up stopping at the start of the next frame).
1031 */
1032void intel_wait_for_vblank_off(struct drm_device *dev, int pipe)
1033{
1034 struct drm_i915_private *dev_priv = dev->dev_private;
1035 int pipedsl_reg = (pipe == 0 ? PIPEADSL : PIPEBDSL);
1036 unsigned long timeout = jiffies + msecs_to_jiffies(100);
Chris Wilsonec5da012010-09-12 13:34:08 +01001037 u32 last_line, line;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001038
1039 /* Wait for the display line to settle */
Chris Wilsonec5da012010-09-12 13:34:08 +01001040 line = I915_READ(pipedsl_reg) & DSL_LINEMASK;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001041 do {
Chris Wilsonec5da012010-09-12 13:34:08 +01001042 last_line = line;
1043 MSLEEP(5);
1044 line = I915_READ(pipedsl_reg) & DSL_LINEMASK;
1045 } while (line != last_line && time_after(timeout, jiffies));
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001046
Chris Wilsonec5da012010-09-12 13:34:08 +01001047 if (line != last_line)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001048 DRM_DEBUG_KMS("vblank wait timed out\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08001049}
1050
Jesse Barnes80824002009-09-10 15:28:06 -07001051static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1052{
1053 struct drm_device *dev = crtc->dev;
1054 struct drm_i915_private *dev_priv = dev->dev_private;
1055 struct drm_framebuffer *fb = crtc->fb;
1056 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001057 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes80824002009-09-10 15:28:06 -07001058 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1059 int plane, i;
1060 u32 fbc_ctl, fbc_ctl2;
1061
Chris Wilsonbed4a672010-09-11 10:47:47 +01001062 if (fb->pitch == dev_priv->cfb_pitch &&
1063 obj_priv->fence_reg == dev_priv->cfb_fence &&
1064 intel_crtc->plane == dev_priv->cfb_plane &&
1065 I915_READ(FBC_CONTROL) & FBC_CTL_EN)
1066 return;
1067
1068 i8xx_disable_fbc(dev);
1069
Jesse Barnes80824002009-09-10 15:28:06 -07001070 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
1071
1072 if (fb->pitch < dev_priv->cfb_pitch)
1073 dev_priv->cfb_pitch = fb->pitch;
1074
1075 /* FBC_CTL wants 64B units */
1076 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1077 dev_priv->cfb_fence = obj_priv->fence_reg;
1078 dev_priv->cfb_plane = intel_crtc->plane;
1079 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1080
1081 /* Clear old tags */
1082 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1083 I915_WRITE(FBC_TAG + (i * 4), 0);
1084
1085 /* Set it up... */
1086 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
1087 if (obj_priv->tiling_mode != I915_TILING_NONE)
1088 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1089 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1090 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1091
1092 /* enable it... */
1093 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
Jesse Barnesee25df22010-02-06 10:41:53 -08001094 if (IS_I945GM(dev))
Priit Laes49677902010-03-02 11:37:00 +02001095 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
Jesse Barnes80824002009-09-10 15:28:06 -07001096 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1097 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
1098 if (obj_priv->tiling_mode != I915_TILING_NONE)
1099 fbc_ctl |= dev_priv->cfb_fence;
1100 I915_WRITE(FBC_CONTROL, fbc_ctl);
1101
Zhao Yakui28c97732009-10-09 11:39:41 +08001102 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Chris Wilson5eddb702010-09-11 13:48:45 +01001103 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
Jesse Barnes80824002009-09-10 15:28:06 -07001104}
1105
1106void i8xx_disable_fbc(struct drm_device *dev)
1107{
1108 struct drm_i915_private *dev_priv = dev->dev_private;
1109 u32 fbc_ctl;
1110
1111 /* Disable compression */
1112 fbc_ctl = I915_READ(FBC_CONTROL);
1113 fbc_ctl &= ~FBC_CTL_EN;
1114 I915_WRITE(FBC_CONTROL, fbc_ctl);
1115
1116 /* Wait for compressing bit to clear */
Chris Wilson481b6af2010-08-23 17:43:35 +01001117 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
Chris Wilson913d8d12010-08-07 11:01:35 +01001118 DRM_DEBUG_KMS("FBC idle timed out\n");
1119 return;
Jesse Barnes9517a922010-05-21 09:40:45 -07001120 }
Jesse Barnes80824002009-09-10 15:28:06 -07001121
Zhao Yakui28c97732009-10-09 11:39:41 +08001122 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001123}
1124
Adam Jacksonee5382a2010-04-23 11:17:39 -04001125static bool i8xx_fbc_enabled(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001126{
Jesse Barnes80824002009-09-10 15:28:06 -07001127 struct drm_i915_private *dev_priv = dev->dev_private;
1128
1129 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1130}
1131
Jesse Barnes74dff282009-09-14 15:39:40 -07001132static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1133{
1134 struct drm_device *dev = crtc->dev;
1135 struct drm_i915_private *dev_priv = dev->dev_private;
1136 struct drm_framebuffer *fb = crtc->fb;
1137 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001138 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
Jesse Barnes74dff282009-09-14 15:39:40 -07001139 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5eddb702010-09-11 13:48:45 +01001140 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Jesse Barnes74dff282009-09-14 15:39:40 -07001141 unsigned long stall_watermark = 200;
1142 u32 dpfc_ctl;
1143
Chris Wilsonbed4a672010-09-11 10:47:47 +01001144 dpfc_ctl = I915_READ(DPFC_CONTROL);
1145 if (dpfc_ctl & DPFC_CTL_EN) {
1146 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
1147 dev_priv->cfb_fence == obj_priv->fence_reg &&
1148 dev_priv->cfb_plane == intel_crtc->plane &&
1149 dev_priv->cfb_y == crtc->y)
1150 return;
1151
1152 I915_WRITE(DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1153 POSTING_READ(DPFC_CONTROL);
1154 intel_wait_for_vblank(dev, intel_crtc->pipe);
1155 }
1156
Jesse Barnes74dff282009-09-14 15:39:40 -07001157 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1158 dev_priv->cfb_fence = obj_priv->fence_reg;
1159 dev_priv->cfb_plane = intel_crtc->plane;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001160 dev_priv->cfb_y = crtc->y;
Jesse Barnes74dff282009-09-14 15:39:40 -07001161
1162 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
1163 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1164 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1165 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1166 } else {
1167 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1168 }
1169
Jesse Barnes74dff282009-09-14 15:39:40 -07001170 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1171 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1172 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1173 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1174
1175 /* enable it... */
1176 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1177
Zhao Yakui28c97732009-10-09 11:39:41 +08001178 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001179}
1180
1181void g4x_disable_fbc(struct drm_device *dev)
1182{
1183 struct drm_i915_private *dev_priv = dev->dev_private;
1184 u32 dpfc_ctl;
1185
1186 /* Disable compression */
1187 dpfc_ctl = I915_READ(DPFC_CONTROL);
Chris Wilsonbed4a672010-09-11 10:47:47 +01001188 if (dpfc_ctl & DPFC_CTL_EN) {
1189 dpfc_ctl &= ~DPFC_CTL_EN;
1190 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
Jesse Barnes74dff282009-09-14 15:39:40 -07001191
Chris Wilsonbed4a672010-09-11 10:47:47 +01001192 DRM_DEBUG_KMS("disabled FBC\n");
1193 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001194}
1195
Adam Jacksonee5382a2010-04-23 11:17:39 -04001196static bool g4x_fbc_enabled(struct drm_device *dev)
Jesse Barnes74dff282009-09-14 15:39:40 -07001197{
Jesse Barnes74dff282009-09-14 15:39:40 -07001198 struct drm_i915_private *dev_priv = dev->dev_private;
1199
1200 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1201}
1202
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001203static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1204{
1205 struct drm_device *dev = crtc->dev;
1206 struct drm_i915_private *dev_priv = dev->dev_private;
1207 struct drm_framebuffer *fb = crtc->fb;
1208 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
1209 struct drm_i915_gem_object *obj_priv = to_intel_bo(intel_fb->obj);
1210 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5eddb702010-09-11 13:48:45 +01001211 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001212 unsigned long stall_watermark = 200;
1213 u32 dpfc_ctl;
1214
Chris Wilsonbed4a672010-09-11 10:47:47 +01001215 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
1216 if (dpfc_ctl & DPFC_CTL_EN) {
1217 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
1218 dev_priv->cfb_fence == obj_priv->fence_reg &&
1219 dev_priv->cfb_plane == intel_crtc->plane &&
1220 dev_priv->cfb_offset == obj_priv->gtt_offset &&
1221 dev_priv->cfb_y == crtc->y)
1222 return;
1223
1224 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1225 POSTING_READ(ILK_DPFC_CONTROL);
1226 intel_wait_for_vblank(dev, intel_crtc->pipe);
1227 }
1228
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001229 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1230 dev_priv->cfb_fence = obj_priv->fence_reg;
1231 dev_priv->cfb_plane = intel_crtc->plane;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001232 dev_priv->cfb_offset = obj_priv->gtt_offset;
1233 dev_priv->cfb_y = crtc->y;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001234
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001235 dpfc_ctl &= DPFC_RESERVED;
1236 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
1237 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1238 dpfc_ctl |= (DPFC_CTL_FENCE_EN | dev_priv->cfb_fence);
1239 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
1240 } else {
1241 I915_WRITE(ILK_DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1242 }
1243
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001244 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1245 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1246 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1247 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
1248 I915_WRITE(ILK_FBC_RT_BASE, obj_priv->gtt_offset | ILK_FBC_RT_VALID);
1249 /* enable it... */
Chris Wilsonbed4a672010-09-11 10:47:47 +01001250 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001251
1252 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
1253}
1254
1255void ironlake_disable_fbc(struct drm_device *dev)
1256{
1257 struct drm_i915_private *dev_priv = dev->dev_private;
1258 u32 dpfc_ctl;
1259
1260 /* Disable compression */
1261 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
Chris Wilsonbed4a672010-09-11 10:47:47 +01001262 if (dpfc_ctl & DPFC_CTL_EN) {
1263 dpfc_ctl &= ~DPFC_CTL_EN;
1264 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001265
Chris Wilsonbed4a672010-09-11 10:47:47 +01001266 DRM_DEBUG_KMS("disabled FBC\n");
1267 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08001268}
1269
1270static bool ironlake_fbc_enabled(struct drm_device *dev)
1271{
1272 struct drm_i915_private *dev_priv = dev->dev_private;
1273
1274 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
1275}
1276
Adam Jacksonee5382a2010-04-23 11:17:39 -04001277bool intel_fbc_enabled(struct drm_device *dev)
1278{
1279 struct drm_i915_private *dev_priv = dev->dev_private;
1280
1281 if (!dev_priv->display.fbc_enabled)
1282 return false;
1283
1284 return dev_priv->display.fbc_enabled(dev);
1285}
1286
1287void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1288{
1289 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1290
1291 if (!dev_priv->display.enable_fbc)
1292 return;
1293
1294 dev_priv->display.enable_fbc(crtc, interval);
1295}
1296
1297void intel_disable_fbc(struct drm_device *dev)
1298{
1299 struct drm_i915_private *dev_priv = dev->dev_private;
1300
1301 if (!dev_priv->display.disable_fbc)
1302 return;
1303
1304 dev_priv->display.disable_fbc(dev);
1305}
1306
Jesse Barnes80824002009-09-10 15:28:06 -07001307/**
1308 * intel_update_fbc - enable/disable FBC as needed
Chris Wilsonbed4a672010-09-11 10:47:47 +01001309 * @dev: the drm_device
Jesse Barnes80824002009-09-10 15:28:06 -07001310 *
1311 * Set up the framebuffer compression hardware at mode set time. We
1312 * enable it if possible:
1313 * - plane A only (on pre-965)
1314 * - no pixel mulitply/line duplication
1315 * - no alpha buffer discard
1316 * - no dual wide
1317 * - framebuffer <= 2048 in width, 1536 in height
1318 *
1319 * We can't assume that any compression will take place (worst case),
1320 * so the compressed buffer has to be the same size as the uncompressed
1321 * one. It also must reside (along with the line length buffer) in
1322 * stolen memory.
1323 *
1324 * We need to enable/disable FBC on a global basis.
1325 */
Chris Wilsonbed4a672010-09-11 10:47:47 +01001326static void intel_update_fbc(struct drm_device *dev)
Jesse Barnes80824002009-09-10 15:28:06 -07001327{
Jesse Barnes80824002009-09-10 15:28:06 -07001328 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbed4a672010-09-11 10:47:47 +01001329 struct drm_crtc *crtc = NULL, *tmp_crtc;
1330 struct intel_crtc *intel_crtc;
1331 struct drm_framebuffer *fb;
Jesse Barnes80824002009-09-10 15:28:06 -07001332 struct intel_framebuffer *intel_fb;
1333 struct drm_i915_gem_object *obj_priv;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001334
1335 DRM_DEBUG_KMS("\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001336
1337 if (!i915_powersave)
1338 return;
1339
Adam Jacksonee5382a2010-04-23 11:17:39 -04001340 if (!I915_HAS_FBC(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07001341 return;
1342
Jesse Barnes80824002009-09-10 15:28:06 -07001343 /*
1344 * If FBC is already on, we just have to verify that we can
1345 * keep it that way...
1346 * Need to disable if:
Jesse Barnes9c928d12010-07-23 15:20:00 -07001347 * - more than one pipe is active
Jesse Barnes80824002009-09-10 15:28:06 -07001348 * - changing FBC params (stride, fence, mode)
1349 * - new fb is too large to fit in compressed buffer
1350 * - going to an unsupported config (interlace, pixel multiply, etc.)
1351 */
Jesse Barnes9c928d12010-07-23 15:20:00 -07001352 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001353 if (tmp_crtc->enabled) {
1354 if (crtc) {
1355 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
1356 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
1357 goto out_disable;
1358 }
1359 crtc = tmp_crtc;
1360 }
Jesse Barnes9c928d12010-07-23 15:20:00 -07001361 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001362
1363 if (!crtc || crtc->fb == NULL) {
1364 DRM_DEBUG_KMS("no output, disabling\n");
1365 dev_priv->no_fbc_reason = FBC_NO_OUTPUT;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001366 goto out_disable;
1367 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001368
1369 intel_crtc = to_intel_crtc(crtc);
1370 fb = crtc->fb;
1371 intel_fb = to_intel_framebuffer(fb);
1372 obj_priv = to_intel_bo(intel_fb->obj);
1373
Jesse Barnes80824002009-09-10 15:28:06 -07001374 if (intel_fb->obj->size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001375 DRM_DEBUG_KMS("framebuffer too large, disabling "
Chris Wilson5eddb702010-09-11 13:48:45 +01001376 "compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001377 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
Jesse Barnes80824002009-09-10 15:28:06 -07001378 goto out_disable;
1379 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001380 if ((crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) ||
1381 (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001382 DRM_DEBUG_KMS("mode incompatible with compression, "
Chris Wilson5eddb702010-09-11 13:48:45 +01001383 "disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001384 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
Jesse Barnes80824002009-09-10 15:28:06 -07001385 goto out_disable;
1386 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001387 if ((crtc->mode.hdisplay > 2048) ||
1388 (crtc->mode.vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001389 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001390 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
Jesse Barnes80824002009-09-10 15:28:06 -07001391 goto out_disable;
1392 }
Chris Wilsonbed4a672010-09-11 10:47:47 +01001393 if ((IS_I915GM(dev) || IS_I945GM(dev)) && intel_crtc->plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001394 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001395 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
Jesse Barnes80824002009-09-10 15:28:06 -07001396 goto out_disable;
1397 }
1398 if (obj_priv->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001399 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001400 dev_priv->no_fbc_reason = FBC_NOT_TILED;
Jesse Barnes80824002009-09-10 15:28:06 -07001401 goto out_disable;
1402 }
1403
Jason Wesselc924b932010-08-05 09:22:32 -05001404 /* If the kernel debugger is active, always disable compression */
1405 if (in_dbg_master())
1406 goto out_disable;
1407
Chris Wilsonbed4a672010-09-11 10:47:47 +01001408 intel_enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001409 return;
1410
1411out_disable:
Jesse Barnes80824002009-09-10 15:28:06 -07001412 /* Multiple disables should be harmless */
Chris Wilsona9394062010-05-27 13:18:16 +01001413 if (intel_fbc_enabled(dev)) {
1414 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Adam Jacksonee5382a2010-04-23 11:17:39 -04001415 intel_disable_fbc(dev);
Chris Wilsona9394062010-05-27 13:18:16 +01001416 }
Jesse Barnes80824002009-09-10 15:28:06 -07001417}
1418
Chris Wilson127bd2a2010-07-23 23:32:05 +01001419int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001420intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj)
1421{
Daniel Vetter23010e42010-03-08 13:35:02 +01001422 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001423 u32 alignment;
1424 int ret;
1425
1426 switch (obj_priv->tiling_mode) {
1427 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001428 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1429 alignment = 128 * 1024;
1430 else if (IS_I965G(dev))
1431 alignment = 4 * 1024;
1432 else
1433 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001434 break;
1435 case I915_TILING_X:
1436 /* pin() will align the object as required by fence */
1437 alignment = 0;
1438 break;
1439 case I915_TILING_Y:
1440 /* FIXME: Is this true? */
1441 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1442 return -EINVAL;
1443 default:
1444 BUG();
1445 }
1446
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001447 ret = i915_gem_object_pin(obj, alignment);
1448 if (ret != 0)
1449 return ret;
1450
1451 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1452 * fence, whereas 965+ only requires a fence if using
1453 * framebuffer compression. For simplicity, we always install
1454 * a fence as the cost is not that onerous.
1455 */
1456 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
1457 obj_priv->tiling_mode != I915_TILING_NONE) {
1458 ret = i915_gem_object_get_fence_reg(obj);
1459 if (ret != 0) {
1460 i915_gem_object_unpin(obj);
1461 return ret;
1462 }
1463 }
1464
1465 return 0;
1466}
1467
Jesse Barnes81255562010-08-02 12:07:50 -07001468/* Assume fb object is pinned & idle & fenced and just update base pointers */
1469static int
1470intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1471 int x, int y)
1472{
1473 struct drm_device *dev = crtc->dev;
1474 struct drm_i915_private *dev_priv = dev->dev_private;
1475 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1476 struct intel_framebuffer *intel_fb;
1477 struct drm_i915_gem_object *obj_priv;
1478 struct drm_gem_object *obj;
1479 int plane = intel_crtc->plane;
1480 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001481 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001482 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001483
1484 switch (plane) {
1485 case 0:
1486 case 1:
1487 break;
1488 default:
1489 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1490 return -EINVAL;
1491 }
1492
1493 intel_fb = to_intel_framebuffer(fb);
1494 obj = intel_fb->obj;
1495 obj_priv = to_intel_bo(obj);
1496
Chris Wilson5eddb702010-09-11 13:48:45 +01001497 reg = DSPCNTR(plane);
1498 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001499 /* Mask out pixel format bits in case we change it */
1500 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1501 switch (fb->bits_per_pixel) {
1502 case 8:
1503 dspcntr |= DISPPLANE_8BPP;
1504 break;
1505 case 16:
1506 if (fb->depth == 15)
1507 dspcntr |= DISPPLANE_15_16BPP;
1508 else
1509 dspcntr |= DISPPLANE_16BPP;
1510 break;
1511 case 24:
1512 case 32:
1513 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1514 break;
1515 default:
1516 DRM_ERROR("Unknown color depth\n");
1517 return -EINVAL;
1518 }
1519 if (IS_I965G(dev)) {
1520 if (obj_priv->tiling_mode != I915_TILING_NONE)
1521 dspcntr |= DISPPLANE_TILED;
1522 else
1523 dspcntr &= ~DISPPLANE_TILED;
1524 }
1525
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001526 if (HAS_PCH_SPLIT(dev))
Jesse Barnes81255562010-08-02 12:07:50 -07001527 /* must disable */
1528 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1529
Chris Wilson5eddb702010-09-11 13:48:45 +01001530 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001531
1532 Start = obj_priv->gtt_offset;
1533 Offset = y * fb->pitch + x * (fb->bits_per_pixel / 8);
1534
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001535 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
1536 Start, Offset, x, y, fb->pitch);
Chris Wilson5eddb702010-09-11 13:48:45 +01001537 I915_WRITE(DSPSTRIDE(plane), fb->pitch);
Jesse Barnes81255562010-08-02 12:07:50 -07001538 if (IS_I965G(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001539 I915_WRITE(DSPSURF(plane), Start);
1540 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1541 I915_WRITE(DSPADDR(plane), Offset);
1542 } else
1543 I915_WRITE(DSPADDR(plane), Start + Offset);
1544 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001545
Chris Wilsonbed4a672010-09-11 10:47:47 +01001546 intel_update_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02001547 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07001548
1549 return 0;
1550}
1551
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001552static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001553intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1554 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001555{
1556 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08001557 struct drm_i915_master_private *master_priv;
1558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1559 struct intel_framebuffer *intel_fb;
1560 struct drm_i915_gem_object *obj_priv;
1561 struct drm_gem_object *obj;
1562 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001563 int plane = intel_crtc->plane;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001564 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001565
1566 /* no fb bound */
1567 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001568 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001569 return 0;
1570 }
1571
Jesse Barnes80824002009-09-10 15:28:06 -07001572 switch (plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001573 case 0:
1574 case 1:
1575 break;
1576 default:
Jesse Barnes80824002009-09-10 15:28:06 -07001577 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001578 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001579 }
1580
1581 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08001582 obj = intel_fb->obj;
Daniel Vetter23010e42010-03-08 13:35:02 +01001583 obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08001584
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001585 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001586 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001587 if (ret != 0) {
1588 mutex_unlock(&dev->struct_mutex);
1589 return ret;
1590 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001591
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08001592 ret = i915_gem_object_set_to_display_plane(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001593 if (ret != 0) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001594 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001595 mutex_unlock(&dev->struct_mutex);
1596 return ret;
1597 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001598
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001599 ret = intel_pipe_set_base_atomic(crtc, crtc->fb, x, y);
1600 if (ret) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001601 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001602 mutex_unlock(&dev->struct_mutex);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001603 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001604 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001605
1606 if (old_fb) {
1607 intel_fb = to_intel_framebuffer(old_fb);
Daniel Vetter23010e42010-03-08 13:35:02 +01001608 obj_priv = to_intel_bo(intel_fb->obj);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001609 i915_gem_object_unpin(intel_fb->obj);
1610 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001611
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001612 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001613
1614 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001615 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001616
1617 master_priv = dev->primary->master->driver_priv;
1618 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001619 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001620
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001621 if (pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001622 master_priv->sarea_priv->pipeB_x = x;
1623 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001624 } else {
1625 master_priv->sarea_priv->pipeA_x = x;
1626 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001627 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001628
1629 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001630}
1631
Chris Wilson5eddb702010-09-11 13:48:45 +01001632static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001633{
1634 struct drm_device *dev = crtc->dev;
1635 struct drm_i915_private *dev_priv = dev->dev_private;
1636 u32 dpa_ctl;
1637
Zhao Yakui28c97732009-10-09 11:39:41 +08001638 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001639 dpa_ctl = I915_READ(DP_A);
1640 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1641
1642 if (clock < 200000) {
1643 u32 temp;
1644 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1645 /* workaround for 160Mhz:
1646 1) program 0x4600c bits 15:0 = 0x8124
1647 2) program 0x46010 bit 0 = 1
1648 3) program 0x46034 bit 24 = 1
1649 4) program 0x64000 bit 14 = 1
1650 */
1651 temp = I915_READ(0x4600c);
1652 temp &= 0xffff0000;
1653 I915_WRITE(0x4600c, temp | 0x8124);
1654
1655 temp = I915_READ(0x46010);
1656 I915_WRITE(0x46010, temp | 1);
1657
1658 temp = I915_READ(0x46034);
1659 I915_WRITE(0x46034, temp | (1 << 24));
1660 } else {
1661 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1662 }
1663 I915_WRITE(DP_A, dpa_ctl);
1664
Chris Wilson5eddb702010-09-11 13:48:45 +01001665 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001666 udelay(500);
1667}
1668
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001669/* The FDI link training functions for ILK/Ibexpeak. */
1670static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1671{
1672 struct drm_device *dev = crtc->dev;
1673 struct drm_i915_private *dev_priv = dev->dev_private;
1674 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1675 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01001676 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001677
Adam Jacksone1a44742010-06-25 15:32:14 -04001678 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1679 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01001680 reg = FDI_RX_IMR(pipe);
1681 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001682 temp &= ~FDI_RX_SYMBOL_LOCK;
1683 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01001684 I915_WRITE(reg, temp);
1685 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001686 udelay(150);
1687
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001688 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01001689 reg = FDI_TX_CTL(pipe);
1690 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04001691 temp &= ~(7 << 19);
1692 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001693 temp &= ~FDI_LINK_TRAIN_NONE;
1694 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01001695 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001696
Chris Wilson5eddb702010-09-11 13:48:45 +01001697 reg = FDI_RX_CTL(pipe);
1698 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001699 temp &= ~FDI_LINK_TRAIN_NONE;
1700 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01001701 I915_WRITE(reg, temp | FDI_RX_ENABLE);
1702
1703 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001704 udelay(150);
1705
Chris Wilson5eddb702010-09-11 13:48:45 +01001706 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04001707 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001708 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001709 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1710
1711 if ((temp & FDI_RX_BIT_LOCK)) {
1712 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01001713 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001714 break;
1715 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001716 }
Adam Jacksone1a44742010-06-25 15:32:14 -04001717 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01001718 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001719
1720 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01001721 reg = FDI_TX_CTL(pipe);
1722 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001723 temp &= ~FDI_LINK_TRAIN_NONE;
1724 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01001725 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001726
Chris Wilson5eddb702010-09-11 13:48:45 +01001727 reg = FDI_RX_CTL(pipe);
1728 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001729 temp &= ~FDI_LINK_TRAIN_NONE;
1730 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01001731 I915_WRITE(reg, temp);
1732
1733 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001734 udelay(150);
1735
Chris Wilson5eddb702010-09-11 13:48:45 +01001736 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04001737 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001738 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001739 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1740
1741 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001742 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001743 DRM_DEBUG_KMS("FDI train 2 done.\n");
1744 break;
1745 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001746 }
Adam Jacksone1a44742010-06-25 15:32:14 -04001747 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01001748 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001749
1750 DRM_DEBUG_KMS("FDI train done\n");
1751}
1752
Chris Wilson5eddb702010-09-11 13:48:45 +01001753static const int const snb_b_fdi_train_param [] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001754 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1755 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1756 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1757 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1758};
1759
1760/* The FDI link training functions for SNB/Cougarpoint. */
1761static void gen6_fdi_link_train(struct drm_crtc *crtc)
1762{
1763 struct drm_device *dev = crtc->dev;
1764 struct drm_i915_private *dev_priv = dev->dev_private;
1765 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1766 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01001767 u32 reg, temp, i;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001768
Adam Jacksone1a44742010-06-25 15:32:14 -04001769 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1770 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01001771 reg = FDI_RX_IMR(pipe);
1772 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001773 temp &= ~FDI_RX_SYMBOL_LOCK;
1774 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01001775 I915_WRITE(reg, temp);
1776
1777 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04001778 udelay(150);
1779
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001780 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01001781 reg = FDI_TX_CTL(pipe);
1782 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04001783 temp &= ~(7 << 19);
1784 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001785 temp &= ~FDI_LINK_TRAIN_NONE;
1786 temp |= FDI_LINK_TRAIN_PATTERN_1;
1787 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1788 /* SNB-B */
1789 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01001790 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001791
Chris Wilson5eddb702010-09-11 13:48:45 +01001792 reg = FDI_RX_CTL(pipe);
1793 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001794 if (HAS_PCH_CPT(dev)) {
1795 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1796 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1797 } else {
1798 temp &= ~FDI_LINK_TRAIN_NONE;
1799 temp |= FDI_LINK_TRAIN_PATTERN_1;
1800 }
Chris Wilson5eddb702010-09-11 13:48:45 +01001801 I915_WRITE(reg, temp | FDI_RX_ENABLE);
1802
1803 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001804 udelay(150);
1805
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001806 for (i = 0; i < 4; i++ ) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001807 reg = FDI_TX_CTL(pipe);
1808 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001809 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1810 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01001811 I915_WRITE(reg, temp);
1812
1813 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001814 udelay(500);
1815
Chris Wilson5eddb702010-09-11 13:48:45 +01001816 reg = FDI_RX_IIR(pipe);
1817 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001818 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1819
1820 if (temp & FDI_RX_BIT_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001821 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001822 DRM_DEBUG_KMS("FDI train 1 done.\n");
1823 break;
1824 }
1825 }
1826 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01001827 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001828
1829 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01001830 reg = FDI_TX_CTL(pipe);
1831 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001832 temp &= ~FDI_LINK_TRAIN_NONE;
1833 temp |= FDI_LINK_TRAIN_PATTERN_2;
1834 if (IS_GEN6(dev)) {
1835 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1836 /* SNB-B */
1837 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1838 }
Chris Wilson5eddb702010-09-11 13:48:45 +01001839 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001840
Chris Wilson5eddb702010-09-11 13:48:45 +01001841 reg = FDI_RX_CTL(pipe);
1842 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001843 if (HAS_PCH_CPT(dev)) {
1844 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1845 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1846 } else {
1847 temp &= ~FDI_LINK_TRAIN_NONE;
1848 temp |= FDI_LINK_TRAIN_PATTERN_2;
1849 }
Chris Wilson5eddb702010-09-11 13:48:45 +01001850 I915_WRITE(reg, temp);
1851
1852 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001853 udelay(150);
1854
1855 for (i = 0; i < 4; i++ ) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001856 reg = FDI_TX_CTL(pipe);
1857 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001858 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1859 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01001860 I915_WRITE(reg, temp);
1861
1862 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001863 udelay(500);
1864
Chris Wilson5eddb702010-09-11 13:48:45 +01001865 reg = FDI_RX_IIR(pipe);
1866 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001867 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1868
1869 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001870 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001871 DRM_DEBUG_KMS("FDI train 2 done.\n");
1872 break;
1873 }
1874 }
1875 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01001876 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08001877
1878 DRM_DEBUG_KMS("FDI train done.\n");
1879}
1880
Jesse Barnes0e23b992010-09-10 11:10:00 -07001881static void ironlake_fdi_enable(struct drm_crtc *crtc)
1882{
1883 struct drm_device *dev = crtc->dev;
1884 struct drm_i915_private *dev_priv = dev->dev_private;
1885 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1886 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01001887 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07001888
Jesse Barnesc64e3112010-09-10 11:27:03 -07001889 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01001890 I915_WRITE(FDI_RX_TUSIZE1(pipe),
1891 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07001892
Jesse Barnes0e23b992010-09-10 11:10:00 -07001893 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01001894 reg = FDI_RX_CTL(pipe);
1895 temp = I915_READ(reg);
1896 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07001897 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01001898 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
1899 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
1900
1901 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001902 udelay(200);
1903
1904 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01001905 temp = I915_READ(reg);
1906 I915_WRITE(reg, temp | FDI_PCDCLK);
1907
1908 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001909 udelay(200);
1910
1911 /* Enable CPU FDI TX PLL, always on for Ironlake */
Chris Wilson5eddb702010-09-11 13:48:45 +01001912 reg = FDI_TX_CTL(pipe);
1913 temp = I915_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001914 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001915 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
1916
1917 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07001918 udelay(100);
1919 }
1920}
1921
Chris Wilson5eddb702010-09-11 13:48:45 +01001922static void intel_flush_display_plane(struct drm_device *dev,
1923 int plane)
1924{
1925 struct drm_i915_private *dev_priv = dev->dev_private;
1926 u32 reg = DSPADDR(plane);
1927 I915_WRITE(reg, I915_READ(reg));
1928}
1929
Chris Wilson6b383a72010-09-13 13:54:26 +01001930/*
1931 * When we disable a pipe, we need to clear any pending scanline wait events
1932 * to avoid hanging the ring, which we assume we are waiting on.
1933 */
1934static void intel_clear_scanline_wait(struct drm_device *dev)
1935{
1936 struct drm_i915_private *dev_priv = dev->dev_private;
1937 u32 tmp;
1938
1939 if (IS_GEN2(dev))
1940 /* Can't break the hang on i8xx */
1941 return;
1942
1943 tmp = I915_READ(PRB0_CTL);
1944 if (tmp & RING_WAIT) {
1945 I915_WRITE(PRB0_CTL, tmp);
1946 POSTING_READ(PRB0_CTL);
1947 }
1948}
1949
Jesse Barnes6be4a602010-09-10 10:26:01 -07001950static void ironlake_crtc_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08001951{
1952 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001953 struct drm_i915_private *dev_priv = dev->dev_private;
1954 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1955 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001956 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01001957 u32 reg, temp;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001958
Chris Wilson6b383a72010-09-13 13:54:26 +01001959 intel_update_watermarks(dev);
1960
Jesse Barnes6be4a602010-09-10 10:26:01 -07001961 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1962 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01001963 if ((temp & LVDS_PORT_EN) == 0)
Jesse Barnes6be4a602010-09-10 10:26:01 -07001964 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
Jesse Barnes6be4a602010-09-10 10:26:01 -07001965 }
1966
Jesse Barnes0e23b992010-09-10 11:10:00 -07001967 ironlake_fdi_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07001968
1969 /* Enable panel fitting for LVDS */
1970 if (dev_priv->pch_pf_size &&
1971 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)
1972 || HAS_eDP || intel_pch_has_edp(crtc))) {
1973 /* Force use of hard-coded filter coefficients
1974 * as some pre-programmed values are broken,
1975 * e.g. x201.
1976 */
1977 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1,
1978 PF_ENABLE | PF_FILTER_MED_3x3);
1979 I915_WRITE(pipe ? PFB_WIN_POS : PFA_WIN_POS,
1980 dev_priv->pch_pf_pos);
1981 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ,
1982 dev_priv->pch_pf_size);
1983 }
1984
1985 /* Enable CPU pipe */
Chris Wilson5eddb702010-09-11 13:48:45 +01001986 reg = PIPECONF(pipe);
1987 temp = I915_READ(reg);
1988 if ((temp & PIPECONF_ENABLE) == 0) {
1989 I915_WRITE(reg, temp | PIPECONF_ENABLE);
1990 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07001991 udelay(100);
1992 }
1993
1994 /* configure and enable CPU plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01001995 reg = DSPCNTR(plane);
1996 temp = I915_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07001997 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01001998 I915_WRITE(reg, temp | DISPLAY_PLANE_ENABLE);
1999 intel_flush_display_plane(dev, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002000 }
2001
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002002 /* For PCH output, training FDI link */
2003 if (IS_GEN6(dev))
2004 gen6_fdi_link_train(crtc);
2005 else
2006 ironlake_fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002007
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002008 /* enable PCH DPLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002009 reg = PCH_DPLL(pipe);
2010 temp = I915_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002011 if ((temp & DPLL_VCO_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002012 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2013 POSTING_READ(reg);
Chris Wilson8c4223b2010-09-10 22:33:42 +01002014 udelay(200);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002015 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002016
2017 if (HAS_PCH_CPT(dev)) {
2018 /* Be sure PCH DPLL SEL is set */
2019 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002020 if (pipe == 0 && (temp & TRANSA_DPLL_ENABLE) == 0)
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002021 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002022 else if (pipe == 1 && (temp & TRANSB_DPLL_ENABLE) == 0)
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002023 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2024 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002025 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002026
Chris Wilson5eddb702010-09-11 13:48:45 +01002027 /* set transcoder timing */
2028 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2029 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2030 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2031
2032 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2033 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2034 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002035
2036 /* enable normal train */
Chris Wilson5eddb702010-09-11 13:48:45 +01002037 reg = FDI_TX_CTL(pipe);
2038 temp = I915_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002039 temp &= ~FDI_LINK_TRAIN_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01002040 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
2041 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002042
Chris Wilson5eddb702010-09-11 13:48:45 +01002043 reg = FDI_RX_CTL(pipe);
2044 temp = I915_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002045 if (HAS_PCH_CPT(dev)) {
2046 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2047 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2048 } else {
2049 temp &= ~FDI_LINK_TRAIN_NONE;
2050 temp |= FDI_LINK_TRAIN_NONE;
2051 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002052 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002053
2054 /* wait one idle pattern time */
Chris Wilson5eddb702010-09-11 13:48:45 +01002055 POSTING_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002056 udelay(100);
2057
2058 /* For PCH DP, enable TRANS_DP_CTL */
2059 if (HAS_PCH_CPT(dev) &&
2060 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002061 reg = TRANS_DP_CTL(pipe);
2062 temp = I915_READ(reg);
2063 temp &= ~(TRANS_DP_PORT_SEL_MASK |
2064 TRANS_DP_SYNC_MASK);
2065 temp |= (TRANS_DP_OUTPUT_ENABLE |
2066 TRANS_DP_ENH_FRAMING);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002067
2068 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002069 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002070 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002071 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002072
2073 switch (intel_trans_dp_port_sel(crtc)) {
2074 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002075 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002076 break;
2077 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002078 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002079 break;
2080 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002081 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002082 break;
2083 default:
2084 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002085 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002086 break;
2087 }
2088
Chris Wilson5eddb702010-09-11 13:48:45 +01002089 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002090 }
2091
2092 /* enable PCH transcoder */
Chris Wilson5eddb702010-09-11 13:48:45 +01002093 reg = TRANSCONF(pipe);
2094 temp = I915_READ(reg);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002095 /*
2096 * make the BPC in transcoder be consistent with
2097 * that in pipeconf reg.
2098 */
2099 temp &= ~PIPE_BPC_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002100 temp |= I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK;
2101 I915_WRITE(reg, temp | TRANS_ENABLE);
2102 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002103 DRM_ERROR("failed to enable transcoder\n");
Jesse Barnes6be4a602010-09-10 10:26:01 -07002104
2105 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002106 intel_update_fbc(dev);
Chris Wilson6b383a72010-09-13 13:54:26 +01002107 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002108}
2109
2110static void ironlake_crtc_disable(struct drm_crtc *crtc)
2111{
2112 struct drm_device *dev = crtc->dev;
2113 struct drm_i915_private *dev_priv = dev->dev_private;
2114 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2115 int pipe = intel_crtc->pipe;
2116 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002117 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002118
2119 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01002120 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01002121
Jesse Barnes6be4a602010-09-10 10:26:01 -07002122 /* Disable display plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002123 reg = DSPCNTR(plane);
2124 temp = I915_READ(reg);
2125 if (temp & DISPLAY_PLANE_ENABLE) {
2126 I915_WRITE(reg, temp & ~DISPLAY_PLANE_ENABLE);
2127 intel_flush_display_plane(dev, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002128 }
2129
2130 if (dev_priv->cfb_plane == plane &&
2131 dev_priv->display.disable_fbc)
2132 dev_priv->display.disable_fbc(dev);
2133
2134 /* disable cpu pipe, disable after all planes disabled */
Chris Wilson5eddb702010-09-11 13:48:45 +01002135 reg = PIPECONF(pipe);
2136 temp = I915_READ(reg);
2137 if (temp & PIPECONF_ENABLE) {
2138 I915_WRITE(reg, temp & ~PIPECONF_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002139 /* wait for cpu pipe off, pipe state */
Chris Wilson5eddb702010-09-11 13:48:45 +01002140 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, 50))
Jesse Barnes6be4a602010-09-10 10:26:01 -07002141 DRM_ERROR("failed to turn off cpu pipe\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002142 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002143
Jesse Barnes6be4a602010-09-10 10:26:01 -07002144 /* Disable PF */
2145 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1, 0);
2146 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ, 0);
2147
2148 /* disable CPU FDI tx and PCH FDI rx */
Chris Wilson5eddb702010-09-11 13:48:45 +01002149 reg = FDI_TX_CTL(pipe);
2150 temp = I915_READ(reg);
2151 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2152 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002153
Chris Wilson5eddb702010-09-11 13:48:45 +01002154 reg = FDI_RX_CTL(pipe);
2155 temp = I915_READ(reg);
2156 temp &= ~(0x7 << 16);
2157 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2158 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002159
Chris Wilson5eddb702010-09-11 13:48:45 +01002160 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002161 udelay(100);
2162
2163 /* still set train pattern 1 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002164 reg = FDI_TX_CTL(pipe);
2165 temp = I915_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002166 temp &= ~FDI_LINK_TRAIN_NONE;
2167 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002168 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002169
Chris Wilson5eddb702010-09-11 13:48:45 +01002170 reg = FDI_RX_CTL(pipe);
2171 temp = I915_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002172 if (HAS_PCH_CPT(dev)) {
2173 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2174 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2175 } else {
2176 temp &= ~FDI_LINK_TRAIN_NONE;
2177 temp |= FDI_LINK_TRAIN_PATTERN_1;
2178 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002179 /* BPC in FDI rx is consistent with that in PIPECONF */
2180 temp &= ~(0x07 << 16);
2181 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2182 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002183
Chris Wilson5eddb702010-09-11 13:48:45 +01002184 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002185 udelay(100);
2186
2187 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2188 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01002189 if (temp & LVDS_PORT_EN) {
2190 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2191 POSTING_READ(PCH_LVDS);
2192 udelay(100);
2193 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002194 }
2195
2196 /* disable PCH transcoder */
Chris Wilson5eddb702010-09-11 13:48:45 +01002197 reg = TRANSCONF(plane);
2198 temp = I915_READ(reg);
2199 if (temp & TRANS_ENABLE) {
2200 I915_WRITE(reg, temp & ~TRANS_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002201 /* wait for PCH transcoder off, transcoder state */
Chris Wilson5eddb702010-09-11 13:48:45 +01002202 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes6be4a602010-09-10 10:26:01 -07002203 DRM_ERROR("failed to disable transcoder\n");
2204 }
2205
Jesse Barnes6be4a602010-09-10 10:26:01 -07002206 if (HAS_PCH_CPT(dev)) {
2207 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002208 reg = TRANS_DP_CTL(pipe);
2209 temp = I915_READ(reg);
2210 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
2211 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002212
2213 /* disable DPLL_SEL */
2214 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01002215 if (pipe == 0)
Jesse Barnes6be4a602010-09-10 10:26:01 -07002216 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2217 else
2218 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2219 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002220 }
2221
2222 /* disable PCH DPLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002223 reg = PCH_DPLL(pipe);
2224 temp = I915_READ(reg);
2225 I915_WRITE(reg, temp & ~DPLL_VCO_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002226
2227 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002228 reg = FDI_RX_CTL(pipe);
2229 temp = I915_READ(reg);
2230 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002231
2232 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002233 reg = FDI_TX_CTL(pipe);
2234 temp = I915_READ(reg);
2235 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2236
2237 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002238 udelay(100);
2239
Chris Wilson5eddb702010-09-11 13:48:45 +01002240 reg = FDI_RX_CTL(pipe);
2241 temp = I915_READ(reg);
2242 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002243
2244 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002245 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002246 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01002247
2248 intel_update_watermarks(dev);
2249 intel_update_fbc(dev);
2250 intel_clear_scanline_wait(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002251}
2252
2253static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
2254{
2255 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2256 int pipe = intel_crtc->pipe;
2257 int plane = intel_crtc->plane;
2258
Zhenyu Wang2c072452009-06-05 15:38:42 +08002259 /* XXX: When our outputs are all unaware of DPMS modes other than off
2260 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2261 */
2262 switch (mode) {
2263 case DRM_MODE_DPMS_ON:
2264 case DRM_MODE_DPMS_STANDBY:
2265 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01002266 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002267 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01002268 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002269
Zhenyu Wang2c072452009-06-05 15:38:42 +08002270 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01002271 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002272 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002273 break;
2274 }
2275}
2276
Daniel Vetter02e792f2009-09-15 22:57:34 +02002277static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2278{
Daniel Vetter02e792f2009-09-15 22:57:34 +02002279 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01002280 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002281
Chris Wilson23f09ce2010-08-12 13:53:37 +01002282 mutex_lock(&dev->struct_mutex);
2283 (void) intel_overlay_switch_off(intel_crtc->overlay, false);
2284 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002285 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002286
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01002287 /* Let userspace switch the overlay on again. In most cases userspace
2288 * has to recompute where to put it anyway.
2289 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002290}
2291
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002292static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002293{
2294 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002295 struct drm_i915_private *dev_priv = dev->dev_private;
2296 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2297 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002298 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002299 u32 reg, temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08002300
Chris Wilson6b383a72010-09-13 13:54:26 +01002301 intel_update_watermarks(dev);
2302
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002303 /* Enable the DPLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002304 reg = DPLL(pipe);
2305 temp = I915_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002306 if ((temp & DPLL_VCO_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002307 I915_WRITE(reg, temp);
2308
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002309 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002310 POSTING_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002311 udelay(150);
Chris Wilson5eddb702010-09-11 13:48:45 +01002312
2313 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2314
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002315 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002316 POSTING_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002317 udelay(150);
Chris Wilson5eddb702010-09-11 13:48:45 +01002318
2319 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2320
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002321 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002322 POSTING_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002323 udelay(150);
2324 }
2325
2326 /* Enable the pipe */
Chris Wilson5eddb702010-09-11 13:48:45 +01002327 reg = PIPECONF(pipe);
2328 temp = I915_READ(reg);
2329 if ((temp & PIPECONF_ENABLE) == 0)
2330 I915_WRITE(reg, temp | PIPECONF_ENABLE);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002331
2332 /* Enable the plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002333 reg = DSPCNTR(plane);
2334 temp = I915_READ(reg);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002335 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002336 I915_WRITE(reg, temp | DISPLAY_PLANE_ENABLE);
2337 intel_flush_display_plane(dev, plane);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002338 }
2339
2340 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002341 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002342
2343 /* Give the overlay scaler a chance to enable if it's on this pipe */
2344 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01002345 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002346}
2347
2348static void i9xx_crtc_disable(struct drm_crtc *crtc)
2349{
2350 struct drm_device *dev = crtc->dev;
2351 struct drm_i915_private *dev_priv = dev->dev_private;
2352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2353 int pipe = intel_crtc->pipe;
2354 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002355 u32 reg, temp;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002356
2357 /* Give the overlay scaler a chance to disable if it's on this pipe */
2358 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01002359 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002360 drm_vblank_off(dev, pipe);
2361
2362 if (dev_priv->cfb_plane == plane &&
2363 dev_priv->display.disable_fbc)
2364 dev_priv->display.disable_fbc(dev);
2365
2366 /* Disable display plane */
Chris Wilson5eddb702010-09-11 13:48:45 +01002367 reg = DSPCNTR(plane);
2368 temp = I915_READ(reg);
2369 if (temp & DISPLAY_PLANE_ENABLE) {
2370 I915_WRITE(reg, temp & ~DISPLAY_PLANE_ENABLE);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002371 /* Flush the plane changes */
Chris Wilson5eddb702010-09-11 13:48:45 +01002372 intel_flush_display_plane(dev, plane);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002373
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002374 /* Wait for vblank for the disable to take effect */
Chris Wilson5eddb702010-09-11 13:48:45 +01002375 if (!IS_I9XX(dev))
2376 intel_wait_for_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002377 }
2378
2379 /* Don't disable pipe A or pipe A PLLs if needed */
Chris Wilson5eddb702010-09-11 13:48:45 +01002380 if (pipe == 0 && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
Chris Wilson6b383a72010-09-13 13:54:26 +01002381 goto done;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002382
2383 /* Next, disable display pipes */
Chris Wilson5eddb702010-09-11 13:48:45 +01002384 reg = PIPECONF(pipe);
2385 temp = I915_READ(reg);
2386 if (temp & PIPECONF_ENABLE) {
2387 I915_WRITE(reg, temp & ~PIPECONF_ENABLE);
2388
2389 /* Wait for vblank for the disable to take effect. */
2390 POSTING_READ(reg);
2391 intel_wait_for_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002392 }
2393
Chris Wilson5eddb702010-09-11 13:48:45 +01002394 reg = DPLL(pipe);
2395 temp = I915_READ(reg);
2396 if (temp & DPLL_VCO_ENABLE) {
2397 I915_WRITE(reg, temp & ~DPLL_VCO_ENABLE);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002398
Chris Wilson5eddb702010-09-11 13:48:45 +01002399 /* Wait for the clocks to turn off. */
2400 POSTING_READ(reg);
2401 udelay(150);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002402 }
Chris Wilson6b383a72010-09-13 13:54:26 +01002403
2404done:
2405 intel_update_fbc(dev);
2406 intel_update_watermarks(dev);
2407 intel_clear_scanline_wait(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002408}
2409
2410static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2411{
Jesse Barnes79e53942008-11-07 14:24:08 -08002412 /* XXX: When our outputs are all unaware of DPMS modes other than off
2413 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2414 */
2415 switch (mode) {
2416 case DRM_MODE_DPMS_ON:
2417 case DRM_MODE_DPMS_STANDBY:
2418 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002419 i9xx_crtc_enable(crtc);
2420 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08002421 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002422 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002423 break;
2424 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002425}
2426
2427/**
2428 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08002429 */
2430static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2431{
2432 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002433 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002434 struct drm_i915_master_private *master_priv;
2435 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2436 int pipe = intel_crtc->pipe;
2437 bool enabled;
2438
Chris Wilson032d2a02010-09-06 16:17:22 +01002439 if (intel_crtc->dpms_mode == mode)
2440 return;
2441
Chris Wilsondebcadd2010-08-07 11:01:33 +01002442 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01002443
Jesse Barnese70236a2009-09-21 10:42:27 -07002444 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002445
2446 if (!dev->primary->master)
2447 return;
2448
2449 master_priv = dev->primary->master->driver_priv;
2450 if (!master_priv->sarea_priv)
2451 return;
2452
2453 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2454
2455 switch (pipe) {
2456 case 0:
2457 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2458 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2459 break;
2460 case 1:
2461 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2462 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2463 break;
2464 default:
2465 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2466 break;
2467 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002468}
2469
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002470/* Prepare for a mode set.
2471 *
2472 * Note we could be a lot smarter here. We need to figure out which outputs
2473 * will be enabled, which disabled (in short, how the config will changes)
2474 * and perform the minimum necessary steps to accomplish that, e.g. updating
2475 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
2476 * panel fitting is in the proper state, etc.
2477 */
2478static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002479{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002480 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002481}
2482
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002483static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002484{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002485 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002486}
2487
2488static void ironlake_crtc_prepare(struct drm_crtc *crtc)
2489{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002490 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002491}
2492
2493static void ironlake_crtc_commit(struct drm_crtc *crtc)
2494{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07002495 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002496}
2497
2498void intel_encoder_prepare (struct drm_encoder *encoder)
2499{
2500 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2501 /* lvds has its own version of prepare see intel_lvds_prepare */
2502 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2503}
2504
2505void intel_encoder_commit (struct drm_encoder *encoder)
2506{
2507 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2508 /* lvds has its own version of commit see intel_lvds_commit */
2509 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2510}
2511
Chris Wilsonea5b2132010-08-04 13:50:23 +01002512void intel_encoder_destroy(struct drm_encoder *encoder)
2513{
Chris Wilson4ef69c72010-09-09 15:14:28 +01002514 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01002515
2516 if (intel_encoder->ddc_bus)
2517 intel_i2c_destroy(intel_encoder->ddc_bus);
2518
2519 if (intel_encoder->i2c_bus)
2520 intel_i2c_destroy(intel_encoder->i2c_bus);
2521
2522 drm_encoder_cleanup(encoder);
2523 kfree(intel_encoder);
2524}
2525
Jesse Barnes79e53942008-11-07 14:24:08 -08002526static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2527 struct drm_display_mode *mode,
2528 struct drm_display_mode *adjusted_mode)
2529{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002530 struct drm_device *dev = crtc->dev;
Eric Anholtbad720f2009-10-22 16:11:14 -07002531 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002532 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07002533 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
2534 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002535 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002536 return true;
2537}
2538
Jesse Barnese70236a2009-09-21 10:42:27 -07002539static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002540{
Jesse Barnese70236a2009-09-21 10:42:27 -07002541 return 400000;
2542}
Jesse Barnes79e53942008-11-07 14:24:08 -08002543
Jesse Barnese70236a2009-09-21 10:42:27 -07002544static int i915_get_display_clock_speed(struct drm_device *dev)
2545{
2546 return 333000;
2547}
Jesse Barnes79e53942008-11-07 14:24:08 -08002548
Jesse Barnese70236a2009-09-21 10:42:27 -07002549static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2550{
2551 return 200000;
2552}
Jesse Barnes79e53942008-11-07 14:24:08 -08002553
Jesse Barnese70236a2009-09-21 10:42:27 -07002554static int i915gm_get_display_clock_speed(struct drm_device *dev)
2555{
2556 u16 gcfgc = 0;
2557
2558 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2559
2560 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002561 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002562 else {
2563 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2564 case GC_DISPLAY_CLOCK_333_MHZ:
2565 return 333000;
2566 default:
2567 case GC_DISPLAY_CLOCK_190_200_MHZ:
2568 return 190000;
2569 }
2570 }
2571}
Jesse Barnes79e53942008-11-07 14:24:08 -08002572
Jesse Barnese70236a2009-09-21 10:42:27 -07002573static int i865_get_display_clock_speed(struct drm_device *dev)
2574{
2575 return 266000;
2576}
2577
2578static int i855_get_display_clock_speed(struct drm_device *dev)
2579{
2580 u16 hpllcc = 0;
2581 /* Assume that the hardware is in the high speed state. This
2582 * should be the default.
2583 */
2584 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2585 case GC_CLOCK_133_200:
2586 case GC_CLOCK_100_200:
2587 return 200000;
2588 case GC_CLOCK_166_250:
2589 return 250000;
2590 case GC_CLOCK_100_133:
2591 return 133000;
2592 }
2593
2594 /* Shouldn't happen */
2595 return 0;
2596}
2597
2598static int i830_get_display_clock_speed(struct drm_device *dev)
2599{
2600 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002601}
2602
Zhenyu Wang2c072452009-06-05 15:38:42 +08002603struct fdi_m_n {
2604 u32 tu;
2605 u32 gmch_m;
2606 u32 gmch_n;
2607 u32 link_m;
2608 u32 link_n;
2609};
2610
2611static void
2612fdi_reduce_ratio(u32 *num, u32 *den)
2613{
2614 while (*num > 0xffffff || *den > 0xffffff) {
2615 *num >>= 1;
2616 *den >>= 1;
2617 }
2618}
2619
2620#define DATA_N 0x800000
2621#define LINK_N 0x80000
2622
2623static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002624ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2625 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002626{
2627 u64 temp;
2628
2629 m_n->tu = 64; /* default size */
2630
2631 temp = (u64) DATA_N * pixel_clock;
2632 temp = div_u64(temp, link_clock);
Zhenyu Wang58a27472009-09-25 08:01:28 +00002633 m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes);
2634 m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */
Zhenyu Wang2c072452009-06-05 15:38:42 +08002635 m_n->gmch_n = DATA_N;
2636 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2637
2638 temp = (u64) LINK_N * pixel_clock;
2639 m_n->link_m = div_u64(temp, link_clock);
2640 m_n->link_n = LINK_N;
2641 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2642}
2643
2644
Shaohua Li7662c8b2009-06-26 11:23:55 +08002645struct intel_watermark_params {
2646 unsigned long fifo_size;
2647 unsigned long max_wm;
2648 unsigned long default_wm;
2649 unsigned long guard_size;
2650 unsigned long cacheline_size;
2651};
2652
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002653/* Pineview has different values for various configs */
2654static struct intel_watermark_params pineview_display_wm = {
2655 PINEVIEW_DISPLAY_FIFO,
2656 PINEVIEW_MAX_WM,
2657 PINEVIEW_DFT_WM,
2658 PINEVIEW_GUARD_WM,
2659 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002660};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002661static struct intel_watermark_params pineview_display_hplloff_wm = {
2662 PINEVIEW_DISPLAY_FIFO,
2663 PINEVIEW_MAX_WM,
2664 PINEVIEW_DFT_HPLLOFF_WM,
2665 PINEVIEW_GUARD_WM,
2666 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002667};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002668static struct intel_watermark_params pineview_cursor_wm = {
2669 PINEVIEW_CURSOR_FIFO,
2670 PINEVIEW_CURSOR_MAX_WM,
2671 PINEVIEW_CURSOR_DFT_WM,
2672 PINEVIEW_CURSOR_GUARD_WM,
2673 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002674};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002675static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2676 PINEVIEW_CURSOR_FIFO,
2677 PINEVIEW_CURSOR_MAX_WM,
2678 PINEVIEW_CURSOR_DFT_WM,
2679 PINEVIEW_CURSOR_GUARD_WM,
2680 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002681};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002682static struct intel_watermark_params g4x_wm_info = {
2683 G4X_FIFO_SIZE,
2684 G4X_MAX_WM,
2685 G4X_MAX_WM,
2686 2,
2687 G4X_FIFO_LINE_SIZE,
2688};
Zhao Yakui4fe5e612010-06-12 14:32:25 +08002689static struct intel_watermark_params g4x_cursor_wm_info = {
2690 I965_CURSOR_FIFO,
2691 I965_CURSOR_MAX_WM,
2692 I965_CURSOR_DFT_WM,
2693 2,
2694 G4X_FIFO_LINE_SIZE,
2695};
2696static struct intel_watermark_params i965_cursor_wm_info = {
2697 I965_CURSOR_FIFO,
2698 I965_CURSOR_MAX_WM,
2699 I965_CURSOR_DFT_WM,
2700 2,
2701 I915_FIFO_LINE_SIZE,
2702};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002703static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002704 I945_FIFO_SIZE,
2705 I915_MAX_WM,
2706 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002707 2,
2708 I915_FIFO_LINE_SIZE
2709};
2710static struct intel_watermark_params i915_wm_info = {
2711 I915_FIFO_SIZE,
2712 I915_MAX_WM,
2713 1,
2714 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002715 I915_FIFO_LINE_SIZE
2716};
2717static struct intel_watermark_params i855_wm_info = {
2718 I855GM_FIFO_SIZE,
2719 I915_MAX_WM,
2720 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002721 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002722 I830_FIFO_LINE_SIZE
2723};
2724static struct intel_watermark_params i830_wm_info = {
2725 I830_FIFO_SIZE,
2726 I915_MAX_WM,
2727 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002728 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002729 I830_FIFO_LINE_SIZE
2730};
2731
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002732static struct intel_watermark_params ironlake_display_wm_info = {
2733 ILK_DISPLAY_FIFO,
2734 ILK_DISPLAY_MAXWM,
2735 ILK_DISPLAY_DFTWM,
2736 2,
2737 ILK_FIFO_LINE_SIZE
2738};
2739
Zhao Yakuic936f442010-06-12 14:32:26 +08002740static struct intel_watermark_params ironlake_cursor_wm_info = {
2741 ILK_CURSOR_FIFO,
2742 ILK_CURSOR_MAXWM,
2743 ILK_CURSOR_DFTWM,
2744 2,
2745 ILK_FIFO_LINE_SIZE
2746};
2747
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08002748static struct intel_watermark_params ironlake_display_srwm_info = {
2749 ILK_DISPLAY_SR_FIFO,
2750 ILK_DISPLAY_MAX_SRWM,
2751 ILK_DISPLAY_DFT_SRWM,
2752 2,
2753 ILK_FIFO_LINE_SIZE
2754};
2755
2756static struct intel_watermark_params ironlake_cursor_srwm_info = {
2757 ILK_CURSOR_SR_FIFO,
2758 ILK_CURSOR_MAX_SRWM,
2759 ILK_CURSOR_DFT_SRWM,
2760 2,
2761 ILK_FIFO_LINE_SIZE
2762};
2763
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002764/**
2765 * intel_calculate_wm - calculate watermark level
2766 * @clock_in_khz: pixel clock
2767 * @wm: chip FIFO params
2768 * @pixel_size: display pixel size
2769 * @latency_ns: memory latency for the platform
2770 *
2771 * Calculate the watermark level (the level at which the display plane will
2772 * start fetching from memory again). Each chip has a different display
2773 * FIFO size and allocation, so the caller needs to figure that out and pass
2774 * in the correct intel_watermark_params structure.
2775 *
2776 * As the pixel clock runs, the FIFO will be drained at a rate that depends
2777 * on the pixel size. When it reaches the watermark level, it'll start
2778 * fetching FIFO line sized based chunks from memory until the FIFO fills
2779 * past the watermark point. If the FIFO drains completely, a FIFO underrun
2780 * will occur, and a display engine hang could result.
2781 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002782static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
2783 struct intel_watermark_params *wm,
2784 int pixel_size,
2785 unsigned long latency_ns)
2786{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002787 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002788
Jesse Barnesd6604672009-09-11 12:25:56 -07002789 /*
2790 * Note: we need to make sure we don't overflow for various clock &
2791 * latency values.
2792 * clocks go from a few thousand to several hundred thousand.
2793 * latency is usually a few thousand
2794 */
2795 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
2796 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01002797 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002798
Zhao Yakui28c97732009-10-09 11:39:41 +08002799 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002800
2801 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
2802
Zhao Yakui28c97732009-10-09 11:39:41 +08002803 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002804
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002805 /* Don't promote wm_size to unsigned... */
2806 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002807 wm_size = wm->max_wm;
Chris Wilsonc3add4b2010-09-08 09:14:08 +01002808 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002809 wm_size = wm->default_wm;
2810 return wm_size;
2811}
2812
2813struct cxsr_latency {
2814 int is_desktop;
Li Peng95534262010-05-18 18:58:44 +08002815 int is_ddr3;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002816 unsigned long fsb_freq;
2817 unsigned long mem_freq;
2818 unsigned long display_sr;
2819 unsigned long display_hpll_disable;
2820 unsigned long cursor_sr;
2821 unsigned long cursor_hpll_disable;
2822};
2823
Chris Wilson403c89f2010-08-04 15:25:31 +01002824static const struct cxsr_latency cxsr_latency_table[] = {
Li Peng95534262010-05-18 18:58:44 +08002825 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
2826 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
2827 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
2828 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
2829 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002830
Li Peng95534262010-05-18 18:58:44 +08002831 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
2832 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
2833 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
2834 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
2835 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002836
Li Peng95534262010-05-18 18:58:44 +08002837 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
2838 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
2839 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
2840 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
2841 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002842
Li Peng95534262010-05-18 18:58:44 +08002843 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
2844 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
2845 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
2846 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
2847 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002848
Li Peng95534262010-05-18 18:58:44 +08002849 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
2850 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
2851 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
2852 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
2853 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002854
Li Peng95534262010-05-18 18:58:44 +08002855 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
2856 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
2857 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
2858 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
2859 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002860};
2861
Chris Wilson403c89f2010-08-04 15:25:31 +01002862static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
2863 int is_ddr3,
2864 int fsb,
2865 int mem)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002866{
Chris Wilson403c89f2010-08-04 15:25:31 +01002867 const struct cxsr_latency *latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002868 int i;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002869
2870 if (fsb == 0 || mem == 0)
2871 return NULL;
2872
2873 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
2874 latency = &cxsr_latency_table[i];
2875 if (is_desktop == latency->is_desktop &&
Li Peng95534262010-05-18 18:58:44 +08002876 is_ddr3 == latency->is_ddr3 &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302877 fsb == latency->fsb_freq && mem == latency->mem_freq)
2878 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002879 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302880
Zhao Yakui28c97732009-10-09 11:39:41 +08002881 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302882
2883 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002884}
2885
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002886static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002887{
2888 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002889
2890 /* deactivate cxsr */
Chris Wilson3e33d942010-08-04 11:17:25 +01002891 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002892}
2893
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07002894/*
2895 * Latency for FIFO fetches is dependent on several factors:
2896 * - memory configuration (speed, channels)
2897 * - chipset
2898 * - current MCH state
2899 * It can be fairly high in some situations, so here we assume a fairly
2900 * pessimal value. It's a tradeoff between extra memory fetches (if we
2901 * set this value too high, the FIFO will fetch frequently to stay full)
2902 * and power consumption (set it too low to save power and we might see
2903 * FIFO underruns and display "flicker").
2904 *
2905 * A value of 5us seems to be a good balance; safe for very low end
2906 * platforms but not overly aggressive on lower latency configs.
2907 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002908static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002909
Jesse Barnese70236a2009-09-21 10:42:27 -07002910static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002911{
2912 struct drm_i915_private *dev_priv = dev->dev_private;
2913 uint32_t dsparb = I915_READ(DSPARB);
2914 int size;
2915
Chris Wilson8de9b312010-07-19 19:59:52 +01002916 size = dsparb & 0x7f;
2917 if (plane)
2918 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002919
Zhao Yakui28c97732009-10-09 11:39:41 +08002920 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01002921 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002922
2923 return size;
2924}
Shaohua Li7662c8b2009-06-26 11:23:55 +08002925
Jesse Barnese70236a2009-09-21 10:42:27 -07002926static int i85x_get_fifo_size(struct drm_device *dev, int plane)
2927{
2928 struct drm_i915_private *dev_priv = dev->dev_private;
2929 uint32_t dsparb = I915_READ(DSPARB);
2930 int size;
2931
Chris Wilson8de9b312010-07-19 19:59:52 +01002932 size = dsparb & 0x1ff;
2933 if (plane)
2934 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
Jesse Barnese70236a2009-09-21 10:42:27 -07002935 size >>= 1; /* Convert to cachelines */
2936
Zhao Yakui28c97732009-10-09 11:39:41 +08002937 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01002938 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002939
2940 return size;
2941}
2942
2943static int i845_get_fifo_size(struct drm_device *dev, int plane)
2944{
2945 struct drm_i915_private *dev_priv = dev->dev_private;
2946 uint32_t dsparb = I915_READ(DSPARB);
2947 int size;
2948
2949 size = dsparb & 0x7f;
2950 size >>= 2; /* Convert to cachelines */
2951
Zhao Yakui28c97732009-10-09 11:39:41 +08002952 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01002953 plane ? "B" : "A",
2954 size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002955
2956 return size;
2957}
2958
2959static int i830_get_fifo_size(struct drm_device *dev, int plane)
2960{
2961 struct drm_i915_private *dev_priv = dev->dev_private;
2962 uint32_t dsparb = I915_READ(DSPARB);
2963 int size;
2964
2965 size = dsparb & 0x7f;
2966 size >>= 1; /* Convert to cachelines */
2967
Zhao Yakui28c97732009-10-09 11:39:41 +08002968 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
Chris Wilson5eddb702010-09-11 13:48:45 +01002969 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002970
2971 return size;
2972}
2973
Zhao Yakuid4294342010-03-22 22:45:36 +08002974static void pineview_update_wm(struct drm_device *dev, int planea_clock,
Chris Wilson5eddb702010-09-11 13:48:45 +01002975 int planeb_clock, int sr_hdisplay, int unused,
2976 int pixel_size)
Zhao Yakuid4294342010-03-22 22:45:36 +08002977{
2978 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson403c89f2010-08-04 15:25:31 +01002979 const struct cxsr_latency *latency;
Zhao Yakuid4294342010-03-22 22:45:36 +08002980 u32 reg;
2981 unsigned long wm;
Zhao Yakuid4294342010-03-22 22:45:36 +08002982 int sr_clock;
2983
Chris Wilson403c89f2010-08-04 15:25:31 +01002984 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
Li Peng95534262010-05-18 18:58:44 +08002985 dev_priv->fsb_freq, dev_priv->mem_freq);
Zhao Yakuid4294342010-03-22 22:45:36 +08002986 if (!latency) {
2987 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
2988 pineview_disable_cxsr(dev);
2989 return;
2990 }
2991
2992 if (!planea_clock || !planeb_clock) {
2993 sr_clock = planea_clock ? planea_clock : planeb_clock;
2994
2995 /* Display SR */
2996 wm = intel_calculate_wm(sr_clock, &pineview_display_wm,
2997 pixel_size, latency->display_sr);
2998 reg = I915_READ(DSPFW1);
2999 reg &= ~DSPFW_SR_MASK;
3000 reg |= wm << DSPFW_SR_SHIFT;
3001 I915_WRITE(DSPFW1, reg);
3002 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
3003
3004 /* cursor SR */
3005 wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm,
3006 pixel_size, latency->cursor_sr);
3007 reg = I915_READ(DSPFW3);
3008 reg &= ~DSPFW_CURSOR_SR_MASK;
3009 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
3010 I915_WRITE(DSPFW3, reg);
3011
3012 /* Display HPLL off SR */
3013 wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm,
3014 pixel_size, latency->display_hpll_disable);
3015 reg = I915_READ(DSPFW3);
3016 reg &= ~DSPFW_HPLL_SR_MASK;
3017 reg |= wm & DSPFW_HPLL_SR_MASK;
3018 I915_WRITE(DSPFW3, reg);
3019
3020 /* cursor HPLL off SR */
3021 wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm,
3022 pixel_size, latency->cursor_hpll_disable);
3023 reg = I915_READ(DSPFW3);
3024 reg &= ~DSPFW_HPLL_CURSOR_MASK;
3025 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
3026 I915_WRITE(DSPFW3, reg);
3027 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
3028
3029 /* activate cxsr */
Chris Wilson3e33d942010-08-04 11:17:25 +01003030 I915_WRITE(DSPFW3,
3031 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
Zhao Yakuid4294342010-03-22 22:45:36 +08003032 DRM_DEBUG_KMS("Self-refresh is enabled\n");
3033 } else {
3034 pineview_disable_cxsr(dev);
3035 DRM_DEBUG_KMS("Self-refresh is disabled\n");
3036 }
3037}
3038
Jesse Barnes0e442c62009-10-19 10:09:33 +09003039static void g4x_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003040 int planeb_clock, int sr_hdisplay, int sr_htotal,
3041 int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07003042{
3043 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003044 int total_size, cacheline_size;
3045 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
3046 struct intel_watermark_params planea_params, planeb_params;
3047 unsigned long line_time_us;
3048 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07003049
Jesse Barnes0e442c62009-10-19 10:09:33 +09003050 /* Create copies of the base settings for each pipe */
3051 planea_params = planeb_params = g4x_wm_info;
3052
3053 /* Grab a couple of global values before we overwrite them */
3054 total_size = planea_params.fifo_size;
3055 cacheline_size = planea_params.cacheline_size;
3056
3057 /*
3058 * Note: we need to make sure we don't overflow for various clock &
3059 * latency values.
3060 * clocks go from a few thousand to several hundred thousand.
3061 * latency is usually a few thousand
3062 */
3063 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
3064 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01003065 entries_required = DIV_ROUND_UP(entries_required, G4X_FIFO_LINE_SIZE);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003066 planea_wm = entries_required + planea_params.guard_size;
3067
3068 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
3069 1000;
Chris Wilson8de9b312010-07-19 19:59:52 +01003070 entries_required = DIV_ROUND_UP(entries_required, G4X_FIFO_LINE_SIZE);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003071 planeb_wm = entries_required + planeb_params.guard_size;
3072
3073 cursora_wm = cursorb_wm = 16;
3074 cursor_sr = 32;
3075
3076 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
3077
3078 /* Calc sr entries for one plane configs */
3079 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3080 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003081 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09003082
3083 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003084 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003085
3086 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003087 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003088 pixel_size * sr_hdisplay;
Chris Wilson8de9b312010-07-19 19:59:52 +01003089 sr_entries = DIV_ROUND_UP(sr_entries, cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003090
3091 entries_required = (((sr_latency_ns / line_time_us) +
3092 1000) / 1000) * pixel_size * 64;
Chris Wilson8de9b312010-07-19 19:59:52 +01003093 entries_required = DIV_ROUND_UP(entries_required,
Chris Wilson5eddb702010-09-11 13:48:45 +01003094 g4x_cursor_wm_info.cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003095 cursor_sr = entries_required + g4x_cursor_wm_info.guard_size;
3096
3097 if (cursor_sr > g4x_cursor_wm_info.max_wm)
3098 cursor_sr = g4x_cursor_wm_info.max_wm;
3099 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3100 "cursor %d\n", sr_entries, cursor_sr);
3101
Jesse Barnes0e442c62009-10-19 10:09:33 +09003102 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303103 } else {
3104 /* Turn off self refresh if both pipes are enabled */
3105 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
Chris Wilson5eddb702010-09-11 13:48:45 +01003106 & ~FW_BLC_SELF_EN);
Jesse Barnes0e442c62009-10-19 10:09:33 +09003107 }
3108
3109 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
3110 planea_wm, planeb_wm, sr_entries);
3111
3112 planea_wm &= 0x3f;
3113 planeb_wm &= 0x3f;
3114
3115 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
3116 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
3117 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
3118 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
3119 (cursora_wm << DSPFW_CURSORA_SHIFT));
3120 /* HPLL off in SR has some issues on G4x... disable it */
3121 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
3122 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07003123}
3124
Jesse Barnes1dc75462009-10-19 10:08:17 +09003125static void i965_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003126 int planeb_clock, int sr_hdisplay, int sr_htotal,
3127 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003128{
3129 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003130 unsigned long line_time_us;
3131 int sr_clock, sr_entries, srwm = 1;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003132 int cursor_sr = 16;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003133
Jesse Barnes1dc75462009-10-19 10:08:17 +09003134 /* Calc sr entries for one plane configs */
3135 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3136 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003137 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003138
3139 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003140 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003141
3142 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003143 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003144 pixel_size * sr_hdisplay;
Chris Wilson8de9b312010-07-19 19:59:52 +01003145 sr_entries = DIV_ROUND_UP(sr_entries, I915_FIFO_LINE_SIZE);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003146 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
Zhao Yakui1b07e042010-06-12 14:32:24 +08003147 srwm = I965_FIFO_SIZE - sr_entries;
Jesse Barnes1dc75462009-10-19 10:08:17 +09003148 if (srwm < 0)
3149 srwm = 1;
Zhao Yakui1b07e042010-06-12 14:32:24 +08003150 srwm &= 0x1ff;
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003151
3152 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003153 pixel_size * 64;
Chris Wilson8de9b312010-07-19 19:59:52 +01003154 sr_entries = DIV_ROUND_UP(sr_entries,
3155 i965_cursor_wm_info.cacheline_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003156 cursor_sr = i965_cursor_wm_info.fifo_size -
Chris Wilson5eddb702010-09-11 13:48:45 +01003157 (sr_entries + i965_cursor_wm_info.guard_size);
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003158
3159 if (cursor_sr > i965_cursor_wm_info.max_wm)
3160 cursor_sr = i965_cursor_wm_info.max_wm;
3161
3162 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3163 "cursor %d\n", srwm, cursor_sr);
3164
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003165 if (IS_I965GM(dev))
3166 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
David John33c5fd12010-01-27 15:19:08 +05303167 } else {
3168 /* Turn off self refresh if both pipes are enabled */
Jesse Barnesadcdbc62010-06-30 13:49:37 -07003169 if (IS_I965GM(dev))
3170 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3171 & ~FW_BLC_SELF_EN);
Jesse Barnes1dc75462009-10-19 10:08:17 +09003172 }
3173
3174 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3175 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003176
3177 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09003178 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
3179 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003180 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
Zhao Yakui4fe5e612010-06-12 14:32:25 +08003181 /* update cursor SR watermark */
3182 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Shaohua Li7662c8b2009-06-26 11:23:55 +08003183}
3184
3185static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003186 int planeb_clock, int sr_hdisplay, int sr_htotal,
3187 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003188{
3189 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003190 uint32_t fwater_lo;
3191 uint32_t fwater_hi;
3192 int total_size, cacheline_size, cwm, srwm = 1;
3193 int planea_wm, planeb_wm;
3194 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003195 unsigned long line_time_us;
3196 int sr_clock, sr_entries = 0;
3197
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003198 /* Create copies of the base settings for each pipe */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003199 if (IS_I965GM(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003200 planea_params = planeb_params = i945_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003201 else if (IS_I9XX(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003202 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003203 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003204 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003205
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003206 /* Grab a couple of global values before we overwrite them */
3207 total_size = planea_params.fifo_size;
3208 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003209
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003210 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07003211 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3212 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003213
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003214 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
3215 pixel_size, latency_ns);
3216 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
3217 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08003218 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003219
3220 /*
3221 * Overlay gets an aggressive default since video jitter is bad.
3222 */
3223 cwm = 2;
3224
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003225 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07003226 if (HAS_FW_BLC(dev) && sr_hdisplay &&
3227 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003228 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01003229 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003230
Shaohua Li7662c8b2009-06-26 11:23:55 +08003231 sr_clock = planea_clock ? planea_clock : planeb_clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003232 line_time_us = ((sr_htotal * 1000) / sr_clock);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003233
3234 /* Use ns/us then divide to preserve precision */
Zhao Yakuifa143212010-06-12 14:32:23 +08003235 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Chris Wilson5eddb702010-09-11 13:48:45 +01003236 pixel_size * sr_hdisplay;
Chris Wilson8de9b312010-07-19 19:59:52 +01003237 sr_entries = DIV_ROUND_UP(sr_entries, cacheline_size);
Zhao Yakui28c97732009-10-09 11:39:41 +08003238 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003239 srwm = total_size - sr_entries;
3240 if (srwm < 0)
3241 srwm = 1;
Li Pengee980b82010-01-27 19:01:11 +08003242
3243 if (IS_I945G(dev) || IS_I945GM(dev))
3244 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3245 else if (IS_I915GM(dev)) {
3246 /* 915M has a smaller SRWM field */
3247 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
3248 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3249 }
David John33c5fd12010-01-27 15:19:08 +05303250 } else {
3251 /* Turn off self refresh if both pipes are enabled */
Li Pengee980b82010-01-27 19:01:11 +08003252 if (IS_I945G(dev) || IS_I945GM(dev)) {
3253 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3254 & ~FW_BLC_SELF_EN);
3255 } else if (IS_I915GM(dev)) {
3256 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3257 }
Shaohua Li7662c8b2009-06-26 11:23:55 +08003258 }
3259
Zhao Yakui28c97732009-10-09 11:39:41 +08003260 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003261 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003262
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003263 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3264 fwater_hi = (cwm & 0x1f);
3265
3266 /* Set request length to 8 cachelines per fetch */
3267 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3268 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003269
3270 I915_WRITE(FW_BLC, fwater_lo);
3271 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003272}
3273
Jesse Barnese70236a2009-09-21 10:42:27 -07003274static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
Zhao Yakuifa143212010-06-12 14:32:23 +08003275 int unused2, int unused3, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08003276{
3277 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07003278 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003279 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003280
Jesse Barnese70236a2009-09-21 10:42:27 -07003281 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003282
Jesse Barnesdff33cf2009-07-14 10:15:56 -07003283 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
3284 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07003285 fwater_lo |= (3<<8) | planea_wm;
3286
Zhao Yakui28c97732009-10-09 11:39:41 +08003287 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003288
3289 I915_WRITE(FW_BLC, fwater_lo);
3290}
3291
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003292#define ILK_LP0_PLANE_LATENCY 700
Zhao Yakuic936f442010-06-12 14:32:26 +08003293#define ILK_LP0_CURSOR_LATENCY 1300
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003294
Chris Wilson4ed765f2010-09-11 10:46:47 +01003295static bool ironlake_compute_wm0(struct drm_device *dev,
3296 int pipe,
3297 int *plane_wm,
3298 int *cursor_wm)
3299{
3300 struct drm_crtc *crtc;
3301 int htotal, hdisplay, clock, pixel_size = 0;
3302 int line_time_us, line_count, entries;
3303
3304 crtc = intel_get_crtc_for_pipe(dev, pipe);
3305 if (crtc->fb == NULL || !crtc->enabled)
3306 return false;
3307
3308 htotal = crtc->mode.htotal;
3309 hdisplay = crtc->mode.hdisplay;
3310 clock = crtc->mode.clock;
3311 pixel_size = crtc->fb->bits_per_pixel / 8;
3312
3313 /* Use the small buffer method to calculate plane watermark */
3314 entries = ((clock * pixel_size / 1000) * ILK_LP0_PLANE_LATENCY) / 1000;
3315 entries = DIV_ROUND_UP(entries,
3316 ironlake_display_wm_info.cacheline_size);
3317 *plane_wm = entries + ironlake_display_wm_info.guard_size;
3318 if (*plane_wm > (int)ironlake_display_wm_info.max_wm)
3319 *plane_wm = ironlake_display_wm_info.max_wm;
3320
3321 /* Use the large buffer method to calculate cursor watermark */
3322 line_time_us = ((htotal * 1000) / clock);
3323 line_count = (ILK_LP0_CURSOR_LATENCY / line_time_us + 1000) / 1000;
3324 entries = line_count * 64 * pixel_size;
3325 entries = DIV_ROUND_UP(entries,
3326 ironlake_cursor_wm_info.cacheline_size);
3327 *cursor_wm = entries + ironlake_cursor_wm_info.guard_size;
3328 if (*cursor_wm > ironlake_cursor_wm_info.max_wm)
3329 *cursor_wm = ironlake_cursor_wm_info.max_wm;
3330
3331 return true;
3332}
3333
3334static void ironlake_update_wm(struct drm_device *dev,
3335 int planea_clock, int planeb_clock,
3336 int sr_hdisplay, int sr_htotal,
3337 int pixel_size)
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003338{
3339 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003340 int plane_wm, cursor_wm, enabled;
3341 int tmp;
Zhao Yakuic936f442010-06-12 14:32:26 +08003342
Chris Wilson4ed765f2010-09-11 10:46:47 +01003343 enabled = 0;
3344 if (ironlake_compute_wm0(dev, 0, &plane_wm, &cursor_wm)) {
3345 I915_WRITE(WM0_PIPEA_ILK,
3346 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3347 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
3348 " plane %d, " "cursor: %d\n",
3349 plane_wm, cursor_wm);
3350 enabled++;
Zhao Yakuic936f442010-06-12 14:32:26 +08003351 }
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003352
Chris Wilson4ed765f2010-09-11 10:46:47 +01003353 if (ironlake_compute_wm0(dev, 1, &plane_wm, &cursor_wm)) {
3354 I915_WRITE(WM0_PIPEB_ILK,
3355 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3356 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
3357 " plane %d, cursor: %d\n",
3358 plane_wm, cursor_wm);
3359 enabled++;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003360 }
3361
3362 /*
3363 * Calculate and update the self-refresh watermark only when one
3364 * display plane is used.
3365 */
Chris Wilson4ed765f2010-09-11 10:46:47 +01003366 tmp = 0;
3367 if (enabled == 1 && /* XXX disabled due to buggy implmentation? */ 0) {
3368 unsigned long line_time_us;
3369 int small, large, plane_fbc;
3370 int sr_clock, entries;
3371 int line_count, line_size;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003372 /* Read the self-refresh latency. The unit is 0.5us */
3373 int ilk_sr_latency = I915_READ(MLTR_ILK) & ILK_SRLT_MASK;
3374
3375 sr_clock = planea_clock ? planea_clock : planeb_clock;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003376 line_time_us = (sr_htotal * 1000) / sr_clock;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003377
3378 /* Use ns/us then divide to preserve precision */
3379 line_count = ((ilk_sr_latency * 500) / line_time_us + 1000)
Chris Wilson5eddb702010-09-11 13:48:45 +01003380 / 1000;
Chris Wilson4ed765f2010-09-11 10:46:47 +01003381 line_size = sr_hdisplay * pixel_size;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003382
Chris Wilson4ed765f2010-09-11 10:46:47 +01003383 /* Use the minimum of the small and large buffer method for primary */
3384 small = ((sr_clock * pixel_size / 1000) * (ilk_sr_latency * 500)) / 1000;
3385 large = line_count * line_size;
3386
3387 entries = DIV_ROUND_UP(min(small, large),
3388 ironlake_display_srwm_info.cacheline_size);
3389
3390 plane_fbc = entries * 64;
3391 plane_fbc = DIV_ROUND_UP(plane_fbc, line_size);
3392
3393 plane_wm = entries + ironlake_display_srwm_info.guard_size;
3394 if (plane_wm > (int)ironlake_display_srwm_info.max_wm)
3395 plane_wm = ironlake_display_srwm_info.max_wm;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003396
3397 /* calculate the self-refresh watermark for display cursor */
Chris Wilson4ed765f2010-09-11 10:46:47 +01003398 entries = line_count * pixel_size * 64;
3399 entries = DIV_ROUND_UP(entries,
3400 ironlake_cursor_srwm_info.cacheline_size);
3401
3402 cursor_wm = entries + ironlake_cursor_srwm_info.guard_size;
3403 if (cursor_wm > (int)ironlake_cursor_srwm_info.max_wm)
3404 cursor_wm = ironlake_cursor_srwm_info.max_wm;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003405
3406 /* configure watermark and enable self-refresh */
Chris Wilson4ed765f2010-09-11 10:46:47 +01003407 tmp = (WM1_LP_SR_EN |
3408 (ilk_sr_latency << WM1_LP_LATENCY_SHIFT) |
3409 (plane_fbc << WM1_LP_FBC_SHIFT) |
3410 (plane_wm << WM1_LP_SR_SHIFT) |
3411 cursor_wm);
3412 DRM_DEBUG_KMS("self-refresh watermark: display plane %d, fbc lines %d,"
3413 " cursor %d\n", plane_wm, plane_fbc, cursor_wm);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003414 }
Chris Wilson4ed765f2010-09-11 10:46:47 +01003415 I915_WRITE(WM1_LP_ILK, tmp);
3416 /* XXX setup WM2 and WM3 */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08003417}
Chris Wilson4ed765f2010-09-11 10:46:47 +01003418
Shaohua Li7662c8b2009-06-26 11:23:55 +08003419/**
3420 * intel_update_watermarks - update FIFO watermark values based on current modes
3421 *
3422 * Calculate watermark values for the various WM regs based on current mode
3423 * and plane configuration.
3424 *
3425 * There are several cases to deal with here:
3426 * - normal (i.e. non-self-refresh)
3427 * - self-refresh (SR) mode
3428 * - lines are large relative to FIFO size (buffer can hold up to 2)
3429 * - lines are small relative to FIFO size (buffer can hold more than 2
3430 * lines), so need to account for TLB latency
3431 *
3432 * The normal calculation is:
3433 * watermark = dotclock * bytes per pixel * latency
3434 * where latency is platform & configuration dependent (we assume pessimal
3435 * values here).
3436 *
3437 * The SR calculation is:
3438 * watermark = (trunc(latency/line time)+1) * surface width *
3439 * bytes per pixel
3440 * where
3441 * line time = htotal / dotclock
Zhao Yakuifa143212010-06-12 14:32:23 +08003442 * surface width = hdisplay for normal plane and 64 for cursor
Shaohua Li7662c8b2009-06-26 11:23:55 +08003443 * and latency is assumed to be high, as above.
3444 *
3445 * The final value programmed to the register should always be rounded up,
3446 * and include an extra 2 entries to account for clock crossings.
3447 *
3448 * We don't use the sprite, so we can ignore that. And on Crestline we have
3449 * to set the non-SR watermarks to 8.
Chris Wilson5eddb702010-09-11 13:48:45 +01003450 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08003451static void intel_update_watermarks(struct drm_device *dev)
3452{
Jesse Barnese70236a2009-09-21 10:42:27 -07003453 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003454 struct drm_crtc *crtc;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003455 int sr_hdisplay = 0;
3456 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3457 int enabled = 0, pixel_size = 0;
Zhao Yakuifa143212010-06-12 14:32:23 +08003458 int sr_htotal = 0;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003459
Zhenyu Wangc03342f2009-09-29 11:01:23 +08003460 if (!dev_priv->display.update_wm)
3461 return;
3462
Shaohua Li7662c8b2009-06-26 11:23:55 +08003463 /* Get the clock config from both planes */
3464 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilsondebcadd2010-08-07 11:01:33 +01003465 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3466 if (intel_crtc->dpms_mode == DRM_MODE_DPMS_ON) {
Shaohua Li7662c8b2009-06-26 11:23:55 +08003467 enabled++;
3468 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003469 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003470 intel_crtc->pipe, crtc->mode.clock);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003471 planea_clock = crtc->mode.clock;
3472 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08003473 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003474 intel_crtc->pipe, crtc->mode.clock);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003475 planeb_clock = crtc->mode.clock;
3476 }
3477 sr_hdisplay = crtc->mode.hdisplay;
3478 sr_clock = crtc->mode.clock;
Zhao Yakuifa143212010-06-12 14:32:23 +08003479 sr_htotal = crtc->mode.htotal;
Shaohua Li7662c8b2009-06-26 11:23:55 +08003480 if (crtc->fb)
3481 pixel_size = crtc->fb->bits_per_pixel / 8;
3482 else
3483 pixel_size = 4; /* by default */
3484 }
3485 }
3486
3487 if (enabled <= 0)
3488 return;
3489
Jesse Barnese70236a2009-09-21 10:42:27 -07003490 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
Zhao Yakuifa143212010-06-12 14:32:23 +08003491 sr_hdisplay, sr_htotal, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003492}
3493
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003494static int intel_crtc_mode_set(struct drm_crtc *crtc,
3495 struct drm_display_mode *mode,
3496 struct drm_display_mode *adjusted_mode,
3497 int x, int y,
3498 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003499{
3500 struct drm_device *dev = crtc->dev;
3501 struct drm_i915_private *dev_priv = dev->dev_private;
3502 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3503 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003504 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003505 u32 fp_reg, dpll_reg;
Eric Anholtc751ce42010-03-25 11:48:48 -07003506 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003507 intel_clock_t clock, reduced_clock;
Chris Wilson5eddb702010-09-11 13:48:45 +01003508 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Jesse Barnes652c3932009-08-17 13:31:43 -07003509 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003510 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson8e647a22010-08-22 10:54:23 +01003511 struct intel_encoder *has_edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003512 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01003513 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003514 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003515 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003516 struct fdi_m_n m_n = {0};
Chris Wilson5eddb702010-09-11 13:48:45 +01003517 u32 reg, temp;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003518 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08003519
3520 drm_vblank_pre_modeset(dev, pipe);
3521
Chris Wilson5eddb702010-09-11 13:48:45 +01003522 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3523 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003524 continue;
3525
Chris Wilson5eddb702010-09-11 13:48:45 +01003526 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003527 case INTEL_OUTPUT_LVDS:
3528 is_lvds = true;
3529 break;
3530 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003531 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003532 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01003533 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003534 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003535 break;
3536 case INTEL_OUTPUT_DVO:
3537 is_dvo = true;
3538 break;
3539 case INTEL_OUTPUT_TVOUT:
3540 is_tv = true;
3541 break;
3542 case INTEL_OUTPUT_ANALOG:
3543 is_crt = true;
3544 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003545 case INTEL_OUTPUT_DISPLAYPORT:
3546 is_dp = true;
3547 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003548 case INTEL_OUTPUT_EDP:
Chris Wilson5eddb702010-09-11 13:48:45 +01003549 has_edp_encoder = encoder;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003550 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003551 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003552
Eric Anholtc751ce42010-03-25 11:48:48 -07003553 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003554 }
3555
Eric Anholtc751ce42010-03-25 11:48:48 -07003556 if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) {
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003557 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08003558 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
Chris Wilson5eddb702010-09-11 13:48:45 +01003559 refclk / 1000);
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003560 } else if (IS_I9XX(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003561 refclk = 96000;
Eric Anholtbad720f2009-10-22 16:11:14 -07003562 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003563 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08003564 } else {
3565 refclk = 48000;
3566 }
3567
Ma Lingd4906092009-03-18 20:13:27 +08003568 /*
3569 * Returns a set of divisors for the desired target clock with the given
3570 * refclk, or FALSE. The returned values represent the clock equation:
3571 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3572 */
3573 limit = intel_limit(crtc);
3574 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003575 if (!ok) {
3576 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01003577 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003578 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003579 }
3580
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01003581 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01003582 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01003583
Zhao Yakuiddc90032010-01-06 22:05:56 +08003584 if (is_lvds && dev_priv->lvds_downclock_avail) {
3585 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01003586 dev_priv->lvds_downclock,
3587 refclk,
3588 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003589 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
3590 /*
3591 * If the different P is found, it means that we can't
3592 * switch the display clock by using the FP0/FP1.
3593 * In such case we will disable the LVDS downclock
3594 * feature.
3595 */
3596 DRM_DEBUG_KMS("Different P is found for "
Chris Wilson5eddb702010-09-11 13:48:45 +01003597 "LVDS clock/downclock\n");
Zhao Yakui18f9ed12009-11-20 03:24:16 +00003598 has_reduced_clock = 0;
3599 }
Jesse Barnes652c3932009-08-17 13:31:43 -07003600 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003601 /* SDVO TV has fixed PLL values depend on its clock range,
3602 this mirrors vbios setting. */
3603 if (is_sdvo && is_tv) {
3604 if (adjusted_mode->clock >= 100000
Chris Wilson5eddb702010-09-11 13:48:45 +01003605 && adjusted_mode->clock < 140500) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003606 clock.p1 = 2;
3607 clock.p2 = 10;
3608 clock.n = 3;
3609 clock.m1 = 16;
3610 clock.m2 = 8;
3611 } else if (adjusted_mode->clock >= 140500
Chris Wilson5eddb702010-09-11 13:48:45 +01003612 && adjusted_mode->clock <= 200000) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08003613 clock.p1 = 1;
3614 clock.p2 = 10;
3615 clock.n = 6;
3616 clock.m1 = 12;
3617 clock.m2 = 8;
3618 }
3619 }
3620
Zhenyu Wang2c072452009-06-05 15:38:42 +08003621 /* FDI link */
Eric Anholtbad720f2009-10-22 16:11:14 -07003622 if (HAS_PCH_SPLIT(dev)) {
Adam Jackson77ffb592010-04-12 11:38:44 -04003623 int lane = 0, link_bw, bpp;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003624 /* eDP doesn't require FDI link, so just set DP M/N
3625 according to current link config */
Chris Wilson8e647a22010-08-22 10:54:23 +01003626 if (has_edp_encoder) {
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003627 target_clock = mode->clock;
Chris Wilson8e647a22010-08-22 10:54:23 +01003628 intel_edp_link_config(has_edp_encoder,
3629 &lane, &link_bw);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003630 } else {
3631 /* DP over FDI requires target mode clock
3632 instead of link clock */
3633 if (is_dp)
3634 target_clock = mode->clock;
3635 else
3636 target_clock = adjusted_mode->clock;
Chris Wilson021357a2010-09-07 20:54:59 +01003637
3638 /* FDI is a binary signal running at ~2.7GHz, encoding
3639 * each output octet as 10 bits. The actual frequency
3640 * is stored as a divider into a 100MHz clock, and the
3641 * mode pixel clock is stored in units of 1KHz.
3642 * Hence the bw of each lane in terms of the mode signal
3643 * is:
3644 */
3645 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003646 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00003647
3648 /* determine panel color depth */
Chris Wilson5eddb702010-09-11 13:48:45 +01003649 temp = I915_READ(PIPECONF(pipe));
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003650 temp &= ~PIPE_BPC_MASK;
3651 if (is_lvds) {
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003652 /* the BPC will be 6 if it is 18-bit LVDS panel */
Chris Wilson5eddb702010-09-11 13:48:45 +01003653 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003654 temp |= PIPE_8BPC;
3655 else
3656 temp |= PIPE_6BPC;
Chris Wilson8e647a22010-08-22 10:54:23 +01003657 } else if (has_edp_encoder || (is_dp && intel_pch_has_edp(crtc))) {
Zhenyu Wang885a5fb2010-01-12 05:38:31 +08003658 switch (dev_priv->edp_bpp/3) {
3659 case 8:
3660 temp |= PIPE_8BPC;
3661 break;
3662 case 10:
3663 temp |= PIPE_10BPC;
3664 break;
3665 case 6:
3666 temp |= PIPE_6BPC;
3667 break;
3668 case 12:
3669 temp |= PIPE_12BPC;
3670 break;
3671 }
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08003672 } else
3673 temp |= PIPE_8BPC;
Chris Wilson5eddb702010-09-11 13:48:45 +01003674 I915_WRITE(PIPECONF(pipe), temp);
Zhenyu Wang58a27472009-09-25 08:01:28 +00003675
3676 switch (temp & PIPE_BPC_MASK) {
3677 case PIPE_8BPC:
3678 bpp = 24;
3679 break;
3680 case PIPE_10BPC:
3681 bpp = 30;
3682 break;
3683 case PIPE_6BPC:
3684 bpp = 18;
3685 break;
3686 case PIPE_12BPC:
3687 bpp = 36;
3688 break;
3689 default:
3690 DRM_ERROR("unknown pipe bpc value\n");
3691 bpp = 24;
3692 }
3693
Adam Jackson77ffb592010-04-12 11:38:44 -04003694 if (!lane) {
3695 /*
3696 * Account for spread spectrum to avoid
3697 * oversubscribing the link. Max center spread
3698 * is 2.5%; use 5% for safety's sake.
3699 */
3700 u32 bps = target_clock * bpp * 21 / 20;
3701 lane = bps / (link_bw * 8) + 1;
3702 }
3703
3704 intel_crtc->fdi_lanes = lane;
3705
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003706 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003707 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003708
Zhenyu Wangc038e512009-10-19 15:43:48 +08003709 /* Ironlake: try to setup display ref clock before DPLL
3710 * enabling. This is only under driver's control after
3711 * PCH B stepping, previous chipset stepping should be
3712 * ignoring this setting.
3713 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003714 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003715 temp = I915_READ(PCH_DREF_CONTROL);
3716 /* Always enable nonspread source */
3717 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
3718 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Zhenyu Wangc038e512009-10-19 15:43:48 +08003719 temp &= ~DREF_SSC_SOURCE_MASK;
3720 temp |= DREF_SSC_SOURCE_ENABLE;
3721 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08003722
Chris Wilson5eddb702010-09-11 13:48:45 +01003723 POSTING_READ(PCH_DREF_CONTROL);
Zhenyu Wangc038e512009-10-19 15:43:48 +08003724 udelay(200);
3725
Chris Wilson8e647a22010-08-22 10:54:23 +01003726 if (has_edp_encoder) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003727 if (dev_priv->lvds_use_ssc) {
3728 temp |= DREF_SSC1_ENABLE;
3729 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08003730
Chris Wilson5eddb702010-09-11 13:48:45 +01003731 POSTING_READ(PCH_DREF_CONTROL);
Zhenyu Wangc038e512009-10-19 15:43:48 +08003732 udelay(200);
3733
3734 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3735 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Zhenyu Wangc038e512009-10-19 15:43:48 +08003736 } else {
3737 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Zhenyu Wangc038e512009-10-19 15:43:48 +08003738 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003739 I915_WRITE(PCH_DREF_CONTROL, temp);
Zhenyu Wangc038e512009-10-19 15:43:48 +08003740 }
3741 }
3742
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003743 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08003744 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003745 if (has_reduced_clock)
3746 fp2 = (1 << reduced_clock.n) << 16 |
3747 reduced_clock.m1 << 8 | reduced_clock.m2;
3748 } else {
Shaohua Li21778322009-02-23 15:19:16 +08003749 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003750 if (has_reduced_clock)
3751 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
3752 reduced_clock.m2;
3753 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003754
Chris Wilson5eddb702010-09-11 13:48:45 +01003755 dpll = 0;
Eric Anholtbad720f2009-10-22 16:11:14 -07003756 if (!HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003757 dpll = DPLL_VGA_MODE_DIS;
3758
Jesse Barnes79e53942008-11-07 14:24:08 -08003759 if (IS_I9XX(dev)) {
3760 if (is_lvds)
3761 dpll |= DPLLB_MODE_LVDS;
3762 else
3763 dpll |= DPLLB_MODE_DAC_SERIAL;
3764 if (is_sdvo) {
Chris Wilson6c9547f2010-08-25 10:05:17 +01003765 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
3766 if (pixel_multiplier > 1) {
3767 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3768 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
3769 else if (HAS_PCH_SPLIT(dev))
3770 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
3771 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003772 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003773 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003774 if (is_dp)
3775 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003776
3777 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003778 if (IS_PINEVIEW(dev))
3779 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003780 else {
Shaohua Li21778322009-02-23 15:19:16 +08003781 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003782 /* also FPA1 */
Eric Anholtbad720f2009-10-22 16:11:14 -07003783 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003784 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07003785 if (IS_G4X(dev) && has_reduced_clock)
3786 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003787 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003788 switch (clock.p2) {
3789 case 5:
3790 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3791 break;
3792 case 7:
3793 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3794 break;
3795 case 10:
3796 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3797 break;
3798 case 14:
3799 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3800 break;
3801 }
Eric Anholtbad720f2009-10-22 16:11:14 -07003802 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003803 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3804 } else {
3805 if (is_lvds) {
3806 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3807 } else {
3808 if (clock.p1 == 2)
3809 dpll |= PLL_P1_DIVIDE_BY_TWO;
3810 else
3811 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3812 if (clock.p2 == 4)
3813 dpll |= PLL_P2_DIVIDE_BY_4;
3814 }
3815 }
3816
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003817 if (is_sdvo && is_tv)
3818 dpll |= PLL_REF_INPUT_TVCLKINBC;
3819 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08003820 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003821 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08003822 dpll |= 3;
Eric Anholtc751ce42010-03-25 11:48:48 -07003823 else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003824 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08003825 else
3826 dpll |= PLL_REF_INPUT_DREFCLK;
3827
3828 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01003829 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003830
3831 /* Set up the display plane register */
3832 dspcntr = DISPPLANE_GAMMA_ENABLE;
3833
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003834 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08003835 enable color space conversion */
Eric Anholtbad720f2009-10-22 16:11:14 -07003836 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003837 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07003838 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003839 else
3840 dspcntr |= DISPPLANE_SEL_PIPE_B;
3841 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003842
3843 if (pipe == 0 && !IS_I965G(dev)) {
3844 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3845 * core speed.
3846 *
3847 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3848 * pipe == 0 check?
3849 */
Jesse Barnese70236a2009-09-21 10:42:27 -07003850 if (mode->clock >
3851 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Chris Wilson5eddb702010-09-11 13:48:45 +01003852 pipeconf |= PIPECONF_DOUBLE_WIDE;
Jesse Barnes79e53942008-11-07 14:24:08 -08003853 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003854 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
Jesse Barnes79e53942008-11-07 14:24:08 -08003855 }
3856
Linus Torvalds8d86dc62010-06-08 20:16:28 -07003857 dspcntr |= DISPLAY_PLANE_ENABLE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003858 pipeconf |= PIPECONF_ENABLE;
Linus Torvalds8d86dc62010-06-08 20:16:28 -07003859 dpll |= DPLL_VCO_ENABLE;
3860
Zhao Yakui28c97732009-10-09 11:39:41 +08003861 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08003862 drm_mode_debug_printmodeline(mode);
3863
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003864 /* assign to Ironlake registers */
Eric Anholtbad720f2009-10-22 16:11:14 -07003865 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003866 fp_reg = PCH_FP0(pipe);
3867 dpll_reg = PCH_DPLL(pipe);
3868 } else {
3869 fp_reg = FP0(pipe);
3870 dpll_reg = DPLL(pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08003871 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003872
Chris Wilson8e647a22010-08-22 10:54:23 +01003873 if (!has_edp_encoder) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003874 I915_WRITE(fp_reg, fp);
3875 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003876
3877 POSTING_READ(dpll_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003878 udelay(150);
3879 }
3880
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003881 /* enable transcoder DPLL */
3882 if (HAS_PCH_CPT(dev)) {
3883 temp = I915_READ(PCH_DPLL_SEL);
Chris Wilson5eddb702010-09-11 13:48:45 +01003884 if (pipe == 0)
3885 temp |= TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003886 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003887 temp |= TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003888 I915_WRITE(PCH_DPLL_SEL, temp);
Chris Wilson5eddb702010-09-11 13:48:45 +01003889
3890 POSTING_READ(PCH_DPLL_SEL);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003891 udelay(150);
3892 }
3893
Jesse Barnes79e53942008-11-07 14:24:08 -08003894 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3895 * This is an exception to the general rule that mode_set doesn't turn
3896 * things on.
3897 */
3898 if (is_lvds) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003899 reg = LVDS;
Eric Anholtbad720f2009-10-22 16:11:14 -07003900 if (HAS_PCH_SPLIT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01003901 reg = PCH_LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +08003902
Chris Wilson5eddb702010-09-11 13:48:45 +01003903 temp = I915_READ(reg);
3904 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003905 if (pipe == 1) {
3906 if (HAS_PCH_CPT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01003907 temp |= PORT_TRANS_B_SEL_CPT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003908 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003909 temp |= LVDS_PIPEB_SELECT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003910 } else {
3911 if (HAS_PCH_CPT(dev))
Chris Wilson5eddb702010-09-11 13:48:45 +01003912 temp &= ~PORT_TRANS_SEL_MASK;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003913 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003914 temp &= ~LVDS_PIPEB_SELECT;
Zhenyu Wangb3b095b2010-04-07 16:15:56 +08003915 }
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08003916 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01003917 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08003918 /* Set the B0-B3 data pairs corresponding to whether we're going to
3919 * set the DPLLs for dual-channel mode or not.
3920 */
3921 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01003922 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08003923 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003924 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08003925
3926 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3927 * appropriately here, but we need to look more thoroughly into how
3928 * panels behave in the two modes.
3929 */
Jesse Barnes434ed092010-09-07 14:48:06 -07003930 /* set the dithering flag on non-PCH LVDS as needed */
3931 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) {
3932 if (dev_priv->lvds_dither)
Chris Wilson5eddb702010-09-11 13:48:45 +01003933 temp |= LVDS_ENABLE_DITHER;
Jesse Barnes434ed092010-09-07 14:48:06 -07003934 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003935 temp &= ~LVDS_ENABLE_DITHER;
Zhao Yakui898822c2010-01-04 16:29:30 +08003936 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003937 I915_WRITE(reg, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003938 }
Jesse Barnes434ed092010-09-07 14:48:06 -07003939
3940 /* set the dithering flag and clear for anything other than a panel. */
3941 if (HAS_PCH_SPLIT(dev)) {
3942 pipeconf &= ~PIPECONF_DITHER_EN;
3943 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
3944 if (dev_priv->lvds_dither && (is_lvds || has_edp_encoder)) {
3945 pipeconf |= PIPECONF_DITHER_EN;
3946 pipeconf |= PIPECONF_DITHER_TYPE_ST1;
3947 }
3948 }
3949
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003950 if (is_dp)
3951 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003952 else if (HAS_PCH_SPLIT(dev)) {
3953 /* For non-DP output, clear any trans DP clock recovery setting.*/
3954 if (pipe == 0) {
3955 I915_WRITE(TRANSA_DATA_M1, 0);
3956 I915_WRITE(TRANSA_DATA_N1, 0);
3957 I915_WRITE(TRANSA_DP_LINK_M1, 0);
3958 I915_WRITE(TRANSA_DP_LINK_N1, 0);
3959 } else {
3960 I915_WRITE(TRANSB_DATA_M1, 0);
3961 I915_WRITE(TRANSB_DATA_N1, 0);
3962 I915_WRITE(TRANSB_DP_LINK_M1, 0);
3963 I915_WRITE(TRANSB_DP_LINK_N1, 0);
3964 }
3965 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003966
Chris Wilson8e647a22010-08-22 10:54:23 +01003967 if (!has_edp_encoder) {
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003968 I915_WRITE(fp_reg, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003969 I915_WRITE(dpll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01003970
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003971 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01003972 POSTING_READ(dpll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003973 udelay(150);
3974
Eric Anholtbad720f2009-10-22 16:11:14 -07003975 if (IS_I965G(dev) && !HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003976 temp = 0;
Zhao Yakuibb66c512009-09-10 15:45:49 +08003977 if (is_sdvo) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003978 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
3979 if (temp > 1)
3980 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Chris Wilson6c9547f2010-08-25 10:05:17 +01003981 else
Chris Wilson5eddb702010-09-11 13:48:45 +01003982 temp = 0;
3983 }
3984 I915_WRITE(DPLL_MD(pipe), temp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003985 } else {
3986 /* write it again -- the BIOS does, after all */
3987 I915_WRITE(dpll_reg, dpll);
3988 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003989
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003990 /* Wait for the clocks to stabilize. */
Chris Wilson5eddb702010-09-11 13:48:45 +01003991 POSTING_READ(dpll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003992 udelay(150);
Jesse Barnes79e53942008-11-07 14:24:08 -08003993 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003994
Chris Wilson5eddb702010-09-11 13:48:45 +01003995 intel_crtc->lowfreq_avail = false;
Jesse Barnes652c3932009-08-17 13:31:43 -07003996 if (is_lvds && has_reduced_clock && i915_powersave) {
3997 I915_WRITE(fp_reg + 4, fp2);
3998 intel_crtc->lowfreq_avail = true;
3999 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004000 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004001 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4002 }
4003 } else {
4004 I915_WRITE(fp_reg + 4, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07004005 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004006 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004007 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4008 }
4009 }
4010
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004011 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4012 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4013 /* the chip adds 2 halflines automatically */
4014 adjusted_mode->crtc_vdisplay -= 1;
4015 adjusted_mode->crtc_vtotal -= 1;
4016 adjusted_mode->crtc_vblank_start -= 1;
4017 adjusted_mode->crtc_vblank_end -= 1;
4018 adjusted_mode->crtc_vsync_end -= 1;
4019 adjusted_mode->crtc_vsync_start -= 1;
4020 } else
4021 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
4022
Chris Wilson5eddb702010-09-11 13:48:45 +01004023 I915_WRITE(HTOTAL(pipe),
4024 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004025 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004026 I915_WRITE(HBLANK(pipe),
4027 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004028 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004029 I915_WRITE(HSYNC(pipe),
4030 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004031 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004032
4033 I915_WRITE(VTOTAL(pipe),
4034 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004035 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004036 I915_WRITE(VBLANK(pipe),
4037 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004038 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004039 I915_WRITE(VSYNC(pipe),
4040 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004041 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004042
4043 /* pipesrc and dspsize control the size that is scaled from,
4044 * which should always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08004045 */
Eric Anholtbad720f2009-10-22 16:11:14 -07004046 if (!HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004047 I915_WRITE(DSPSIZE(plane),
4048 ((mode->vdisplay - 1) << 16) |
4049 (mode->hdisplay - 1));
4050 I915_WRITE(DSPPOS(plane), 0);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004051 }
Chris Wilson5eddb702010-09-11 13:48:45 +01004052 I915_WRITE(PIPESRC(pipe),
4053 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004054
Eric Anholtbad720f2009-10-22 16:11:14 -07004055 if (HAS_PCH_SPLIT(dev)) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004056 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4057 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4058 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4059 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004060
Chris Wilson8e647a22010-08-22 10:54:23 +01004061 if (has_edp_encoder) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004062 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004063 } else {
4064 /* enable FDI RX PLL too */
Chris Wilson5eddb702010-09-11 13:48:45 +01004065 reg = FDI_RX_CTL(pipe);
4066 temp = I915_READ(reg);
4067 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
4068
4069 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004070 udelay(200);
4071
4072 /* enable FDI TX PLL too */
Chris Wilson5eddb702010-09-11 13:48:45 +01004073 reg = FDI_TX_CTL(pipe);
4074 temp = I915_READ(reg);
4075 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004076
4077 /* enable FDI RX PCDCLK */
Chris Wilson5eddb702010-09-11 13:48:45 +01004078 reg = FDI_RX_CTL(pipe);
4079 temp = I915_READ(reg);
4080 I915_WRITE(reg, temp | FDI_PCDCLK);
4081
4082 POSTING_READ(reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004083 udelay(200);
4084 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004085 }
4086
Chris Wilson5eddb702010-09-11 13:48:45 +01004087 I915_WRITE(PIPECONF(pipe), pipeconf);
4088 POSTING_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004089
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004090 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004091
Eric Anholtc2416fc2009-11-05 15:30:35 -08004092 if (IS_IRONLAKE(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08004093 /* enable address swizzle for tiling buffer */
4094 temp = I915_READ(DISP_ARB_CTL);
4095 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
4096 }
4097
Chris Wilson5eddb702010-09-11 13:48:45 +01004098 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnes79e53942008-11-07 14:24:08 -08004099
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004100 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004101
4102 intel_update_watermarks(dev);
4103
Jesse Barnes79e53942008-11-07 14:24:08 -08004104 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004105
Chris Wilson1f803ee2009-06-06 09:45:59 +01004106 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004107}
4108
4109/** Loads the palette/gamma unit for the CRTC with the prepared values */
4110void intel_crtc_load_lut(struct drm_crtc *crtc)
4111{
4112 struct drm_device *dev = crtc->dev;
4113 struct drm_i915_private *dev_priv = dev->dev_private;
4114 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4115 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
4116 int i;
4117
4118 /* The clocks have to be on to load the palette. */
4119 if (!crtc->enabled)
4120 return;
4121
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004122 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004123 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08004124 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
4125 LGC_PALETTE_B;
4126
Jesse Barnes79e53942008-11-07 14:24:08 -08004127 for (i = 0; i < 256; i++) {
4128 I915_WRITE(palreg + 4 * i,
4129 (intel_crtc->lut_r[i] << 16) |
4130 (intel_crtc->lut_g[i] << 8) |
4131 intel_crtc->lut_b[i]);
4132 }
4133}
4134
Chris Wilson560b85b2010-08-07 11:01:38 +01004135static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4136{
4137 struct drm_device *dev = crtc->dev;
4138 struct drm_i915_private *dev_priv = dev->dev_private;
4139 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4140 bool visible = base != 0;
4141 u32 cntl;
4142
4143 if (intel_crtc->cursor_visible == visible)
4144 return;
4145
4146 cntl = I915_READ(CURACNTR);
4147 if (visible) {
4148 /* On these chipsets we can only modify the base whilst
4149 * the cursor is disabled.
4150 */
4151 I915_WRITE(CURABASE, base);
4152
4153 cntl &= ~(CURSOR_FORMAT_MASK);
4154 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4155 cntl |= CURSOR_ENABLE |
4156 CURSOR_GAMMA_ENABLE |
4157 CURSOR_FORMAT_ARGB;
4158 } else
4159 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
4160 I915_WRITE(CURACNTR, cntl);
4161
4162 intel_crtc->cursor_visible = visible;
4163}
4164
4165static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4166{
4167 struct drm_device *dev = crtc->dev;
4168 struct drm_i915_private *dev_priv = dev->dev_private;
4169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4170 int pipe = intel_crtc->pipe;
4171 bool visible = base != 0;
4172
4173 if (intel_crtc->cursor_visible != visible) {
4174 uint32_t cntl = I915_READ(pipe == 0 ? CURACNTR : CURBCNTR);
4175 if (base) {
4176 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4177 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4178 cntl |= pipe << 28; /* Connect to correct pipe */
4179 } else {
4180 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4181 cntl |= CURSOR_MODE_DISABLE;
4182 }
4183 I915_WRITE(pipe == 0 ? CURACNTR : CURBCNTR, cntl);
4184
4185 intel_crtc->cursor_visible = visible;
4186 }
4187 /* and commit changes on next vblank */
4188 I915_WRITE(pipe == 0 ? CURABASE : CURBBASE, base);
4189}
4190
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004191/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004192static void intel_crtc_update_cursor(struct drm_crtc *crtc,
4193 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004194{
4195 struct drm_device *dev = crtc->dev;
4196 struct drm_i915_private *dev_priv = dev->dev_private;
4197 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4198 int pipe = intel_crtc->pipe;
4199 int x = intel_crtc->cursor_x;
4200 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01004201 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004202 bool visible;
4203
4204 pos = 0;
4205
Chris Wilson6b383a72010-09-13 13:54:26 +01004206 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004207 base = intel_crtc->cursor_addr;
4208 if (x > (int) crtc->fb->width)
4209 base = 0;
4210
4211 if (y > (int) crtc->fb->height)
4212 base = 0;
4213 } else
4214 base = 0;
4215
4216 if (x < 0) {
4217 if (x + intel_crtc->cursor_width < 0)
4218 base = 0;
4219
4220 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
4221 x = -x;
4222 }
4223 pos |= x << CURSOR_X_SHIFT;
4224
4225 if (y < 0) {
4226 if (y + intel_crtc->cursor_height < 0)
4227 base = 0;
4228
4229 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
4230 y = -y;
4231 }
4232 pos |= y << CURSOR_Y_SHIFT;
4233
4234 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01004235 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004236 return;
4237
4238 I915_WRITE(pipe == 0 ? CURAPOS : CURBPOS, pos);
Chris Wilson560b85b2010-08-07 11:01:38 +01004239 if (IS_845G(dev) || IS_I865G(dev))
4240 i845_update_cursor(crtc, base);
4241 else
4242 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004243
4244 if (visible)
4245 intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj);
4246}
4247
Jesse Barnes79e53942008-11-07 14:24:08 -08004248static int intel_crtc_cursor_set(struct drm_crtc *crtc,
4249 struct drm_file *file_priv,
4250 uint32_t handle,
4251 uint32_t width, uint32_t height)
4252{
4253 struct drm_device *dev = crtc->dev;
4254 struct drm_i915_private *dev_priv = dev->dev_private;
4255 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4256 struct drm_gem_object *bo;
4257 struct drm_i915_gem_object *obj_priv;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004258 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004259 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004260
Zhao Yakui28c97732009-10-09 11:39:41 +08004261 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08004262
4263 /* if we want to turn off the cursor ignore width and height */
4264 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004265 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004266 addr = 0;
4267 bo = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004268 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004269 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004270 }
4271
4272 /* Currently we only support 64x64 cursors */
4273 if (width != 64 || height != 64) {
4274 DRM_ERROR("we currently only support 64x64 cursors\n");
4275 return -EINVAL;
4276 }
4277
4278 bo = drm_gem_object_lookup(dev, file_priv, handle);
4279 if (!bo)
4280 return -ENOENT;
4281
Daniel Vetter23010e42010-03-08 13:35:02 +01004282 obj_priv = to_intel_bo(bo);
Jesse Barnes79e53942008-11-07 14:24:08 -08004283
4284 if (bo->size < width * height * 4) {
4285 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004286 ret = -ENOMEM;
4287 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004288 }
4289
Dave Airlie71acb5e2008-12-30 20:31:46 +10004290 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004291 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004292 if (!dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004293 ret = i915_gem_object_pin(bo, PAGE_SIZE);
4294 if (ret) {
4295 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004296 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004297 }
Chris Wilsone7b526b2010-06-02 08:30:48 +01004298
4299 ret = i915_gem_object_set_to_gtt_domain(bo, 0);
4300 if (ret) {
4301 DRM_ERROR("failed to move cursor bo into the GTT\n");
4302 goto fail_unpin;
4303 }
4304
Jesse Barnes79e53942008-11-07 14:24:08 -08004305 addr = obj_priv->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004306 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004307 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004308 ret = i915_gem_attach_phys_object(dev, bo,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004309 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
4310 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004311 if (ret) {
4312 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004313 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004314 }
4315 addr = obj_priv->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004316 }
4317
Jesse Barnes14b60392009-05-20 16:47:08 -04004318 if (!IS_I9XX(dev))
4319 I915_WRITE(CURSIZE, (height << 12) | width);
4320
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004321 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004322 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004323 if (dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10004324 if (intel_crtc->cursor_bo != bo)
4325 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4326 } else
4327 i915_gem_object_unpin(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004328 drm_gem_object_unreference(intel_crtc->cursor_bo);
4329 }
Jesse Barnes80824002009-09-10 15:28:06 -07004330
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004331 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004332
4333 intel_crtc->cursor_addr = addr;
4334 intel_crtc->cursor_bo = bo;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004335 intel_crtc->cursor_width = width;
4336 intel_crtc->cursor_height = height;
4337
Chris Wilson6b383a72010-09-13 13:54:26 +01004338 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004339
Jesse Barnes79e53942008-11-07 14:24:08 -08004340 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004341fail_unpin:
4342 i915_gem_object_unpin(bo);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004343fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004344 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004345fail:
4346 drm_gem_object_unreference_unlocked(bo);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004347 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004348}
4349
4350static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4351{
Jesse Barnes79e53942008-11-07 14:24:08 -08004352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004353
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004354 intel_crtc->cursor_x = x;
4355 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07004356
Chris Wilson6b383a72010-09-13 13:54:26 +01004357 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08004358
4359 return 0;
4360}
4361
4362/** Sets the color ramps on behalf of RandR */
4363void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4364 u16 blue, int regno)
4365{
4366 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4367
4368 intel_crtc->lut_r[regno] = red >> 8;
4369 intel_crtc->lut_g[regno] = green >> 8;
4370 intel_crtc->lut_b[regno] = blue >> 8;
4371}
4372
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004373void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4374 u16 *blue, int regno)
4375{
4376 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4377
4378 *red = intel_crtc->lut_r[regno] << 8;
4379 *green = intel_crtc->lut_g[regno] << 8;
4380 *blue = intel_crtc->lut_b[regno] << 8;
4381}
4382
Jesse Barnes79e53942008-11-07 14:24:08 -08004383static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01004384 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08004385{
James Simmons72034252010-08-03 01:33:19 +01004386 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08004387 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004388
James Simmons72034252010-08-03 01:33:19 +01004389 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004390 intel_crtc->lut_r[i] = red[i] >> 8;
4391 intel_crtc->lut_g[i] = green[i] >> 8;
4392 intel_crtc->lut_b[i] = blue[i] >> 8;
4393 }
4394
4395 intel_crtc_load_lut(crtc);
4396}
4397
4398/**
4399 * Get a pipe with a simple mode set on it for doing load-based monitor
4400 * detection.
4401 *
4402 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07004403 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08004404 *
Eric Anholtc751ce42010-03-25 11:48:48 -07004405 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08004406 * configured for it. In the future, it could choose to temporarily disable
4407 * some outputs to free up a pipe for its use.
4408 *
4409 * \return crtc, or NULL if no pipes are available.
4410 */
4411
4412/* VESA 640x480x72Hz mode to set on the pipe */
4413static struct drm_display_mode load_detect_mode = {
4414 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4415 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4416};
4417
Eric Anholt21d40d32010-03-25 11:11:14 -07004418struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004419 struct drm_connector *connector,
Jesse Barnes79e53942008-11-07 14:24:08 -08004420 struct drm_display_mode *mode,
4421 int *dpms_mode)
4422{
4423 struct intel_crtc *intel_crtc;
4424 struct drm_crtc *possible_crtc;
4425 struct drm_crtc *supported_crtc =NULL;
Chris Wilson4ef69c72010-09-09 15:14:28 +01004426 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08004427 struct drm_crtc *crtc = NULL;
4428 struct drm_device *dev = encoder->dev;
4429 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4430 struct drm_crtc_helper_funcs *crtc_funcs;
4431 int i = -1;
4432
4433 /*
4434 * Algorithm gets a little messy:
4435 * - if the connector already has an assigned crtc, use it (but make
4436 * sure it's on first)
4437 * - try to find the first unused crtc that can drive this connector,
4438 * and use that if we find one
4439 * - if there are no unused crtcs available, try to use the first
4440 * one we found that supports the connector
4441 */
4442
4443 /* See if we already have a CRTC for this connector */
4444 if (encoder->crtc) {
4445 crtc = encoder->crtc;
4446 /* Make sure the crtc and connector are running */
4447 intel_crtc = to_intel_crtc(crtc);
4448 *dpms_mode = intel_crtc->dpms_mode;
4449 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4450 crtc_funcs = crtc->helper_private;
4451 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4452 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
4453 }
4454 return crtc;
4455 }
4456
4457 /* Find an unused one (if possible) */
4458 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
4459 i++;
4460 if (!(encoder->possible_crtcs & (1 << i)))
4461 continue;
4462 if (!possible_crtc->enabled) {
4463 crtc = possible_crtc;
4464 break;
4465 }
4466 if (!supported_crtc)
4467 supported_crtc = possible_crtc;
4468 }
4469
4470 /*
4471 * If we didn't find an unused CRTC, don't use any.
4472 */
4473 if (!crtc) {
4474 return NULL;
4475 }
4476
4477 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004478 connector->encoder = encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -07004479 intel_encoder->load_detect_temp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004480
4481 intel_crtc = to_intel_crtc(crtc);
4482 *dpms_mode = intel_crtc->dpms_mode;
4483
4484 if (!crtc->enabled) {
4485 if (!mode)
4486 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05004487 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004488 } else {
4489 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4490 crtc_funcs = crtc->helper_private;
4491 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4492 }
4493
4494 /* Add this connector to the crtc */
4495 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
4496 encoder_funcs->commit(encoder);
4497 }
4498 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004499 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004500
4501 return crtc;
4502}
4503
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004504void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
4505 struct drm_connector *connector, int dpms_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08004506{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004507 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08004508 struct drm_device *dev = encoder->dev;
4509 struct drm_crtc *crtc = encoder->crtc;
4510 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4511 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
4512
Eric Anholt21d40d32010-03-25 11:11:14 -07004513 if (intel_encoder->load_detect_temp) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004514 encoder->crtc = NULL;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08004515 connector->encoder = NULL;
Eric Anholt21d40d32010-03-25 11:11:14 -07004516 intel_encoder->load_detect_temp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004517 crtc->enabled = drm_helper_crtc_in_use(crtc);
4518 drm_helper_disable_unused_functions(dev);
4519 }
4520
Eric Anholtc751ce42010-03-25 11:48:48 -07004521 /* Switch crtc and encoder back off if necessary */
Jesse Barnes79e53942008-11-07 14:24:08 -08004522 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4523 if (encoder->crtc == crtc)
4524 encoder_funcs->dpms(encoder, dpms_mode);
4525 crtc_funcs->dpms(crtc, dpms_mode);
4526 }
4527}
4528
4529/* Returns the clock of the currently programmed mode of the given pipe. */
4530static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4531{
4532 struct drm_i915_private *dev_priv = dev->dev_private;
4533 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4534 int pipe = intel_crtc->pipe;
4535 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4536 u32 fp;
4537 intel_clock_t clock;
4538
4539 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4540 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4541 else
4542 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4543
4544 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004545 if (IS_PINEVIEW(dev)) {
4546 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
4547 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08004548 } else {
4549 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
4550 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
4551 }
4552
Jesse Barnes79e53942008-11-07 14:24:08 -08004553 if (IS_I9XX(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004554 if (IS_PINEVIEW(dev))
4555 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
4556 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08004557 else
4558 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08004559 DPLL_FPA01_P1_POST_DIV_SHIFT);
4560
4561 switch (dpll & DPLL_MODE_MASK) {
4562 case DPLLB_MODE_DAC_SERIAL:
4563 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
4564 5 : 10;
4565 break;
4566 case DPLLB_MODE_LVDS:
4567 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
4568 7 : 14;
4569 break;
4570 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08004571 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08004572 "mode\n", (int)(dpll & DPLL_MODE_MASK));
4573 return 0;
4574 }
4575
4576 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08004577 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004578 } else {
4579 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
4580
4581 if (is_lvds) {
4582 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
4583 DPLL_FPA01_P1_POST_DIV_SHIFT);
4584 clock.p2 = 14;
4585
4586 if ((dpll & PLL_REF_INPUT_MASK) ==
4587 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
4588 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08004589 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004590 } else
Shaohua Li21778322009-02-23 15:19:16 +08004591 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004592 } else {
4593 if (dpll & PLL_P1_DIVIDE_BY_TWO)
4594 clock.p1 = 2;
4595 else {
4596 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
4597 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
4598 }
4599 if (dpll & PLL_P2_DIVIDE_BY_4)
4600 clock.p2 = 4;
4601 else
4602 clock.p2 = 2;
4603
Shaohua Li21778322009-02-23 15:19:16 +08004604 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004605 }
4606 }
4607
4608 /* XXX: It would be nice to validate the clocks, but we can't reuse
4609 * i830PllIsValid() because it relies on the xf86_config connector
4610 * configuration being accurate, which it isn't necessarily.
4611 */
4612
4613 return clock.dot;
4614}
4615
4616/** Returns the currently programmed mode of the given pipe. */
4617struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
4618 struct drm_crtc *crtc)
4619{
4620 struct drm_i915_private *dev_priv = dev->dev_private;
4621 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4622 int pipe = intel_crtc->pipe;
4623 struct drm_display_mode *mode;
4624 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
4625 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
4626 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
4627 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
4628
4629 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
4630 if (!mode)
4631 return NULL;
4632
4633 mode->clock = intel_crtc_clock_get(dev, crtc);
4634 mode->hdisplay = (htot & 0xffff) + 1;
4635 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
4636 mode->hsync_start = (hsync & 0xffff) + 1;
4637 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
4638 mode->vdisplay = (vtot & 0xffff) + 1;
4639 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
4640 mode->vsync_start = (vsync & 0xffff) + 1;
4641 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
4642
4643 drm_mode_set_name(mode);
4644 drm_mode_set_crtcinfo(mode, 0);
4645
4646 return mode;
4647}
4648
Jesse Barnes652c3932009-08-17 13:31:43 -07004649#define GPU_IDLE_TIMEOUT 500 /* ms */
4650
4651/* When this timer fires, we've been idle for awhile */
4652static void intel_gpu_idle_timer(unsigned long arg)
4653{
4654 struct drm_device *dev = (struct drm_device *)arg;
4655 drm_i915_private_t *dev_priv = dev->dev_private;
4656
Zhao Yakui44d98a62009-10-09 11:39:40 +08004657 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004658
4659 dev_priv->busy = false;
4660
Eric Anholt01dfba92009-09-06 15:18:53 -07004661 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004662}
4663
Jesse Barnes652c3932009-08-17 13:31:43 -07004664#define CRTC_IDLE_TIMEOUT 1000 /* ms */
4665
4666static void intel_crtc_idle_timer(unsigned long arg)
4667{
4668 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
4669 struct drm_crtc *crtc = &intel_crtc->base;
4670 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
4671
Zhao Yakui44d98a62009-10-09 11:39:40 +08004672 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004673
4674 intel_crtc->busy = false;
4675
Eric Anholt01dfba92009-09-06 15:18:53 -07004676 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07004677}
4678
Daniel Vetter3dec0092010-08-20 21:40:52 +02004679static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07004680{
4681 struct drm_device *dev = crtc->dev;
4682 drm_i915_private_t *dev_priv = dev->dev_private;
4683 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4684 int pipe = intel_crtc->pipe;
4685 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4686 int dpll = I915_READ(dpll_reg);
4687
Eric Anholtbad720f2009-10-22 16:11:14 -07004688 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004689 return;
4690
4691 if (!dev_priv->lvds_downclock_avail)
4692 return;
4693
4694 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004695 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004696
4697 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07004698 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
4699 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07004700
4701 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
4702 I915_WRITE(dpll_reg, dpll);
4703 dpll = I915_READ(dpll_reg);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004704 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07004705 dpll = I915_READ(dpll_reg);
4706 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08004707 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004708
4709 /* ...and lock them again */
4710 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4711 }
4712
4713 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02004714 mod_timer(&intel_crtc->idle_timer, jiffies +
4715 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07004716}
4717
4718static void intel_decrease_pllclock(struct drm_crtc *crtc)
4719{
4720 struct drm_device *dev = crtc->dev;
4721 drm_i915_private_t *dev_priv = dev->dev_private;
4722 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4723 int pipe = intel_crtc->pipe;
4724 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
4725 int dpll = I915_READ(dpll_reg);
4726
Eric Anholtbad720f2009-10-22 16:11:14 -07004727 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07004728 return;
4729
4730 if (!dev_priv->lvds_downclock_avail)
4731 return;
4732
4733 /*
4734 * Since this is called by a timer, we should never get here in
4735 * the manual case.
4736 */
4737 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08004738 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004739
4740 /* Unlock panel regs */
Jesse Barnes4a655f02010-07-22 13:18:18 -07004741 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
4742 PANEL_UNLOCK_REGS);
Jesse Barnes652c3932009-08-17 13:31:43 -07004743
4744 dpll |= DISPLAY_RATE_SELECT_FPA1;
4745 I915_WRITE(dpll_reg, dpll);
4746 dpll = I915_READ(dpll_reg);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004747 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07004748 dpll = I915_READ(dpll_reg);
4749 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08004750 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07004751
4752 /* ...and lock them again */
4753 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
4754 }
4755
4756}
4757
4758/**
4759 * intel_idle_update - adjust clocks for idleness
4760 * @work: work struct
4761 *
4762 * Either the GPU or display (or both) went idle. Check the busy status
4763 * here and adjust the CRTC and GPU clocks as necessary.
4764 */
4765static void intel_idle_update(struct work_struct *work)
4766{
4767 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
4768 idle_work);
4769 struct drm_device *dev = dev_priv->dev;
4770 struct drm_crtc *crtc;
4771 struct intel_crtc *intel_crtc;
Li Peng45ac22c2010-06-12 23:38:35 +08004772 int enabled = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004773
4774 if (!i915_powersave)
4775 return;
4776
4777 mutex_lock(&dev->struct_mutex);
4778
Jesse Barnes7648fa92010-05-20 14:28:11 -07004779 i915_update_gfx_val(dev_priv);
4780
Jesse Barnes652c3932009-08-17 13:31:43 -07004781 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4782 /* Skip inactive CRTCs */
4783 if (!crtc->fb)
4784 continue;
4785
Li Peng45ac22c2010-06-12 23:38:35 +08004786 enabled++;
Jesse Barnes652c3932009-08-17 13:31:43 -07004787 intel_crtc = to_intel_crtc(crtc);
4788 if (!intel_crtc->busy)
4789 intel_decrease_pllclock(crtc);
4790 }
4791
Li Peng45ac22c2010-06-12 23:38:35 +08004792 if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) {
4793 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
4794 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
4795 }
4796
Jesse Barnes652c3932009-08-17 13:31:43 -07004797 mutex_unlock(&dev->struct_mutex);
4798}
4799
4800/**
4801 * intel_mark_busy - mark the GPU and possibly the display busy
4802 * @dev: drm device
4803 * @obj: object we're operating on
4804 *
4805 * Callers can use this function to indicate that the GPU is busy processing
4806 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
4807 * buffer), we'll also mark the display as busy, so we know to increase its
4808 * clock frequency.
4809 */
4810void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj)
4811{
4812 drm_i915_private_t *dev_priv = dev->dev_private;
4813 struct drm_crtc *crtc = NULL;
4814 struct intel_framebuffer *intel_fb;
4815 struct intel_crtc *intel_crtc;
4816
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08004817 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4818 return;
4819
Li Peng060e6452010-02-10 01:54:24 +08004820 if (!dev_priv->busy) {
4821 if (IS_I945G(dev) || IS_I945GM(dev)) {
4822 u32 fw_blc_self;
Li Pengee980b82010-01-27 19:01:11 +08004823
Li Peng060e6452010-02-10 01:54:24 +08004824 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4825 fw_blc_self = I915_READ(FW_BLC_SELF);
4826 fw_blc_self &= ~FW_BLC_SELF_EN;
4827 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4828 }
Chris Wilson28cf7982009-11-30 01:08:56 +00004829 dev_priv->busy = true;
Li Peng060e6452010-02-10 01:54:24 +08004830 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00004831 mod_timer(&dev_priv->idle_timer, jiffies +
4832 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07004833
4834 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4835 if (!crtc->fb)
4836 continue;
4837
4838 intel_crtc = to_intel_crtc(crtc);
4839 intel_fb = to_intel_framebuffer(crtc->fb);
4840 if (intel_fb->obj == obj) {
4841 if (!intel_crtc->busy) {
Li Peng060e6452010-02-10 01:54:24 +08004842 if (IS_I945G(dev) || IS_I945GM(dev)) {
4843 u32 fw_blc_self;
4844
4845 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
4846 fw_blc_self = I915_READ(FW_BLC_SELF);
4847 fw_blc_self &= ~FW_BLC_SELF_EN;
4848 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
4849 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004850 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02004851 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07004852 intel_crtc->busy = true;
4853 } else {
4854 /* Busy -> busy, put off timer */
4855 mod_timer(&intel_crtc->idle_timer, jiffies +
4856 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
4857 }
4858 }
4859 }
4860}
4861
Jesse Barnes79e53942008-11-07 14:24:08 -08004862static void intel_crtc_destroy(struct drm_crtc *crtc)
4863{
4864 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02004865 struct drm_device *dev = crtc->dev;
4866 struct intel_unpin_work *work;
4867 unsigned long flags;
4868
4869 spin_lock_irqsave(&dev->event_lock, flags);
4870 work = intel_crtc->unpin_work;
4871 intel_crtc->unpin_work = NULL;
4872 spin_unlock_irqrestore(&dev->event_lock, flags);
4873
4874 if (work) {
4875 cancel_work_sync(&work->work);
4876 kfree(work);
4877 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004878
4879 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02004880
Jesse Barnes79e53942008-11-07 14:24:08 -08004881 kfree(intel_crtc);
4882}
4883
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004884static void intel_unpin_work_fn(struct work_struct *__work)
4885{
4886 struct intel_unpin_work *work =
4887 container_of(__work, struct intel_unpin_work, work);
4888
4889 mutex_lock(&work->dev->struct_mutex);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004890 i915_gem_object_unpin(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08004891 drm_gem_object_unreference(work->pending_flip_obj);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08004892 drm_gem_object_unreference(work->old_fb_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004893 mutex_unlock(&work->dev->struct_mutex);
4894 kfree(work);
4895}
4896
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004897static void do_intel_finish_page_flip(struct drm_device *dev,
4898 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004899{
4900 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004901 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4902 struct intel_unpin_work *work;
4903 struct drm_i915_gem_object *obj_priv;
4904 struct drm_pending_vblank_event *e;
4905 struct timeval now;
4906 unsigned long flags;
4907
4908 /* Ignore early vblank irqs */
4909 if (intel_crtc == NULL)
4910 return;
4911
4912 spin_lock_irqsave(&dev->event_lock, flags);
4913 work = intel_crtc->unpin_work;
4914 if (work == NULL || !work->pending) {
4915 spin_unlock_irqrestore(&dev->event_lock, flags);
4916 return;
4917 }
4918
4919 intel_crtc->unpin_work = NULL;
4920 drm_vblank_put(dev, intel_crtc->pipe);
4921
4922 if (work->event) {
4923 e = work->event;
4924 do_gettimeofday(&now);
4925 e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe);
4926 e->event.tv_sec = now.tv_sec;
4927 e->event.tv_usec = now.tv_usec;
4928 list_add_tail(&e->base.link,
4929 &e->base.file_priv->event_list);
4930 wake_up_interruptible(&e->base.file_priv->event_wait);
4931 }
4932
4933 spin_unlock_irqrestore(&dev->event_lock, flags);
4934
Daniel Vetter23010e42010-03-08 13:35:02 +01004935 obj_priv = to_intel_bo(work->pending_flip_obj);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004936
4937 /* Initial scanout buffer will have a 0 pending flip count */
4938 if ((atomic_read(&obj_priv->pending_flip) == 0) ||
4939 atomic_dec_and_test(&obj_priv->pending_flip))
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004940 DRM_WAKEUP(&dev_priv->pending_flip_queue);
4941 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07004942
4943 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004944}
4945
Jesse Barnes1afe3e92010-03-26 10:35:20 -07004946void intel_finish_page_flip(struct drm_device *dev, int pipe)
4947{
4948 drm_i915_private_t *dev_priv = dev->dev_private;
4949 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4950
4951 do_intel_finish_page_flip(dev, crtc);
4952}
4953
4954void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
4955{
4956 drm_i915_private_t *dev_priv = dev->dev_private;
4957 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
4958
4959 do_intel_finish_page_flip(dev, crtc);
4960}
4961
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004962void intel_prepare_page_flip(struct drm_device *dev, int plane)
4963{
4964 drm_i915_private_t *dev_priv = dev->dev_private;
4965 struct intel_crtc *intel_crtc =
4966 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
4967 unsigned long flags;
4968
4969 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08004970 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01004971 if ((++intel_crtc->unpin_work->pending) > 1)
4972 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08004973 } else {
4974 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
4975 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004976 spin_unlock_irqrestore(&dev->event_lock, flags);
4977}
4978
4979static int intel_crtc_page_flip(struct drm_crtc *crtc,
4980 struct drm_framebuffer *fb,
4981 struct drm_pending_vblank_event *event)
4982{
4983 struct drm_device *dev = crtc->dev;
4984 struct drm_i915_private *dev_priv = dev->dev_private;
4985 struct intel_framebuffer *intel_fb;
4986 struct drm_i915_gem_object *obj_priv;
4987 struct drm_gem_object *obj;
4988 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4989 struct intel_unpin_work *work;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07004990 unsigned long flags, offset;
Chris Wilson52e68632010-08-08 10:15:59 +01004991 int pipe = intel_crtc->pipe;
4992 u32 pf, pipesrc;
4993 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004994
4995 work = kzalloc(sizeof *work, GFP_KERNEL);
4996 if (work == NULL)
4997 return -ENOMEM;
4998
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004999 work->event = event;
5000 work->dev = crtc->dev;
5001 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005002 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005003 INIT_WORK(&work->work, intel_unpin_work_fn);
5004
5005 /* We borrow the event spin lock for protecting unpin_work */
5006 spin_lock_irqsave(&dev->event_lock, flags);
5007 if (intel_crtc->unpin_work) {
5008 spin_unlock_irqrestore(&dev->event_lock, flags);
5009 kfree(work);
Chris Wilson468f0b42010-05-27 13:18:13 +01005010
5011 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005012 return -EBUSY;
5013 }
5014 intel_crtc->unpin_work = work;
5015 spin_unlock_irqrestore(&dev->event_lock, flags);
5016
5017 intel_fb = to_intel_framebuffer(fb);
5018 obj = intel_fb->obj;
5019
Chris Wilson468f0b42010-05-27 13:18:13 +01005020 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005021 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson96b099f2010-06-07 14:03:04 +01005022 if (ret)
5023 goto cleanup_work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005024
Jesse Barnes75dfca82010-02-10 15:09:44 -08005025 /* Reference the objects for the scheduled work. */
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005026 drm_gem_object_reference(work->old_fb_obj);
Jesse Barnes75dfca82010-02-10 15:09:44 -08005027 drm_gem_object_reference(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005028
5029 crtc->fb = fb;
Chris Wilson2dafb1e2010-06-07 14:03:05 +01005030 ret = i915_gem_object_flush_write_domain(obj);
5031 if (ret)
5032 goto cleanup_objs;
Chris Wilson96b099f2010-06-07 14:03:04 +01005033
5034 ret = drm_vblank_get(dev, intel_crtc->pipe);
5035 if (ret)
5036 goto cleanup_objs;
5037
Daniel Vetter23010e42010-03-08 13:35:02 +01005038 obj_priv = to_intel_bo(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005039 atomic_inc(&obj_priv->pending_flip);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005040 work->pending_flip_obj = obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005041
Daniel Vetter6146b3d2010-08-04 21:22:10 +02005042 if (IS_GEN3(dev) || IS_GEN2(dev)) {
Chris Wilson52e68632010-08-08 10:15:59 +01005043 u32 flip_mask;
5044
5045 if (intel_crtc->plane)
5046 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5047 else
5048 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
5049
Daniel Vetter6146b3d2010-08-04 21:22:10 +02005050 BEGIN_LP_RING(2);
5051 OUT_RING(MI_WAIT_FOR_EVENT | flip_mask);
5052 OUT_RING(0);
5053 ADVANCE_LP_RING();
5054 }
Jesse Barnes83f7fd02010-04-05 14:03:51 -07005055
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005056 work->enable_stall_check = true;
5057
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07005058 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Chris Wilson52e68632010-08-08 10:15:59 +01005059 offset = crtc->y * fb->pitch + crtc->x * fb->bits_per_pixel/8;
Jesse Barnesbe9a3db2010-07-23 12:03:37 -07005060
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005061 BEGIN_LP_RING(4);
Chris Wilson52e68632010-08-08 10:15:59 +01005062 switch(INTEL_INFO(dev)->gen) {
5063 case 2:
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005064 OUT_RING(MI_DISPLAY_FLIP |
5065 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5066 OUT_RING(fb->pitch);
Chris Wilson52e68632010-08-08 10:15:59 +01005067 OUT_RING(obj_priv->gtt_offset + offset);
5068 OUT_RING(MI_NOOP);
5069 break;
5070
5071 case 3:
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005072 OUT_RING(MI_DISPLAY_FLIP_I915 |
5073 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5074 OUT_RING(fb->pitch);
Chris Wilson52e68632010-08-08 10:15:59 +01005075 OUT_RING(obj_priv->gtt_offset + offset);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005076 OUT_RING(MI_NOOP);
Chris Wilson52e68632010-08-08 10:15:59 +01005077 break;
5078
5079 case 4:
5080 case 5:
5081 /* i965+ uses the linear or tiled offsets from the
5082 * Display Registers (which do not change across a page-flip)
5083 * so we need only reprogram the base address.
5084 */
Daniel Vetter69d0b962010-08-04 21:22:09 +02005085 OUT_RING(MI_DISPLAY_FLIP |
5086 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5087 OUT_RING(fb->pitch);
Chris Wilson52e68632010-08-08 10:15:59 +01005088 OUT_RING(obj_priv->gtt_offset | obj_priv->tiling_mode);
5089
5090 /* XXX Enabling the panel-fitter across page-flip is so far
5091 * untested on non-native modes, so ignore it for now.
5092 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5093 */
5094 pf = 0;
5095 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
5096 OUT_RING(pf | pipesrc);
5097 break;
5098
5099 case 6:
5100 OUT_RING(MI_DISPLAY_FLIP |
5101 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5102 OUT_RING(fb->pitch | obj_priv->tiling_mode);
5103 OUT_RING(obj_priv->gtt_offset);
5104
5105 pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5106 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
5107 OUT_RING(pf | pipesrc);
5108 break;
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005109 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005110 ADVANCE_LP_RING();
5111
5112 mutex_unlock(&dev->struct_mutex);
5113
Jesse Barnese5510fa2010-07-01 16:48:37 -07005114 trace_i915_flip_request(intel_crtc->plane, obj);
5115
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005116 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01005117
5118cleanup_objs:
5119 drm_gem_object_unreference(work->old_fb_obj);
5120 drm_gem_object_unreference(obj);
5121cleanup_work:
5122 mutex_unlock(&dev->struct_mutex);
5123
5124 spin_lock_irqsave(&dev->event_lock, flags);
5125 intel_crtc->unpin_work = NULL;
5126 spin_unlock_irqrestore(&dev->event_lock, flags);
5127
5128 kfree(work);
5129
5130 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005131}
5132
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07005133static struct drm_crtc_helper_funcs intel_helper_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08005134 .dpms = intel_crtc_dpms,
5135 .mode_fixup = intel_crtc_mode_fixup,
5136 .mode_set = intel_crtc_mode_set,
5137 .mode_set_base = intel_pipe_set_base,
Jesse Barnes81255562010-08-02 12:07:50 -07005138 .mode_set_base_atomic = intel_pipe_set_base_atomic,
Dave Airlie068143d2009-10-05 09:58:02 +10005139 .load_lut = intel_crtc_load_lut,
Jesse Barnes79e53942008-11-07 14:24:08 -08005140};
5141
5142static const struct drm_crtc_funcs intel_crtc_funcs = {
5143 .cursor_set = intel_crtc_cursor_set,
5144 .cursor_move = intel_crtc_cursor_move,
5145 .gamma_set = intel_crtc_gamma_set,
5146 .set_config = drm_crtc_helper_set_config,
5147 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005148 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08005149};
5150
5151
Hannes Ederb358d0a2008-12-18 21:18:47 +01005152static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08005153{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005154 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005155 struct intel_crtc *intel_crtc;
5156 int i;
5157
5158 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
5159 if (intel_crtc == NULL)
5160 return;
5161
5162 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
5163
5164 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
5165 intel_crtc->pipe = pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08005166 intel_crtc->plane = pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08005167 for (i = 0; i < 256; i++) {
5168 intel_crtc->lut_r[i] = i;
5169 intel_crtc->lut_g[i] = i;
5170 intel_crtc->lut_b[i] = i;
5171 }
5172
Jesse Barnes80824002009-09-10 15:28:06 -07005173 /* Swap pipes & planes for FBC on pre-965 */
5174 intel_crtc->pipe = pipe;
5175 intel_crtc->plane = pipe;
5176 if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005177 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07005178 intel_crtc->plane = ((pipe == 0) ? 1 : 0);
5179 }
5180
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08005181 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
5182 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
5183 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
5184 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
5185
Jesse Barnes79e53942008-11-07 14:24:08 -08005186 intel_crtc->cursor_addr = 0;
Chris Wilson032d2a02010-09-06 16:17:22 +01005187 intel_crtc->dpms_mode = -1;
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07005188
5189 if (HAS_PCH_SPLIT(dev)) {
5190 intel_helper_funcs.prepare = ironlake_crtc_prepare;
5191 intel_helper_funcs.commit = ironlake_crtc_commit;
5192 } else {
5193 intel_helper_funcs.prepare = i9xx_crtc_prepare;
5194 intel_helper_funcs.commit = i9xx_crtc_commit;
5195 }
5196
Jesse Barnes79e53942008-11-07 14:24:08 -08005197 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
5198
Jesse Barnes652c3932009-08-17 13:31:43 -07005199 intel_crtc->busy = false;
5200
5201 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
5202 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005203}
5204
Carl Worth08d7b3d2009-04-29 14:43:54 -07005205int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
5206 struct drm_file *file_priv)
5207{
5208 drm_i915_private_t *dev_priv = dev->dev_private;
5209 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02005210 struct drm_mode_object *drmmode_obj;
5211 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005212
5213 if (!dev_priv) {
5214 DRM_ERROR("called with no initialization\n");
5215 return -EINVAL;
5216 }
5217
Daniel Vetterc05422d2009-08-11 16:05:30 +02005218 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
5219 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07005220
Daniel Vetterc05422d2009-08-11 16:05:30 +02005221 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07005222 DRM_ERROR("no such CRTC id\n");
5223 return -EINVAL;
5224 }
5225
Daniel Vetterc05422d2009-08-11 16:05:30 +02005226 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
5227 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005228
Daniel Vetterc05422d2009-08-11 16:05:30 +02005229 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07005230}
5231
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08005232static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005233{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005234 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005235 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005236 int entry = 0;
5237
Chris Wilson4ef69c72010-09-09 15:14:28 +01005238 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
5239 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08005240 index_mask |= (1 << entry);
5241 entry++;
5242 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01005243
Jesse Barnes79e53942008-11-07 14:24:08 -08005244 return index_mask;
5245}
5246
Jesse Barnes79e53942008-11-07 14:24:08 -08005247static void intel_setup_outputs(struct drm_device *dev)
5248{
Eric Anholt725e30a2009-01-22 13:01:02 -08005249 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005250 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005251 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005252
Zhenyu Wang541998a2009-06-05 15:38:44 +08005253 if (IS_MOBILE(dev) && !IS_I830(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005254 intel_lvds_init(dev);
5255
Eric Anholtbad720f2009-10-22 16:11:14 -07005256 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005257 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005258
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005259 if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED))
5260 intel_dp_init(dev, DP_A);
5261
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005262 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
5263 intel_dp_init(dev, PCH_DP_D);
5264 }
5265
5266 intel_crt_init(dev);
5267
5268 if (HAS_PCH_SPLIT(dev)) {
5269 int found;
5270
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005271 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08005272 /* PCH SDVOB multiplex with HDMIB */
5273 found = intel_sdvo_init(dev, PCH_SDVOB);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005274 if (!found)
5275 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005276 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
5277 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08005278 }
5279
5280 if (I915_READ(HDMIC) & PORT_DETECTED)
5281 intel_hdmi_init(dev, HDMIC);
5282
5283 if (I915_READ(HDMID) & PORT_DETECTED)
5284 intel_hdmi_init(dev, HDMID);
5285
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005286 if (I915_READ(PCH_DP_C) & DP_DETECTED)
5287 intel_dp_init(dev, PCH_DP_C);
5288
Adam Jacksoncb0953d2010-07-16 14:46:29 -04005289 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005290 intel_dp_init(dev, PCH_DP_D);
5291
Zhenyu Wang103a1962009-11-27 11:44:36 +08005292 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08005293 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08005294
Eric Anholt725e30a2009-01-22 13:01:02 -08005295 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005296 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005297 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005298 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
5299 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005300 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005301 }
Ma Ling27185ae2009-08-24 13:50:23 +08005302
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005303 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
5304 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005305 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005306 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005307 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005308
5309 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04005310
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005311 if (I915_READ(SDVOB) & SDVO_DETECTED) {
5312 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005313 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005314 }
Ma Ling27185ae2009-08-24 13:50:23 +08005315
5316 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
5317
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005318 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
5319 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08005320 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005321 }
5322 if (SUPPORTS_INTEGRATED_DP(dev)) {
5323 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005324 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005325 }
Eric Anholt725e30a2009-01-22 13:01:02 -08005326 }
Ma Ling27185ae2009-08-24 13:50:23 +08005327
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005328 if (SUPPORTS_INTEGRATED_DP(dev) &&
5329 (I915_READ(DP_D) & DP_DETECTED)) {
5330 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005331 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08005332 }
Eric Anholtbad720f2009-10-22 16:11:14 -07005333 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005334 intel_dvo_init(dev);
5335
Zhenyu Wang103a1962009-11-27 11:44:36 +08005336 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08005337 intel_tv_init(dev);
5338
Chris Wilson4ef69c72010-09-09 15:14:28 +01005339 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
5340 encoder->base.possible_crtcs = encoder->crtc_mask;
5341 encoder->base.possible_clones =
5342 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08005343 }
5344}
5345
5346static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
5347{
5348 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005349
5350 drm_framebuffer_cleanup(fb);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005351 drm_gem_object_unreference_unlocked(intel_fb->obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005352
5353 kfree(intel_fb);
5354}
5355
5356static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
5357 struct drm_file *file_priv,
5358 unsigned int *handle)
5359{
5360 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
5361 struct drm_gem_object *object = intel_fb->obj;
5362
5363 return drm_gem_handle_create(file_priv, object, handle);
5364}
5365
5366static const struct drm_framebuffer_funcs intel_fb_funcs = {
5367 .destroy = intel_user_framebuffer_destroy,
5368 .create_handle = intel_user_framebuffer_create_handle,
5369};
5370
Dave Airlie38651672010-03-30 05:34:13 +00005371int intel_framebuffer_init(struct drm_device *dev,
5372 struct intel_framebuffer *intel_fb,
5373 struct drm_mode_fb_cmd *mode_cmd,
5374 struct drm_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08005375{
Chris Wilson57cd6502010-08-08 12:34:44 +01005376 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005377 int ret;
5378
Chris Wilson57cd6502010-08-08 12:34:44 +01005379 if (obj_priv->tiling_mode == I915_TILING_Y)
5380 return -EINVAL;
5381
5382 if (mode_cmd->pitch & 63)
5383 return -EINVAL;
5384
5385 switch (mode_cmd->bpp) {
5386 case 8:
5387 case 16:
5388 case 24:
5389 case 32:
5390 break;
5391 default:
5392 return -EINVAL;
5393 }
5394
Jesse Barnes79e53942008-11-07 14:24:08 -08005395 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
5396 if (ret) {
5397 DRM_ERROR("framebuffer init failed %d\n", ret);
5398 return ret;
5399 }
5400
5401 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08005402 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08005403 return 0;
5404}
5405
Jesse Barnes79e53942008-11-07 14:24:08 -08005406static struct drm_framebuffer *
5407intel_user_framebuffer_create(struct drm_device *dev,
5408 struct drm_file *filp,
5409 struct drm_mode_fb_cmd *mode_cmd)
5410{
5411 struct drm_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00005412 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005413 int ret;
5414
5415 obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle);
5416 if (!obj)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01005417 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08005418
Dave Airlie38651672010-03-30 05:34:13 +00005419 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5420 if (!intel_fb)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01005421 return ERR_PTR(-ENOMEM);
Dave Airlie38651672010-03-30 05:34:13 +00005422
5423 ret = intel_framebuffer_init(dev, intel_fb,
5424 mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08005425 if (ret) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00005426 drm_gem_object_unreference_unlocked(obj);
Dave Airlie38651672010-03-30 05:34:13 +00005427 kfree(intel_fb);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01005428 return ERR_PTR(ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08005429 }
5430
Dave Airlie38651672010-03-30 05:34:13 +00005431 return &intel_fb->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005432}
5433
Jesse Barnes79e53942008-11-07 14:24:08 -08005434static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08005435 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00005436 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08005437};
5438
Chris Wilson9ea8d052010-01-04 18:57:56 +00005439static struct drm_gem_object *
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005440intel_alloc_context_page(struct drm_device *dev)
Chris Wilson9ea8d052010-01-04 18:57:56 +00005441{
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005442 struct drm_gem_object *ctx;
Chris Wilson9ea8d052010-01-04 18:57:56 +00005443 int ret;
5444
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005445 ctx = i915_gem_alloc_object(dev, 4096);
5446 if (!ctx) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005447 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
5448 return NULL;
5449 }
5450
5451 mutex_lock(&dev->struct_mutex);
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005452 ret = i915_gem_object_pin(ctx, 4096);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005453 if (ret) {
5454 DRM_ERROR("failed to pin power context: %d\n", ret);
5455 goto err_unref;
5456 }
5457
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005458 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005459 if (ret) {
5460 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
5461 goto err_unpin;
5462 }
5463 mutex_unlock(&dev->struct_mutex);
5464
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005465 return ctx;
Chris Wilson9ea8d052010-01-04 18:57:56 +00005466
5467err_unpin:
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005468 i915_gem_object_unpin(ctx);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005469err_unref:
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005470 drm_gem_object_unreference(ctx);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005471 mutex_unlock(&dev->struct_mutex);
5472 return NULL;
5473}
5474
Jesse Barnes7648fa92010-05-20 14:28:11 -07005475bool ironlake_set_drps(struct drm_device *dev, u8 val)
5476{
5477 struct drm_i915_private *dev_priv = dev->dev_private;
5478 u16 rgvswctl;
5479
5480 rgvswctl = I915_READ16(MEMSWCTL);
5481 if (rgvswctl & MEMCTL_CMD_STS) {
5482 DRM_DEBUG("gpu busy, RCS change rejected\n");
5483 return false; /* still busy with another command */
5484 }
5485
5486 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5487 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5488 I915_WRITE16(MEMSWCTL, rgvswctl);
5489 POSTING_READ16(MEMSWCTL);
5490
5491 rgvswctl |= MEMCTL_CMD_STS;
5492 I915_WRITE16(MEMSWCTL, rgvswctl);
5493
5494 return true;
5495}
5496
Jesse Barnesf97108d2010-01-29 11:27:07 -08005497void ironlake_enable_drps(struct drm_device *dev)
5498{
5499 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005500 u32 rgvmodectl = I915_READ(MEMMODECTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005501 u8 fmax, fmin, fstart, vstart;
Jesse Barnesf97108d2010-01-29 11:27:07 -08005502
Jesse Barnesea056c12010-09-10 10:02:13 -07005503 /* Enable temp reporting */
5504 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
5505 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
5506
Jesse Barnesf97108d2010-01-29 11:27:07 -08005507 /* 100ms RC evaluation intervals */
5508 I915_WRITE(RCUPEI, 100000);
5509 I915_WRITE(RCDNEI, 100000);
5510
5511 /* Set max/min thresholds to 90ms and 80ms respectively */
5512 I915_WRITE(RCBMAXAVG, 90000);
5513 I915_WRITE(RCBMINAVG, 80000);
5514
5515 I915_WRITE(MEMIHYST, 1);
5516
5517 /* Set up min, max, and cur for interrupt handling */
5518 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5519 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5520 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5521 MEMMODE_FSTART_SHIFT;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005522 fstart = fmax;
5523
Jesse Barnesf97108d2010-01-29 11:27:07 -08005524 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
5525 PXVFREQ_PX_SHIFT;
5526
Jesse Barnes7648fa92010-05-20 14:28:11 -07005527 dev_priv->fmax = fstart; /* IPS callback will increase this */
5528 dev_priv->fstart = fstart;
5529
5530 dev_priv->max_delay = fmax;
Jesse Barnesf97108d2010-01-29 11:27:07 -08005531 dev_priv->min_delay = fmin;
5532 dev_priv->cur_delay = fstart;
5533
Jesse Barnes7648fa92010-05-20 14:28:11 -07005534 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", fmax, fmin,
5535 fstart);
5536
Jesse Barnesf97108d2010-01-29 11:27:07 -08005537 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5538
5539 /*
5540 * Interrupts will be enabled in ironlake_irq_postinstall
5541 */
5542
5543 I915_WRITE(VIDSTART, vstart);
5544 POSTING_READ(VIDSTART);
5545
5546 rgvmodectl |= MEMMODE_SWMODE_EN;
5547 I915_WRITE(MEMMODECTL, rgvmodectl);
5548
Chris Wilson481b6af2010-08-23 17:43:35 +01005549 if (wait_for((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Chris Wilson913d8d12010-08-07 11:01:35 +01005550 DRM_ERROR("stuck trying to change perf mode\n");
Jesse Barnesf97108d2010-01-29 11:27:07 -08005551 msleep(1);
5552
Jesse Barnes7648fa92010-05-20 14:28:11 -07005553 ironlake_set_drps(dev, fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005554
Jesse Barnes7648fa92010-05-20 14:28:11 -07005555 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
5556 I915_READ(0x112e0);
5557 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
5558 dev_priv->last_count2 = I915_READ(0x112f4);
5559 getrawmonotonic(&dev_priv->last_time2);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005560}
5561
5562void ironlake_disable_drps(struct drm_device *dev)
5563{
5564 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07005565 u16 rgvswctl = I915_READ16(MEMSWCTL);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005566
5567 /* Ack interrupts, disable EFC interrupt */
5568 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5569 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5570 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5571 I915_WRITE(DEIIR, DE_PCU_EVENT);
5572 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5573
5574 /* Go back to the starting frequency */
Jesse Barnes7648fa92010-05-20 14:28:11 -07005575 ironlake_set_drps(dev, dev_priv->fstart);
Jesse Barnesf97108d2010-01-29 11:27:07 -08005576 msleep(1);
5577 rgvswctl |= MEMCTL_CMD_STS;
5578 I915_WRITE(MEMSWCTL, rgvswctl);
5579 msleep(1);
5580
5581}
5582
Jesse Barnes7648fa92010-05-20 14:28:11 -07005583static unsigned long intel_pxfreq(u32 vidfreq)
5584{
5585 unsigned long freq;
5586 int div = (vidfreq & 0x3f0000) >> 16;
5587 int post = (vidfreq & 0x3000) >> 12;
5588 int pre = (vidfreq & 0x7);
5589
5590 if (!pre)
5591 return 0;
5592
5593 freq = ((div * 133333) / ((1<<post) * pre));
5594
5595 return freq;
5596}
5597
5598void intel_init_emon(struct drm_device *dev)
5599{
5600 struct drm_i915_private *dev_priv = dev->dev_private;
5601 u32 lcfuse;
5602 u8 pxw[16];
5603 int i;
5604
5605 /* Disable to program */
5606 I915_WRITE(ECR, 0);
5607 POSTING_READ(ECR);
5608
5609 /* Program energy weights for various events */
5610 I915_WRITE(SDEW, 0x15040d00);
5611 I915_WRITE(CSIEW0, 0x007f0000);
5612 I915_WRITE(CSIEW1, 0x1e220004);
5613 I915_WRITE(CSIEW2, 0x04000004);
5614
5615 for (i = 0; i < 5; i++)
5616 I915_WRITE(PEW + (i * 4), 0);
5617 for (i = 0; i < 3; i++)
5618 I915_WRITE(DEW + (i * 4), 0);
5619
5620 /* Program P-state weights to account for frequency power adjustment */
5621 for (i = 0; i < 16; i++) {
5622 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5623 unsigned long freq = intel_pxfreq(pxvidfreq);
5624 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5625 PXVFREQ_PX_SHIFT;
5626 unsigned long val;
5627
5628 val = vid * vid;
5629 val *= (freq / 1000);
5630 val *= 255;
5631 val /= (127*127*900);
5632 if (val > 0xff)
5633 DRM_ERROR("bad pxval: %ld\n", val);
5634 pxw[i] = val;
5635 }
5636 /* Render standby states get 0 weight */
5637 pxw[14] = 0;
5638 pxw[15] = 0;
5639
5640 for (i = 0; i < 4; i++) {
5641 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5642 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5643 I915_WRITE(PXW + (i * 4), val);
5644 }
5645
5646 /* Adjust magic regs to magic values (more experimental results) */
5647 I915_WRITE(OGW0, 0);
5648 I915_WRITE(OGW1, 0);
5649 I915_WRITE(EG0, 0x00007f00);
5650 I915_WRITE(EG1, 0x0000000e);
5651 I915_WRITE(EG2, 0x000e0000);
5652 I915_WRITE(EG3, 0x68000300);
5653 I915_WRITE(EG4, 0x42000000);
5654 I915_WRITE(EG5, 0x00140031);
5655 I915_WRITE(EG6, 0);
5656 I915_WRITE(EG7, 0);
5657
5658 for (i = 0; i < 8; i++)
5659 I915_WRITE(PXWL + (i * 4), 0);
5660
5661 /* Enable PMON + select events */
5662 I915_WRITE(ECR, 0x80000019);
5663
5664 lcfuse = I915_READ(LCFUSE02);
5665
5666 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
5667}
5668
Jesse Barnes652c3932009-08-17 13:31:43 -07005669void intel_init_clock_gating(struct drm_device *dev)
5670{
5671 struct drm_i915_private *dev_priv = dev->dev_private;
5672
5673 /*
5674 * Disable clock gating reported to work incorrectly according to the
5675 * specs, but enable as much else as we can.
5676 */
Eric Anholtbad720f2009-10-22 16:11:14 -07005677 if (HAS_PCH_SPLIT(dev)) {
Eric Anholt8956c8b2010-03-18 13:21:14 -07005678 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
5679
5680 if (IS_IRONLAKE(dev)) {
5681 /* Required for FBC */
5682 dspclk_gate |= DPFDUNIT_CLOCK_GATE_DISABLE;
5683 /* Required for CxSR */
5684 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
5685
5686 I915_WRITE(PCH_3DCGDIS0,
5687 MARIUNIT_CLOCK_GATE_DISABLE |
5688 SVSMUNIT_CLOCK_GATE_DISABLE);
5689 }
5690
5691 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005692
5693 /*
5694 * According to the spec the following bits should be set in
5695 * order to enable memory self-refresh
5696 * The bit 22/21 of 0x42004
5697 * The bit 5 of 0x42020
5698 * The bit 15 of 0x45000
5699 */
5700 if (IS_IRONLAKE(dev)) {
5701 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5702 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5703 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
5704 I915_WRITE(ILK_DSPCLK_GATE,
5705 (I915_READ(ILK_DSPCLK_GATE) |
5706 ILK_DPARB_CLK_GATE));
5707 I915_WRITE(DISP_ARB_CTL,
5708 (I915_READ(DISP_ARB_CTL) |
5709 DISP_FBC_WM_DIS));
Jesse Barnesdd8849c2010-09-09 11:58:02 -07005710 I915_WRITE(WM3_LP_ILK, 0);
5711 I915_WRITE(WM2_LP_ILK, 0);
5712 I915_WRITE(WM1_LP_ILK, 0);
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005713 }
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08005714 /*
5715 * Based on the document from hardware guys the following bits
5716 * should be set unconditionally in order to enable FBC.
5717 * The bit 22 of 0x42000
5718 * The bit 22 of 0x42004
5719 * The bit 7,8,9 of 0x42020.
5720 */
5721 if (IS_IRONLAKE_M(dev)) {
5722 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5723 I915_READ(ILK_DISPLAY_CHICKEN1) |
5724 ILK_FBCQ_DIS);
5725 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5726 I915_READ(ILK_DISPLAY_CHICKEN2) |
5727 ILK_DPARB_GATE);
5728 I915_WRITE(ILK_DSPCLK_GATE,
5729 I915_READ(ILK_DSPCLK_GATE) |
5730 ILK_DPFC_DIS1 |
5731 ILK_DPFC_DIS2 |
5732 ILK_CLK_FBC);
5733 }
Chris Wilsonbc416062010-09-07 21:51:02 +01005734 return;
Zhenyu Wangc03342f2009-09-29 11:01:23 +08005735 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005736 uint32_t dspclk_gate;
5737 I915_WRITE(RENCLK_GATE_D1, 0);
5738 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5739 GS_UNIT_CLOCK_GATE_DISABLE |
5740 CL_UNIT_CLOCK_GATE_DISABLE);
5741 I915_WRITE(RAMCLK_GATE_D, 0);
5742 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5743 OVRUNIT_CLOCK_GATE_DISABLE |
5744 OVCUNIT_CLOCK_GATE_DISABLE;
5745 if (IS_GM45(dev))
5746 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5747 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
5748 } else if (IS_I965GM(dev)) {
5749 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5750 I915_WRITE(RENCLK_GATE_D2, 0);
5751 I915_WRITE(DSPCLK_GATE_D, 0);
5752 I915_WRITE(RAMCLK_GATE_D, 0);
5753 I915_WRITE16(DEUC, 0);
5754 } else if (IS_I965G(dev)) {
5755 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5756 I965_RCC_CLOCK_GATE_DISABLE |
5757 I965_RCPB_CLOCK_GATE_DISABLE |
5758 I965_ISC_CLOCK_GATE_DISABLE |
5759 I965_FBC_CLOCK_GATE_DISABLE);
5760 I915_WRITE(RENCLK_GATE_D2, 0);
5761 } else if (IS_I9XX(dev)) {
5762 u32 dstate = I915_READ(D_STATE);
5763
5764 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5765 DSTATE_DOT_CLOCK_GATING;
5766 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005767 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07005768 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5769 } else if (IS_I830(dev)) {
5770 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5771 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005772
5773 /*
5774 * GPU can automatically power down the render unit if given a page
5775 * to save state.
5776 */
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005777 if (IS_IRONLAKE_M(dev)) {
5778 if (dev_priv->renderctx == NULL)
5779 dev_priv->renderctx = intel_alloc_context_page(dev);
5780 if (dev_priv->renderctx) {
5781 struct drm_i915_gem_object *obj_priv;
5782 obj_priv = to_intel_bo(dev_priv->renderctx);
5783 if (obj_priv) {
5784 BEGIN_LP_RING(4);
5785 OUT_RING(MI_SET_CONTEXT);
5786 OUT_RING(obj_priv->gtt_offset |
5787 MI_MM_SPACE_GTT |
5788 MI_SAVE_EXT_STATE_EN |
5789 MI_RESTORE_EXT_STATE_EN |
5790 MI_RESTORE_INHIBIT);
5791 OUT_RING(MI_NOOP);
5792 OUT_RING(MI_FLUSH);
5793 ADVANCE_LP_RING();
5794 }
Chris Wilsonbc416062010-09-07 21:51:02 +01005795 } else
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005796 DRM_DEBUG_KMS("Failed to allocate render context."
Chris Wilsonbc416062010-09-07 21:51:02 +01005797 "Disable RC6\n");
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005798 }
5799
Andrew Lutomirski1d3c36ad2009-12-21 10:10:22 -05005800 if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005801 struct drm_i915_gem_object *obj_priv = NULL;
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005802
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005803 if (dev_priv->pwrctx) {
Daniel Vetter23010e42010-03-08 13:35:02 +01005804 obj_priv = to_intel_bo(dev_priv->pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005805 } else {
Chris Wilson9ea8d052010-01-04 18:57:56 +00005806 struct drm_gem_object *pwrctx;
5807
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08005808 pwrctx = intel_alloc_context_page(dev);
Chris Wilson9ea8d052010-01-04 18:57:56 +00005809 if (pwrctx) {
5810 dev_priv->pwrctx = pwrctx;
Daniel Vetter23010e42010-03-08 13:35:02 +01005811 obj_priv = to_intel_bo(pwrctx);
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05005812 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005813 }
5814
Chris Wilson9ea8d052010-01-04 18:57:56 +00005815 if (obj_priv) {
5816 I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN);
5817 I915_WRITE(MCHBAR_RENDER_STANDBY,
5818 I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT);
5819 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07005820 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005821}
5822
Jesse Barnese70236a2009-09-21 10:42:27 -07005823/* Set up chip specific display functions */
5824static void intel_init_display(struct drm_device *dev)
5825{
5826 struct drm_i915_private *dev_priv = dev->dev_private;
5827
5828 /* We always want a DPMS function */
Eric Anholtbad720f2009-10-22 16:11:14 -07005829 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005830 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07005831 else
5832 dev_priv->display.dpms = i9xx_crtc_dpms;
5833
Adam Jacksonee5382a2010-04-23 11:17:39 -04005834 if (I915_HAS_FBC(dev)) {
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08005835 if (IS_IRONLAKE_M(dev)) {
5836 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
5837 dev_priv->display.enable_fbc = ironlake_enable_fbc;
5838 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5839 } else if (IS_GM45(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07005840 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5841 dev_priv->display.enable_fbc = g4x_enable_fbc;
5842 dev_priv->display.disable_fbc = g4x_disable_fbc;
Robert Hooker8d06a1e2010-03-19 15:13:27 -04005843 } else if (IS_I965GM(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005844 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5845 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5846 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5847 }
Jesse Barnes74dff282009-09-14 15:39:40 -07005848 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07005849 }
5850
5851 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005852 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07005853 dev_priv->display.get_display_clock_speed =
5854 i945_get_display_clock_speed;
5855 else if (IS_I915G(dev))
5856 dev_priv->display.get_display_clock_speed =
5857 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005858 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005859 dev_priv->display.get_display_clock_speed =
5860 i9xx_misc_get_display_clock_speed;
5861 else if (IS_I915GM(dev))
5862 dev_priv->display.get_display_clock_speed =
5863 i915gm_get_display_clock_speed;
5864 else if (IS_I865G(dev))
5865 dev_priv->display.get_display_clock_speed =
5866 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02005867 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005868 dev_priv->display.get_display_clock_speed =
5869 i855_get_display_clock_speed;
5870 else /* 852, 830 */
5871 dev_priv->display.get_display_clock_speed =
5872 i830_get_display_clock_speed;
5873
5874 /* For FIFO watermark updates */
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08005875 if (HAS_PCH_SPLIT(dev)) {
5876 if (IS_IRONLAKE(dev)) {
5877 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
5878 dev_priv->display.update_wm = ironlake_update_wm;
5879 else {
5880 DRM_DEBUG_KMS("Failed to get proper latency. "
5881 "Disable CxSR\n");
5882 dev_priv->display.update_wm = NULL;
5883 }
5884 } else
5885 dev_priv->display.update_wm = NULL;
5886 } else if (IS_PINEVIEW(dev)) {
Zhao Yakuid4294342010-03-22 22:45:36 +08005887 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
Li Peng95534262010-05-18 18:58:44 +08005888 dev_priv->is_ddr3,
Zhao Yakuid4294342010-03-22 22:45:36 +08005889 dev_priv->fsb_freq,
5890 dev_priv->mem_freq)) {
5891 DRM_INFO("failed to find known CxSR latency "
Li Peng95534262010-05-18 18:58:44 +08005892 "(found ddr%s fsb freq %d, mem freq %d), "
Zhao Yakuid4294342010-03-22 22:45:36 +08005893 "disabling CxSR\n",
Li Peng95534262010-05-18 18:58:44 +08005894 (dev_priv->is_ddr3 == 1) ? "3": "2",
Zhao Yakuid4294342010-03-22 22:45:36 +08005895 dev_priv->fsb_freq, dev_priv->mem_freq);
5896 /* Disable CxSR and never update its watermark again */
5897 pineview_disable_cxsr(dev);
5898 dev_priv->display.update_wm = NULL;
5899 } else
5900 dev_priv->display.update_wm = pineview_update_wm;
5901 } else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005902 dev_priv->display.update_wm = g4x_update_wm;
5903 else if (IS_I965G(dev))
5904 dev_priv->display.update_wm = i965_update_wm;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005905 else if (IS_I9XX(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07005906 dev_priv->display.update_wm = i9xx_update_wm;
5907 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Adam Jackson8f4695e2010-04-16 18:20:57 -04005908 } else if (IS_I85X(dev)) {
5909 dev_priv->display.update_wm = i9xx_update_wm;
5910 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005911 } else {
Adam Jackson8f4695e2010-04-16 18:20:57 -04005912 dev_priv->display.update_wm = i830_update_wm;
5913 if (IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07005914 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5915 else
5916 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Jesse Barnese70236a2009-09-21 10:42:27 -07005917 }
5918}
5919
Jesse Barnesb690e962010-07-19 13:53:12 -07005920/*
5921 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
5922 * resume, or other times. This quirk makes sure that's the case for
5923 * affected systems.
5924 */
5925static void quirk_pipea_force (struct drm_device *dev)
5926{
5927 struct drm_i915_private *dev_priv = dev->dev_private;
5928
5929 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
5930 DRM_DEBUG_DRIVER("applying pipe a force quirk\n");
5931}
5932
5933struct intel_quirk {
5934 int device;
5935 int subsystem_vendor;
5936 int subsystem_device;
5937 void (*hook)(struct drm_device *dev);
5938};
5939
5940struct intel_quirk intel_quirks[] = {
5941 /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */
5942 { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force },
5943 /* HP Mini needs pipe A force quirk (LP: #322104) */
5944 { 0x27ae,0x103c, 0x361a, quirk_pipea_force },
5945
5946 /* Thinkpad R31 needs pipe A force quirk */
5947 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
5948 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
5949 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
5950
5951 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
5952 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
5953 /* ThinkPad X40 needs pipe A force quirk */
5954
5955 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
5956 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
5957
5958 /* 855 & before need to leave pipe A & dpll A up */
5959 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
5960 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
5961};
5962
5963static void intel_init_quirks(struct drm_device *dev)
5964{
5965 struct pci_dev *d = dev->pdev;
5966 int i;
5967
5968 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
5969 struct intel_quirk *q = &intel_quirks[i];
5970
5971 if (d->device == q->device &&
5972 (d->subsystem_vendor == q->subsystem_vendor ||
5973 q->subsystem_vendor == PCI_ANY_ID) &&
5974 (d->subsystem_device == q->subsystem_device ||
5975 q->subsystem_device == PCI_ANY_ID))
5976 q->hook(dev);
5977 }
5978}
5979
Jesse Barnes9cce37f2010-08-13 15:11:26 -07005980/* Disable the VGA plane that we never use */
5981static void i915_disable_vga(struct drm_device *dev)
5982{
5983 struct drm_i915_private *dev_priv = dev->dev_private;
5984 u8 sr1;
5985 u32 vga_reg;
5986
5987 if (HAS_PCH_SPLIT(dev))
5988 vga_reg = CPU_VGACNTRL;
5989 else
5990 vga_reg = VGACNTRL;
5991
5992 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
5993 outb(1, VGA_SR_INDEX);
5994 sr1 = inb(VGA_SR_DATA);
5995 outb(sr1 | 1<<5, VGA_SR_DATA);
5996 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
5997 udelay(300);
5998
5999 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6000 POSTING_READ(vga_reg);
6001}
6002
Jesse Barnes79e53942008-11-07 14:24:08 -08006003void intel_modeset_init(struct drm_device *dev)
6004{
Jesse Barnes652c3932009-08-17 13:31:43 -07006005 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006006 int i;
6007
6008 drm_mode_config_init(dev);
6009
6010 dev->mode_config.min_width = 0;
6011 dev->mode_config.min_height = 0;
6012
6013 dev->mode_config.funcs = (void *)&intel_mode_funcs;
6014
Jesse Barnesb690e962010-07-19 13:53:12 -07006015 intel_init_quirks(dev);
6016
Jesse Barnese70236a2009-09-21 10:42:27 -07006017 intel_init_display(dev);
6018
Jesse Barnes79e53942008-11-07 14:24:08 -08006019 if (IS_I965G(dev)) {
6020 dev->mode_config.max_width = 8192;
6021 dev->mode_config.max_height = 8192;
Keith Packard5e4d6fa2009-07-12 23:53:17 -07006022 } else if (IS_I9XX(dev)) {
6023 dev->mode_config.max_width = 4096;
6024 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08006025 } else {
6026 dev->mode_config.max_width = 2048;
6027 dev->mode_config.max_height = 2048;
6028 }
6029
6030 /* set memory base */
6031 if (IS_I9XX(dev))
6032 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2);
6033 else
6034 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0);
6035
6036 if (IS_MOBILE(dev) || IS_I9XX(dev))
Dave Airliea3524f12010-06-06 18:59:41 +10006037 dev_priv->num_pipe = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08006038 else
Dave Airliea3524f12010-06-06 18:59:41 +10006039 dev_priv->num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08006040 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10006041 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08006042
Dave Airliea3524f12010-06-06 18:59:41 +10006043 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006044 intel_crtc_init(dev, i);
6045 }
6046
6047 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006048
6049 intel_init_clock_gating(dev);
6050
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006051 /* Just disable it once at startup */
6052 i915_disable_vga(dev);
6053
Jesse Barnes7648fa92010-05-20 14:28:11 -07006054 if (IS_IRONLAKE_M(dev)) {
Jesse Barnesf97108d2010-01-29 11:27:07 -08006055 ironlake_enable_drps(dev);
Jesse Barnes7648fa92010-05-20 14:28:11 -07006056 intel_init_emon(dev);
6057 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08006058
Jesse Barnes652c3932009-08-17 13:31:43 -07006059 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6060 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6061 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02006062
6063 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006064}
6065
6066void intel_modeset_cleanup(struct drm_device *dev)
6067{
Jesse Barnes652c3932009-08-17 13:31:43 -07006068 struct drm_i915_private *dev_priv = dev->dev_private;
6069 struct drm_crtc *crtc;
6070 struct intel_crtc *intel_crtc;
6071
6072 mutex_lock(&dev->struct_mutex);
6073
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006074 drm_kms_helper_poll_fini(dev);
Dave Airlie38651672010-03-30 05:34:13 +00006075 intel_fbdev_fini(dev);
6076
Jesse Barnes652c3932009-08-17 13:31:43 -07006077 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6078 /* Skip inactive CRTCs */
6079 if (!crtc->fb)
6080 continue;
6081
6082 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02006083 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006084 }
6085
Jesse Barnese70236a2009-09-21 10:42:27 -07006086 if (dev_priv->display.disable_fbc)
6087 dev_priv->display.disable_fbc(dev);
6088
Zou Nan haiaa40d6b2010-06-25 13:40:23 +08006089 if (dev_priv->renderctx) {
6090 struct drm_i915_gem_object *obj_priv;
6091
6092 obj_priv = to_intel_bo(dev_priv->renderctx);
6093 I915_WRITE(CCID, obj_priv->gtt_offset &~ CCID_EN);
6094 I915_READ(CCID);
6095 i915_gem_object_unpin(dev_priv->renderctx);
6096 drm_gem_object_unreference(dev_priv->renderctx);
6097 }
6098
Jesse Barnes97f5ab62009-10-08 10:16:48 -07006099 if (dev_priv->pwrctx) {
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05006100 struct drm_i915_gem_object *obj_priv;
6101
Daniel Vetter23010e42010-03-08 13:35:02 +01006102 obj_priv = to_intel_bo(dev_priv->pwrctx);
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05006103 I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN);
6104 I915_READ(PWRCTXA);
Jesse Barnes97f5ab62009-10-08 10:16:48 -07006105 i915_gem_object_unpin(dev_priv->pwrctx);
6106 drm_gem_object_unreference(dev_priv->pwrctx);
6107 }
6108
Jesse Barnesf97108d2010-01-29 11:27:07 -08006109 if (IS_IRONLAKE_M(dev))
6110 ironlake_disable_drps(dev);
6111
Kristian Høgsberg69341a52009-11-11 12:19:17 -05006112 mutex_unlock(&dev->struct_mutex);
6113
Daniel Vetter6c0d93502010-08-20 18:26:46 +02006114 /* Disable the irq before mode object teardown, for the irq might
6115 * enqueue unpin/hotplug work. */
6116 drm_irq_uninstall(dev);
6117 cancel_work_sync(&dev_priv->hotplug_work);
6118
Daniel Vetter3dec0092010-08-20 21:40:52 +02006119 /* Shut off idle work before the crtcs get freed. */
6120 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6121 intel_crtc = to_intel_crtc(crtc);
6122 del_timer_sync(&intel_crtc->idle_timer);
6123 }
6124 del_timer_sync(&dev_priv->idle_timer);
6125 cancel_work_sync(&dev_priv->idle_work);
6126
Jesse Barnes79e53942008-11-07 14:24:08 -08006127 drm_mode_config_cleanup(dev);
6128}
6129
Dave Airlie28d52042009-09-21 14:33:58 +10006130/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08006131 * Return which encoder is currently attached for connector.
6132 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01006133struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08006134{
Chris Wilsondf0e9242010-09-09 16:20:55 +01006135 return &intel_attached_encoder(connector)->base;
6136}
Jesse Barnes79e53942008-11-07 14:24:08 -08006137
Chris Wilsondf0e9242010-09-09 16:20:55 +01006138void intel_connector_attach_encoder(struct intel_connector *connector,
6139 struct intel_encoder *encoder)
6140{
6141 connector->encoder = encoder;
6142 drm_mode_connector_attach_encoder(&connector->base,
6143 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006144}
Dave Airlie28d52042009-09-21 14:33:58 +10006145
6146/*
6147 * set vga decode state - true == enable VGA decode
6148 */
6149int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
6150{
6151 struct drm_i915_private *dev_priv = dev->dev_private;
6152 u16 gmch_ctrl;
6153
6154 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
6155 if (state)
6156 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
6157 else
6158 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
6159 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
6160 return 0;
6161}