blob: 5e2159b59920446c7c30cbcfccd479a24dac7e31 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Jesse Barnesc1c7af62009-09-10 15:28:03 -070027#include <linux/module.h>
28#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080029#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080030#include <linux/kernel.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080031#include "drmP.h"
32#include "intel_drv.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100035#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080036
37#include "drm_crtc_helper.h"
38
Zhenyu Wang32f9d652009-07-24 01:00:32 +080039#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
40
Jesse Barnes79e53942008-11-07 14:24:08 -080041bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
Shaohua Li7662c8b2009-06-26 11:23:55 +080042static void intel_update_watermarks(struct drm_device *dev);
Jesse Barnes652c3932009-08-17 13:31:43 -070043static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule);
Jesse Barnes79e53942008-11-07 14:24:08 -080044
45typedef struct {
46 /* given values */
47 int n;
48 int m1, m2;
49 int p1, p2;
50 /* derived values */
51 int dot;
52 int vco;
53 int m;
54 int p;
55} intel_clock_t;
56
57typedef struct {
58 int min, max;
59} intel_range_t;
60
61typedef struct {
62 int dot_limit;
63 int p2_slow, p2_fast;
64} intel_p2_t;
65
66#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080067typedef struct intel_limit intel_limit_t;
68struct intel_limit {
Jesse Barnes79e53942008-11-07 14:24:08 -080069 intel_range_t dot, vco, n, m, m1, m2, p, p1;
70 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080071 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
72 int, int, intel_clock_t *);
Jesse Barnes652c3932009-08-17 13:31:43 -070073 bool (* find_reduced_pll)(const intel_limit_t *, struct drm_crtc *,
74 int, int, intel_clock_t *);
Ma Lingd4906092009-03-18 20:13:27 +080075};
Jesse Barnes79e53942008-11-07 14:24:08 -080076
77#define I8XX_DOT_MIN 25000
78#define I8XX_DOT_MAX 350000
79#define I8XX_VCO_MIN 930000
80#define I8XX_VCO_MAX 1400000
81#define I8XX_N_MIN 3
82#define I8XX_N_MAX 16
83#define I8XX_M_MIN 96
84#define I8XX_M_MAX 140
85#define I8XX_M1_MIN 18
86#define I8XX_M1_MAX 26
87#define I8XX_M2_MIN 6
88#define I8XX_M2_MAX 16
89#define I8XX_P_MIN 4
90#define I8XX_P_MAX 128
91#define I8XX_P1_MIN 2
92#define I8XX_P1_MAX 33
93#define I8XX_P1_LVDS_MIN 1
94#define I8XX_P1_LVDS_MAX 6
95#define I8XX_P2_SLOW 4
96#define I8XX_P2_FAST 2
97#define I8XX_P2_LVDS_SLOW 14
ling.ma@intel.com0c2e39522009-07-17 11:44:30 +080098#define I8XX_P2_LVDS_FAST 7
Jesse Barnes79e53942008-11-07 14:24:08 -080099#define I8XX_P2_SLOW_LIMIT 165000
100
101#define I9XX_DOT_MIN 20000
102#define I9XX_DOT_MAX 400000
103#define I9XX_VCO_MIN 1400000
104#define I9XX_VCO_MAX 2800000
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500105#define PINEVIEW_VCO_MIN 1700000
106#define PINEVIEW_VCO_MAX 3500000
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500107#define I9XX_N_MIN 1
108#define I9XX_N_MAX 6
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500109/* Pineview's Ncounter is a ring counter */
110#define PINEVIEW_N_MIN 3
111#define PINEVIEW_N_MAX 6
Jesse Barnes79e53942008-11-07 14:24:08 -0800112#define I9XX_M_MIN 70
113#define I9XX_M_MAX 120
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500114#define PINEVIEW_M_MIN 2
115#define PINEVIEW_M_MAX 256
Jesse Barnes79e53942008-11-07 14:24:08 -0800116#define I9XX_M1_MIN 10
Kristian Høgsbergf3cade52009-02-13 20:56:50 -0500117#define I9XX_M1_MAX 22
Jesse Barnes79e53942008-11-07 14:24:08 -0800118#define I9XX_M2_MIN 5
119#define I9XX_M2_MAX 9
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500120/* Pineview M1 is reserved, and must be 0 */
121#define PINEVIEW_M1_MIN 0
122#define PINEVIEW_M1_MAX 0
123#define PINEVIEW_M2_MIN 0
124#define PINEVIEW_M2_MAX 254
Jesse Barnes79e53942008-11-07 14:24:08 -0800125#define I9XX_P_SDVO_DAC_MIN 5
126#define I9XX_P_SDVO_DAC_MAX 80
127#define I9XX_P_LVDS_MIN 7
128#define I9XX_P_LVDS_MAX 98
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500129#define PINEVIEW_P_LVDS_MIN 7
130#define PINEVIEW_P_LVDS_MAX 112
Jesse Barnes79e53942008-11-07 14:24:08 -0800131#define I9XX_P1_MIN 1
132#define I9XX_P1_MAX 8
133#define I9XX_P2_SDVO_DAC_SLOW 10
134#define I9XX_P2_SDVO_DAC_FAST 5
135#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
136#define I9XX_P2_LVDS_SLOW 14
137#define I9XX_P2_LVDS_FAST 7
138#define I9XX_P2_LVDS_SLOW_LIMIT 112000
139
Ma Ling044c7c42009-03-18 20:13:23 +0800140/*The parameter is for SDVO on G4x platform*/
141#define G4X_DOT_SDVO_MIN 25000
142#define G4X_DOT_SDVO_MAX 270000
143#define G4X_VCO_MIN 1750000
144#define G4X_VCO_MAX 3500000
145#define G4X_N_SDVO_MIN 1
146#define G4X_N_SDVO_MAX 4
147#define G4X_M_SDVO_MIN 104
148#define G4X_M_SDVO_MAX 138
149#define G4X_M1_SDVO_MIN 17
150#define G4X_M1_SDVO_MAX 23
151#define G4X_M2_SDVO_MIN 5
152#define G4X_M2_SDVO_MAX 11
153#define G4X_P_SDVO_MIN 10
154#define G4X_P_SDVO_MAX 30
155#define G4X_P1_SDVO_MIN 1
156#define G4X_P1_SDVO_MAX 3
157#define G4X_P2_SDVO_SLOW 10
158#define G4X_P2_SDVO_FAST 10
159#define G4X_P2_SDVO_LIMIT 270000
160
161/*The parameter is for HDMI_DAC on G4x platform*/
162#define G4X_DOT_HDMI_DAC_MIN 22000
163#define G4X_DOT_HDMI_DAC_MAX 400000
164#define G4X_N_HDMI_DAC_MIN 1
165#define G4X_N_HDMI_DAC_MAX 4
166#define G4X_M_HDMI_DAC_MIN 104
167#define G4X_M_HDMI_DAC_MAX 138
168#define G4X_M1_HDMI_DAC_MIN 16
169#define G4X_M1_HDMI_DAC_MAX 23
170#define G4X_M2_HDMI_DAC_MIN 5
171#define G4X_M2_HDMI_DAC_MAX 11
172#define G4X_P_HDMI_DAC_MIN 5
173#define G4X_P_HDMI_DAC_MAX 80
174#define G4X_P1_HDMI_DAC_MIN 1
175#define G4X_P1_HDMI_DAC_MAX 8
176#define G4X_P2_HDMI_DAC_SLOW 10
177#define G4X_P2_HDMI_DAC_FAST 5
178#define G4X_P2_HDMI_DAC_LIMIT 165000
179
180/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
181#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
182#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
183#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
184#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
185#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
186#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
187#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
188#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
189#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
190#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
191#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
192#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
193#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
194#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
195#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
196#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
197#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
198
199/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
200#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
201#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
202#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
203#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
204#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
205#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
206#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
207#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
208#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
209#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
210#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
211#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
212#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
213#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
214#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
215#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
216#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
217
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700218/*The parameter is for DISPLAY PORT on G4x platform*/
219#define G4X_DOT_DISPLAY_PORT_MIN 161670
220#define G4X_DOT_DISPLAY_PORT_MAX 227000
221#define G4X_N_DISPLAY_PORT_MIN 1
222#define G4X_N_DISPLAY_PORT_MAX 2
223#define G4X_M_DISPLAY_PORT_MIN 97
224#define G4X_M_DISPLAY_PORT_MAX 108
225#define G4X_M1_DISPLAY_PORT_MIN 0x10
226#define G4X_M1_DISPLAY_PORT_MAX 0x12
227#define G4X_M2_DISPLAY_PORT_MIN 0x05
228#define G4X_M2_DISPLAY_PORT_MAX 0x06
229#define G4X_P_DISPLAY_PORT_MIN 10
230#define G4X_P_DISPLAY_PORT_MAX 20
231#define G4X_P1_DISPLAY_PORT_MIN 1
232#define G4X_P1_DISPLAY_PORT_MAX 2
233#define G4X_P2_DISPLAY_PORT_SLOW 10
234#define G4X_P2_DISPLAY_PORT_FAST 10
235#define G4X_P2_DISPLAY_PORT_LIMIT 0
236
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500237/* Ironlake */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800238/* as we calculate clock using (register_value + 2) for
239 N/M1/M2, so here the range value for them is (actual_value-2).
240 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500241#define IRONLAKE_DOT_MIN 25000
242#define IRONLAKE_DOT_MAX 350000
243#define IRONLAKE_VCO_MIN 1760000
244#define IRONLAKE_VCO_MAX 3510000
245#define IRONLAKE_N_MIN 1
246#define IRONLAKE_N_MAX 5
247#define IRONLAKE_M_MIN 79
248#define IRONLAKE_M_MAX 118
249#define IRONLAKE_M1_MIN 12
250#define IRONLAKE_M1_MAX 23
251#define IRONLAKE_M2_MIN 5
252#define IRONLAKE_M2_MAX 9
253#define IRONLAKE_P_SDVO_DAC_MIN 5
254#define IRONLAKE_P_SDVO_DAC_MAX 80
255#define IRONLAKE_P_LVDS_MIN 28
256#define IRONLAKE_P_LVDS_MAX 112
257#define IRONLAKE_P1_MIN 1
258#define IRONLAKE_P1_MAX 8
259#define IRONLAKE_P2_SDVO_DAC_SLOW 10
260#define IRONLAKE_P2_SDVO_DAC_FAST 5
261#define IRONLAKE_P2_LVDS_SLOW 14 /* single channel */
262#define IRONLAKE_P2_LVDS_FAST 7 /* double channel */
263#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
Zhenyu Wang2c072452009-06-05 15:38:42 +0800264
Ma Lingd4906092009-03-18 20:13:27 +0800265static bool
266intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
267 int target, int refclk, intel_clock_t *best_clock);
268static bool
Jesse Barnes652c3932009-08-17 13:31:43 -0700269intel_find_best_reduced_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
270 int target, int refclk, intel_clock_t *best_clock);
271static bool
Ma Lingd4906092009-03-18 20:13:27 +0800272intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
273 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800274static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500275intel_ironlake_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
276 int target, int refclk, intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800277
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700278static bool
279intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
280 int target, int refclk, intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800281static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500282intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
283 int target, int refclk, intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700284
Keith Packarde4b36692009-06-05 19:22:17 -0700285static const intel_limit_t intel_limits_i8xx_dvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800286 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
287 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
288 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
289 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
290 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
291 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
292 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
293 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
294 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
295 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800296 .find_pll = intel_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700297 .find_reduced_pll = intel_find_best_reduced_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700298};
299
300static const intel_limit_t intel_limits_i8xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800301 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
302 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
303 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
304 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
305 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
306 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
307 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
308 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
309 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
310 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800311 .find_pll = intel_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700312 .find_reduced_pll = intel_find_best_reduced_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700313};
314
315static const intel_limit_t intel_limits_i9xx_sdvo = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800316 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
317 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
318 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
319 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
320 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
321 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
322 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
323 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
324 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
325 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800326 .find_pll = intel_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700327 .find_reduced_pll = intel_find_best_reduced_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700328};
329
330static const intel_limit_t intel_limits_i9xx_lvds = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800331 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
332 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
333 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
334 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
335 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
336 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
337 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
338 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
339 /* The single-channel range is 25-112Mhz, and dual-channel
340 * is 80-224Mhz. Prefer single channel as much as possible.
341 */
342 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
343 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
Ma Lingd4906092009-03-18 20:13:27 +0800344 .find_pll = intel_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700345 .find_reduced_pll = intel_find_best_reduced_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700346};
347
Ma Ling044c7c42009-03-18 20:13:23 +0800348 /* below parameter and function is for G4X Chipset Family*/
Keith Packarde4b36692009-06-05 19:22:17 -0700349static const intel_limit_t intel_limits_g4x_sdvo = {
Ma Ling044c7c42009-03-18 20:13:23 +0800350 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
351 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
352 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
353 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
354 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
355 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
356 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
357 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
358 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
359 .p2_slow = G4X_P2_SDVO_SLOW,
360 .p2_fast = G4X_P2_SDVO_FAST
361 },
Ma Lingd4906092009-03-18 20:13:27 +0800362 .find_pll = intel_g4x_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700363 .find_reduced_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700364};
365
366static const intel_limit_t intel_limits_g4x_hdmi = {
Ma Ling044c7c42009-03-18 20:13:23 +0800367 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
368 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
369 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
370 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
371 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
372 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
373 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
374 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
375 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
376 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
377 .p2_fast = G4X_P2_HDMI_DAC_FAST
378 },
Ma Lingd4906092009-03-18 20:13:27 +0800379 .find_pll = intel_g4x_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700380 .find_reduced_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700381};
382
383static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800384 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
385 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
386 .vco = { .min = G4X_VCO_MIN,
387 .max = G4X_VCO_MAX },
388 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
389 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
390 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
391 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
392 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
393 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
394 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
395 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
396 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
397 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
398 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
399 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
400 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
401 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
402 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
403 },
Ma Lingd4906092009-03-18 20:13:27 +0800404 .find_pll = intel_g4x_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700405 .find_reduced_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700406};
407
408static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Ma Ling044c7c42009-03-18 20:13:23 +0800409 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
410 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
411 .vco = { .min = G4X_VCO_MIN,
412 .max = G4X_VCO_MAX },
413 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
414 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
415 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
416 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
417 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
418 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
419 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
420 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
421 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
422 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
423 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
424 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
425 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
426 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
427 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
428 },
Ma Lingd4906092009-03-18 20:13:27 +0800429 .find_pll = intel_g4x_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700430 .find_reduced_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700431};
432
433static const intel_limit_t intel_limits_g4x_display_port = {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700434 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
435 .max = G4X_DOT_DISPLAY_PORT_MAX },
436 .vco = { .min = G4X_VCO_MIN,
437 .max = G4X_VCO_MAX},
438 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
439 .max = G4X_N_DISPLAY_PORT_MAX },
440 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
441 .max = G4X_M_DISPLAY_PORT_MAX },
442 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
443 .max = G4X_M1_DISPLAY_PORT_MAX },
444 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
445 .max = G4X_M2_DISPLAY_PORT_MAX },
446 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
447 .max = G4X_P_DISPLAY_PORT_MAX },
448 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
449 .max = G4X_P1_DISPLAY_PORT_MAX},
450 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
451 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
452 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
453 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700454};
455
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500456static const intel_limit_t intel_limits_pineview_sdvo = {
Shaohua Li21778322009-02-23 15:19:16 +0800457 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500458 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
459 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
460 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
461 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
462 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800463 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
464 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
465 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
466 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
Shaohua Li61157072009-04-03 15:24:43 +0800467 .find_pll = intel_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700468 .find_reduced_pll = intel_find_best_reduced_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700469};
470
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500471static const intel_limit_t intel_limits_pineview_lvds = {
Shaohua Li21778322009-02-23 15:19:16 +0800472 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500473 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
474 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
475 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
476 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
477 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
478 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
Shaohua Li21778322009-02-23 15:19:16 +0800479 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500480 /* Pineview only supports single-channel mode. */
Shaohua Li21778322009-02-23 15:19:16 +0800481 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
482 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
Shaohua Li61157072009-04-03 15:24:43 +0800483 .find_pll = intel_find_best_PLL,
Jesse Barnes652c3932009-08-17 13:31:43 -0700484 .find_reduced_pll = intel_find_best_reduced_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700485};
486
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500487static const intel_limit_t intel_limits_ironlake_sdvo = {
488 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
489 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
490 .n = { .min = IRONLAKE_N_MIN, .max = IRONLAKE_N_MAX },
491 .m = { .min = IRONLAKE_M_MIN, .max = IRONLAKE_M_MAX },
492 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
493 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
494 .p = { .min = IRONLAKE_P_SDVO_DAC_MIN, .max = IRONLAKE_P_SDVO_DAC_MAX },
495 .p1 = { .min = IRONLAKE_P1_MIN, .max = IRONLAKE_P1_MAX },
496 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
497 .p2_slow = IRONLAKE_P2_SDVO_DAC_SLOW,
498 .p2_fast = IRONLAKE_P2_SDVO_DAC_FAST },
499 .find_pll = intel_ironlake_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700500};
501
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500502static const intel_limit_t intel_limits_ironlake_lvds = {
503 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
504 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
505 .n = { .min = IRONLAKE_N_MIN, .max = IRONLAKE_N_MAX },
506 .m = { .min = IRONLAKE_M_MIN, .max = IRONLAKE_M_MAX },
507 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
508 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
509 .p = { .min = IRONLAKE_P_LVDS_MIN, .max = IRONLAKE_P_LVDS_MAX },
510 .p1 = { .min = IRONLAKE_P1_MIN, .max = IRONLAKE_P1_MAX },
511 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
512 .p2_slow = IRONLAKE_P2_LVDS_SLOW,
513 .p2_fast = IRONLAKE_P2_LVDS_FAST },
514 .find_pll = intel_ironlake_find_best_PLL,
Jesse Barnes79e53942008-11-07 14:24:08 -0800515};
516
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500517static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800518{
519 const intel_limit_t *limit;
520 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500521 limit = &intel_limits_ironlake_lvds;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800522 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500523 limit = &intel_limits_ironlake_sdvo;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800524
525 return limit;
526}
527
Ma Ling044c7c42009-03-18 20:13:23 +0800528static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
529{
530 struct drm_device *dev = crtc->dev;
531 struct drm_i915_private *dev_priv = dev->dev_private;
532 const intel_limit_t *limit;
533
534 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
535 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
536 LVDS_CLKB_POWER_UP)
537 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700538 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800539 else
540 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700541 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800542 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
543 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700544 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800545 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700546 limit = &intel_limits_g4x_sdvo;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700547 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700548 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800549 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700550 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800551
552 return limit;
553}
554
Jesse Barnes79e53942008-11-07 14:24:08 -0800555static const intel_limit_t *intel_limit(struct drm_crtc *crtc)
556{
557 struct drm_device *dev = crtc->dev;
558 const intel_limit_t *limit;
559
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500560 if (IS_IRONLAKE(dev))
561 limit = intel_ironlake_limit(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800562 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800563 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500564 } else if (IS_I9XX(dev) && !IS_PINEVIEW(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800565 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700566 limit = &intel_limits_i9xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800567 else
Keith Packarde4b36692009-06-05 19:22:17 -0700568 limit = &intel_limits_i9xx_sdvo;
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500569 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800570 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500571 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800572 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500573 limit = &intel_limits_pineview_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 } else {
575 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700576 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800577 else
Keith Packarde4b36692009-06-05 19:22:17 -0700578 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800579 }
580 return limit;
581}
582
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500583/* m1 is reserved as 0 in Pineview, n is a ring counter */
584static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800585{
Shaohua Li21778322009-02-23 15:19:16 +0800586 clock->m = clock->m2 + 2;
587 clock->p = clock->p1 * clock->p2;
588 clock->vco = refclk * clock->m / clock->n;
589 clock->dot = clock->vco / clock->p;
590}
591
592static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
593{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500594 if (IS_PINEVIEW(dev)) {
595 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800596 return;
597 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800598 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
599 clock->p = clock->p1 * clock->p2;
600 clock->vco = refclk * clock->m / (clock->n + 2);
601 clock->dot = clock->vco / clock->p;
602}
603
Jesse Barnes79e53942008-11-07 14:24:08 -0800604/**
605 * Returns whether any output on the specified pipe is of the specified type
606 */
607bool intel_pipe_has_type (struct drm_crtc *crtc, int type)
608{
609 struct drm_device *dev = crtc->dev;
610 struct drm_mode_config *mode_config = &dev->mode_config;
611 struct drm_connector *l_entry;
612
613 list_for_each_entry(l_entry, &mode_config->connector_list, head) {
614 if (l_entry->encoder &&
615 l_entry->encoder->crtc == crtc) {
616 struct intel_output *intel_output = to_intel_output(l_entry);
617 if (intel_output->type == type)
618 return true;
619 }
620 }
621 return false;
622}
623
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800624struct drm_connector *
625intel_pipe_get_output (struct drm_crtc *crtc)
626{
627 struct drm_device *dev = crtc->dev;
628 struct drm_mode_config *mode_config = &dev->mode_config;
629 struct drm_connector *l_entry, *ret = NULL;
630
631 list_for_each_entry(l_entry, &mode_config->connector_list, head) {
632 if (l_entry->encoder &&
633 l_entry->encoder->crtc == crtc) {
634 ret = l_entry;
635 break;
636 }
637 }
638 return ret;
639}
640
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800641#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800642/**
643 * Returns whether the given set of divisors are valid for a given refclk with
644 * the given connectors.
645 */
646
647static bool intel_PLL_is_valid(struct drm_crtc *crtc, intel_clock_t *clock)
648{
649 const intel_limit_t *limit = intel_limit (crtc);
Shaohua Li21778322009-02-23 15:19:16 +0800650 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800651
652 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
653 INTELPllInvalid ("p1 out of range\n");
654 if (clock->p < limit->p.min || limit->p.max < clock->p)
655 INTELPllInvalid ("p out of range\n");
656 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
657 INTELPllInvalid ("m2 out of range\n");
658 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
659 INTELPllInvalid ("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500660 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800661 INTELPllInvalid ("m1 <= m2\n");
662 if (clock->m < limit->m.min || limit->m.max < clock->m)
663 INTELPllInvalid ("m out of range\n");
664 if (clock->n < limit->n.min || limit->n.max < clock->n)
665 INTELPllInvalid ("n out of range\n");
666 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
667 INTELPllInvalid ("vco out of range\n");
668 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
669 * connector, etc., rather than just a single range.
670 */
671 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
672 INTELPllInvalid ("dot out of range\n");
673
674 return true;
675}
676
Ma Lingd4906092009-03-18 20:13:27 +0800677static bool
678intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
679 int target, int refclk, intel_clock_t *best_clock)
680
Jesse Barnes79e53942008-11-07 14:24:08 -0800681{
682 struct drm_device *dev = crtc->dev;
683 struct drm_i915_private *dev_priv = dev->dev_private;
684 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800685 int err = target;
686
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200687 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800688 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800689 /*
690 * For LVDS, if the panel is on, just rely on its current
691 * settings for dual-channel. We haven't figured out how to
692 * reliably set up different single/dual channel state, if we
693 * even can.
694 */
695 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
696 LVDS_CLKB_POWER_UP)
697 clock.p2 = limit->p2.p2_fast;
698 else
699 clock.p2 = limit->p2.p2_slow;
700 } else {
701 if (target < limit->p2.dot_limit)
702 clock.p2 = limit->p2.p2_slow;
703 else
704 clock.p2 = limit->p2.p2_fast;
705 }
706
707 memset (best_clock, 0, sizeof (*best_clock));
708
Zhao Yakui42158662009-11-20 11:24:18 +0800709 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
710 clock.m1++) {
711 for (clock.m2 = limit->m2.min;
712 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500713 /* m1 is always 0 in Pineview */
714 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800715 break;
716 for (clock.n = limit->n.min;
717 clock.n <= limit->n.max; clock.n++) {
718 for (clock.p1 = limit->p1.min;
719 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800720 int this_err;
721
Shaohua Li21778322009-02-23 15:19:16 +0800722 intel_clock(dev, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800723
724 if (!intel_PLL_is_valid(crtc, &clock))
725 continue;
726
727 this_err = abs(clock.dot - target);
728 if (this_err < err) {
729 *best_clock = clock;
730 err = this_err;
731 }
732 }
733 }
734 }
735 }
736
737 return (err != target);
738}
739
Jesse Barnes652c3932009-08-17 13:31:43 -0700740
741static bool
742intel_find_best_reduced_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
743 int target, int refclk, intel_clock_t *best_clock)
744
745{
746 struct drm_device *dev = crtc->dev;
747 intel_clock_t clock;
748 int err = target;
749 bool found = false;
750
751 memcpy(&clock, best_clock, sizeof(intel_clock_t));
752
753 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
754 for (clock.m2 = limit->m2.min; clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500755 /* m1 is always 0 in Pineview */
756 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -0700757 break;
758 for (clock.n = limit->n.min; clock.n <= limit->n.max;
759 clock.n++) {
760 int this_err;
761
762 intel_clock(dev, refclk, &clock);
763
764 if (!intel_PLL_is_valid(crtc, &clock))
765 continue;
766
767 this_err = abs(clock.dot - target);
768 if (this_err < err) {
769 *best_clock = clock;
770 err = this_err;
771 found = true;
772 }
773 }
774 }
775 }
776
777 return found;
778}
779
Ma Lingd4906092009-03-18 20:13:27 +0800780static bool
781intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
782 int target, int refclk, intel_clock_t *best_clock)
783{
784 struct drm_device *dev = crtc->dev;
785 struct drm_i915_private *dev_priv = dev->dev_private;
786 intel_clock_t clock;
787 int max_n;
788 bool found;
789 /* approximately equals target * 0.00488 */
790 int err_most = (target >> 8) + (target >> 10);
791 found = false;
792
793 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
794 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
795 LVDS_CLKB_POWER_UP)
796 clock.p2 = limit->p2.p2_fast;
797 else
798 clock.p2 = limit->p2.p2_slow;
799 } else {
800 if (target < limit->p2.dot_limit)
801 clock.p2 = limit->p2.p2_slow;
802 else
803 clock.p2 = limit->p2.p2_fast;
804 }
805
806 memset(best_clock, 0, sizeof(*best_clock));
807 max_n = limit->n.max;
808 /* based on hardware requriment prefer smaller n to precision */
809 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Jesse Barnes652c3932009-08-17 13:31:43 -0700810 /* based on hardware requirment prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800811 for (clock.m1 = limit->m1.max;
812 clock.m1 >= limit->m1.min; clock.m1--) {
813 for (clock.m2 = limit->m2.max;
814 clock.m2 >= limit->m2.min; clock.m2--) {
815 for (clock.p1 = limit->p1.max;
816 clock.p1 >= limit->p1.min; clock.p1--) {
817 int this_err;
818
Shaohua Li21778322009-02-23 15:19:16 +0800819 intel_clock(dev, refclk, &clock);
Ma Lingd4906092009-03-18 20:13:27 +0800820 if (!intel_PLL_is_valid(crtc, &clock))
821 continue;
822 this_err = abs(clock.dot - target) ;
823 if (this_err < err_most) {
824 *best_clock = clock;
825 err_most = this_err;
826 max_n = clock.n;
827 found = true;
828 }
829 }
830 }
831 }
832 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800833 return found;
834}
Ma Lingd4906092009-03-18 20:13:27 +0800835
Zhenyu Wang2c072452009-06-05 15:38:42 +0800836static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500837intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
838 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800839{
840 struct drm_device *dev = crtc->dev;
841 intel_clock_t clock;
842 if (target < 200000) {
843 clock.n = 1;
844 clock.p1 = 2;
845 clock.p2 = 10;
846 clock.m1 = 12;
847 clock.m2 = 9;
848 } else {
849 clock.n = 2;
850 clock.p1 = 1;
851 clock.p2 = 10;
852 clock.m1 = 14;
853 clock.m2 = 8;
854 }
855 intel_clock(dev, refclk, &clock);
856 memcpy(best_clock, &clock, sizeof(intel_clock_t));
857 return true;
858}
859
860static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500861intel_ironlake_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
862 int target, int refclk, intel_clock_t *best_clock)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800863{
864 struct drm_device *dev = crtc->dev;
865 struct drm_i915_private *dev_priv = dev->dev_private;
866 intel_clock_t clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800867 int err_most = 47;
Zhenyu Wang4bfe6b62009-11-02 07:52:29 +0000868 int err_min = 10000;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800869
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800870 /* eDP has only 2 clock choice, no n/m/p setting */
871 if (HAS_eDP)
872 return true;
873
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800874 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500875 return intel_find_pll_ironlake_dp(limit, crtc, target,
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800876 refclk, best_clock);
877
Zhenyu Wang2c072452009-06-05 15:38:42 +0800878 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhenyu Wangb09aea72009-09-19 14:54:06 +0800879 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
Zhenyu Wang2c072452009-06-05 15:38:42 +0800880 LVDS_CLKB_POWER_UP)
881 clock.p2 = limit->p2.p2_fast;
882 else
883 clock.p2 = limit->p2.p2_slow;
884 } else {
885 if (target < limit->p2.dot_limit)
886 clock.p2 = limit->p2.p2_slow;
887 else
888 clock.p2 = limit->p2.p2_fast;
889 }
890
891 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes652c3932009-08-17 13:31:43 -0700892 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
893 /* based on hardware requriment prefer smaller n to precision */
Zhenyu Wang4bfe6b62009-11-02 07:52:29 +0000894 for (clock.n = limit->n.min; clock.n <= limit->n.max; clock.n++) {
Jesse Barnes652c3932009-08-17 13:31:43 -0700895 /* based on hardware requirment prefere larger m1,m2 */
896 for (clock.m1 = limit->m1.max;
897 clock.m1 >= limit->m1.min; clock.m1--) {
898 for (clock.m2 = limit->m2.max;
899 clock.m2 >= limit->m2.min; clock.m2--) {
Zhenyu Wang2c072452009-06-05 15:38:42 +0800900 int this_err;
901
902 intel_clock(dev, refclk, &clock);
903 if (!intel_PLL_is_valid(crtc, &clock))
904 continue;
905 this_err = abs((10000 - (target*10000/clock.dot)));
906 if (this_err < err_most) {
907 *best_clock = clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800908 /* found on first matching */
909 goto out;
Zhenyu Wang4bfe6b62009-11-02 07:52:29 +0000910 } else if (this_err < err_min) {
911 *best_clock = clock;
912 err_min = this_err;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800913 }
914 }
915 }
916 }
917 }
918out:
Zhenyu Wang4bfe6b62009-11-02 07:52:29 +0000919 return true;
Ma Lingd4906092009-03-18 20:13:27 +0800920}
921
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700922/* DisplayPort has only two frequencies, 162MHz and 270MHz */
923static bool
924intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
925 int target, int refclk, intel_clock_t *best_clock)
926{
927 intel_clock_t clock;
928 if (target < 200000) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700929 clock.p1 = 2;
930 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700931 clock.n = 2;
932 clock.m1 = 23;
933 clock.m2 = 8;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700934 } else {
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700935 clock.p1 = 1;
936 clock.p2 = 10;
Keith Packardb3d25492009-06-24 23:09:15 -0700937 clock.n = 1;
938 clock.m1 = 14;
939 clock.m2 = 2;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700940 }
Keith Packardb3d25492009-06-24 23:09:15 -0700941 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
942 clock.p = (clock.p1 * clock.p2);
943 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
Jesse Barnesfe798b92009-10-20 07:55:28 +0900944 clock.vco = 0;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700945 memcpy(best_clock, &clock, sizeof(intel_clock_t));
946 return true;
947}
948
Jesse Barnes79e53942008-11-07 14:24:08 -0800949void
950intel_wait_for_vblank(struct drm_device *dev)
951{
952 /* Wait for 20ms, i.e. one cycle at 50hz. */
Shaohua Li311089d2009-11-26 14:22:41 +0800953 msleep(20);
Jesse Barnes79e53942008-11-07 14:24:08 -0800954}
955
Jesse Barnes80824002009-09-10 15:28:06 -0700956/* Parameters have changed, update FBC info */
957static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
958{
959 struct drm_device *dev = crtc->dev;
960 struct drm_i915_private *dev_priv = dev->dev_private;
961 struct drm_framebuffer *fb = crtc->fb;
962 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
963 struct drm_i915_gem_object *obj_priv = intel_fb->obj->driver_private;
964 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
965 int plane, i;
966 u32 fbc_ctl, fbc_ctl2;
967
968 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
969
970 if (fb->pitch < dev_priv->cfb_pitch)
971 dev_priv->cfb_pitch = fb->pitch;
972
973 /* FBC_CTL wants 64B units */
974 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
975 dev_priv->cfb_fence = obj_priv->fence_reg;
976 dev_priv->cfb_plane = intel_crtc->plane;
977 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
978
979 /* Clear old tags */
980 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
981 I915_WRITE(FBC_TAG + (i * 4), 0);
982
983 /* Set it up... */
984 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
985 if (obj_priv->tiling_mode != I915_TILING_NONE)
986 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
987 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
988 I915_WRITE(FBC_FENCE_OFF, crtc->y);
989
990 /* enable it... */
991 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
992 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
993 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
994 if (obj_priv->tiling_mode != I915_TILING_NONE)
995 fbc_ctl |= dev_priv->cfb_fence;
996 I915_WRITE(FBC_CONTROL, fbc_ctl);
997
Zhao Yakui28c97732009-10-09 11:39:41 +0800998 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
Jesse Barnes80824002009-09-10 15:28:06 -0700999 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
1000}
1001
1002void i8xx_disable_fbc(struct drm_device *dev)
1003{
1004 struct drm_i915_private *dev_priv = dev->dev_private;
1005 u32 fbc_ctl;
1006
Jesse Barnesc1a1cdc2009-09-16 15:05:00 -07001007 if (!I915_HAS_FBC(dev))
1008 return;
1009
Jesse Barnes80824002009-09-10 15:28:06 -07001010 /* Disable compression */
1011 fbc_ctl = I915_READ(FBC_CONTROL);
1012 fbc_ctl &= ~FBC_CTL_EN;
1013 I915_WRITE(FBC_CONTROL, fbc_ctl);
1014
1015 /* Wait for compressing bit to clear */
1016 while (I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING)
1017 ; /* nothing */
1018
1019 intel_wait_for_vblank(dev);
1020
Zhao Yakui28c97732009-10-09 11:39:41 +08001021 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001022}
1023
1024static bool i8xx_fbc_enabled(struct drm_crtc *crtc)
1025{
1026 struct drm_device *dev = crtc->dev;
1027 struct drm_i915_private *dev_priv = dev->dev_private;
1028
1029 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1030}
1031
Jesse Barnes74dff282009-09-14 15:39:40 -07001032static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1033{
1034 struct drm_device *dev = crtc->dev;
1035 struct drm_i915_private *dev_priv = dev->dev_private;
1036 struct drm_framebuffer *fb = crtc->fb;
1037 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
1038 struct drm_i915_gem_object *obj_priv = intel_fb->obj->driver_private;
1039 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1040 int plane = (intel_crtc->plane == 0 ? DPFC_CTL_PLANEA :
1041 DPFC_CTL_PLANEB);
1042 unsigned long stall_watermark = 200;
1043 u32 dpfc_ctl;
1044
1045 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
1046 dev_priv->cfb_fence = obj_priv->fence_reg;
1047 dev_priv->cfb_plane = intel_crtc->plane;
1048
1049 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
1050 if (obj_priv->tiling_mode != I915_TILING_NONE) {
1051 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1052 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1053 } else {
1054 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1055 }
1056
1057 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1058 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1059 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1060 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1061 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1062
1063 /* enable it... */
1064 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1065
Zhao Yakui28c97732009-10-09 11:39:41 +08001066 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
Jesse Barnes74dff282009-09-14 15:39:40 -07001067}
1068
1069void g4x_disable_fbc(struct drm_device *dev)
1070{
1071 struct drm_i915_private *dev_priv = dev->dev_private;
1072 u32 dpfc_ctl;
1073
1074 /* Disable compression */
1075 dpfc_ctl = I915_READ(DPFC_CONTROL);
1076 dpfc_ctl &= ~DPFC_CTL_EN;
1077 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
1078 intel_wait_for_vblank(dev);
1079
Zhao Yakui28c97732009-10-09 11:39:41 +08001080 DRM_DEBUG_KMS("disabled FBC\n");
Jesse Barnes74dff282009-09-14 15:39:40 -07001081}
1082
1083static bool g4x_fbc_enabled(struct drm_crtc *crtc)
1084{
1085 struct drm_device *dev = crtc->dev;
1086 struct drm_i915_private *dev_priv = dev->dev_private;
1087
1088 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1089}
1090
Jesse Barnes80824002009-09-10 15:28:06 -07001091/**
1092 * intel_update_fbc - enable/disable FBC as needed
1093 * @crtc: CRTC to point the compressor at
1094 * @mode: mode in use
1095 *
1096 * Set up the framebuffer compression hardware at mode set time. We
1097 * enable it if possible:
1098 * - plane A only (on pre-965)
1099 * - no pixel mulitply/line duplication
1100 * - no alpha buffer discard
1101 * - no dual wide
1102 * - framebuffer <= 2048 in width, 1536 in height
1103 *
1104 * We can't assume that any compression will take place (worst case),
1105 * so the compressed buffer has to be the same size as the uncompressed
1106 * one. It also must reside (along with the line length buffer) in
1107 * stolen memory.
1108 *
1109 * We need to enable/disable FBC on a global basis.
1110 */
1111static void intel_update_fbc(struct drm_crtc *crtc,
1112 struct drm_display_mode *mode)
1113{
1114 struct drm_device *dev = crtc->dev;
1115 struct drm_i915_private *dev_priv = dev->dev_private;
1116 struct drm_framebuffer *fb = crtc->fb;
1117 struct intel_framebuffer *intel_fb;
1118 struct drm_i915_gem_object *obj_priv;
1119 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1120 int plane = intel_crtc->plane;
1121
1122 if (!i915_powersave)
1123 return;
1124
Jesse Barnese70236a2009-09-21 10:42:27 -07001125 if (!dev_priv->display.fbc_enabled ||
1126 !dev_priv->display.enable_fbc ||
1127 !dev_priv->display.disable_fbc)
1128 return;
1129
Jesse Barnes80824002009-09-10 15:28:06 -07001130 if (!crtc->fb)
1131 return;
1132
1133 intel_fb = to_intel_framebuffer(fb);
1134 obj_priv = intel_fb->obj->driver_private;
1135
1136 /*
1137 * If FBC is already on, we just have to verify that we can
1138 * keep it that way...
1139 * Need to disable if:
1140 * - changing FBC params (stride, fence, mode)
1141 * - new fb is too large to fit in compressed buffer
1142 * - going to an unsupported config (interlace, pixel multiply, etc.)
1143 */
1144 if (intel_fb->obj->size > dev_priv->cfb_size) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001145 DRM_DEBUG_KMS("framebuffer too large, disabling "
1146 "compression\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001147 goto out_disable;
1148 }
1149 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
1150 (mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001151 DRM_DEBUG_KMS("mode incompatible with compression, "
1152 "disabling\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001153 goto out_disable;
1154 }
1155 if ((mode->hdisplay > 2048) ||
1156 (mode->vdisplay > 1536)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001157 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001158 goto out_disable;
1159 }
Jesse Barnes74dff282009-09-14 15:39:40 -07001160 if ((IS_I915GM(dev) || IS_I945GM(dev)) && plane != 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001161 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001162 goto out_disable;
1163 }
1164 if (obj_priv->tiling_mode != I915_TILING_X) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001165 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001166 goto out_disable;
1167 }
1168
Jesse Barnese70236a2009-09-21 10:42:27 -07001169 if (dev_priv->display.fbc_enabled(crtc)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001170 /* We can re-enable it in this case, but need to update pitch */
1171 if (fb->pitch > dev_priv->cfb_pitch)
Jesse Barnese70236a2009-09-21 10:42:27 -07001172 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001173 if (obj_priv->fence_reg != dev_priv->cfb_fence)
Jesse Barnese70236a2009-09-21 10:42:27 -07001174 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001175 if (plane != dev_priv->cfb_plane)
Jesse Barnese70236a2009-09-21 10:42:27 -07001176 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001177 }
1178
Jesse Barnese70236a2009-09-21 10:42:27 -07001179 if (!dev_priv->display.fbc_enabled(crtc)) {
Jesse Barnes80824002009-09-10 15:28:06 -07001180 /* Now try to turn it back on if possible */
Jesse Barnese70236a2009-09-21 10:42:27 -07001181 dev_priv->display.enable_fbc(crtc, 500);
Jesse Barnes80824002009-09-10 15:28:06 -07001182 }
1183
1184 return;
1185
1186out_disable:
Zhao Yakui28c97732009-10-09 11:39:41 +08001187 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07001188 /* Multiple disables should be harmless */
Jesse Barnese70236a2009-09-21 10:42:27 -07001189 if (dev_priv->display.fbc_enabled(crtc))
1190 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001191}
1192
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001193static int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001194intel_pin_and_fence_fb_obj(struct drm_device *dev, struct drm_gem_object *obj)
1195{
1196 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1197 u32 alignment;
1198 int ret;
1199
1200 switch (obj_priv->tiling_mode) {
1201 case I915_TILING_NONE:
1202 alignment = 64 * 1024;
1203 break;
1204 case I915_TILING_X:
1205 /* pin() will align the object as required by fence */
1206 alignment = 0;
1207 break;
1208 case I915_TILING_Y:
1209 /* FIXME: Is this true? */
1210 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1211 return -EINVAL;
1212 default:
1213 BUG();
1214 }
1215
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001216 ret = i915_gem_object_pin(obj, alignment);
1217 if (ret != 0)
1218 return ret;
1219
1220 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1221 * fence, whereas 965+ only requires a fence if using
1222 * framebuffer compression. For simplicity, we always install
1223 * a fence as the cost is not that onerous.
1224 */
1225 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
1226 obj_priv->tiling_mode != I915_TILING_NONE) {
1227 ret = i915_gem_object_get_fence_reg(obj);
1228 if (ret != 0) {
1229 i915_gem_object_unpin(obj);
1230 return ret;
1231 }
1232 }
1233
1234 return 0;
1235}
1236
1237static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001238intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1239 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001240{
1241 struct drm_device *dev = crtc->dev;
1242 struct drm_i915_private *dev_priv = dev->dev_private;
1243 struct drm_i915_master_private *master_priv;
1244 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1245 struct intel_framebuffer *intel_fb;
1246 struct drm_i915_gem_object *obj_priv;
1247 struct drm_gem_object *obj;
1248 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001249 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08001250 unsigned long Start, Offset;
Jesse Barnes80824002009-09-10 15:28:06 -07001251 int dspbase = (plane == 0 ? DSPAADDR : DSPBADDR);
1252 int dspsurf = (plane == 0 ? DSPASURF : DSPBSURF);
1253 int dspstride = (plane == 0) ? DSPASTRIDE : DSPBSTRIDE;
1254 int dsptileoff = (plane == 0 ? DSPATILEOFF : DSPBTILEOFF);
1255 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001256 u32 dspcntr;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001257 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001258
1259 /* no fb bound */
1260 if (!crtc->fb) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001261 DRM_DEBUG_KMS("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001262 return 0;
1263 }
1264
Jesse Barnes80824002009-09-10 15:28:06 -07001265 switch (plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001266 case 0:
1267 case 1:
1268 break;
1269 default:
Jesse Barnes80824002009-09-10 15:28:06 -07001270 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001271 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001272 }
1273
1274 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08001275 obj = intel_fb->obj;
1276 obj_priv = obj->driver_private;
1277
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001278 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001279 ret = intel_pin_and_fence_fb_obj(dev, obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001280 if (ret != 0) {
1281 mutex_unlock(&dev->struct_mutex);
1282 return ret;
1283 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001284
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001285 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001286 if (ret != 0) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001287 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001288 mutex_unlock(&dev->struct_mutex);
1289 return ret;
1290 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001291
1292 dspcntr = I915_READ(dspcntr_reg);
Jesse Barnes712531b2009-01-09 13:56:14 -08001293 /* Mask out pixel format bits in case we change it */
1294 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Jesse Barnes79e53942008-11-07 14:24:08 -08001295 switch (crtc->fb->bits_per_pixel) {
1296 case 8:
1297 dspcntr |= DISPPLANE_8BPP;
1298 break;
1299 case 16:
1300 if (crtc->fb->depth == 15)
1301 dspcntr |= DISPPLANE_15_16BPP;
1302 else
1303 dspcntr |= DISPPLANE_16BPP;
1304 break;
1305 case 24:
1306 case 32:
Kristian Høgsberga4f45cf2009-10-19 14:35:30 -04001307 if (crtc->fb->depth == 30)
1308 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1309 else
1310 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
Jesse Barnes79e53942008-11-07 14:24:08 -08001311 break;
1312 default:
1313 DRM_ERROR("Unknown color depth\n");
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001314 i915_gem_object_unpin(obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001315 mutex_unlock(&dev->struct_mutex);
1316 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001317 }
Jesse Barnesf5448472009-04-14 14:17:47 -07001318 if (IS_I965G(dev)) {
1319 if (obj_priv->tiling_mode != I915_TILING_NONE)
1320 dspcntr |= DISPPLANE_TILED;
1321 else
1322 dspcntr &= ~DISPPLANE_TILED;
1323 }
1324
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001325 if (IS_IRONLAKE(dev))
Zhenyu Wang553bd142009-09-02 10:57:52 +08001326 /* must disable */
1327 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1328
Jesse Barnes79e53942008-11-07 14:24:08 -08001329 I915_WRITE(dspcntr_reg, dspcntr);
1330
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001331 Start = obj_priv->gtt_offset;
1332 Offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
1333
Zhao Yakui28c97732009-10-09 11:39:41 +08001334 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d\n", Start, Offset, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001335 I915_WRITE(dspstride, crtc->fb->pitch);
Jesse Barnes79e53942008-11-07 14:24:08 -08001336 if (IS_I965G(dev)) {
1337 I915_WRITE(dspbase, Offset);
1338 I915_READ(dspbase);
1339 I915_WRITE(dspsurf, Start);
1340 I915_READ(dspsurf);
Jesse Barnesf5448472009-04-14 14:17:47 -07001341 I915_WRITE(dsptileoff, (y << 16) | x);
Jesse Barnes79e53942008-11-07 14:24:08 -08001342 } else {
1343 I915_WRITE(dspbase, Start + Offset);
1344 I915_READ(dspbase);
1345 }
1346
Jesse Barnes74dff282009-09-14 15:39:40 -07001347 if ((IS_I965G(dev) || plane == 0))
Jesse Barnesedb81952009-09-17 17:06:47 -07001348 intel_update_fbc(crtc, &crtc->mode);
1349
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001350 intel_wait_for_vblank(dev);
1351
1352 if (old_fb) {
1353 intel_fb = to_intel_framebuffer(old_fb);
Jesse Barnes652c3932009-08-17 13:31:43 -07001354 obj_priv = intel_fb->obj->driver_private;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001355 i915_gem_object_unpin(intel_fb->obj);
1356 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001357 intel_increase_pllclock(crtc, true);
1358
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001359 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001360
1361 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001362 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001363
1364 master_priv = dev->primary->master->driver_priv;
1365 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001366 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001367
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001368 if (pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001369 master_priv->sarea_priv->pipeB_x = x;
1370 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001371 } else {
1372 master_priv->sarea_priv->pipeA_x = x;
1373 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001374 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001375
1376 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001377}
1378
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001379/* Disable the VGA plane that we never use */
1380static void i915_disable_vga (struct drm_device *dev)
1381{
1382 struct drm_i915_private *dev_priv = dev->dev_private;
1383 u8 sr1;
1384 u32 vga_reg;
1385
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001386 if (IS_IRONLAKE(dev))
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001387 vga_reg = CPU_VGACNTRL;
1388 else
1389 vga_reg = VGACNTRL;
1390
1391 if (I915_READ(vga_reg) & VGA_DISP_DISABLE)
1392 return;
1393
1394 I915_WRITE8(VGA_SR_INDEX, 1);
1395 sr1 = I915_READ8(VGA_SR_DATA);
1396 I915_WRITE8(VGA_SR_DATA, sr1 | (1 << 5));
1397 udelay(100);
1398
1399 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
1400}
1401
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001402static void ironlake_disable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001403{
1404 struct drm_device *dev = crtc->dev;
1405 struct drm_i915_private *dev_priv = dev->dev_private;
1406 u32 dpa_ctl;
1407
Zhao Yakui28c97732009-10-09 11:39:41 +08001408 DRM_DEBUG_KMS("\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001409 dpa_ctl = I915_READ(DP_A);
1410 dpa_ctl &= ~DP_PLL_ENABLE;
1411 I915_WRITE(DP_A, dpa_ctl);
1412}
1413
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001414static void ironlake_enable_pll_edp (struct drm_crtc *crtc)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001415{
1416 struct drm_device *dev = crtc->dev;
1417 struct drm_i915_private *dev_priv = dev->dev_private;
1418 u32 dpa_ctl;
1419
1420 dpa_ctl = I915_READ(DP_A);
1421 dpa_ctl |= DP_PLL_ENABLE;
1422 I915_WRITE(DP_A, dpa_ctl);
1423 udelay(200);
1424}
1425
1426
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001427static void ironlake_set_pll_edp (struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001428{
1429 struct drm_device *dev = crtc->dev;
1430 struct drm_i915_private *dev_priv = dev->dev_private;
1431 u32 dpa_ctl;
1432
Zhao Yakui28c97732009-10-09 11:39:41 +08001433 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001434 dpa_ctl = I915_READ(DP_A);
1435 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1436
1437 if (clock < 200000) {
1438 u32 temp;
1439 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1440 /* workaround for 160Mhz:
1441 1) program 0x4600c bits 15:0 = 0x8124
1442 2) program 0x46010 bit 0 = 1
1443 3) program 0x46034 bit 24 = 1
1444 4) program 0x64000 bit 14 = 1
1445 */
1446 temp = I915_READ(0x4600c);
1447 temp &= 0xffff0000;
1448 I915_WRITE(0x4600c, temp | 0x8124);
1449
1450 temp = I915_READ(0x46010);
1451 I915_WRITE(0x46010, temp | 1);
1452
1453 temp = I915_READ(0x46034);
1454 I915_WRITE(0x46034, temp | (1 << 24));
1455 } else {
1456 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1457 }
1458 I915_WRITE(DP_A, dpa_ctl);
1459
1460 udelay(500);
1461}
1462
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001463static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08001464{
1465 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001466 struct drm_i915_private *dev_priv = dev->dev_private;
1467 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1468 int pipe = intel_crtc->pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08001469 int plane = intel_crtc->plane;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001470 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
1471 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1472 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1473 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
1474 int fdi_tx_reg = (pipe == 0) ? FDI_TXA_CTL : FDI_TXB_CTL;
1475 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
1476 int fdi_rx_iir_reg = (pipe == 0) ? FDI_RXA_IIR : FDI_RXB_IIR;
1477 int fdi_rx_imr_reg = (pipe == 0) ? FDI_RXA_IMR : FDI_RXB_IMR;
1478 int transconf_reg = (pipe == 0) ? TRANSACONF : TRANSBCONF;
1479 int pf_ctl_reg = (pipe == 0) ? PFA_CTL_1 : PFB_CTL_1;
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001480 int pf_win_size = (pipe == 0) ? PFA_WIN_SZ : PFB_WIN_SZ;
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001481 int pf_win_pos = (pipe == 0) ? PFA_WIN_POS : PFB_WIN_POS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001482 int cpu_htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
1483 int cpu_hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
1484 int cpu_hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
1485 int cpu_vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
1486 int cpu_vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
1487 int cpu_vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
1488 int trans_htot_reg = (pipe == 0) ? TRANS_HTOTAL_A : TRANS_HTOTAL_B;
1489 int trans_hblank_reg = (pipe == 0) ? TRANS_HBLANK_A : TRANS_HBLANK_B;
1490 int trans_hsync_reg = (pipe == 0) ? TRANS_HSYNC_A : TRANS_HSYNC_B;
1491 int trans_vtot_reg = (pipe == 0) ? TRANS_VTOTAL_A : TRANS_VTOTAL_B;
1492 int trans_vblank_reg = (pipe == 0) ? TRANS_VBLANK_A : TRANS_VBLANK_B;
1493 int trans_vsync_reg = (pipe == 0) ? TRANS_VSYNC_A : TRANS_VSYNC_B;
1494 u32 temp;
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001495 int tries = 5, j, n;
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001496 u32 pipe_bpc;
1497
1498 temp = I915_READ(pipeconf_reg);
1499 pipe_bpc = temp & PIPE_BPC_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001500
1501 /* XXX: When our outputs are all unaware of DPMS modes other than off
1502 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
1503 */
1504 switch (mode) {
1505 case DRM_MODE_DPMS_ON:
1506 case DRM_MODE_DPMS_STANDBY:
1507 case DRM_MODE_DPMS_SUSPEND:
Zhao Yakui28c97732009-10-09 11:39:41 +08001508 DRM_DEBUG_KMS("crtc %d dpms on\n", pipe);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001509
1510 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1511 temp = I915_READ(PCH_LVDS);
1512 if ((temp & LVDS_PORT_EN) == 0) {
1513 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
1514 POSTING_READ(PCH_LVDS);
1515 }
1516 }
1517
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001518 if (HAS_eDP) {
1519 /* enable eDP PLL */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001520 ironlake_enable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001521 } else {
1522 /* enable PCH DPLL */
1523 temp = I915_READ(pch_dpll_reg);
1524 if ((temp & DPLL_VCO_ENABLE) == 0) {
1525 I915_WRITE(pch_dpll_reg, temp | DPLL_VCO_ENABLE);
1526 I915_READ(pch_dpll_reg);
1527 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001528
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001529 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
1530 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001531 /*
1532 * make the BPC in FDI Rx be consistent with that in
1533 * pipeconf reg.
1534 */
1535 temp &= ~(0x7 << 16);
1536 temp |= (pipe_bpc << 11);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001537 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE |
1538 FDI_SEL_PCDCLK |
1539 FDI_DP_PORT_WIDTH_X4); /* default 4 lanes */
1540 I915_READ(fdi_rx_reg);
1541 udelay(200);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001542
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001543 /* Enable CPU FDI TX PLL, always on for Ironlake */
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001544 temp = I915_READ(fdi_tx_reg);
1545 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
1546 I915_WRITE(fdi_tx_reg, temp | FDI_TX_PLL_ENABLE);
1547 I915_READ(fdi_tx_reg);
1548 udelay(100);
1549 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001550 }
1551
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001552 /* Enable panel fitting for LVDS */
1553 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1554 temp = I915_READ(pf_ctl_reg);
Zhenyu Wangb1f60b72009-10-19 15:43:49 +08001555 I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3);
Zhenyu Wang8dd81a32009-09-19 14:54:09 +08001556
1557 /* currently full aspect */
1558 I915_WRITE(pf_win_pos, 0);
1559
1560 I915_WRITE(pf_win_size,
1561 (dev_priv->panel_fixed_mode->hdisplay << 16) |
1562 (dev_priv->panel_fixed_mode->vdisplay));
1563 }
1564
Zhenyu Wang2c072452009-06-05 15:38:42 +08001565 /* Enable CPU pipe */
1566 temp = I915_READ(pipeconf_reg);
1567 if ((temp & PIPEACONF_ENABLE) == 0) {
1568 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
1569 I915_READ(pipeconf_reg);
1570 udelay(100);
1571 }
1572
1573 /* configure and enable CPU plane */
1574 temp = I915_READ(dspcntr_reg);
1575 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
1576 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
1577 /* Flush the plane changes */
1578 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1579 }
1580
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001581 if (!HAS_eDP) {
1582 /* enable CPU FDI TX and PCH FDI RX */
1583 temp = I915_READ(fdi_tx_reg);
1584 temp |= FDI_TX_ENABLE;
1585 temp |= FDI_DP_PORT_WIDTH_X4; /* default */
1586 temp &= ~FDI_LINK_TRAIN_NONE;
1587 temp |= FDI_LINK_TRAIN_PATTERN_1;
1588 I915_WRITE(fdi_tx_reg, temp);
1589 I915_READ(fdi_tx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001590
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001591 temp = I915_READ(fdi_rx_reg);
1592 temp &= ~FDI_LINK_TRAIN_NONE;
1593 temp |= FDI_LINK_TRAIN_PATTERN_1;
1594 I915_WRITE(fdi_rx_reg, temp | FDI_RX_ENABLE);
1595 I915_READ(fdi_rx_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001596
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001597 udelay(150);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001598
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001599 /* Train FDI. */
1600 /* umask FDI RX Interrupt symbol_lock and bit_lock bit
1601 for train result */
1602 temp = I915_READ(fdi_rx_imr_reg);
1603 temp &= ~FDI_RX_SYMBOL_LOCK;
1604 temp &= ~FDI_RX_BIT_LOCK;
1605 I915_WRITE(fdi_rx_imr_reg, temp);
1606 I915_READ(fdi_rx_imr_reg);
1607 udelay(150);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001608
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001609 temp = I915_READ(fdi_rx_iir_reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08001610 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001611
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001612 if ((temp & FDI_RX_BIT_LOCK) == 0) {
1613 for (j = 0; j < tries; j++) {
1614 temp = I915_READ(fdi_rx_iir_reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08001615 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n",
1616 temp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001617 if (temp & FDI_RX_BIT_LOCK)
1618 break;
1619 udelay(200);
1620 }
1621 if (j != tries)
1622 I915_WRITE(fdi_rx_iir_reg,
1623 temp | FDI_RX_BIT_LOCK);
1624 else
Zhao Yakui28c97732009-10-09 11:39:41 +08001625 DRM_DEBUG_KMS("train 1 fail\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001626 } else {
Zhenyu Wang2c072452009-06-05 15:38:42 +08001627 I915_WRITE(fdi_rx_iir_reg,
1628 temp | FDI_RX_BIT_LOCK);
Zhao Yakui28c97732009-10-09 11:39:41 +08001629 DRM_DEBUG_KMS("train 1 ok 2!\n");
Zhenyu Wang2c072452009-06-05 15:38:42 +08001630 }
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001631 temp = I915_READ(fdi_tx_reg);
1632 temp &= ~FDI_LINK_TRAIN_NONE;
1633 temp |= FDI_LINK_TRAIN_PATTERN_2;
1634 I915_WRITE(fdi_tx_reg, temp);
1635
1636 temp = I915_READ(fdi_rx_reg);
1637 temp &= ~FDI_LINK_TRAIN_NONE;
1638 temp |= FDI_LINK_TRAIN_PATTERN_2;
1639 I915_WRITE(fdi_rx_reg, temp);
1640
1641 udelay(150);
1642
1643 temp = I915_READ(fdi_rx_iir_reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08001644 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001645
1646 if ((temp & FDI_RX_SYMBOL_LOCK) == 0) {
1647 for (j = 0; j < tries; j++) {
1648 temp = I915_READ(fdi_rx_iir_reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08001649 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n",
1650 temp);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001651 if (temp & FDI_RX_SYMBOL_LOCK)
1652 break;
1653 udelay(200);
1654 }
1655 if (j != tries) {
1656 I915_WRITE(fdi_rx_iir_reg,
1657 temp | FDI_RX_SYMBOL_LOCK);
Zhao Yakui28c97732009-10-09 11:39:41 +08001658 DRM_DEBUG_KMS("train 2 ok 1!\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001659 } else
Zhao Yakui28c97732009-10-09 11:39:41 +08001660 DRM_DEBUG_KMS("train 2 fail\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001661 } else {
Zhenyu Wang2c072452009-06-05 15:38:42 +08001662 I915_WRITE(fdi_rx_iir_reg,
1663 temp | FDI_RX_SYMBOL_LOCK);
Zhao Yakui28c97732009-10-09 11:39:41 +08001664 DRM_DEBUG_KMS("train 2 ok 2!\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001665 }
Zhao Yakui28c97732009-10-09 11:39:41 +08001666 DRM_DEBUG_KMS("train done\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001667
1668 /* set transcoder timing */
1669 I915_WRITE(trans_htot_reg, I915_READ(cpu_htot_reg));
1670 I915_WRITE(trans_hblank_reg, I915_READ(cpu_hblank_reg));
1671 I915_WRITE(trans_hsync_reg, I915_READ(cpu_hsync_reg));
1672
1673 I915_WRITE(trans_vtot_reg, I915_READ(cpu_vtot_reg));
1674 I915_WRITE(trans_vblank_reg, I915_READ(cpu_vblank_reg));
1675 I915_WRITE(trans_vsync_reg, I915_READ(cpu_vsync_reg));
1676
1677 /* enable PCH transcoder */
1678 temp = I915_READ(transconf_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001679 /*
1680 * make the BPC in transcoder be consistent with
1681 * that in pipeconf reg.
1682 */
1683 temp &= ~PIPE_BPC_MASK;
1684 temp |= pipe_bpc;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001685 I915_WRITE(transconf_reg, temp | TRANS_ENABLE);
1686 I915_READ(transconf_reg);
1687
1688 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) == 0)
1689 ;
1690
1691 /* enable normal */
1692
1693 temp = I915_READ(fdi_tx_reg);
1694 temp &= ~FDI_LINK_TRAIN_NONE;
1695 I915_WRITE(fdi_tx_reg, temp | FDI_LINK_TRAIN_NONE |
1696 FDI_TX_ENHANCE_FRAME_ENABLE);
1697 I915_READ(fdi_tx_reg);
1698
1699 temp = I915_READ(fdi_rx_reg);
1700 temp &= ~FDI_LINK_TRAIN_NONE;
1701 I915_WRITE(fdi_rx_reg, temp | FDI_LINK_TRAIN_NONE |
1702 FDI_RX_ENHANCE_FRAME_ENABLE);
1703 I915_READ(fdi_rx_reg);
1704
1705 /* wait one idle pattern time */
1706 udelay(100);
1707
Zhenyu Wang2c072452009-06-05 15:38:42 +08001708 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001709
1710 intel_crtc_load_lut(crtc);
1711
1712 break;
1713 case DRM_MODE_DPMS_OFF:
Zhao Yakui28c97732009-10-09 11:39:41 +08001714 DRM_DEBUG_KMS("crtc %d dpms off\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001715
1716 /* Disable display plane */
1717 temp = I915_READ(dspcntr_reg);
1718 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
1719 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
1720 /* Flush the plane changes */
1721 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1722 I915_READ(dspbase_reg);
1723 }
1724
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001725 i915_disable_vga(dev);
1726
Zhenyu Wang2c072452009-06-05 15:38:42 +08001727 /* disable cpu pipe, disable after all planes disabled */
1728 temp = I915_READ(pipeconf_reg);
1729 if ((temp & PIPEACONF_ENABLE) != 0) {
1730 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
1731 I915_READ(pipeconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001732 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001733 /* wait for cpu pipe off, pipe state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001734 while ((I915_READ(pipeconf_reg) & I965_PIPECONF_ACTIVE) != 0) {
1735 n++;
1736 if (n < 60) {
1737 udelay(500);
1738 continue;
1739 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08001740 DRM_DEBUG_KMS("pipe %d off delay\n",
1741 pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001742 break;
1743 }
1744 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001745 } else
Zhao Yakui28c97732009-10-09 11:39:41 +08001746 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001747
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001748 udelay(100);
1749
1750 /* Disable PF */
1751 temp = I915_READ(pf_ctl_reg);
1752 if ((temp & PF_ENABLE) != 0) {
1753 I915_WRITE(pf_ctl_reg, temp & ~PF_ENABLE);
1754 I915_READ(pf_ctl_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001755 }
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001756 I915_WRITE(pf_win_size, 0);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001757
Zhenyu Wang2c072452009-06-05 15:38:42 +08001758 /* disable CPU FDI tx and PCH FDI rx */
1759 temp = I915_READ(fdi_tx_reg);
1760 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_ENABLE);
1761 I915_READ(fdi_tx_reg);
1762
1763 temp = I915_READ(fdi_rx_reg);
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001764 /* BPC in FDI rx is consistent with that in pipeconf */
1765 temp &= ~(0x07 << 16);
1766 temp |= (pipe_bpc << 11);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001767 I915_WRITE(fdi_rx_reg, temp & ~FDI_RX_ENABLE);
1768 I915_READ(fdi_rx_reg);
1769
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001770 udelay(100);
1771
Zhenyu Wang2c072452009-06-05 15:38:42 +08001772 /* still set train pattern 1 */
1773 temp = I915_READ(fdi_tx_reg);
1774 temp &= ~FDI_LINK_TRAIN_NONE;
1775 temp |= FDI_LINK_TRAIN_PATTERN_1;
1776 I915_WRITE(fdi_tx_reg, temp);
1777
1778 temp = I915_READ(fdi_rx_reg);
1779 temp &= ~FDI_LINK_TRAIN_NONE;
1780 temp |= FDI_LINK_TRAIN_PATTERN_1;
1781 I915_WRITE(fdi_rx_reg, temp);
1782
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001783 udelay(100);
1784
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001785 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1786 temp = I915_READ(PCH_LVDS);
1787 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
1788 I915_READ(PCH_LVDS);
1789 udelay(100);
1790 }
1791
Zhenyu Wang2c072452009-06-05 15:38:42 +08001792 /* disable PCH transcoder */
1793 temp = I915_READ(transconf_reg);
1794 if ((temp & TRANS_ENABLE) != 0) {
1795 I915_WRITE(transconf_reg, temp & ~TRANS_ENABLE);
1796 I915_READ(transconf_reg);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001797 n = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08001798 /* wait for PCH transcoder off, transcoder state */
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001799 while ((I915_READ(transconf_reg) & TRANS_STATE_ENABLE) != 0) {
1800 n++;
1801 if (n < 60) {
1802 udelay(500);
1803 continue;
1804 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08001805 DRM_DEBUG_KMS("transcoder %d off "
1806 "delay\n", pipe);
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001807 break;
1808 }
1809 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001810 }
Zhao Yakui8faf3b32010-01-04 16:29:31 +08001811 temp = I915_READ(transconf_reg);
1812 /* BPC in transcoder is consistent with that in pipeconf */
1813 temp &= ~PIPE_BPC_MASK;
1814 temp |= pipe_bpc;
1815 I915_WRITE(transconf_reg, temp);
1816 I915_READ(transconf_reg);
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001817 udelay(100);
1818
Zhenyu Wang2c072452009-06-05 15:38:42 +08001819 /* disable PCH DPLL */
1820 temp = I915_READ(pch_dpll_reg);
1821 if ((temp & DPLL_VCO_ENABLE) != 0) {
1822 I915_WRITE(pch_dpll_reg, temp & ~DPLL_VCO_ENABLE);
1823 I915_READ(pch_dpll_reg);
1824 }
1825
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001826 if (HAS_eDP) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001827 ironlake_disable_pll_edp(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001828 }
1829
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001830 temp = I915_READ(fdi_rx_reg);
1831 temp &= ~FDI_SEL_PCDCLK;
1832 I915_WRITE(fdi_rx_reg, temp);
1833 I915_READ(fdi_rx_reg);
1834
1835 temp = I915_READ(fdi_rx_reg);
1836 temp &= ~FDI_RX_PLL_ENABLE;
1837 I915_WRITE(fdi_rx_reg, temp);
1838 I915_READ(fdi_rx_reg);
1839
Zhenyu Wang249c0e62009-07-24 01:00:29 +08001840 /* Disable CPU FDI TX PLL */
1841 temp = I915_READ(fdi_tx_reg);
1842 if ((temp & FDI_TX_PLL_ENABLE) != 0) {
1843 I915_WRITE(fdi_tx_reg, temp & ~FDI_TX_PLL_ENABLE);
1844 I915_READ(fdi_tx_reg);
1845 udelay(100);
1846 }
1847
Zhenyu Wang2c072452009-06-05 15:38:42 +08001848 /* Wait for the clocks to turn off. */
Zhenyu Wang1b3c7a42009-11-25 13:09:38 +08001849 udelay(100);
Zhenyu Wang2c072452009-06-05 15:38:42 +08001850 break;
1851 }
1852}
1853
Daniel Vetter02e792f2009-09-15 22:57:34 +02001854static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
1855{
1856 struct intel_overlay *overlay;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001857 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001858
1859 if (!enable && intel_crtc->overlay) {
1860 overlay = intel_crtc->overlay;
1861 mutex_lock(&overlay->dev->struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001862 for (;;) {
1863 ret = intel_overlay_switch_off(overlay);
1864 if (ret == 0)
1865 break;
1866
1867 ret = intel_overlay_recover_from_interrupt(overlay, 0);
1868 if (ret != 0) {
1869 /* overlay doesn't react anymore. Usually
1870 * results in a black screen and an unkillable
1871 * X server. */
1872 BUG();
1873 overlay->hw_wedged = HW_WEDGED;
1874 break;
1875 }
1876 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001877 mutex_unlock(&overlay->dev->struct_mutex);
1878 }
1879 /* Let userspace switch the overlay on again. In most cases userspace
1880 * has to recompute where to put it anyway. */
1881
1882 return;
1883}
1884
Zhenyu Wang2c072452009-06-05 15:38:42 +08001885static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
1886{
1887 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08001888 struct drm_i915_private *dev_priv = dev->dev_private;
1889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1890 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07001891 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08001892 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
Jesse Barnes80824002009-09-10 15:28:06 -07001893 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
1894 int dspbase_reg = (plane == 0) ? DSPAADDR : DSPBADDR;
Jesse Barnes79e53942008-11-07 14:24:08 -08001895 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
1896 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08001897
1898 /* XXX: When our outputs are all unaware of DPMS modes other than off
1899 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
1900 */
1901 switch (mode) {
1902 case DRM_MODE_DPMS_ON:
1903 case DRM_MODE_DPMS_STANDBY:
1904 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes629598d2009-10-20 07:37:32 +09001905 intel_update_watermarks(dev);
1906
Jesse Barnes79e53942008-11-07 14:24:08 -08001907 /* Enable the DPLL */
1908 temp = I915_READ(dpll_reg);
1909 if ((temp & DPLL_VCO_ENABLE) == 0) {
1910 I915_WRITE(dpll_reg, temp);
1911 I915_READ(dpll_reg);
1912 /* Wait for the clocks to stabilize. */
1913 udelay(150);
1914 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
1915 I915_READ(dpll_reg);
1916 /* Wait for the clocks to stabilize. */
1917 udelay(150);
1918 I915_WRITE(dpll_reg, temp | DPLL_VCO_ENABLE);
1919 I915_READ(dpll_reg);
1920 /* Wait for the clocks to stabilize. */
1921 udelay(150);
1922 }
1923
1924 /* Enable the pipe */
1925 temp = I915_READ(pipeconf_reg);
1926 if ((temp & PIPEACONF_ENABLE) == 0)
1927 I915_WRITE(pipeconf_reg, temp | PIPEACONF_ENABLE);
1928
1929 /* Enable the plane */
1930 temp = I915_READ(dspcntr_reg);
1931 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
1932 I915_WRITE(dspcntr_reg, temp | DISPLAY_PLANE_ENABLE);
1933 /* Flush the plane changes */
1934 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1935 }
1936
1937 intel_crtc_load_lut(crtc);
1938
Jesse Barnes74dff282009-09-14 15:39:40 -07001939 if ((IS_I965G(dev) || plane == 0))
1940 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnes80824002009-09-10 15:28:06 -07001941
Jesse Barnes79e53942008-11-07 14:24:08 -08001942 /* Give the overlay scaler a chance to enable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001943 intel_crtc_dpms_overlay(intel_crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08001944 break;
1945 case DRM_MODE_DPMS_OFF:
Shaohua Li7662c8b2009-06-26 11:23:55 +08001946 intel_update_watermarks(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001947
Jesse Barnes79e53942008-11-07 14:24:08 -08001948 /* Give the overlay scaler a chance to disable if it's on this pipe */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001949 intel_crtc_dpms_overlay(intel_crtc, false);
Li Peng778c9022009-11-09 12:51:22 +08001950 drm_vblank_off(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08001951
Jesse Barnese70236a2009-09-21 10:42:27 -07001952 if (dev_priv->cfb_plane == plane &&
1953 dev_priv->display.disable_fbc)
1954 dev_priv->display.disable_fbc(dev);
Jesse Barnes80824002009-09-10 15:28:06 -07001955
Jesse Barnes79e53942008-11-07 14:24:08 -08001956 /* Disable the VGA plane that we never use */
Zhenyu Wang24f119c2009-07-24 01:00:28 +08001957 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08001958
1959 /* Disable display plane */
1960 temp = I915_READ(dspcntr_reg);
1961 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
1962 I915_WRITE(dspcntr_reg, temp & ~DISPLAY_PLANE_ENABLE);
1963 /* Flush the plane changes */
1964 I915_WRITE(dspbase_reg, I915_READ(dspbase_reg));
1965 I915_READ(dspbase_reg);
1966 }
1967
1968 if (!IS_I9XX(dev)) {
1969 /* Wait for vblank for the disable to take effect */
1970 intel_wait_for_vblank(dev);
1971 }
1972
1973 /* Next, disable display pipes */
1974 temp = I915_READ(pipeconf_reg);
1975 if ((temp & PIPEACONF_ENABLE) != 0) {
1976 I915_WRITE(pipeconf_reg, temp & ~PIPEACONF_ENABLE);
1977 I915_READ(pipeconf_reg);
1978 }
1979
1980 /* Wait for vblank for the disable to take effect. */
1981 intel_wait_for_vblank(dev);
1982
1983 temp = I915_READ(dpll_reg);
1984 if ((temp & DPLL_VCO_ENABLE) != 0) {
1985 I915_WRITE(dpll_reg, temp & ~DPLL_VCO_ENABLE);
1986 I915_READ(dpll_reg);
1987 }
1988
1989 /* Wait for the clocks to turn off. */
1990 udelay(150);
1991 break;
1992 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08001993}
1994
1995/**
1996 * Sets the power management mode of the pipe and plane.
1997 *
1998 * This code should probably grow support for turning the cursor off and back
1999 * on appropriately at the same time as we're turning the pipe off/on.
2000 */
2001static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2002{
2003 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002004 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002005 struct drm_i915_master_private *master_priv;
2006 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2007 int pipe = intel_crtc->pipe;
2008 bool enabled;
2009
Jesse Barnese70236a2009-09-21 10:42:27 -07002010 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002011
Daniel Vetter65655d42009-08-11 16:05:31 +02002012 intel_crtc->dpms_mode = mode;
2013
Jesse Barnes79e53942008-11-07 14:24:08 -08002014 if (!dev->primary->master)
2015 return;
2016
2017 master_priv = dev->primary->master->driver_priv;
2018 if (!master_priv->sarea_priv)
2019 return;
2020
2021 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2022
2023 switch (pipe) {
2024 case 0:
2025 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2026 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2027 break;
2028 case 1:
2029 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2030 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2031 break;
2032 default:
2033 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2034 break;
2035 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002036}
2037
2038static void intel_crtc_prepare (struct drm_crtc *crtc)
2039{
2040 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2041 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2042}
2043
2044static void intel_crtc_commit (struct drm_crtc *crtc)
2045{
2046 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2047 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
2048}
2049
2050void intel_encoder_prepare (struct drm_encoder *encoder)
2051{
2052 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2053 /* lvds has its own version of prepare see intel_lvds_prepare */
2054 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2055}
2056
2057void intel_encoder_commit (struct drm_encoder *encoder)
2058{
2059 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2060 /* lvds has its own version of commit see intel_lvds_commit */
2061 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2062}
2063
2064static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2065 struct drm_display_mode *mode,
2066 struct drm_display_mode *adjusted_mode)
2067{
Zhenyu Wang2c072452009-06-05 15:38:42 +08002068 struct drm_device *dev = crtc->dev;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002069 if (IS_IRONLAKE(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08002070 /* FDI link clock is fixed at 2.7G */
2071 if (mode->clock * 3 > 27000 * 4)
2072 return MODE_CLOCK_HIGH;
2073 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002074 return true;
2075}
2076
Jesse Barnese70236a2009-09-21 10:42:27 -07002077static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002078{
Jesse Barnese70236a2009-09-21 10:42:27 -07002079 return 400000;
2080}
Jesse Barnes79e53942008-11-07 14:24:08 -08002081
Jesse Barnese70236a2009-09-21 10:42:27 -07002082static int i915_get_display_clock_speed(struct drm_device *dev)
2083{
2084 return 333000;
2085}
Jesse Barnes79e53942008-11-07 14:24:08 -08002086
Jesse Barnese70236a2009-09-21 10:42:27 -07002087static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2088{
2089 return 200000;
2090}
Jesse Barnes79e53942008-11-07 14:24:08 -08002091
Jesse Barnese70236a2009-09-21 10:42:27 -07002092static int i915gm_get_display_clock_speed(struct drm_device *dev)
2093{
2094 u16 gcfgc = 0;
2095
2096 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2097
2098 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08002099 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07002100 else {
2101 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2102 case GC_DISPLAY_CLOCK_333_MHZ:
2103 return 333000;
2104 default:
2105 case GC_DISPLAY_CLOCK_190_200_MHZ:
2106 return 190000;
2107 }
2108 }
2109}
Jesse Barnes79e53942008-11-07 14:24:08 -08002110
Jesse Barnese70236a2009-09-21 10:42:27 -07002111static int i865_get_display_clock_speed(struct drm_device *dev)
2112{
2113 return 266000;
2114}
2115
2116static int i855_get_display_clock_speed(struct drm_device *dev)
2117{
2118 u16 hpllcc = 0;
2119 /* Assume that the hardware is in the high speed state. This
2120 * should be the default.
2121 */
2122 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2123 case GC_CLOCK_133_200:
2124 case GC_CLOCK_100_200:
2125 return 200000;
2126 case GC_CLOCK_166_250:
2127 return 250000;
2128 case GC_CLOCK_100_133:
2129 return 133000;
2130 }
2131
2132 /* Shouldn't happen */
2133 return 0;
2134}
2135
2136static int i830_get_display_clock_speed(struct drm_device *dev)
2137{
2138 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08002139}
2140
Jesse Barnes79e53942008-11-07 14:24:08 -08002141/**
2142 * Return the pipe currently connected to the panel fitter,
2143 * or -1 if the panel fitter is not present or not in use
2144 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002145int intel_panel_fitter_pipe (struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08002146{
2147 struct drm_i915_private *dev_priv = dev->dev_private;
2148 u32 pfit_control;
2149
2150 /* i830 doesn't have a panel fitter */
2151 if (IS_I830(dev))
2152 return -1;
2153
2154 pfit_control = I915_READ(PFIT_CONTROL);
2155
2156 /* See if the panel fitter is in use */
2157 if ((pfit_control & PFIT_ENABLE) == 0)
2158 return -1;
2159
2160 /* 965 can place panel fitter on either pipe */
2161 if (IS_I965G(dev))
2162 return (pfit_control >> 29) & 0x3;
2163
2164 /* older chips can only use pipe 1 */
2165 return 1;
2166}
2167
Zhenyu Wang2c072452009-06-05 15:38:42 +08002168struct fdi_m_n {
2169 u32 tu;
2170 u32 gmch_m;
2171 u32 gmch_n;
2172 u32 link_m;
2173 u32 link_n;
2174};
2175
2176static void
2177fdi_reduce_ratio(u32 *num, u32 *den)
2178{
2179 while (*num > 0xffffff || *den > 0xffffff) {
2180 *num >>= 1;
2181 *den >>= 1;
2182 }
2183}
2184
2185#define DATA_N 0x800000
2186#define LINK_N 0x80000
2187
2188static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002189ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2190 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002191{
2192 u64 temp;
2193
2194 m_n->tu = 64; /* default size */
2195
2196 temp = (u64) DATA_N * pixel_clock;
2197 temp = div_u64(temp, link_clock);
Zhenyu Wang58a27472009-09-25 08:01:28 +00002198 m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes);
2199 m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */
Zhenyu Wang2c072452009-06-05 15:38:42 +08002200 m_n->gmch_n = DATA_N;
2201 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2202
2203 temp = (u64) LINK_N * pixel_clock;
2204 m_n->link_m = div_u64(temp, link_clock);
2205 m_n->link_n = LINK_N;
2206 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2207}
2208
2209
Shaohua Li7662c8b2009-06-26 11:23:55 +08002210struct intel_watermark_params {
2211 unsigned long fifo_size;
2212 unsigned long max_wm;
2213 unsigned long default_wm;
2214 unsigned long guard_size;
2215 unsigned long cacheline_size;
2216};
2217
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002218/* Pineview has different values for various configs */
2219static struct intel_watermark_params pineview_display_wm = {
2220 PINEVIEW_DISPLAY_FIFO,
2221 PINEVIEW_MAX_WM,
2222 PINEVIEW_DFT_WM,
2223 PINEVIEW_GUARD_WM,
2224 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002225};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002226static struct intel_watermark_params pineview_display_hplloff_wm = {
2227 PINEVIEW_DISPLAY_FIFO,
2228 PINEVIEW_MAX_WM,
2229 PINEVIEW_DFT_HPLLOFF_WM,
2230 PINEVIEW_GUARD_WM,
2231 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002232};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002233static struct intel_watermark_params pineview_cursor_wm = {
2234 PINEVIEW_CURSOR_FIFO,
2235 PINEVIEW_CURSOR_MAX_WM,
2236 PINEVIEW_CURSOR_DFT_WM,
2237 PINEVIEW_CURSOR_GUARD_WM,
2238 PINEVIEW_FIFO_LINE_SIZE,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002239};
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002240static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2241 PINEVIEW_CURSOR_FIFO,
2242 PINEVIEW_CURSOR_MAX_WM,
2243 PINEVIEW_CURSOR_DFT_WM,
2244 PINEVIEW_CURSOR_GUARD_WM,
2245 PINEVIEW_FIFO_LINE_SIZE
Shaohua Li7662c8b2009-06-26 11:23:55 +08002246};
Jesse Barnes0e442c62009-10-19 10:09:33 +09002247static struct intel_watermark_params g4x_wm_info = {
2248 G4X_FIFO_SIZE,
2249 G4X_MAX_WM,
2250 G4X_MAX_WM,
2251 2,
2252 G4X_FIFO_LINE_SIZE,
2253};
Shaohua Li7662c8b2009-06-26 11:23:55 +08002254static struct intel_watermark_params i945_wm_info = {
Shaohua Li7662c8b2009-06-26 11:23:55 +08002255 I945_FIFO_SIZE,
2256 I915_MAX_WM,
2257 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002258 2,
2259 I915_FIFO_LINE_SIZE
2260};
2261static struct intel_watermark_params i915_wm_info = {
2262 I915_FIFO_SIZE,
2263 I915_MAX_WM,
2264 1,
2265 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002266 I915_FIFO_LINE_SIZE
2267};
2268static struct intel_watermark_params i855_wm_info = {
2269 I855GM_FIFO_SIZE,
2270 I915_MAX_WM,
2271 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002272 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002273 I830_FIFO_LINE_SIZE
2274};
2275static struct intel_watermark_params i830_wm_info = {
2276 I830_FIFO_SIZE,
2277 I915_MAX_WM,
2278 1,
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002279 2,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002280 I830_FIFO_LINE_SIZE
2281};
2282
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002283/**
2284 * intel_calculate_wm - calculate watermark level
2285 * @clock_in_khz: pixel clock
2286 * @wm: chip FIFO params
2287 * @pixel_size: display pixel size
2288 * @latency_ns: memory latency for the platform
2289 *
2290 * Calculate the watermark level (the level at which the display plane will
2291 * start fetching from memory again). Each chip has a different display
2292 * FIFO size and allocation, so the caller needs to figure that out and pass
2293 * in the correct intel_watermark_params structure.
2294 *
2295 * As the pixel clock runs, the FIFO will be drained at a rate that depends
2296 * on the pixel size. When it reaches the watermark level, it'll start
2297 * fetching FIFO line sized based chunks from memory until the FIFO fills
2298 * past the watermark point. If the FIFO drains completely, a FIFO underrun
2299 * will occur, and a display engine hang could result.
2300 */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002301static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
2302 struct intel_watermark_params *wm,
2303 int pixel_size,
2304 unsigned long latency_ns)
2305{
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002306 long entries_required, wm_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002307
Jesse Barnesd6604672009-09-11 12:25:56 -07002308 /*
2309 * Note: we need to make sure we don't overflow for various clock &
2310 * latency values.
2311 * clocks go from a few thousand to several hundred thousand.
2312 * latency is usually a few thousand
2313 */
2314 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
2315 1000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002316 entries_required /= wm->cacheline_size;
2317
Zhao Yakui28c97732009-10-09 11:39:41 +08002318 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002319
2320 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
2321
Zhao Yakui28c97732009-10-09 11:39:41 +08002322 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002323
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002324 /* Don't promote wm_size to unsigned... */
2325 if (wm_size > (long)wm->max_wm)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002326 wm_size = wm->max_wm;
Jesse Barnes390c4dd2009-07-16 13:01:01 -07002327 if (wm_size <= 0)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002328 wm_size = wm->default_wm;
2329 return wm_size;
2330}
2331
2332struct cxsr_latency {
2333 int is_desktop;
2334 unsigned long fsb_freq;
2335 unsigned long mem_freq;
2336 unsigned long display_sr;
2337 unsigned long display_hpll_disable;
2338 unsigned long cursor_sr;
2339 unsigned long cursor_hpll_disable;
2340};
2341
2342static struct cxsr_latency cxsr_latency_table[] = {
2343 {1, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
2344 {1, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
2345 {1, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
2346
2347 {1, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
2348 {1, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
2349 {1, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
2350
2351 {1, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
2352 {1, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
2353 {1, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
2354
2355 {0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
2356 {0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
2357 {0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
2358
2359 {0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
2360 {0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
2361 {0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
2362
2363 {0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
2364 {0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
2365 {0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
2366};
2367
2368static struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, int fsb,
2369 int mem)
2370{
2371 int i;
2372 struct cxsr_latency *latency;
2373
2374 if (fsb == 0 || mem == 0)
2375 return NULL;
2376
2377 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
2378 latency = &cxsr_latency_table[i];
2379 if (is_desktop == latency->is_desktop &&
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302380 fsb == latency->fsb_freq && mem == latency->mem_freq)
2381 return latency;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002382 }
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302383
Zhao Yakui28c97732009-10-09 11:39:41 +08002384 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Jaswinder Singh Rajputdecbbcd2009-09-12 23:15:07 +05302385
2386 return NULL;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002387}
2388
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002389static void pineview_disable_cxsr(struct drm_device *dev)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002390{
2391 struct drm_i915_private *dev_priv = dev->dev_private;
2392 u32 reg;
2393
2394 /* deactivate cxsr */
2395 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002396 reg &= ~(PINEVIEW_SELF_REFRESH_EN);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002397 I915_WRITE(DSPFW3, reg);
2398 DRM_INFO("Big FIFO is disabled\n");
2399}
2400
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002401static void pineview_enable_cxsr(struct drm_device *dev, unsigned long clock,
2402 int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002403{
2404 struct drm_i915_private *dev_priv = dev->dev_private;
2405 u32 reg;
2406 unsigned long wm;
2407 struct cxsr_latency *latency;
2408
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002409 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->fsb_freq,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002410 dev_priv->mem_freq);
2411 if (!latency) {
Zhao Yakui28c97732009-10-09 11:39:41 +08002412 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002413 pineview_disable_cxsr(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002414 return;
2415 }
2416
2417 /* Display SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002418 wm = intel_calculate_wm(clock, &pineview_display_wm, pixel_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002419 latency->display_sr);
2420 reg = I915_READ(DSPFW1);
2421 reg &= 0x7fffff;
2422 reg |= wm << 23;
2423 I915_WRITE(DSPFW1, reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08002424 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002425
2426 /* cursor SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002427 wm = intel_calculate_wm(clock, &pineview_cursor_wm, pixel_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002428 latency->cursor_sr);
2429 reg = I915_READ(DSPFW3);
2430 reg &= ~(0x3f << 24);
2431 reg |= (wm & 0x3f) << 24;
2432 I915_WRITE(DSPFW3, reg);
2433
2434 /* Display HPLL off SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002435 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002436 latency->display_hpll_disable, I915_FIFO_LINE_SIZE);
2437 reg = I915_READ(DSPFW3);
2438 reg &= 0xfffffe00;
2439 reg |= wm & 0x1ff;
2440 I915_WRITE(DSPFW3, reg);
2441
2442 /* cursor HPLL off SR */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002443 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm, pixel_size,
Shaohua Li7662c8b2009-06-26 11:23:55 +08002444 latency->cursor_hpll_disable);
2445 reg = I915_READ(DSPFW3);
2446 reg &= ~(0x3f << 16);
2447 reg |= (wm & 0x3f) << 16;
2448 I915_WRITE(DSPFW3, reg);
Zhao Yakui28c97732009-10-09 11:39:41 +08002449 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002450
2451 /* activate cxsr */
2452 reg = I915_READ(DSPFW3);
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002453 reg |= PINEVIEW_SELF_REFRESH_EN;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002454 I915_WRITE(DSPFW3, reg);
2455
2456 DRM_INFO("Big FIFO is enabled\n");
2457
2458 return;
2459}
2460
Jesse Barnesbcc24fb2009-08-31 10:24:31 -07002461/*
2462 * Latency for FIFO fetches is dependent on several factors:
2463 * - memory configuration (speed, channels)
2464 * - chipset
2465 * - current MCH state
2466 * It can be fairly high in some situations, so here we assume a fairly
2467 * pessimal value. It's a tradeoff between extra memory fetches (if we
2468 * set this value too high, the FIFO will fetch frequently to stay full)
2469 * and power consumption (set it too low to save power and we might see
2470 * FIFO underruns and display "flicker").
2471 *
2472 * A value of 5us seems to be a good balance; safe for very low end
2473 * platforms but not overly aggressive on lower latency configs.
2474 */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002475static const int latency_ns = 5000;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002476
Jesse Barnese70236a2009-09-21 10:42:27 -07002477static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002478{
2479 struct drm_i915_private *dev_priv = dev->dev_private;
2480 uint32_t dsparb = I915_READ(DSPARB);
2481 int size;
2482
Jesse Barnese70236a2009-09-21 10:42:27 -07002483 if (plane == 0)
Jesse Barnesf3601322009-07-22 12:54:59 -07002484 size = dsparb & 0x7f;
Jesse Barnese70236a2009-09-21 10:42:27 -07002485 else
2486 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) -
2487 (dsparb & 0x7f);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002488
Zhao Yakui28c97732009-10-09 11:39:41 +08002489 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2490 plane ? "B" : "A", size);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002491
2492 return size;
2493}
Shaohua Li7662c8b2009-06-26 11:23:55 +08002494
Jesse Barnese70236a2009-09-21 10:42:27 -07002495static int i85x_get_fifo_size(struct drm_device *dev, int plane)
2496{
2497 struct drm_i915_private *dev_priv = dev->dev_private;
2498 uint32_t dsparb = I915_READ(DSPARB);
2499 int size;
2500
2501 if (plane == 0)
2502 size = dsparb & 0x1ff;
2503 else
2504 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) -
2505 (dsparb & 0x1ff);
2506 size >>= 1; /* Convert to cachelines */
2507
Zhao Yakui28c97732009-10-09 11:39:41 +08002508 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2509 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002510
2511 return size;
2512}
2513
2514static int i845_get_fifo_size(struct drm_device *dev, int plane)
2515{
2516 struct drm_i915_private *dev_priv = dev->dev_private;
2517 uint32_t dsparb = I915_READ(DSPARB);
2518 int size;
2519
2520 size = dsparb & 0x7f;
2521 size >>= 2; /* Convert to cachelines */
2522
Zhao Yakui28c97732009-10-09 11:39:41 +08002523 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2524 plane ? "B" : "A",
Jesse Barnese70236a2009-09-21 10:42:27 -07002525 size);
2526
2527 return size;
2528}
2529
2530static int i830_get_fifo_size(struct drm_device *dev, int plane)
2531{
2532 struct drm_i915_private *dev_priv = dev->dev_private;
2533 uint32_t dsparb = I915_READ(DSPARB);
2534 int size;
2535
2536 size = dsparb & 0x7f;
2537 size >>= 1; /* Convert to cachelines */
2538
Zhao Yakui28c97732009-10-09 11:39:41 +08002539 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
2540 plane ? "B" : "A", size);
Jesse Barnese70236a2009-09-21 10:42:27 -07002541
2542 return size;
2543}
2544
Jesse Barnes0e442c62009-10-19 10:09:33 +09002545static void g4x_update_wm(struct drm_device *dev, int planea_clock,
2546 int planeb_clock, int sr_hdisplay, int pixel_size)
Jesse Barnes652c3932009-08-17 13:31:43 -07002547{
2548 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002549 int total_size, cacheline_size;
2550 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
2551 struct intel_watermark_params planea_params, planeb_params;
2552 unsigned long line_time_us;
2553 int sr_clock, sr_entries = 0, entries_required;
Jesse Barnes652c3932009-08-17 13:31:43 -07002554
Jesse Barnes0e442c62009-10-19 10:09:33 +09002555 /* Create copies of the base settings for each pipe */
2556 planea_params = planeb_params = g4x_wm_info;
2557
2558 /* Grab a couple of global values before we overwrite them */
2559 total_size = planea_params.fifo_size;
2560 cacheline_size = planea_params.cacheline_size;
2561
2562 /*
2563 * Note: we need to make sure we don't overflow for various clock &
2564 * latency values.
2565 * clocks go from a few thousand to several hundred thousand.
2566 * latency is usually a few thousand
2567 */
2568 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
2569 1000;
2570 entries_required /= G4X_FIFO_LINE_SIZE;
2571 planea_wm = entries_required + planea_params.guard_size;
2572
2573 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
2574 1000;
2575 entries_required /= G4X_FIFO_LINE_SIZE;
2576 planeb_wm = entries_required + planeb_params.guard_size;
2577
2578 cursora_wm = cursorb_wm = 16;
2579 cursor_sr = 32;
2580
2581 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2582
2583 /* Calc sr entries for one plane configs */
2584 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
2585 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002586 static const int sr_latency_ns = 12000;
Jesse Barnes0e442c62009-10-19 10:09:33 +09002587
2588 sr_clock = planea_clock ? planea_clock : planeb_clock;
2589 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
2590
2591 /* Use ns/us then divide to preserve precision */
2592 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
2593 pixel_size * sr_hdisplay) / 1000;
2594 sr_entries = roundup(sr_entries / cacheline_size, 1);
2595 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
2596 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
2597 }
2598
2599 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
2600 planea_wm, planeb_wm, sr_entries);
2601
2602 planea_wm &= 0x3f;
2603 planeb_wm &= 0x3f;
2604
2605 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
2606 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
2607 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
2608 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
2609 (cursora_wm << DSPFW_CURSORA_SHIFT));
2610 /* HPLL off in SR has some issues on G4x... disable it */
2611 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
2612 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Jesse Barnes652c3932009-08-17 13:31:43 -07002613}
2614
Jesse Barnes1dc75462009-10-19 10:08:17 +09002615static void i965_update_wm(struct drm_device *dev, int planea_clock,
2616 int planeb_clock, int sr_hdisplay, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002617{
2618 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002619 unsigned long line_time_us;
2620 int sr_clock, sr_entries, srwm = 1;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002621
Jesse Barnes1dc75462009-10-19 10:08:17 +09002622 /* Calc sr entries for one plane configs */
2623 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
2624 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002625 static const int sr_latency_ns = 12000;
Jesse Barnes1dc75462009-10-19 10:08:17 +09002626
2627 sr_clock = planea_clock ? planea_clock : planeb_clock;
2628 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
2629
2630 /* Use ns/us then divide to preserve precision */
2631 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
2632 pixel_size * sr_hdisplay) / 1000;
2633 sr_entries = roundup(sr_entries / I915_FIFO_LINE_SIZE, 1);
2634 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
2635 srwm = I945_FIFO_SIZE - sr_entries;
2636 if (srwm < 0)
2637 srwm = 1;
2638 srwm &= 0x3f;
2639 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
2640 }
2641
2642 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2643 srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002644
2645 /* 965 has limitations... */
Jesse Barnes1dc75462009-10-19 10:08:17 +09002646 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
2647 (8 << 0));
Shaohua Li7662c8b2009-06-26 11:23:55 +08002648 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
2649}
2650
2651static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
2652 int planeb_clock, int sr_hdisplay, int pixel_size)
2653{
2654 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002655 uint32_t fwater_lo;
2656 uint32_t fwater_hi;
2657 int total_size, cacheline_size, cwm, srwm = 1;
2658 int planea_wm, planeb_wm;
2659 struct intel_watermark_params planea_params, planeb_params;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002660 unsigned long line_time_us;
2661 int sr_clock, sr_entries = 0;
2662
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002663 /* Create copies of the base settings for each pipe */
Shaohua Li7662c8b2009-06-26 11:23:55 +08002664 if (IS_I965GM(dev) || IS_I945GM(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002665 planea_params = planeb_params = i945_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002666 else if (IS_I9XX(dev))
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002667 planea_params = planeb_params = i915_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002668 else
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002669 planea_params = planeb_params = i855_wm_info;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002670
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002671 /* Grab a couple of global values before we overwrite them */
2672 total_size = planea_params.fifo_size;
2673 cacheline_size = planea_params.cacheline_size;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002674
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002675 /* Update per-plane FIFO sizes */
Jesse Barnese70236a2009-09-21 10:42:27 -07002676 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
2677 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002678
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002679 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
2680 pixel_size, latency_ns);
2681 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
2682 pixel_size, latency_ns);
Zhao Yakui28c97732009-10-09 11:39:41 +08002683 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002684
2685 /*
2686 * Overlay gets an aggressive default since video jitter is bad.
2687 */
2688 cwm = 2;
2689
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002690 /* Calc sr entries for one plane configs */
Jesse Barnes652c3932009-08-17 13:31:43 -07002691 if (HAS_FW_BLC(dev) && sr_hdisplay &&
2692 (!planea_clock || !planeb_clock)) {
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002693 /* self-refresh has much higher latency */
Tobias Klauser69e302a2009-12-23 14:14:34 +01002694 static const int sr_latency_ns = 6000;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002695
Shaohua Li7662c8b2009-06-26 11:23:55 +08002696 sr_clock = planea_clock ? planea_clock : planeb_clock;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002697 line_time_us = ((sr_hdisplay * 1000) / sr_clock);
2698
2699 /* Use ns/us then divide to preserve precision */
2700 sr_entries = (((sr_latency_ns / line_time_us) + 1) *
2701 pixel_size * sr_hdisplay) / 1000;
2702 sr_entries = roundup(sr_entries / cacheline_size, 1);
Zhao Yakui28c97732009-10-09 11:39:41 +08002703 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002704 srwm = total_size - sr_entries;
2705 if (srwm < 0)
2706 srwm = 1;
Jesse Barnes652c3932009-08-17 13:31:43 -07002707 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN | (srwm & 0x3f));
Shaohua Li7662c8b2009-06-26 11:23:55 +08002708 }
2709
Zhao Yakui28c97732009-10-09 11:39:41 +08002710 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002711 planea_wm, planeb_wm, cwm, srwm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002712
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002713 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2714 fwater_hi = (cwm & 0x1f);
2715
2716 /* Set request length to 8 cachelines per fetch */
2717 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2718 fwater_hi = fwater_hi | (1 << 8);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002719
2720 I915_WRITE(FW_BLC, fwater_lo);
2721 I915_WRITE(FW_BLC2, fwater_hi);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002722}
2723
Jesse Barnese70236a2009-09-21 10:42:27 -07002724static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
2725 int unused2, int pixel_size)
Shaohua Li7662c8b2009-06-26 11:23:55 +08002726{
2727 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf3601322009-07-22 12:54:59 -07002728 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002729 int planea_wm;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002730
Jesse Barnese70236a2009-09-21 10:42:27 -07002731 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002732
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002733 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
2734 pixel_size, latency_ns);
Jesse Barnesf3601322009-07-22 12:54:59 -07002735 fwater_lo |= (3<<8) | planea_wm;
2736
Zhao Yakui28c97732009-10-09 11:39:41 +08002737 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002738
2739 I915_WRITE(FW_BLC, fwater_lo);
2740}
2741
2742/**
2743 * intel_update_watermarks - update FIFO watermark values based on current modes
2744 *
2745 * Calculate watermark values for the various WM regs based on current mode
2746 * and plane configuration.
2747 *
2748 * There are several cases to deal with here:
2749 * - normal (i.e. non-self-refresh)
2750 * - self-refresh (SR) mode
2751 * - lines are large relative to FIFO size (buffer can hold up to 2)
2752 * - lines are small relative to FIFO size (buffer can hold more than 2
2753 * lines), so need to account for TLB latency
2754 *
2755 * The normal calculation is:
2756 * watermark = dotclock * bytes per pixel * latency
2757 * where latency is platform & configuration dependent (we assume pessimal
2758 * values here).
2759 *
2760 * The SR calculation is:
2761 * watermark = (trunc(latency/line time)+1) * surface width *
2762 * bytes per pixel
2763 * where
2764 * line time = htotal / dotclock
2765 * and latency is assumed to be high, as above.
2766 *
2767 * The final value programmed to the register should always be rounded up,
2768 * and include an extra 2 entries to account for clock crossings.
2769 *
2770 * We don't use the sprite, so we can ignore that. And on Crestline we have
2771 * to set the non-SR watermarks to 8.
2772 */
2773static void intel_update_watermarks(struct drm_device *dev)
2774{
Jesse Barnese70236a2009-09-21 10:42:27 -07002775 struct drm_i915_private *dev_priv = dev->dev_private;
Shaohua Li7662c8b2009-06-26 11:23:55 +08002776 struct drm_crtc *crtc;
2777 struct intel_crtc *intel_crtc;
2778 int sr_hdisplay = 0;
2779 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
2780 int enabled = 0, pixel_size = 0;
2781
Zhenyu Wangc03342f2009-09-29 11:01:23 +08002782 if (!dev_priv->display.update_wm)
2783 return;
2784
Shaohua Li7662c8b2009-06-26 11:23:55 +08002785 /* Get the clock config from both planes */
2786 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2787 intel_crtc = to_intel_crtc(crtc);
2788 if (crtc->enabled) {
2789 enabled++;
2790 if (intel_crtc->plane == 0) {
Zhao Yakui28c97732009-10-09 11:39:41 +08002791 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08002792 intel_crtc->pipe, crtc->mode.clock);
2793 planea_clock = crtc->mode.clock;
2794 } else {
Zhao Yakui28c97732009-10-09 11:39:41 +08002795 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
Shaohua Li7662c8b2009-06-26 11:23:55 +08002796 intel_crtc->pipe, crtc->mode.clock);
2797 planeb_clock = crtc->mode.clock;
2798 }
2799 sr_hdisplay = crtc->mode.hdisplay;
2800 sr_clock = crtc->mode.clock;
2801 if (crtc->fb)
2802 pixel_size = crtc->fb->bits_per_pixel / 8;
2803 else
2804 pixel_size = 4; /* by default */
2805 }
2806 }
2807
2808 if (enabled <= 0)
2809 return;
2810
Jesse Barnesdff33cf2009-07-14 10:15:56 -07002811 /* Single plane configs can enable self refresh */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002812 if (enabled == 1 && IS_PINEVIEW(dev))
2813 pineview_enable_cxsr(dev, sr_clock, pixel_size);
2814 else if (IS_PINEVIEW(dev))
2815 pineview_disable_cxsr(dev);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002816
Jesse Barnese70236a2009-09-21 10:42:27 -07002817 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
2818 sr_hdisplay, pixel_size);
Shaohua Li7662c8b2009-06-26 11:23:55 +08002819}
2820
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002821static int intel_crtc_mode_set(struct drm_crtc *crtc,
2822 struct drm_display_mode *mode,
2823 struct drm_display_mode *adjusted_mode,
2824 int x, int y,
2825 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002826{
2827 struct drm_device *dev = crtc->dev;
2828 struct drm_i915_private *dev_priv = dev->dev_private;
2829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2830 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002831 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002832 int fp_reg = (pipe == 0) ? FPA0 : FPB0;
2833 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
2834 int dpll_md_reg = (intel_crtc->pipe == 0) ? DPLL_A_MD : DPLL_B_MD;
Jesse Barnes80824002009-09-10 15:28:06 -07002835 int dspcntr_reg = (plane == 0) ? DSPACNTR : DSPBCNTR;
Jesse Barnes79e53942008-11-07 14:24:08 -08002836 int pipeconf_reg = (pipe == 0) ? PIPEACONF : PIPEBCONF;
2837 int htot_reg = (pipe == 0) ? HTOTAL_A : HTOTAL_B;
2838 int hblank_reg = (pipe == 0) ? HBLANK_A : HBLANK_B;
2839 int hsync_reg = (pipe == 0) ? HSYNC_A : HSYNC_B;
2840 int vtot_reg = (pipe == 0) ? VTOTAL_A : VTOTAL_B;
2841 int vblank_reg = (pipe == 0) ? VBLANK_A : VBLANK_B;
2842 int vsync_reg = (pipe == 0) ? VSYNC_A : VSYNC_B;
Jesse Barnes80824002009-09-10 15:28:06 -07002843 int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE;
2844 int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS;
Jesse Barnes79e53942008-11-07 14:24:08 -08002845 int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC;
Kristian Høgsberg43565a02009-02-13 20:56:52 -05002846 int refclk, num_outputs = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07002847 intel_clock_t clock, reduced_clock;
2848 u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf;
2849 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002850 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002851 bool is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08002852 struct drm_mode_config *mode_config = &dev->mode_config;
2853 struct drm_connector *connector;
Ma Lingd4906092009-03-18 20:13:27 +08002854 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002855 int ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002856 struct fdi_m_n m_n = {0};
2857 int data_m1_reg = (pipe == 0) ? PIPEA_DATA_M1 : PIPEB_DATA_M1;
2858 int data_n1_reg = (pipe == 0) ? PIPEA_DATA_N1 : PIPEB_DATA_N1;
2859 int link_m1_reg = (pipe == 0) ? PIPEA_LINK_M1 : PIPEB_LINK_M1;
2860 int link_n1_reg = (pipe == 0) ? PIPEA_LINK_N1 : PIPEB_LINK_N1;
2861 int pch_fp_reg = (pipe == 0) ? PCH_FPA0 : PCH_FPB0;
2862 int pch_dpll_reg = (pipe == 0) ? PCH_DPLL_A : PCH_DPLL_B;
2863 int fdi_rx_reg = (pipe == 0) ? FDI_RXA_CTL : FDI_RXB_CTL;
Zhenyu Wang541998a2009-06-05 15:38:44 +08002864 int lvds_reg = LVDS;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002865 u32 temp;
2866 int sdvo_pixel_multiply;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002867 int target_clock;
Jesse Barnes79e53942008-11-07 14:24:08 -08002868
2869 drm_vblank_pre_modeset(dev, pipe);
2870
2871 list_for_each_entry(connector, &mode_config->connector_list, head) {
2872 struct intel_output *intel_output = to_intel_output(connector);
2873
2874 if (!connector->encoder || connector->encoder->crtc != crtc)
2875 continue;
2876
2877 switch (intel_output->type) {
2878 case INTEL_OUTPUT_LVDS:
2879 is_lvds = true;
2880 break;
2881 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08002882 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08002883 is_sdvo = true;
Jesse Barnese2f0ba92009-02-02 15:11:52 -08002884 if (intel_output->needs_tv_clock)
2885 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08002886 break;
2887 case INTEL_OUTPUT_DVO:
2888 is_dvo = true;
2889 break;
2890 case INTEL_OUTPUT_TVOUT:
2891 is_tv = true;
2892 break;
2893 case INTEL_OUTPUT_ANALOG:
2894 is_crt = true;
2895 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002896 case INTEL_OUTPUT_DISPLAYPORT:
2897 is_dp = true;
2898 break;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002899 case INTEL_OUTPUT_EDP:
2900 is_edp = true;
2901 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08002902 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05002903
2904 num_outputs++;
Jesse Barnes79e53942008-11-07 14:24:08 -08002905 }
2906
Kristian Høgsberg43565a02009-02-13 20:56:52 -05002907 if (is_lvds && dev_priv->lvds_use_ssc && num_outputs < 2) {
2908 refclk = dev_priv->lvds_ssc_freq * 1000;
Zhao Yakui28c97732009-10-09 11:39:41 +08002909 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
2910 refclk / 1000);
Kristian Høgsberg43565a02009-02-13 20:56:52 -05002911 } else if (IS_I9XX(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08002912 refclk = 96000;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002913 if (IS_IRONLAKE(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08002914 refclk = 120000; /* 120Mhz refclk */
Jesse Barnes79e53942008-11-07 14:24:08 -08002915 } else {
2916 refclk = 48000;
2917 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07002918
Jesse Barnes79e53942008-11-07 14:24:08 -08002919
Ma Lingd4906092009-03-18 20:13:27 +08002920 /*
2921 * Returns a set of divisors for the desired target clock with the given
2922 * refclk, or FALSE. The returned values represent the clock equation:
2923 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
2924 */
2925 limit = intel_limit(crtc);
2926 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08002927 if (!ok) {
2928 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Chris Wilson1f803ee2009-06-06 09:45:59 +01002929 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002930 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002931 }
2932
Zhao Yakui18f9ed12009-11-20 03:24:16 +00002933 if (is_lvds && limit->find_reduced_pll &&
2934 dev_priv->lvds_downclock_avail) {
Jesse Barnes652c3932009-08-17 13:31:43 -07002935 memcpy(&reduced_clock, &clock, sizeof(intel_clock_t));
2936 has_reduced_clock = limit->find_reduced_pll(limit, crtc,
Zhao Yakui18f9ed12009-11-20 03:24:16 +00002937 dev_priv->lvds_downclock,
Jesse Barnes652c3932009-08-17 13:31:43 -07002938 refclk,
2939 &reduced_clock);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00002940 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
2941 /*
2942 * If the different P is found, it means that we can't
2943 * switch the display clock by using the FP0/FP1.
2944 * In such case we will disable the LVDS downclock
2945 * feature.
2946 */
2947 DRM_DEBUG_KMS("Different P is found for "
2948 "LVDS clock/downclock\n");
2949 has_reduced_clock = 0;
2950 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002951 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08002952 /* SDVO TV has fixed PLL values depend on its clock range,
2953 this mirrors vbios setting. */
2954 if (is_sdvo && is_tv) {
2955 if (adjusted_mode->clock >= 100000
2956 && adjusted_mode->clock < 140500) {
2957 clock.p1 = 2;
2958 clock.p2 = 10;
2959 clock.n = 3;
2960 clock.m1 = 16;
2961 clock.m2 = 8;
2962 } else if (adjusted_mode->clock >= 140500
2963 && adjusted_mode->clock <= 200000) {
2964 clock.p1 = 1;
2965 clock.p2 = 10;
2966 clock.n = 6;
2967 clock.m1 = 12;
2968 clock.m2 = 8;
2969 }
2970 }
2971
Zhenyu Wang2c072452009-06-05 15:38:42 +08002972 /* FDI link */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05002973 if (IS_IRONLAKE(dev)) {
Zhenyu Wang58a27472009-09-25 08:01:28 +00002974 int lane, link_bw, bpp;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002975 /* eDP doesn't require FDI link, so just set DP M/N
2976 according to current link config */
2977 if (is_edp) {
2978 struct drm_connector *edp;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08002979 target_clock = mode->clock;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002980 edp = intel_pipe_get_output(crtc);
2981 intel_edp_link_config(to_intel_output(edp),
2982 &lane, &link_bw);
2983 } else {
2984 /* DP over FDI requires target mode clock
2985 instead of link clock */
2986 if (is_dp)
2987 target_clock = mode->clock;
2988 else
2989 target_clock = adjusted_mode->clock;
2990 lane = 4;
2991 link_bw = 270000;
2992 }
Zhenyu Wang58a27472009-09-25 08:01:28 +00002993
2994 /* determine panel color depth */
2995 temp = I915_READ(pipeconf_reg);
Zhao Yakuie5a95eb2010-01-04 16:29:32 +08002996 temp &= ~PIPE_BPC_MASK;
2997 if (is_lvds) {
2998 int lvds_reg = I915_READ(PCH_LVDS);
2999 /* the BPC will be 6 if it is 18-bit LVDS panel */
3000 if ((lvds_reg & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
3001 temp |= PIPE_8BPC;
3002 else
3003 temp |= PIPE_6BPC;
3004 } else
3005 temp |= PIPE_8BPC;
3006 I915_WRITE(pipeconf_reg, temp);
3007 I915_READ(pipeconf_reg);
Zhenyu Wang58a27472009-09-25 08:01:28 +00003008
3009 switch (temp & PIPE_BPC_MASK) {
3010 case PIPE_8BPC:
3011 bpp = 24;
3012 break;
3013 case PIPE_10BPC:
3014 bpp = 30;
3015 break;
3016 case PIPE_6BPC:
3017 bpp = 18;
3018 break;
3019 case PIPE_12BPC:
3020 bpp = 36;
3021 break;
3022 default:
3023 DRM_ERROR("unknown pipe bpc value\n");
3024 bpp = 24;
3025 }
3026
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003027 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08003028 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003029
Zhenyu Wangc038e512009-10-19 15:43:48 +08003030 /* Ironlake: try to setup display ref clock before DPLL
3031 * enabling. This is only under driver's control after
3032 * PCH B stepping, previous chipset stepping should be
3033 * ignoring this setting.
3034 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003035 if (IS_IRONLAKE(dev)) {
Zhenyu Wangc038e512009-10-19 15:43:48 +08003036 temp = I915_READ(PCH_DREF_CONTROL);
3037 /* Always enable nonspread source */
3038 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
3039 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
3040 I915_WRITE(PCH_DREF_CONTROL, temp);
3041 POSTING_READ(PCH_DREF_CONTROL);
3042
3043 temp &= ~DREF_SSC_SOURCE_MASK;
3044 temp |= DREF_SSC_SOURCE_ENABLE;
3045 I915_WRITE(PCH_DREF_CONTROL, temp);
3046 POSTING_READ(PCH_DREF_CONTROL);
3047
3048 udelay(200);
3049
3050 if (is_edp) {
3051 if (dev_priv->lvds_use_ssc) {
3052 temp |= DREF_SSC1_ENABLE;
3053 I915_WRITE(PCH_DREF_CONTROL, temp);
3054 POSTING_READ(PCH_DREF_CONTROL);
3055
3056 udelay(200);
3057
3058 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3059 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
3060 I915_WRITE(PCH_DREF_CONTROL, temp);
3061 POSTING_READ(PCH_DREF_CONTROL);
3062 } else {
3063 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
3064 I915_WRITE(PCH_DREF_CONTROL, temp);
3065 POSTING_READ(PCH_DREF_CONTROL);
3066 }
3067 }
3068 }
3069
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003070 if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +08003071 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003072 if (has_reduced_clock)
3073 fp2 = (1 << reduced_clock.n) << 16 |
3074 reduced_clock.m1 << 8 | reduced_clock.m2;
3075 } else {
Shaohua Li21778322009-02-23 15:19:16 +08003076 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
Jesse Barnes652c3932009-08-17 13:31:43 -07003077 if (has_reduced_clock)
3078 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
3079 reduced_clock.m2;
3080 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003081
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003082 if (!IS_IRONLAKE(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003083 dpll = DPLL_VGA_MODE_DIS;
3084
Jesse Barnes79e53942008-11-07 14:24:08 -08003085 if (IS_I9XX(dev)) {
3086 if (is_lvds)
3087 dpll |= DPLLB_MODE_LVDS;
3088 else
3089 dpll |= DPLLB_MODE_DAC_SERIAL;
3090 if (is_sdvo) {
3091 dpll |= DPLL_DVO_HIGH_SPEED;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003092 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
Sean Young942642a2009-08-06 17:35:50 +08003093 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003094 dpll |= (sdvo_pixel_multiply - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003095 else if (IS_IRONLAKE(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003096 dpll |= (sdvo_pixel_multiply - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003097 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003098 if (is_dp)
3099 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08003100
3101 /* compute bitmask from p1 value */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003102 if (IS_PINEVIEW(dev))
3103 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003104 else {
Shaohua Li21778322009-02-23 15:19:16 +08003105 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003106 /* also FPA1 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003107 if (IS_IRONLAKE(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003108 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Jesse Barnes652c3932009-08-17 13:31:43 -07003109 if (IS_G4X(dev) && has_reduced_clock)
3110 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003111 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003112 switch (clock.p2) {
3113 case 5:
3114 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3115 break;
3116 case 7:
3117 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3118 break;
3119 case 10:
3120 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3121 break;
3122 case 14:
3123 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3124 break;
3125 }
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003126 if (IS_I965G(dev) && !IS_IRONLAKE(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08003127 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3128 } else {
3129 if (is_lvds) {
3130 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3131 } else {
3132 if (clock.p1 == 2)
3133 dpll |= PLL_P1_DIVIDE_BY_TWO;
3134 else
3135 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3136 if (clock.p2 == 4)
3137 dpll |= PLL_P2_DIVIDE_BY_4;
3138 }
3139 }
3140
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003141 if (is_sdvo && is_tv)
3142 dpll |= PLL_REF_INPUT_TVCLKINBC;
3143 else if (is_tv)
Jesse Barnes79e53942008-11-07 14:24:08 -08003144 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003145 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08003146 dpll |= 3;
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003147 else if (is_lvds && dev_priv->lvds_use_ssc && num_outputs < 2)
3148 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08003149 else
3150 dpll |= PLL_REF_INPUT_DREFCLK;
3151
3152 /* setup pipeconf */
3153 pipeconf = I915_READ(pipeconf_reg);
3154
3155 /* Set up the display plane register */
3156 dspcntr = DISPPLANE_GAMMA_ENABLE;
3157
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003158 /* Ironlake's plane is forced to pipe, bit 24 is to
Zhenyu Wang2c072452009-06-05 15:38:42 +08003159 enable color space conversion */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003160 if (!IS_IRONLAKE(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003161 if (pipe == 0)
Jesse Barnes80824002009-09-10 15:28:06 -07003162 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003163 else
3164 dspcntr |= DISPPLANE_SEL_PIPE_B;
3165 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003166
3167 if (pipe == 0 && !IS_I965G(dev)) {
3168 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3169 * core speed.
3170 *
3171 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3172 * pipe == 0 check?
3173 */
Jesse Barnese70236a2009-09-21 10:42:27 -07003174 if (mode->clock >
3175 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
Jesse Barnes79e53942008-11-07 14:24:08 -08003176 pipeconf |= PIPEACONF_DOUBLE_WIDE;
3177 else
3178 pipeconf &= ~PIPEACONF_DOUBLE_WIDE;
3179 }
3180
3181 dspcntr |= DISPLAY_PLANE_ENABLE;
3182 pipeconf |= PIPEACONF_ENABLE;
3183 dpll |= DPLL_VCO_ENABLE;
3184
3185
3186 /* Disable the panel fitter if it was on our pipe */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003187 if (!IS_IRONLAKE(dev) && intel_panel_fitter_pipe(dev) == pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08003188 I915_WRITE(PFIT_CONTROL, 0);
3189
Zhao Yakui28c97732009-10-09 11:39:41 +08003190 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
Jesse Barnes79e53942008-11-07 14:24:08 -08003191 drm_mode_debug_printmodeline(mode);
3192
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003193 /* assign to Ironlake registers */
3194 if (IS_IRONLAKE(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003195 fp_reg = pch_fp_reg;
3196 dpll_reg = pch_dpll_reg;
3197 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003198
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003199 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003200 ironlake_disable_pll_edp(crtc);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003201 } else if ((dpll & DPLL_VCO_ENABLE)) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003202 I915_WRITE(fp_reg, fp);
3203 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
3204 I915_READ(dpll_reg);
3205 udelay(150);
3206 }
3207
3208 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3209 * This is an exception to the general rule that mode_set doesn't turn
3210 * things on.
3211 */
3212 if (is_lvds) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08003213 u32 lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08003214
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003215 if (IS_IRONLAKE(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08003216 lvds_reg = PCH_LVDS;
3217
3218 lvds = I915_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003219 lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP | LVDS_PIPEB_SELECT;
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08003220 /* set the corresponsding LVDS_BORDER bit */
3221 lvds |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08003222 /* Set the B0-B3 data pairs corresponding to whether we're going to
3223 * set the DPLLs for dual-channel mode or not.
3224 */
3225 if (clock.p2 == 7)
3226 lvds |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3227 else
3228 lvds &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3229
3230 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3231 * appropriately here, but we need to look more thoroughly into how
3232 * panels behave in the two modes.
3233 */
Zhao Yakui898822c2010-01-04 16:29:30 +08003234 /* set the dithering flag */
3235 if (IS_I965G(dev)) {
3236 if (dev_priv->lvds_dither) {
3237 if (IS_IRONLAKE(dev))
3238 pipeconf |= PIPE_ENABLE_DITHER;
3239 else
3240 lvds |= LVDS_ENABLE_DITHER;
3241 } else {
3242 if (IS_IRONLAKE(dev))
3243 pipeconf &= ~PIPE_ENABLE_DITHER;
3244 else
3245 lvds &= ~LVDS_ENABLE_DITHER;
3246 }
3247 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08003248 I915_WRITE(lvds_reg, lvds);
3249 I915_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -08003250 }
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003251 if (is_dp)
3252 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08003253
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003254 if (!is_edp) {
3255 I915_WRITE(fp_reg, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08003256 I915_WRITE(dpll_reg, dpll);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003257 I915_READ(dpll_reg);
3258 /* Wait for the clocks to stabilize. */
3259 udelay(150);
3260
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003261 if (IS_I965G(dev) && !IS_IRONLAKE(dev)) {
Zhao Yakuibb66c512009-09-10 15:45:49 +08003262 if (is_sdvo) {
3263 sdvo_pixel_multiply = adjusted_mode->clock / mode->clock;
3264 I915_WRITE(dpll_md_reg, (0 << DPLL_MD_UDI_DIVIDER_SHIFT) |
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003265 ((sdvo_pixel_multiply - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT));
Zhao Yakuibb66c512009-09-10 15:45:49 +08003266 } else
3267 I915_WRITE(dpll_md_reg, 0);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003268 } else {
3269 /* write it again -- the BIOS does, after all */
3270 I915_WRITE(dpll_reg, dpll);
3271 }
3272 I915_READ(dpll_reg);
3273 /* Wait for the clocks to stabilize. */
3274 udelay(150);
Jesse Barnes79e53942008-11-07 14:24:08 -08003275 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003276
Jesse Barnes652c3932009-08-17 13:31:43 -07003277 if (is_lvds && has_reduced_clock && i915_powersave) {
3278 I915_WRITE(fp_reg + 4, fp2);
3279 intel_crtc->lowfreq_avail = true;
3280 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003281 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003282 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
3283 }
3284 } else {
3285 I915_WRITE(fp_reg + 4, fp);
3286 intel_crtc->lowfreq_avail = false;
3287 if (HAS_PIPE_CXSR(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003288 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003289 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3290 }
3291 }
3292
Jesse Barnes79e53942008-11-07 14:24:08 -08003293 I915_WRITE(htot_reg, (adjusted_mode->crtc_hdisplay - 1) |
3294 ((adjusted_mode->crtc_htotal - 1) << 16));
3295 I915_WRITE(hblank_reg, (adjusted_mode->crtc_hblank_start - 1) |
3296 ((adjusted_mode->crtc_hblank_end - 1) << 16));
3297 I915_WRITE(hsync_reg, (adjusted_mode->crtc_hsync_start - 1) |
3298 ((adjusted_mode->crtc_hsync_end - 1) << 16));
3299 I915_WRITE(vtot_reg, (adjusted_mode->crtc_vdisplay - 1) |
3300 ((adjusted_mode->crtc_vtotal - 1) << 16));
3301 I915_WRITE(vblank_reg, (adjusted_mode->crtc_vblank_start - 1) |
3302 ((adjusted_mode->crtc_vblank_end - 1) << 16));
3303 I915_WRITE(vsync_reg, (adjusted_mode->crtc_vsync_start - 1) |
3304 ((adjusted_mode->crtc_vsync_end - 1) << 16));
3305 /* pipesrc and dspsize control the size that is scaled from, which should
3306 * always be the user's requested size.
3307 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003308 if (!IS_IRONLAKE(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003309 I915_WRITE(dspsize_reg, ((mode->vdisplay - 1) << 16) |
3310 (mode->hdisplay - 1));
3311 I915_WRITE(dsppos_reg, 0);
3312 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003313 I915_WRITE(pipesrc_reg, ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08003314
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003315 if (IS_IRONLAKE(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003316 I915_WRITE(data_m1_reg, TU_SIZE(m_n.tu) | m_n.gmch_m);
3317 I915_WRITE(data_n1_reg, TU_SIZE(m_n.tu) | m_n.gmch_n);
3318 I915_WRITE(link_m1_reg, m_n.link_m);
3319 I915_WRITE(link_n1_reg, m_n.link_n);
3320
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003321 if (is_edp) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003322 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08003323 } else {
3324 /* enable FDI RX PLL too */
3325 temp = I915_READ(fdi_rx_reg);
3326 I915_WRITE(fdi_rx_reg, temp | FDI_RX_PLL_ENABLE);
3327 udelay(200);
3328 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003329 }
3330
Jesse Barnes79e53942008-11-07 14:24:08 -08003331 I915_WRITE(pipeconf_reg, pipeconf);
3332 I915_READ(pipeconf_reg);
3333
3334 intel_wait_for_vblank(dev);
3335
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003336 if (IS_IRONLAKE(dev)) {
Zhenyu Wang553bd142009-09-02 10:57:52 +08003337 /* enable address swizzle for tiling buffer */
3338 temp = I915_READ(DISP_ARB_CTL);
3339 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
3340 }
3341
Jesse Barnes79e53942008-11-07 14:24:08 -08003342 I915_WRITE(dspcntr_reg, dspcntr);
3343
3344 /* Flush the plane changes */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003345 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08003346
Jesse Barnes74dff282009-09-14 15:39:40 -07003347 if ((IS_I965G(dev) || plane == 0))
3348 intel_update_fbc(crtc, &crtc->mode);
Jesse Barnese70236a2009-09-21 10:42:27 -07003349
Shaohua Li7662c8b2009-06-26 11:23:55 +08003350 intel_update_watermarks(dev);
3351
Jesse Barnes79e53942008-11-07 14:24:08 -08003352 drm_vblank_post_modeset(dev, pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003353
Chris Wilson1f803ee2009-06-06 09:45:59 +01003354 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003355}
3356
3357/** Loads the palette/gamma unit for the CRTC with the prepared values */
3358void intel_crtc_load_lut(struct drm_crtc *crtc)
3359{
3360 struct drm_device *dev = crtc->dev;
3361 struct drm_i915_private *dev_priv = dev->dev_private;
3362 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3363 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
3364 int i;
3365
3366 /* The clocks have to be on to load the palette. */
3367 if (!crtc->enabled)
3368 return;
3369
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003370 /* use legacy palette for Ironlake */
3371 if (IS_IRONLAKE(dev))
Zhenyu Wang2c072452009-06-05 15:38:42 +08003372 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
3373 LGC_PALETTE_B;
3374
Jesse Barnes79e53942008-11-07 14:24:08 -08003375 for (i = 0; i < 256; i++) {
3376 I915_WRITE(palreg + 4 * i,
3377 (intel_crtc->lut_r[i] << 16) |
3378 (intel_crtc->lut_g[i] << 8) |
3379 intel_crtc->lut_b[i]);
3380 }
3381}
3382
3383static int intel_crtc_cursor_set(struct drm_crtc *crtc,
3384 struct drm_file *file_priv,
3385 uint32_t handle,
3386 uint32_t width, uint32_t height)
3387{
3388 struct drm_device *dev = crtc->dev;
3389 struct drm_i915_private *dev_priv = dev->dev_private;
3390 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3391 struct drm_gem_object *bo;
3392 struct drm_i915_gem_object *obj_priv;
3393 int pipe = intel_crtc->pipe;
3394 uint32_t control = (pipe == 0) ? CURACNTR : CURBCNTR;
3395 uint32_t base = (pipe == 0) ? CURABASE : CURBBASE;
Jesse Barnes14b60392009-05-20 16:47:08 -04003396 uint32_t temp = I915_READ(control);
Jesse Barnes79e53942008-11-07 14:24:08 -08003397 size_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003398 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003399
Zhao Yakui28c97732009-10-09 11:39:41 +08003400 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08003401
3402 /* if we want to turn off the cursor ignore width and height */
3403 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08003404 DRM_DEBUG_KMS("cursor off\n");
Jesse Barnes14b60392009-05-20 16:47:08 -04003405 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
3406 temp &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
3407 temp |= CURSOR_MODE_DISABLE;
3408 } else {
3409 temp &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
3410 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003411 addr = 0;
3412 bo = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10003413 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003414 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08003415 }
3416
3417 /* Currently we only support 64x64 cursors */
3418 if (width != 64 || height != 64) {
3419 DRM_ERROR("we currently only support 64x64 cursors\n");
3420 return -EINVAL;
3421 }
3422
3423 bo = drm_gem_object_lookup(dev, file_priv, handle);
3424 if (!bo)
3425 return -ENOENT;
3426
3427 obj_priv = bo->driver_private;
3428
3429 if (bo->size < width * height * 4) {
3430 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10003431 ret = -ENOMEM;
3432 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08003433 }
3434
Dave Airlie71acb5e2008-12-30 20:31:46 +10003435 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003436 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05003437 if (!dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10003438 ret = i915_gem_object_pin(bo, PAGE_SIZE);
3439 if (ret) {
3440 DRM_ERROR("failed to pin cursor bo\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003441 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003442 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003443 addr = obj_priv->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003444 } else {
3445 ret = i915_gem_attach_phys_object(dev, bo, (pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1);
3446 if (ret) {
3447 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003448 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003449 }
3450 addr = obj_priv->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003451 }
3452
Jesse Barnes14b60392009-05-20 16:47:08 -04003453 if (!IS_I9XX(dev))
3454 I915_WRITE(CURSIZE, (height << 12) | width);
3455
3456 /* Hooray for CUR*CNTR differences */
3457 if (IS_MOBILE(dev) || IS_I9XX(dev)) {
3458 temp &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
3459 temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
3460 temp |= (pipe << 28); /* Connect to correct pipe */
3461 } else {
3462 temp &= ~(CURSOR_FORMAT_MASK);
3463 temp |= CURSOR_ENABLE;
3464 temp |= CURSOR_FORMAT_ARGB | CURSOR_GAMMA_ENABLE;
3465 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003466
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003467 finish:
Jesse Barnes79e53942008-11-07 14:24:08 -08003468 I915_WRITE(control, temp);
3469 I915_WRITE(base, addr);
3470
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003471 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05003472 if (dev_priv->info->cursor_needs_physical) {
Dave Airlie71acb5e2008-12-30 20:31:46 +10003473 if (intel_crtc->cursor_bo != bo)
3474 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
3475 } else
3476 i915_gem_object_unpin(intel_crtc->cursor_bo);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003477 drm_gem_object_unreference(intel_crtc->cursor_bo);
3478 }
Jesse Barnes80824002009-09-10 15:28:06 -07003479
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003480 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05003481
3482 intel_crtc->cursor_addr = addr;
3483 intel_crtc->cursor_bo = bo;
3484
Jesse Barnes79e53942008-11-07 14:24:08 -08003485 return 0;
Dave Airlie34b8686e2009-01-15 14:03:07 +10003486fail:
3487 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05003488fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10003489 drm_gem_object_unreference(bo);
3490 mutex_unlock(&dev->struct_mutex);
3491 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003492}
3493
3494static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
3495{
3496 struct drm_device *dev = crtc->dev;
3497 struct drm_i915_private *dev_priv = dev->dev_private;
3498 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07003499 struct intel_framebuffer *intel_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08003500 int pipe = intel_crtc->pipe;
3501 uint32_t temp = 0;
3502 uint32_t adder;
3503
Jesse Barnes652c3932009-08-17 13:31:43 -07003504 if (crtc->fb) {
3505 intel_fb = to_intel_framebuffer(crtc->fb);
3506 intel_mark_busy(dev, intel_fb->obj);
3507 }
3508
Jesse Barnes79e53942008-11-07 14:24:08 -08003509 if (x < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07003510 temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003511 x = -x;
3512 }
3513 if (y < 0) {
Keith Packard2245fda2009-05-30 20:42:29 -07003514 temp |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003515 y = -y;
3516 }
3517
Keith Packard2245fda2009-05-30 20:42:29 -07003518 temp |= x << CURSOR_X_SHIFT;
3519 temp |= y << CURSOR_Y_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08003520
3521 adder = intel_crtc->cursor_addr;
3522 I915_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp);
3523 I915_WRITE((pipe == 0) ? CURABASE : CURBBASE, adder);
3524
3525 return 0;
3526}
3527
3528/** Sets the color ramps on behalf of RandR */
3529void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
3530 u16 blue, int regno)
3531{
3532 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3533
3534 intel_crtc->lut_r[regno] = red >> 8;
3535 intel_crtc->lut_g[regno] = green >> 8;
3536 intel_crtc->lut_b[regno] = blue >> 8;
3537}
3538
Dave Airlieb8c00ac2009-10-06 13:54:01 +10003539void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
3540 u16 *blue, int regno)
3541{
3542 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3543
3544 *red = intel_crtc->lut_r[regno] << 8;
3545 *green = intel_crtc->lut_g[regno] << 8;
3546 *blue = intel_crtc->lut_b[regno] << 8;
3547}
3548
Jesse Barnes79e53942008-11-07 14:24:08 -08003549static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
3550 u16 *blue, uint32_t size)
3551{
3552 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3553 int i;
3554
3555 if (size != 256)
3556 return;
3557
3558 for (i = 0; i < 256; i++) {
3559 intel_crtc->lut_r[i] = red[i] >> 8;
3560 intel_crtc->lut_g[i] = green[i] >> 8;
3561 intel_crtc->lut_b[i] = blue[i] >> 8;
3562 }
3563
3564 intel_crtc_load_lut(crtc);
3565}
3566
3567/**
3568 * Get a pipe with a simple mode set on it for doing load-based monitor
3569 * detection.
3570 *
3571 * It will be up to the load-detect code to adjust the pipe as appropriate for
3572 * its requirements. The pipe will be connected to no other outputs.
3573 *
3574 * Currently this code will only succeed if there is a pipe with no outputs
3575 * configured for it. In the future, it could choose to temporarily disable
3576 * some outputs to free up a pipe for its use.
3577 *
3578 * \return crtc, or NULL if no pipes are available.
3579 */
3580
3581/* VESA 640x480x72Hz mode to set on the pipe */
3582static struct drm_display_mode load_detect_mode = {
3583 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
3584 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
3585};
3586
3587struct drm_crtc *intel_get_load_detect_pipe(struct intel_output *intel_output,
3588 struct drm_display_mode *mode,
3589 int *dpms_mode)
3590{
3591 struct intel_crtc *intel_crtc;
3592 struct drm_crtc *possible_crtc;
3593 struct drm_crtc *supported_crtc =NULL;
3594 struct drm_encoder *encoder = &intel_output->enc;
3595 struct drm_crtc *crtc = NULL;
3596 struct drm_device *dev = encoder->dev;
3597 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3598 struct drm_crtc_helper_funcs *crtc_funcs;
3599 int i = -1;
3600
3601 /*
3602 * Algorithm gets a little messy:
3603 * - if the connector already has an assigned crtc, use it (but make
3604 * sure it's on first)
3605 * - try to find the first unused crtc that can drive this connector,
3606 * and use that if we find one
3607 * - if there are no unused crtcs available, try to use the first
3608 * one we found that supports the connector
3609 */
3610
3611 /* See if we already have a CRTC for this connector */
3612 if (encoder->crtc) {
3613 crtc = encoder->crtc;
3614 /* Make sure the crtc and connector are running */
3615 intel_crtc = to_intel_crtc(crtc);
3616 *dpms_mode = intel_crtc->dpms_mode;
3617 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
3618 crtc_funcs = crtc->helper_private;
3619 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
3620 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
3621 }
3622 return crtc;
3623 }
3624
3625 /* Find an unused one (if possible) */
3626 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
3627 i++;
3628 if (!(encoder->possible_crtcs & (1 << i)))
3629 continue;
3630 if (!possible_crtc->enabled) {
3631 crtc = possible_crtc;
3632 break;
3633 }
3634 if (!supported_crtc)
3635 supported_crtc = possible_crtc;
3636 }
3637
3638 /*
3639 * If we didn't find an unused CRTC, don't use any.
3640 */
3641 if (!crtc) {
3642 return NULL;
3643 }
3644
3645 encoder->crtc = crtc;
Keith Packard03d60692009-06-05 18:19:56 -07003646 intel_output->base.encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003647 intel_output->load_detect_temp = true;
3648
3649 intel_crtc = to_intel_crtc(crtc);
3650 *dpms_mode = intel_crtc->dpms_mode;
3651
3652 if (!crtc->enabled) {
3653 if (!mode)
3654 mode = &load_detect_mode;
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05003655 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08003656 } else {
3657 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
3658 crtc_funcs = crtc->helper_private;
3659 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
3660 }
3661
3662 /* Add this connector to the crtc */
3663 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
3664 encoder_funcs->commit(encoder);
3665 }
3666 /* let the connector get through one full cycle before testing */
3667 intel_wait_for_vblank(dev);
3668
3669 return crtc;
3670}
3671
3672void intel_release_load_detect_pipe(struct intel_output *intel_output, int dpms_mode)
3673{
3674 struct drm_encoder *encoder = &intel_output->enc;
3675 struct drm_device *dev = encoder->dev;
3676 struct drm_crtc *crtc = encoder->crtc;
3677 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3678 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
3679
3680 if (intel_output->load_detect_temp) {
3681 encoder->crtc = NULL;
Keith Packard03d60692009-06-05 18:19:56 -07003682 intel_output->base.encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003683 intel_output->load_detect_temp = false;
3684 crtc->enabled = drm_helper_crtc_in_use(crtc);
3685 drm_helper_disable_unused_functions(dev);
3686 }
3687
3688 /* Switch crtc and output back off if necessary */
3689 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
3690 if (encoder->crtc == crtc)
3691 encoder_funcs->dpms(encoder, dpms_mode);
3692 crtc_funcs->dpms(crtc, dpms_mode);
3693 }
3694}
3695
3696/* Returns the clock of the currently programmed mode of the given pipe. */
3697static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
3698{
3699 struct drm_i915_private *dev_priv = dev->dev_private;
3700 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3701 int pipe = intel_crtc->pipe;
3702 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
3703 u32 fp;
3704 intel_clock_t clock;
3705
3706 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
3707 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
3708 else
3709 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
3710
3711 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003712 if (IS_PINEVIEW(dev)) {
3713 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
3714 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08003715 } else {
3716 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
3717 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
3718 }
3719
Jesse Barnes79e53942008-11-07 14:24:08 -08003720 if (IS_I9XX(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003721 if (IS_PINEVIEW(dev))
3722 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
3723 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08003724 else
3725 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08003726 DPLL_FPA01_P1_POST_DIV_SHIFT);
3727
3728 switch (dpll & DPLL_MODE_MASK) {
3729 case DPLLB_MODE_DAC_SERIAL:
3730 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
3731 5 : 10;
3732 break;
3733 case DPLLB_MODE_LVDS:
3734 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
3735 7 : 14;
3736 break;
3737 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08003738 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08003739 "mode\n", (int)(dpll & DPLL_MODE_MASK));
3740 return 0;
3741 }
3742
3743 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08003744 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003745 } else {
3746 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
3747
3748 if (is_lvds) {
3749 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
3750 DPLL_FPA01_P1_POST_DIV_SHIFT);
3751 clock.p2 = 14;
3752
3753 if ((dpll & PLL_REF_INPUT_MASK) ==
3754 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
3755 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08003756 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003757 } else
Shaohua Li21778322009-02-23 15:19:16 +08003758 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003759 } else {
3760 if (dpll & PLL_P1_DIVIDE_BY_TWO)
3761 clock.p1 = 2;
3762 else {
3763 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
3764 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
3765 }
3766 if (dpll & PLL_P2_DIVIDE_BY_4)
3767 clock.p2 = 4;
3768 else
3769 clock.p2 = 2;
3770
Shaohua Li21778322009-02-23 15:19:16 +08003771 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003772 }
3773 }
3774
3775 /* XXX: It would be nice to validate the clocks, but we can't reuse
3776 * i830PllIsValid() because it relies on the xf86_config connector
3777 * configuration being accurate, which it isn't necessarily.
3778 */
3779
3780 return clock.dot;
3781}
3782
3783/** Returns the currently programmed mode of the given pipe. */
3784struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
3785 struct drm_crtc *crtc)
3786{
3787 struct drm_i915_private *dev_priv = dev->dev_private;
3788 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3789 int pipe = intel_crtc->pipe;
3790 struct drm_display_mode *mode;
3791 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
3792 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
3793 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
3794 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
3795
3796 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
3797 if (!mode)
3798 return NULL;
3799
3800 mode->clock = intel_crtc_clock_get(dev, crtc);
3801 mode->hdisplay = (htot & 0xffff) + 1;
3802 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
3803 mode->hsync_start = (hsync & 0xffff) + 1;
3804 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
3805 mode->vdisplay = (vtot & 0xffff) + 1;
3806 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
3807 mode->vsync_start = (vsync & 0xffff) + 1;
3808 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
3809
3810 drm_mode_set_name(mode);
3811 drm_mode_set_crtcinfo(mode, 0);
3812
3813 return mode;
3814}
3815
Jesse Barnes652c3932009-08-17 13:31:43 -07003816#define GPU_IDLE_TIMEOUT 500 /* ms */
3817
3818/* When this timer fires, we've been idle for awhile */
3819static void intel_gpu_idle_timer(unsigned long arg)
3820{
3821 struct drm_device *dev = (struct drm_device *)arg;
3822 drm_i915_private_t *dev_priv = dev->dev_private;
3823
Zhao Yakui44d98a62009-10-09 11:39:40 +08003824 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003825
3826 dev_priv->busy = false;
3827
Eric Anholt01dfba92009-09-06 15:18:53 -07003828 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07003829}
3830
Jesse Barnes652c3932009-08-17 13:31:43 -07003831#define CRTC_IDLE_TIMEOUT 1000 /* ms */
3832
3833static void intel_crtc_idle_timer(unsigned long arg)
3834{
3835 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
3836 struct drm_crtc *crtc = &intel_crtc->base;
3837 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
3838
Zhao Yakui44d98a62009-10-09 11:39:40 +08003839 DRM_DEBUG_DRIVER("idle timer fired, downclocking\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003840
3841 intel_crtc->busy = false;
3842
Eric Anholt01dfba92009-09-06 15:18:53 -07003843 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07003844}
3845
3846static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule)
3847{
3848 struct drm_device *dev = crtc->dev;
3849 drm_i915_private_t *dev_priv = dev->dev_private;
3850 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3851 int pipe = intel_crtc->pipe;
3852 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
3853 int dpll = I915_READ(dpll_reg);
3854
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003855 if (IS_IRONLAKE(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07003856 return;
3857
3858 if (!dev_priv->lvds_downclock_avail)
3859 return;
3860
3861 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08003862 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003863
3864 /* Unlock panel regs */
3865 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16));
3866
3867 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
3868 I915_WRITE(dpll_reg, dpll);
3869 dpll = I915_READ(dpll_reg);
3870 intel_wait_for_vblank(dev);
3871 dpll = I915_READ(dpll_reg);
3872 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08003873 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003874
3875 /* ...and lock them again */
3876 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
3877 }
3878
3879 /* Schedule downclock */
3880 if (schedule)
3881 mod_timer(&intel_crtc->idle_timer, jiffies +
3882 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
3883}
3884
3885static void intel_decrease_pllclock(struct drm_crtc *crtc)
3886{
3887 struct drm_device *dev = crtc->dev;
3888 drm_i915_private_t *dev_priv = dev->dev_private;
3889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3890 int pipe = intel_crtc->pipe;
3891 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
3892 int dpll = I915_READ(dpll_reg);
3893
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003894 if (IS_IRONLAKE(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07003895 return;
3896
3897 if (!dev_priv->lvds_downclock_avail)
3898 return;
3899
3900 /*
3901 * Since this is called by a timer, we should never get here in
3902 * the manual case.
3903 */
3904 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08003905 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003906
3907 /* Unlock panel regs */
3908 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16));
3909
3910 dpll |= DISPLAY_RATE_SELECT_FPA1;
3911 I915_WRITE(dpll_reg, dpll);
3912 dpll = I915_READ(dpll_reg);
3913 intel_wait_for_vblank(dev);
3914 dpll = I915_READ(dpll_reg);
3915 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08003916 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07003917
3918 /* ...and lock them again */
3919 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
3920 }
3921
3922}
3923
3924/**
3925 * intel_idle_update - adjust clocks for idleness
3926 * @work: work struct
3927 *
3928 * Either the GPU or display (or both) went idle. Check the busy status
3929 * here and adjust the CRTC and GPU clocks as necessary.
3930 */
3931static void intel_idle_update(struct work_struct *work)
3932{
3933 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
3934 idle_work);
3935 struct drm_device *dev = dev_priv->dev;
3936 struct drm_crtc *crtc;
3937 struct intel_crtc *intel_crtc;
3938
3939 if (!i915_powersave)
3940 return;
3941
3942 mutex_lock(&dev->struct_mutex);
3943
Jesse Barnes652c3932009-08-17 13:31:43 -07003944 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3945 /* Skip inactive CRTCs */
3946 if (!crtc->fb)
3947 continue;
3948
3949 intel_crtc = to_intel_crtc(crtc);
3950 if (!intel_crtc->busy)
3951 intel_decrease_pllclock(crtc);
3952 }
3953
3954 mutex_unlock(&dev->struct_mutex);
3955}
3956
3957/**
3958 * intel_mark_busy - mark the GPU and possibly the display busy
3959 * @dev: drm device
3960 * @obj: object we're operating on
3961 *
3962 * Callers can use this function to indicate that the GPU is busy processing
3963 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
3964 * buffer), we'll also mark the display as busy, so we know to increase its
3965 * clock frequency.
3966 */
3967void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj)
3968{
3969 drm_i915_private_t *dev_priv = dev->dev_private;
3970 struct drm_crtc *crtc = NULL;
3971 struct intel_framebuffer *intel_fb;
3972 struct intel_crtc *intel_crtc;
3973
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08003974 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3975 return;
3976
Jesse Barnescda9d052009-12-17 11:11:13 -08003977 if (!dev_priv->busy)
Chris Wilson28cf7982009-11-30 01:08:56 +00003978 dev_priv->busy = true;
Jesse Barnescda9d052009-12-17 11:11:13 -08003979 else
Chris Wilson28cf7982009-11-30 01:08:56 +00003980 mod_timer(&dev_priv->idle_timer, jiffies +
3981 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07003982
3983 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3984 if (!crtc->fb)
3985 continue;
3986
3987 intel_crtc = to_intel_crtc(crtc);
3988 intel_fb = to_intel_framebuffer(crtc->fb);
3989 if (intel_fb->obj == obj) {
3990 if (!intel_crtc->busy) {
3991 /* Non-busy -> busy, upclock */
3992 intel_increase_pllclock(crtc, true);
3993 intel_crtc->busy = true;
3994 } else {
3995 /* Busy -> busy, put off timer */
3996 mod_timer(&intel_crtc->idle_timer, jiffies +
3997 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
3998 }
3999 }
4000 }
4001}
4002
Jesse Barnes79e53942008-11-07 14:24:08 -08004003static void intel_crtc_destroy(struct drm_crtc *crtc)
4004{
4005 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4006
4007 drm_crtc_cleanup(crtc);
4008 kfree(intel_crtc);
4009}
4010
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004011struct intel_unpin_work {
4012 struct work_struct work;
4013 struct drm_device *dev;
4014 struct drm_gem_object *obj;
4015 struct drm_pending_vblank_event *event;
4016 int pending;
4017};
4018
4019static void intel_unpin_work_fn(struct work_struct *__work)
4020{
4021 struct intel_unpin_work *work =
4022 container_of(__work, struct intel_unpin_work, work);
4023
4024 mutex_lock(&work->dev->struct_mutex);
4025 i915_gem_object_unpin(work->obj);
4026 drm_gem_object_unreference(work->obj);
4027 mutex_unlock(&work->dev->struct_mutex);
4028 kfree(work);
4029}
4030
4031void intel_finish_page_flip(struct drm_device *dev, int pipe)
4032{
4033 drm_i915_private_t *dev_priv = dev->dev_private;
4034 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
4035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4036 struct intel_unpin_work *work;
4037 struct drm_i915_gem_object *obj_priv;
4038 struct drm_pending_vblank_event *e;
4039 struct timeval now;
4040 unsigned long flags;
4041
4042 /* Ignore early vblank irqs */
4043 if (intel_crtc == NULL)
4044 return;
4045
4046 spin_lock_irqsave(&dev->event_lock, flags);
4047 work = intel_crtc->unpin_work;
4048 if (work == NULL || !work->pending) {
4049 spin_unlock_irqrestore(&dev->event_lock, flags);
4050 return;
4051 }
4052
4053 intel_crtc->unpin_work = NULL;
4054 drm_vblank_put(dev, intel_crtc->pipe);
4055
4056 if (work->event) {
4057 e = work->event;
4058 do_gettimeofday(&now);
4059 e->event.sequence = drm_vblank_count(dev, intel_crtc->pipe);
4060 e->event.tv_sec = now.tv_sec;
4061 e->event.tv_usec = now.tv_usec;
4062 list_add_tail(&e->base.link,
4063 &e->base.file_priv->event_list);
4064 wake_up_interruptible(&e->base.file_priv->event_wait);
4065 }
4066
4067 spin_unlock_irqrestore(&dev->event_lock, flags);
4068
4069 obj_priv = work->obj->driver_private;
4070 if (atomic_dec_and_test(&obj_priv->pending_flip))
4071 DRM_WAKEUP(&dev_priv->pending_flip_queue);
4072 schedule_work(&work->work);
4073}
4074
4075void intel_prepare_page_flip(struct drm_device *dev, int plane)
4076{
4077 drm_i915_private_t *dev_priv = dev->dev_private;
4078 struct intel_crtc *intel_crtc =
4079 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
4080 unsigned long flags;
4081
4082 spin_lock_irqsave(&dev->event_lock, flags);
4083 if (intel_crtc->unpin_work)
4084 intel_crtc->unpin_work->pending = 1;
4085 spin_unlock_irqrestore(&dev->event_lock, flags);
4086}
4087
4088static int intel_crtc_page_flip(struct drm_crtc *crtc,
4089 struct drm_framebuffer *fb,
4090 struct drm_pending_vblank_event *event)
4091{
4092 struct drm_device *dev = crtc->dev;
4093 struct drm_i915_private *dev_priv = dev->dev_private;
4094 struct intel_framebuffer *intel_fb;
4095 struct drm_i915_gem_object *obj_priv;
4096 struct drm_gem_object *obj;
4097 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4098 struct intel_unpin_work *work;
4099 unsigned long flags;
4100 int ret;
4101 RING_LOCALS;
4102
4103 work = kzalloc(sizeof *work, GFP_KERNEL);
4104 if (work == NULL)
4105 return -ENOMEM;
4106
4107 mutex_lock(&dev->struct_mutex);
4108
4109 work->event = event;
4110 work->dev = crtc->dev;
4111 intel_fb = to_intel_framebuffer(crtc->fb);
4112 work->obj = intel_fb->obj;
4113 INIT_WORK(&work->work, intel_unpin_work_fn);
4114
4115 /* We borrow the event spin lock for protecting unpin_work */
4116 spin_lock_irqsave(&dev->event_lock, flags);
4117 if (intel_crtc->unpin_work) {
4118 spin_unlock_irqrestore(&dev->event_lock, flags);
4119 kfree(work);
4120 mutex_unlock(&dev->struct_mutex);
4121 return -EBUSY;
4122 }
4123 intel_crtc->unpin_work = work;
4124 spin_unlock_irqrestore(&dev->event_lock, flags);
4125
4126 intel_fb = to_intel_framebuffer(fb);
4127 obj = intel_fb->obj;
4128
4129 ret = intel_pin_and_fence_fb_obj(dev, obj);
4130 if (ret != 0) {
4131 kfree(work);
4132 mutex_unlock(&dev->struct_mutex);
4133 return ret;
4134 }
4135
4136 /* Reference the old fb object for the scheduled work. */
4137 drm_gem_object_reference(work->obj);
4138
4139 crtc->fb = fb;
4140 i915_gem_object_flush_write_domain(obj);
4141 drm_vblank_get(dev, intel_crtc->pipe);
4142 obj_priv = obj->driver_private;
4143 atomic_inc(&obj_priv->pending_flip);
4144
4145 BEGIN_LP_RING(4);
4146 OUT_RING(MI_DISPLAY_FLIP |
4147 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
4148 OUT_RING(fb->pitch);
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004149 if (IS_I965G(dev)) {
4150 OUT_RING(obj_priv->gtt_offset | obj_priv->tiling_mode);
4151 OUT_RING((fb->width << 16) | fb->height);
4152 } else {
4153 OUT_RING(obj_priv->gtt_offset);
4154 OUT_RING(MI_NOOP);
4155 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004156 ADVANCE_LP_RING();
4157
4158 mutex_unlock(&dev->struct_mutex);
4159
4160 return 0;
4161}
4162
Jesse Barnes79e53942008-11-07 14:24:08 -08004163static const struct drm_crtc_helper_funcs intel_helper_funcs = {
4164 .dpms = intel_crtc_dpms,
4165 .mode_fixup = intel_crtc_mode_fixup,
4166 .mode_set = intel_crtc_mode_set,
4167 .mode_set_base = intel_pipe_set_base,
4168 .prepare = intel_crtc_prepare,
4169 .commit = intel_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10004170 .load_lut = intel_crtc_load_lut,
Jesse Barnes79e53942008-11-07 14:24:08 -08004171};
4172
4173static const struct drm_crtc_funcs intel_crtc_funcs = {
4174 .cursor_set = intel_crtc_cursor_set,
4175 .cursor_move = intel_crtc_cursor_move,
4176 .gamma_set = intel_crtc_gamma_set,
4177 .set_config = drm_crtc_helper_set_config,
4178 .destroy = intel_crtc_destroy,
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004179 .page_flip = intel_crtc_page_flip,
Jesse Barnes79e53942008-11-07 14:24:08 -08004180};
4181
4182
Hannes Ederb358d0a2008-12-18 21:18:47 +01004183static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08004184{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004185 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004186 struct intel_crtc *intel_crtc;
4187 int i;
4188
4189 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
4190 if (intel_crtc == NULL)
4191 return;
4192
4193 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
4194
4195 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
4196 intel_crtc->pipe = pipe;
Shaohua Li7662c8b2009-06-26 11:23:55 +08004197 intel_crtc->plane = pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004198 for (i = 0; i < 256; i++) {
4199 intel_crtc->lut_r[i] = i;
4200 intel_crtc->lut_g[i] = i;
4201 intel_crtc->lut_b[i] = i;
4202 }
4203
Jesse Barnes80824002009-09-10 15:28:06 -07004204 /* Swap pipes & planes for FBC on pre-965 */
4205 intel_crtc->pipe = pipe;
4206 intel_crtc->plane = pipe;
4207 if (IS_MOBILE(dev) && (IS_I9XX(dev) && !IS_I965G(dev))) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004208 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Jesse Barnes80824002009-09-10 15:28:06 -07004209 intel_crtc->plane = ((pipe == 0) ? 1 : 0);
4210 }
4211
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08004212 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
4213 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
4214 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
4215 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
4216
Jesse Barnes79e53942008-11-07 14:24:08 -08004217 intel_crtc->cursor_addr = 0;
4218 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4219 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
4220
Jesse Barnes652c3932009-08-17 13:31:43 -07004221 intel_crtc->busy = false;
4222
4223 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
4224 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004225}
4226
Carl Worth08d7b3d2009-04-29 14:43:54 -07004227int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
4228 struct drm_file *file_priv)
4229{
4230 drm_i915_private_t *dev_priv = dev->dev_private;
4231 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02004232 struct drm_mode_object *drmmode_obj;
4233 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004234
4235 if (!dev_priv) {
4236 DRM_ERROR("called with no initialization\n");
4237 return -EINVAL;
4238 }
4239
Daniel Vetterc05422d2009-08-11 16:05:30 +02004240 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
4241 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07004242
Daniel Vetterc05422d2009-08-11 16:05:30 +02004243 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07004244 DRM_ERROR("no such CRTC id\n");
4245 return -EINVAL;
4246 }
4247
Daniel Vetterc05422d2009-08-11 16:05:30 +02004248 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
4249 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004250
Daniel Vetterc05422d2009-08-11 16:05:30 +02004251 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07004252}
4253
Jesse Barnes79e53942008-11-07 14:24:08 -08004254struct drm_crtc *intel_get_crtc_from_pipe(struct drm_device *dev, int pipe)
4255{
4256 struct drm_crtc *crtc = NULL;
4257
4258 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4259 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4260 if (intel_crtc->pipe == pipe)
4261 break;
4262 }
4263 return crtc;
4264}
4265
Hannes Ederb358d0a2008-12-18 21:18:47 +01004266static int intel_connector_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08004267{
4268 int index_mask = 0;
4269 struct drm_connector *connector;
4270 int entry = 0;
4271
4272 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4273 struct intel_output *intel_output = to_intel_output(connector);
Ma Lingf8aed702009-08-24 13:50:24 +08004274 if (type_mask & intel_output->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08004275 index_mask |= (1 << entry);
4276 entry++;
4277 }
4278 return index_mask;
4279}
4280
4281
4282static void intel_setup_outputs(struct drm_device *dev)
4283{
Eric Anholt725e30a2009-01-22 13:01:02 -08004284 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004285 struct drm_connector *connector;
4286
4287 intel_crt_init(dev);
4288
4289 /* Set up integrated LVDS */
Zhenyu Wang541998a2009-06-05 15:38:44 +08004290 if (IS_MOBILE(dev) && !IS_I830(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004291 intel_lvds_init(dev);
4292
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004293 if (IS_IRONLAKE(dev)) {
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004294 int found;
4295
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004296 if (IS_MOBILE(dev) && (I915_READ(DP_A) & DP_DETECTED))
4297 intel_dp_init(dev, DP_A);
4298
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004299 if (I915_READ(HDMIB) & PORT_DETECTED) {
4300 /* check SDVOB */
4301 /* found = intel_sdvo_init(dev, HDMIB); */
4302 found = 0;
4303 if (!found)
4304 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004305 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
4306 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08004307 }
4308
4309 if (I915_READ(HDMIC) & PORT_DETECTED)
4310 intel_hdmi_init(dev, HDMIC);
4311
4312 if (I915_READ(HDMID) & PORT_DETECTED)
4313 intel_hdmi_init(dev, HDMID);
4314
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004315 if (I915_READ(PCH_DP_C) & DP_DETECTED)
4316 intel_dp_init(dev, PCH_DP_C);
4317
4318 if (I915_READ(PCH_DP_D) & DP_DETECTED)
4319 intel_dp_init(dev, PCH_DP_D);
4320
Zhenyu Wang103a1962009-11-27 11:44:36 +08004321 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08004322 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08004323
Eric Anholt725e30a2009-01-22 13:01:02 -08004324 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004325 DRM_DEBUG_KMS("probing SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004326 found = intel_sdvo_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004327 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
4328 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004329 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004330 }
Ma Ling27185ae2009-08-24 13:50:23 +08004331
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004332 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
4333 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004334 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004335 }
Eric Anholt725e30a2009-01-22 13:01:02 -08004336 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04004337
4338 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04004339
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004340 if (I915_READ(SDVOB) & SDVO_DETECTED) {
4341 DRM_DEBUG_KMS("probing SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004342 found = intel_sdvo_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004343 }
Ma Ling27185ae2009-08-24 13:50:23 +08004344
4345 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
4346
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004347 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
4348 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08004349 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004350 }
4351 if (SUPPORTS_INTEGRATED_DP(dev)) {
4352 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004353 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004354 }
Eric Anholt725e30a2009-01-22 13:01:02 -08004355 }
Ma Ling27185ae2009-08-24 13:50:23 +08004356
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004357 if (SUPPORTS_INTEGRATED_DP(dev) &&
4358 (I915_READ(DP_D) & DP_DETECTED)) {
4359 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004360 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08004361 }
Zhenyu Wang103a1962009-11-27 11:44:36 +08004362 } else if (IS_I8XX(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004363 intel_dvo_init(dev);
4364
Zhenyu Wang103a1962009-11-27 11:44:36 +08004365 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08004366 intel_tv_init(dev);
4367
4368 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4369 struct intel_output *intel_output = to_intel_output(connector);
4370 struct drm_encoder *encoder = &intel_output->enc;
Jesse Barnes79e53942008-11-07 14:24:08 -08004371
Ma Lingf8aed702009-08-24 13:50:24 +08004372 encoder->possible_crtcs = intel_output->crtc_mask;
4373 encoder->possible_clones = intel_connector_clones(dev,
4374 intel_output->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08004375 }
4376}
4377
4378static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
4379{
4380 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
4381 struct drm_device *dev = fb->dev;
4382
4383 if (fb->fbdev)
4384 intelfb_remove(dev, fb);
4385
4386 drm_framebuffer_cleanup(fb);
4387 mutex_lock(&dev->struct_mutex);
4388 drm_gem_object_unreference(intel_fb->obj);
4389 mutex_unlock(&dev->struct_mutex);
4390
4391 kfree(intel_fb);
4392}
4393
4394static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
4395 struct drm_file *file_priv,
4396 unsigned int *handle)
4397{
4398 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
4399 struct drm_gem_object *object = intel_fb->obj;
4400
4401 return drm_gem_handle_create(file_priv, object, handle);
4402}
4403
4404static const struct drm_framebuffer_funcs intel_fb_funcs = {
4405 .destroy = intel_user_framebuffer_destroy,
4406 .create_handle = intel_user_framebuffer_create_handle,
4407};
4408
4409int intel_framebuffer_create(struct drm_device *dev,
4410 struct drm_mode_fb_cmd *mode_cmd,
4411 struct drm_framebuffer **fb,
4412 struct drm_gem_object *obj)
4413{
4414 struct intel_framebuffer *intel_fb;
4415 int ret;
4416
4417 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
4418 if (!intel_fb)
4419 return -ENOMEM;
4420
4421 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
4422 if (ret) {
4423 DRM_ERROR("framebuffer init failed %d\n", ret);
4424 return ret;
4425 }
4426
4427 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
4428
4429 intel_fb->obj = obj;
4430
4431 *fb = &intel_fb->base;
4432
4433 return 0;
4434}
4435
4436
4437static struct drm_framebuffer *
4438intel_user_framebuffer_create(struct drm_device *dev,
4439 struct drm_file *filp,
4440 struct drm_mode_fb_cmd *mode_cmd)
4441{
4442 struct drm_gem_object *obj;
4443 struct drm_framebuffer *fb;
4444 int ret;
4445
4446 obj = drm_gem_object_lookup(dev, filp, mode_cmd->handle);
4447 if (!obj)
4448 return NULL;
4449
4450 ret = intel_framebuffer_create(dev, mode_cmd, &fb, obj);
4451 if (ret) {
Jesse Barnes496818f2009-02-11 13:28:14 -08004452 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08004453 drm_gem_object_unreference(obj);
Jesse Barnes496818f2009-02-11 13:28:14 -08004454 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08004455 return NULL;
4456 }
4457
4458 return fb;
4459}
4460
Jesse Barnes79e53942008-11-07 14:24:08 -08004461static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08004462 .fb_create = intel_user_framebuffer_create,
4463 .fb_changed = intelfb_probe,
4464};
4465
Chris Wilson9ea8d052010-01-04 18:57:56 +00004466static struct drm_gem_object *
4467intel_alloc_power_context(struct drm_device *dev)
4468{
4469 struct drm_gem_object *pwrctx;
4470 int ret;
4471
4472 pwrctx = drm_gem_object_alloc(dev, 4096);
4473 if (!pwrctx) {
4474 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
4475 return NULL;
4476 }
4477
4478 mutex_lock(&dev->struct_mutex);
4479 ret = i915_gem_object_pin(pwrctx, 4096);
4480 if (ret) {
4481 DRM_ERROR("failed to pin power context: %d\n", ret);
4482 goto err_unref;
4483 }
4484
4485 ret = i915_gem_object_set_to_gtt_domain(pwrctx, 1);
4486 if (ret) {
4487 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
4488 goto err_unpin;
4489 }
4490 mutex_unlock(&dev->struct_mutex);
4491
4492 return pwrctx;
4493
4494err_unpin:
4495 i915_gem_object_unpin(pwrctx);
4496err_unref:
4497 drm_gem_object_unreference(pwrctx);
4498 mutex_unlock(&dev->struct_mutex);
4499 return NULL;
4500}
4501
Jesse Barnes652c3932009-08-17 13:31:43 -07004502void intel_init_clock_gating(struct drm_device *dev)
4503{
4504 struct drm_i915_private *dev_priv = dev->dev_private;
4505
4506 /*
4507 * Disable clock gating reported to work incorrectly according to the
4508 * specs, but enable as much else as we can.
4509 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004510 if (IS_IRONLAKE(dev)) {
Zhenyu Wangc03342f2009-09-29 11:01:23 +08004511 return;
4512 } else if (IS_G4X(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07004513 uint32_t dspclk_gate;
4514 I915_WRITE(RENCLK_GATE_D1, 0);
4515 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
4516 GS_UNIT_CLOCK_GATE_DISABLE |
4517 CL_UNIT_CLOCK_GATE_DISABLE);
4518 I915_WRITE(RAMCLK_GATE_D, 0);
4519 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
4520 OVRUNIT_CLOCK_GATE_DISABLE |
4521 OVCUNIT_CLOCK_GATE_DISABLE;
4522 if (IS_GM45(dev))
4523 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
4524 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
4525 } else if (IS_I965GM(dev)) {
4526 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
4527 I915_WRITE(RENCLK_GATE_D2, 0);
4528 I915_WRITE(DSPCLK_GATE_D, 0);
4529 I915_WRITE(RAMCLK_GATE_D, 0);
4530 I915_WRITE16(DEUC, 0);
4531 } else if (IS_I965G(dev)) {
4532 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
4533 I965_RCC_CLOCK_GATE_DISABLE |
4534 I965_RCPB_CLOCK_GATE_DISABLE |
4535 I965_ISC_CLOCK_GATE_DISABLE |
4536 I965_FBC_CLOCK_GATE_DISABLE);
4537 I915_WRITE(RENCLK_GATE_D2, 0);
4538 } else if (IS_I9XX(dev)) {
4539 u32 dstate = I915_READ(D_STATE);
4540
4541 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
4542 DSTATE_DOT_CLOCK_GATING;
4543 I915_WRITE(D_STATE, dstate);
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02004544 } else if (IS_I85X(dev) || IS_I865G(dev)) {
Jesse Barnes652c3932009-08-17 13:31:43 -07004545 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
4546 } else if (IS_I830(dev)) {
4547 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
4548 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004549
4550 /*
4551 * GPU can automatically power down the render unit if given a page
4552 * to save state.
4553 */
Andrew Lutomirski1d3c36ad2009-12-21 10:10:22 -05004554 if (I915_HAS_RC6(dev) && drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson9ea8d052010-01-04 18:57:56 +00004555 struct drm_i915_gem_object *obj_priv = NULL;
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004556
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05004557 if (dev_priv->pwrctx) {
4558 obj_priv = dev_priv->pwrctx->driver_private;
4559 } else {
Chris Wilson9ea8d052010-01-04 18:57:56 +00004560 struct drm_gem_object *pwrctx;
4561
4562 pwrctx = intel_alloc_power_context(dev);
4563 if (pwrctx) {
4564 dev_priv->pwrctx = pwrctx;
4565 obj_priv = pwrctx->driver_private;
Andrew Lutomirski7e8b60f2009-11-08 13:49:51 -05004566 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004567 }
4568
Chris Wilson9ea8d052010-01-04 18:57:56 +00004569 if (obj_priv) {
4570 I915_WRITE(PWRCTXA, obj_priv->gtt_offset | PWRCTX_EN);
4571 I915_WRITE(MCHBAR_RENDER_STANDBY,
4572 I915_READ(MCHBAR_RENDER_STANDBY) & ~RCX_SW_EXIT);
4573 }
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004574 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004575}
4576
Jesse Barnese70236a2009-09-21 10:42:27 -07004577/* Set up chip specific display functions */
4578static void intel_init_display(struct drm_device *dev)
4579{
4580 struct drm_i915_private *dev_priv = dev->dev_private;
4581
4582 /* We always want a DPMS function */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004583 if (IS_IRONLAKE(dev))
4584 dev_priv->display.dpms = ironlake_crtc_dpms;
Jesse Barnese70236a2009-09-21 10:42:27 -07004585 else
4586 dev_priv->display.dpms = i9xx_crtc_dpms;
4587
4588 /* Only mobile has FBC, leave pointers NULL for other chips */
4589 if (IS_MOBILE(dev)) {
Jesse Barnes74dff282009-09-14 15:39:40 -07004590 if (IS_GM45(dev)) {
4591 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
4592 dev_priv->display.enable_fbc = g4x_enable_fbc;
4593 dev_priv->display.disable_fbc = g4x_disable_fbc;
4594 } else if (IS_I965GM(dev) || IS_I945GM(dev) || IS_I915GM(dev)) {
Jesse Barnese70236a2009-09-21 10:42:27 -07004595 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
4596 dev_priv->display.enable_fbc = i8xx_enable_fbc;
4597 dev_priv->display.disable_fbc = i8xx_disable_fbc;
4598 }
Jesse Barnes74dff282009-09-14 15:39:40 -07004599 /* 855GM needs testing */
Jesse Barnese70236a2009-09-21 10:42:27 -07004600 }
4601
4602 /* Returns the core display clock speed */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004603 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07004604 dev_priv->display.get_display_clock_speed =
4605 i945_get_display_clock_speed;
4606 else if (IS_I915G(dev))
4607 dev_priv->display.get_display_clock_speed =
4608 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004609 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07004610 dev_priv->display.get_display_clock_speed =
4611 i9xx_misc_get_display_clock_speed;
4612 else if (IS_I915GM(dev))
4613 dev_priv->display.get_display_clock_speed =
4614 i915gm_get_display_clock_speed;
4615 else if (IS_I865G(dev))
4616 dev_priv->display.get_display_clock_speed =
4617 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02004618 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07004619 dev_priv->display.get_display_clock_speed =
4620 i855_get_display_clock_speed;
4621 else /* 852, 830 */
4622 dev_priv->display.get_display_clock_speed =
4623 i830_get_display_clock_speed;
4624
4625 /* For FIFO watermark updates */
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004626 if (IS_IRONLAKE(dev))
Zhenyu Wangc03342f2009-09-29 11:01:23 +08004627 dev_priv->display.update_wm = NULL;
4628 else if (IS_G4X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07004629 dev_priv->display.update_wm = g4x_update_wm;
4630 else if (IS_I965G(dev))
4631 dev_priv->display.update_wm = i965_update_wm;
4632 else if (IS_I9XX(dev) || IS_MOBILE(dev)) {
4633 dev_priv->display.update_wm = i9xx_update_wm;
4634 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
4635 } else {
4636 if (IS_I85X(dev))
4637 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
4638 else if (IS_845G(dev))
4639 dev_priv->display.get_fifo_size = i845_get_fifo_size;
4640 else
4641 dev_priv->display.get_fifo_size = i830_get_fifo_size;
4642 dev_priv->display.update_wm = i830_update_wm;
4643 }
4644}
4645
Jesse Barnes79e53942008-11-07 14:24:08 -08004646void intel_modeset_init(struct drm_device *dev)
4647{
Jesse Barnes652c3932009-08-17 13:31:43 -07004648 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004649 int num_pipe;
4650 int i;
4651
4652 drm_mode_config_init(dev);
4653
4654 dev->mode_config.min_width = 0;
4655 dev->mode_config.min_height = 0;
4656
4657 dev->mode_config.funcs = (void *)&intel_mode_funcs;
4658
Jesse Barnese70236a2009-09-21 10:42:27 -07004659 intel_init_display(dev);
4660
Jesse Barnes79e53942008-11-07 14:24:08 -08004661 if (IS_I965G(dev)) {
4662 dev->mode_config.max_width = 8192;
4663 dev->mode_config.max_height = 8192;
Keith Packard5e4d6fa2009-07-12 23:53:17 -07004664 } else if (IS_I9XX(dev)) {
4665 dev->mode_config.max_width = 4096;
4666 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08004667 } else {
4668 dev->mode_config.max_width = 2048;
4669 dev->mode_config.max_height = 2048;
4670 }
4671
4672 /* set memory base */
4673 if (IS_I9XX(dev))
4674 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 2);
4675 else
4676 dev->mode_config.fb_base = pci_resource_start(dev->pdev, 0);
4677
4678 if (IS_MOBILE(dev) || IS_I9XX(dev))
4679 num_pipe = 2;
4680 else
4681 num_pipe = 1;
Zhao Yakui28c97732009-10-09 11:39:41 +08004682 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004683 num_pipe, num_pipe > 1 ? "s" : "");
4684
Jesse Barnes652c3932009-08-17 13:31:43 -07004685 if (IS_I85X(dev))
4686 pci_read_config_word(dev->pdev, HPLLCC, &dev_priv->orig_clock);
4687 else if (IS_I9XX(dev) || IS_G4X(dev))
4688 pci_read_config_word(dev->pdev, GCFGC, &dev_priv->orig_clock);
4689
Jesse Barnes79e53942008-11-07 14:24:08 -08004690 for (i = 0; i < num_pipe; i++) {
4691 intel_crtc_init(dev, i);
4692 }
4693
4694 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07004695
4696 intel_init_clock_gating(dev);
4697
4698 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
4699 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
4700 (unsigned long)dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02004701
4702 intel_setup_overlay(dev);
Jesse Barnes85364902009-12-03 09:52:43 -08004703
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004704 if (IS_PINEVIEW(dev) && !intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
4705 dev_priv->fsb_freq,
4706 dev_priv->mem_freq))
Jesse Barnes85364902009-12-03 09:52:43 -08004707 DRM_INFO("failed to find known CxSR latency "
4708 "(found fsb freq %d, mem freq %d), disabling CxSR\n",
4709 dev_priv->fsb_freq, dev_priv->mem_freq);
Jesse Barnes79e53942008-11-07 14:24:08 -08004710}
4711
4712void intel_modeset_cleanup(struct drm_device *dev)
4713{
Jesse Barnes652c3932009-08-17 13:31:43 -07004714 struct drm_i915_private *dev_priv = dev->dev_private;
4715 struct drm_crtc *crtc;
4716 struct intel_crtc *intel_crtc;
4717
4718 mutex_lock(&dev->struct_mutex);
4719
4720 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4721 /* Skip inactive CRTCs */
4722 if (!crtc->fb)
4723 continue;
4724
4725 intel_crtc = to_intel_crtc(crtc);
4726 intel_increase_pllclock(crtc, false);
4727 del_timer_sync(&intel_crtc->idle_timer);
4728 }
4729
Jesse Barnes652c3932009-08-17 13:31:43 -07004730 del_timer_sync(&dev_priv->idle_timer);
4731
Jesse Barnese70236a2009-09-21 10:42:27 -07004732 if (dev_priv->display.disable_fbc)
4733 dev_priv->display.disable_fbc(dev);
4734
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004735 if (dev_priv->pwrctx) {
Kristian Høgsbergc1b5dea2009-11-11 12:19:18 -05004736 struct drm_i915_gem_object *obj_priv;
4737
4738 obj_priv = dev_priv->pwrctx->driver_private;
4739 I915_WRITE(PWRCTXA, obj_priv->gtt_offset &~ PWRCTX_EN);
4740 I915_READ(PWRCTXA);
Jesse Barnes97f5ab62009-10-08 10:16:48 -07004741 i915_gem_object_unpin(dev_priv->pwrctx);
4742 drm_gem_object_unreference(dev_priv->pwrctx);
4743 }
4744
Kristian Høgsberg69341a52009-11-11 12:19:17 -05004745 mutex_unlock(&dev->struct_mutex);
4746
Jesse Barnes79e53942008-11-07 14:24:08 -08004747 drm_mode_config_cleanup(dev);
4748}
4749
4750
4751/* current intel driver doesn't take advantage of encoders
4752 always give back the encoder for the connector
4753*/
4754struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
4755{
4756 struct intel_output *intel_output = to_intel_output(connector);
4757
4758 return &intel_output->enc;
4759}
Dave Airlie28d52042009-09-21 14:33:58 +10004760
4761/*
4762 * set vga decode state - true == enable VGA decode
4763 */
4764int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
4765{
4766 struct drm_i915_private *dev_priv = dev->dev_private;
4767 u16 gmch_ctrl;
4768
4769 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
4770 if (state)
4771 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
4772 else
4773 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
4774 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
4775 return 0;
4776}