drm/i915: fix corruptions on i8xx due to relaxed fencing
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
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
c1c7af60
JB
27#include <linux/module.h>
28#include <linux/input.h>
79e53945 29#include <linux/i2c.h>
7662c8bd 30#include <linux/kernel.h>
5a0e3ad6 31#include <linux/slab.h>
9cce37f4 32#include <linux/vgaarb.h>
79e53945
JB
33#include "drmP.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
e5510fac 37#include "i915_trace.h"
ab2c0672 38#include "drm_dp_helper.h"
79e53945
JB
39
40#include "drm_crtc_helper.h"
41
32f9d658
ZW
42#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
43
79e53945 44bool intel_pipe_has_type (struct drm_crtc *crtc, int type);
7662c8bd 45static void intel_update_watermarks(struct drm_device *dev);
3dec0095 46static void intel_increase_pllclock(struct drm_crtc *crtc);
6b383a7f 47static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
79e53945
JB
48
49typedef struct {
50 /* given values */
51 int n;
52 int m1, m2;
53 int p1, p2;
54 /* derived values */
55 int dot;
56 int vco;
57 int m;
58 int p;
59} intel_clock_t;
60
61typedef struct {
62 int min, max;
63} intel_range_t;
64
65typedef struct {
66 int dot_limit;
67 int p2_slow, p2_fast;
68} intel_p2_t;
69
70#define INTEL_P2_NUM 2
d4906093
ML
71typedef struct intel_limit intel_limit_t;
72struct intel_limit {
79e53945
JB
73 intel_range_t dot, vco, n, m, m1, m2, p, p1;
74 intel_p2_t p2;
d4906093
ML
75 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
76 int, int, intel_clock_t *);
77};
79e53945
JB
78
79#define I8XX_DOT_MIN 25000
80#define I8XX_DOT_MAX 350000
81#define I8XX_VCO_MIN 930000
82#define I8XX_VCO_MAX 1400000
83#define I8XX_N_MIN 3
84#define I8XX_N_MAX 16
85#define I8XX_M_MIN 96
86#define I8XX_M_MAX 140
87#define I8XX_M1_MIN 18
88#define I8XX_M1_MAX 26
89#define I8XX_M2_MIN 6
90#define I8XX_M2_MAX 16
91#define I8XX_P_MIN 4
92#define I8XX_P_MAX 128
93#define I8XX_P1_MIN 2
94#define I8XX_P1_MAX 33
95#define I8XX_P1_LVDS_MIN 1
96#define I8XX_P1_LVDS_MAX 6
97#define I8XX_P2_SLOW 4
98#define I8XX_P2_FAST 2
99#define I8XX_P2_LVDS_SLOW 14
0c2e3952 100#define I8XX_P2_LVDS_FAST 7
79e53945
JB
101#define I8XX_P2_SLOW_LIMIT 165000
102
103#define I9XX_DOT_MIN 20000
104#define I9XX_DOT_MAX 400000
105#define I9XX_VCO_MIN 1400000
106#define I9XX_VCO_MAX 2800000
f2b115e6
AJ
107#define PINEVIEW_VCO_MIN 1700000
108#define PINEVIEW_VCO_MAX 3500000
f3cade5c
KH
109#define I9XX_N_MIN 1
110#define I9XX_N_MAX 6
f2b115e6
AJ
111/* Pineview's Ncounter is a ring counter */
112#define PINEVIEW_N_MIN 3
113#define PINEVIEW_N_MAX 6
79e53945
JB
114#define I9XX_M_MIN 70
115#define I9XX_M_MAX 120
f2b115e6
AJ
116#define PINEVIEW_M_MIN 2
117#define PINEVIEW_M_MAX 256
79e53945 118#define I9XX_M1_MIN 10
f3cade5c 119#define I9XX_M1_MAX 22
79e53945
JB
120#define I9XX_M2_MIN 5
121#define I9XX_M2_MAX 9
f2b115e6
AJ
122/* Pineview M1 is reserved, and must be 0 */
123#define PINEVIEW_M1_MIN 0
124#define PINEVIEW_M1_MAX 0
125#define PINEVIEW_M2_MIN 0
126#define PINEVIEW_M2_MAX 254
79e53945
JB
127#define I9XX_P_SDVO_DAC_MIN 5
128#define I9XX_P_SDVO_DAC_MAX 80
129#define I9XX_P_LVDS_MIN 7
130#define I9XX_P_LVDS_MAX 98
f2b115e6
AJ
131#define PINEVIEW_P_LVDS_MIN 7
132#define PINEVIEW_P_LVDS_MAX 112
79e53945
JB
133#define I9XX_P1_MIN 1
134#define I9XX_P1_MAX 8
135#define I9XX_P2_SDVO_DAC_SLOW 10
136#define I9XX_P2_SDVO_DAC_FAST 5
137#define I9XX_P2_SDVO_DAC_SLOW_LIMIT 200000
138#define I9XX_P2_LVDS_SLOW 14
139#define I9XX_P2_LVDS_FAST 7
140#define I9XX_P2_LVDS_SLOW_LIMIT 112000
141
044c7c41
ML
142/*The parameter is for SDVO on G4x platform*/
143#define G4X_DOT_SDVO_MIN 25000
144#define G4X_DOT_SDVO_MAX 270000
145#define G4X_VCO_MIN 1750000
146#define G4X_VCO_MAX 3500000
147#define G4X_N_SDVO_MIN 1
148#define G4X_N_SDVO_MAX 4
149#define G4X_M_SDVO_MIN 104
150#define G4X_M_SDVO_MAX 138
151#define G4X_M1_SDVO_MIN 17
152#define G4X_M1_SDVO_MAX 23
153#define G4X_M2_SDVO_MIN 5
154#define G4X_M2_SDVO_MAX 11
155#define G4X_P_SDVO_MIN 10
156#define G4X_P_SDVO_MAX 30
157#define G4X_P1_SDVO_MIN 1
158#define G4X_P1_SDVO_MAX 3
159#define G4X_P2_SDVO_SLOW 10
160#define G4X_P2_SDVO_FAST 10
161#define G4X_P2_SDVO_LIMIT 270000
162
163/*The parameter is for HDMI_DAC on G4x platform*/
164#define G4X_DOT_HDMI_DAC_MIN 22000
165#define G4X_DOT_HDMI_DAC_MAX 400000
166#define G4X_N_HDMI_DAC_MIN 1
167#define G4X_N_HDMI_DAC_MAX 4
168#define G4X_M_HDMI_DAC_MIN 104
169#define G4X_M_HDMI_DAC_MAX 138
170#define G4X_M1_HDMI_DAC_MIN 16
171#define G4X_M1_HDMI_DAC_MAX 23
172#define G4X_M2_HDMI_DAC_MIN 5
173#define G4X_M2_HDMI_DAC_MAX 11
174#define G4X_P_HDMI_DAC_MIN 5
175#define G4X_P_HDMI_DAC_MAX 80
176#define G4X_P1_HDMI_DAC_MIN 1
177#define G4X_P1_HDMI_DAC_MAX 8
178#define G4X_P2_HDMI_DAC_SLOW 10
179#define G4X_P2_HDMI_DAC_FAST 5
180#define G4X_P2_HDMI_DAC_LIMIT 165000
181
182/*The parameter is for SINGLE_CHANNEL_LVDS on G4x platform*/
183#define G4X_DOT_SINGLE_CHANNEL_LVDS_MIN 20000
184#define G4X_DOT_SINGLE_CHANNEL_LVDS_MAX 115000
185#define G4X_N_SINGLE_CHANNEL_LVDS_MIN 1
186#define G4X_N_SINGLE_CHANNEL_LVDS_MAX 3
187#define G4X_M_SINGLE_CHANNEL_LVDS_MIN 104
188#define G4X_M_SINGLE_CHANNEL_LVDS_MAX 138
189#define G4X_M1_SINGLE_CHANNEL_LVDS_MIN 17
190#define G4X_M1_SINGLE_CHANNEL_LVDS_MAX 23
191#define G4X_M2_SINGLE_CHANNEL_LVDS_MIN 5
192#define G4X_M2_SINGLE_CHANNEL_LVDS_MAX 11
193#define G4X_P_SINGLE_CHANNEL_LVDS_MIN 28
194#define G4X_P_SINGLE_CHANNEL_LVDS_MAX 112
195#define G4X_P1_SINGLE_CHANNEL_LVDS_MIN 2
196#define G4X_P1_SINGLE_CHANNEL_LVDS_MAX 8
197#define G4X_P2_SINGLE_CHANNEL_LVDS_SLOW 14
198#define G4X_P2_SINGLE_CHANNEL_LVDS_FAST 14
199#define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0
200
201/*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/
202#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000
203#define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000
204#define G4X_N_DUAL_CHANNEL_LVDS_MIN 1
205#define G4X_N_DUAL_CHANNEL_LVDS_MAX 3
206#define G4X_M_DUAL_CHANNEL_LVDS_MIN 104
207#define G4X_M_DUAL_CHANNEL_LVDS_MAX 138
208#define G4X_M1_DUAL_CHANNEL_LVDS_MIN 17
209#define G4X_M1_DUAL_CHANNEL_LVDS_MAX 23
210#define G4X_M2_DUAL_CHANNEL_LVDS_MIN 5
211#define G4X_M2_DUAL_CHANNEL_LVDS_MAX 11
212#define G4X_P_DUAL_CHANNEL_LVDS_MIN 14
213#define G4X_P_DUAL_CHANNEL_LVDS_MAX 42
214#define G4X_P1_DUAL_CHANNEL_LVDS_MIN 2
215#define G4X_P1_DUAL_CHANNEL_LVDS_MAX 6
216#define G4X_P2_DUAL_CHANNEL_LVDS_SLOW 7
217#define G4X_P2_DUAL_CHANNEL_LVDS_FAST 7
218#define G4X_P2_DUAL_CHANNEL_LVDS_LIMIT 0
219
a4fc5ed6
KP
220/*The parameter is for DISPLAY PORT on G4x platform*/
221#define G4X_DOT_DISPLAY_PORT_MIN 161670
222#define G4X_DOT_DISPLAY_PORT_MAX 227000
223#define G4X_N_DISPLAY_PORT_MIN 1
224#define G4X_N_DISPLAY_PORT_MAX 2
225#define G4X_M_DISPLAY_PORT_MIN 97
226#define G4X_M_DISPLAY_PORT_MAX 108
227#define G4X_M1_DISPLAY_PORT_MIN 0x10
228#define G4X_M1_DISPLAY_PORT_MAX 0x12
229#define G4X_M2_DISPLAY_PORT_MIN 0x05
230#define G4X_M2_DISPLAY_PORT_MAX 0x06
231#define G4X_P_DISPLAY_PORT_MIN 10
232#define G4X_P_DISPLAY_PORT_MAX 20
233#define G4X_P1_DISPLAY_PORT_MIN 1
234#define G4X_P1_DISPLAY_PORT_MAX 2
235#define G4X_P2_DISPLAY_PORT_SLOW 10
236#define G4X_P2_DISPLAY_PORT_FAST 10
237#define G4X_P2_DISPLAY_PORT_LIMIT 0
238
bad720ff 239/* Ironlake / Sandybridge */
2c07245f
ZW
240/* as we calculate clock using (register_value + 2) for
241 N/M1/M2, so here the range value for them is (actual_value-2).
242 */
f2b115e6
AJ
243#define IRONLAKE_DOT_MIN 25000
244#define IRONLAKE_DOT_MAX 350000
245#define IRONLAKE_VCO_MIN 1760000
246#define IRONLAKE_VCO_MAX 3510000
f2b115e6 247#define IRONLAKE_M1_MIN 12
a59e385e 248#define IRONLAKE_M1_MAX 22
f2b115e6
AJ
249#define IRONLAKE_M2_MIN 5
250#define IRONLAKE_M2_MAX 9
f2b115e6 251#define IRONLAKE_P2_DOT_LIMIT 225000 /* 225Mhz */
2c07245f 252
b91ad0ec
ZW
253/* We have parameter ranges for different type of outputs. */
254
255/* DAC & HDMI Refclk 120Mhz */
256#define IRONLAKE_DAC_N_MIN 1
257#define IRONLAKE_DAC_N_MAX 5
258#define IRONLAKE_DAC_M_MIN 79
259#define IRONLAKE_DAC_M_MAX 127
260#define IRONLAKE_DAC_P_MIN 5
261#define IRONLAKE_DAC_P_MAX 80
262#define IRONLAKE_DAC_P1_MIN 1
263#define IRONLAKE_DAC_P1_MAX 8
264#define IRONLAKE_DAC_P2_SLOW 10
265#define IRONLAKE_DAC_P2_FAST 5
266
267/* LVDS single-channel 120Mhz refclk */
268#define IRONLAKE_LVDS_S_N_MIN 1
269#define IRONLAKE_LVDS_S_N_MAX 3
270#define IRONLAKE_LVDS_S_M_MIN 79
271#define IRONLAKE_LVDS_S_M_MAX 118
272#define IRONLAKE_LVDS_S_P_MIN 28
273#define IRONLAKE_LVDS_S_P_MAX 112
274#define IRONLAKE_LVDS_S_P1_MIN 2
275#define IRONLAKE_LVDS_S_P1_MAX 8
276#define IRONLAKE_LVDS_S_P2_SLOW 14
277#define IRONLAKE_LVDS_S_P2_FAST 14
278
279/* LVDS dual-channel 120Mhz refclk */
280#define IRONLAKE_LVDS_D_N_MIN 1
281#define IRONLAKE_LVDS_D_N_MAX 3
282#define IRONLAKE_LVDS_D_M_MIN 79
283#define IRONLAKE_LVDS_D_M_MAX 127
284#define IRONLAKE_LVDS_D_P_MIN 14
285#define IRONLAKE_LVDS_D_P_MAX 56
286#define IRONLAKE_LVDS_D_P1_MIN 2
287#define IRONLAKE_LVDS_D_P1_MAX 8
288#define IRONLAKE_LVDS_D_P2_SLOW 7
289#define IRONLAKE_LVDS_D_P2_FAST 7
290
291/* LVDS single-channel 100Mhz refclk */
292#define IRONLAKE_LVDS_S_SSC_N_MIN 1
293#define IRONLAKE_LVDS_S_SSC_N_MAX 2
294#define IRONLAKE_LVDS_S_SSC_M_MIN 79
295#define IRONLAKE_LVDS_S_SSC_M_MAX 126
296#define IRONLAKE_LVDS_S_SSC_P_MIN 28
297#define IRONLAKE_LVDS_S_SSC_P_MAX 112
298#define IRONLAKE_LVDS_S_SSC_P1_MIN 2
299#define IRONLAKE_LVDS_S_SSC_P1_MAX 8
300#define IRONLAKE_LVDS_S_SSC_P2_SLOW 14
301#define IRONLAKE_LVDS_S_SSC_P2_FAST 14
302
303/* LVDS dual-channel 100Mhz refclk */
304#define IRONLAKE_LVDS_D_SSC_N_MIN 1
305#define IRONLAKE_LVDS_D_SSC_N_MAX 3
306#define IRONLAKE_LVDS_D_SSC_M_MIN 79
307#define IRONLAKE_LVDS_D_SSC_M_MAX 126
308#define IRONLAKE_LVDS_D_SSC_P_MIN 14
309#define IRONLAKE_LVDS_D_SSC_P_MAX 42
310#define IRONLAKE_LVDS_D_SSC_P1_MIN 2
311#define IRONLAKE_LVDS_D_SSC_P1_MAX 6
312#define IRONLAKE_LVDS_D_SSC_P2_SLOW 7
313#define IRONLAKE_LVDS_D_SSC_P2_FAST 7
314
315/* DisplayPort */
316#define IRONLAKE_DP_N_MIN 1
317#define IRONLAKE_DP_N_MAX 2
318#define IRONLAKE_DP_M_MIN 81
319#define IRONLAKE_DP_M_MAX 90
320#define IRONLAKE_DP_P_MIN 10
321#define IRONLAKE_DP_P_MAX 20
322#define IRONLAKE_DP_P2_FAST 10
323#define IRONLAKE_DP_P2_SLOW 10
324#define IRONLAKE_DP_P2_LIMIT 0
325#define IRONLAKE_DP_P1_MIN 1
326#define IRONLAKE_DP_P1_MAX 2
4547668a 327
2377b741
JB
328/* FDI */
329#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
330
d4906093
ML
331static bool
332intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
333 int target, int refclk, intel_clock_t *best_clock);
334static bool
335intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
336 int target, int refclk, intel_clock_t *best_clock);
79e53945 337
a4fc5ed6
KP
338static bool
339intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
340 int target, int refclk, intel_clock_t *best_clock);
5eb08b69 341static bool
f2b115e6
AJ
342intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
343 int target, int refclk, intel_clock_t *best_clock);
a4fc5ed6 344
021357ac
CW
345static inline u32 /* units of 100MHz */
346intel_fdi_link_freq(struct drm_device *dev)
347{
8b99e68c
CW
348 if (IS_GEN5(dev)) {
349 struct drm_i915_private *dev_priv = dev->dev_private;
350 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
351 } else
352 return 27;
021357ac
CW
353}
354
e4b36699 355static const intel_limit_t intel_limits_i8xx_dvo = {
79e53945
JB
356 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
357 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
358 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
359 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
360 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
361 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
362 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
363 .p1 = { .min = I8XX_P1_MIN, .max = I8XX_P1_MAX },
364 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
365 .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST },
d4906093 366 .find_pll = intel_find_best_PLL,
e4b36699
KP
367};
368
369static const intel_limit_t intel_limits_i8xx_lvds = {
79e53945
JB
370 .dot = { .min = I8XX_DOT_MIN, .max = I8XX_DOT_MAX },
371 .vco = { .min = I8XX_VCO_MIN, .max = I8XX_VCO_MAX },
372 .n = { .min = I8XX_N_MIN, .max = I8XX_N_MAX },
373 .m = { .min = I8XX_M_MIN, .max = I8XX_M_MAX },
374 .m1 = { .min = I8XX_M1_MIN, .max = I8XX_M1_MAX },
375 .m2 = { .min = I8XX_M2_MIN, .max = I8XX_M2_MAX },
376 .p = { .min = I8XX_P_MIN, .max = I8XX_P_MAX },
377 .p1 = { .min = I8XX_P1_LVDS_MIN, .max = I8XX_P1_LVDS_MAX },
378 .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT,
379 .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST },
d4906093 380 .find_pll = intel_find_best_PLL,
e4b36699
KP
381};
382
383static const intel_limit_t intel_limits_i9xx_sdvo = {
79e53945
JB
384 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
385 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
386 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
387 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
388 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
389 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
390 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
391 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
392 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
393 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
d4906093 394 .find_pll = intel_find_best_PLL,
e4b36699
KP
395};
396
397static const intel_limit_t intel_limits_i9xx_lvds = {
79e53945
JB
398 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
399 .vco = { .min = I9XX_VCO_MIN, .max = I9XX_VCO_MAX },
400 .n = { .min = I9XX_N_MIN, .max = I9XX_N_MAX },
401 .m = { .min = I9XX_M_MIN, .max = I9XX_M_MAX },
402 .m1 = { .min = I9XX_M1_MIN, .max = I9XX_M1_MAX },
403 .m2 = { .min = I9XX_M2_MIN, .max = I9XX_M2_MAX },
404 .p = { .min = I9XX_P_LVDS_MIN, .max = I9XX_P_LVDS_MAX },
405 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
406 /* The single-channel range is 25-112Mhz, and dual-channel
407 * is 80-224Mhz. Prefer single channel as much as possible.
408 */
409 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
410 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST },
d4906093 411 .find_pll = intel_find_best_PLL,
e4b36699
KP
412};
413
044c7c41 414 /* below parameter and function is for G4X Chipset Family*/
e4b36699 415static const intel_limit_t intel_limits_g4x_sdvo = {
044c7c41
ML
416 .dot = { .min = G4X_DOT_SDVO_MIN, .max = G4X_DOT_SDVO_MAX },
417 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
418 .n = { .min = G4X_N_SDVO_MIN, .max = G4X_N_SDVO_MAX },
419 .m = { .min = G4X_M_SDVO_MIN, .max = G4X_M_SDVO_MAX },
420 .m1 = { .min = G4X_M1_SDVO_MIN, .max = G4X_M1_SDVO_MAX },
421 .m2 = { .min = G4X_M2_SDVO_MIN, .max = G4X_M2_SDVO_MAX },
422 .p = { .min = G4X_P_SDVO_MIN, .max = G4X_P_SDVO_MAX },
423 .p1 = { .min = G4X_P1_SDVO_MIN, .max = G4X_P1_SDVO_MAX},
424 .p2 = { .dot_limit = G4X_P2_SDVO_LIMIT,
425 .p2_slow = G4X_P2_SDVO_SLOW,
426 .p2_fast = G4X_P2_SDVO_FAST
427 },
d4906093 428 .find_pll = intel_g4x_find_best_PLL,
e4b36699
KP
429};
430
431static const intel_limit_t intel_limits_g4x_hdmi = {
044c7c41
ML
432 .dot = { .min = G4X_DOT_HDMI_DAC_MIN, .max = G4X_DOT_HDMI_DAC_MAX },
433 .vco = { .min = G4X_VCO_MIN, .max = G4X_VCO_MAX},
434 .n = { .min = G4X_N_HDMI_DAC_MIN, .max = G4X_N_HDMI_DAC_MAX },
435 .m = { .min = G4X_M_HDMI_DAC_MIN, .max = G4X_M_HDMI_DAC_MAX },
436 .m1 = { .min = G4X_M1_HDMI_DAC_MIN, .max = G4X_M1_HDMI_DAC_MAX },
437 .m2 = { .min = G4X_M2_HDMI_DAC_MIN, .max = G4X_M2_HDMI_DAC_MAX },
438 .p = { .min = G4X_P_HDMI_DAC_MIN, .max = G4X_P_HDMI_DAC_MAX },
439 .p1 = { .min = G4X_P1_HDMI_DAC_MIN, .max = G4X_P1_HDMI_DAC_MAX},
440 .p2 = { .dot_limit = G4X_P2_HDMI_DAC_LIMIT,
441 .p2_slow = G4X_P2_HDMI_DAC_SLOW,
442 .p2_fast = G4X_P2_HDMI_DAC_FAST
443 },
d4906093 444 .find_pll = intel_g4x_find_best_PLL,
e4b36699
KP
445};
446
447static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
044c7c41
ML
448 .dot = { .min = G4X_DOT_SINGLE_CHANNEL_LVDS_MIN,
449 .max = G4X_DOT_SINGLE_CHANNEL_LVDS_MAX },
450 .vco = { .min = G4X_VCO_MIN,
451 .max = G4X_VCO_MAX },
452 .n = { .min = G4X_N_SINGLE_CHANNEL_LVDS_MIN,
453 .max = G4X_N_SINGLE_CHANNEL_LVDS_MAX },
454 .m = { .min = G4X_M_SINGLE_CHANNEL_LVDS_MIN,
455 .max = G4X_M_SINGLE_CHANNEL_LVDS_MAX },
456 .m1 = { .min = G4X_M1_SINGLE_CHANNEL_LVDS_MIN,
457 .max = G4X_M1_SINGLE_CHANNEL_LVDS_MAX },
458 .m2 = { .min = G4X_M2_SINGLE_CHANNEL_LVDS_MIN,
459 .max = G4X_M2_SINGLE_CHANNEL_LVDS_MAX },
460 .p = { .min = G4X_P_SINGLE_CHANNEL_LVDS_MIN,
461 .max = G4X_P_SINGLE_CHANNEL_LVDS_MAX },
462 .p1 = { .min = G4X_P1_SINGLE_CHANNEL_LVDS_MIN,
463 .max = G4X_P1_SINGLE_CHANNEL_LVDS_MAX },
464 .p2 = { .dot_limit = G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT,
465 .p2_slow = G4X_P2_SINGLE_CHANNEL_LVDS_SLOW,
466 .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST
467 },
d4906093 468 .find_pll = intel_g4x_find_best_PLL,
e4b36699
KP
469};
470
471static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
044c7c41
ML
472 .dot = { .min = G4X_DOT_DUAL_CHANNEL_LVDS_MIN,
473 .max = G4X_DOT_DUAL_CHANNEL_LVDS_MAX },
474 .vco = { .min = G4X_VCO_MIN,
475 .max = G4X_VCO_MAX },
476 .n = { .min = G4X_N_DUAL_CHANNEL_LVDS_MIN,
477 .max = G4X_N_DUAL_CHANNEL_LVDS_MAX },
478 .m = { .min = G4X_M_DUAL_CHANNEL_LVDS_MIN,
479 .max = G4X_M_DUAL_CHANNEL_LVDS_MAX },
480 .m1 = { .min = G4X_M1_DUAL_CHANNEL_LVDS_MIN,
481 .max = G4X_M1_DUAL_CHANNEL_LVDS_MAX },
482 .m2 = { .min = G4X_M2_DUAL_CHANNEL_LVDS_MIN,
483 .max = G4X_M2_DUAL_CHANNEL_LVDS_MAX },
484 .p = { .min = G4X_P_DUAL_CHANNEL_LVDS_MIN,
485 .max = G4X_P_DUAL_CHANNEL_LVDS_MAX },
486 .p1 = { .min = G4X_P1_DUAL_CHANNEL_LVDS_MIN,
487 .max = G4X_P1_DUAL_CHANNEL_LVDS_MAX },
488 .p2 = { .dot_limit = G4X_P2_DUAL_CHANNEL_LVDS_LIMIT,
489 .p2_slow = G4X_P2_DUAL_CHANNEL_LVDS_SLOW,
490 .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST
491 },
d4906093 492 .find_pll = intel_g4x_find_best_PLL,
e4b36699
KP
493};
494
495static const intel_limit_t intel_limits_g4x_display_port = {
a4fc5ed6
KP
496 .dot = { .min = G4X_DOT_DISPLAY_PORT_MIN,
497 .max = G4X_DOT_DISPLAY_PORT_MAX },
498 .vco = { .min = G4X_VCO_MIN,
499 .max = G4X_VCO_MAX},
500 .n = { .min = G4X_N_DISPLAY_PORT_MIN,
501 .max = G4X_N_DISPLAY_PORT_MAX },
502 .m = { .min = G4X_M_DISPLAY_PORT_MIN,
503 .max = G4X_M_DISPLAY_PORT_MAX },
504 .m1 = { .min = G4X_M1_DISPLAY_PORT_MIN,
505 .max = G4X_M1_DISPLAY_PORT_MAX },
506 .m2 = { .min = G4X_M2_DISPLAY_PORT_MIN,
507 .max = G4X_M2_DISPLAY_PORT_MAX },
508 .p = { .min = G4X_P_DISPLAY_PORT_MIN,
509 .max = G4X_P_DISPLAY_PORT_MAX },
510 .p1 = { .min = G4X_P1_DISPLAY_PORT_MIN,
511 .max = G4X_P1_DISPLAY_PORT_MAX},
512 .p2 = { .dot_limit = G4X_P2_DISPLAY_PORT_LIMIT,
513 .p2_slow = G4X_P2_DISPLAY_PORT_SLOW,
514 .p2_fast = G4X_P2_DISPLAY_PORT_FAST },
515 .find_pll = intel_find_pll_g4x_dp,
e4b36699
KP
516};
517
f2b115e6 518static const intel_limit_t intel_limits_pineview_sdvo = {
2177832f 519 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX},
f2b115e6
AJ
520 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
521 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
522 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
523 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
524 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
2177832f
SL
525 .p = { .min = I9XX_P_SDVO_DAC_MIN, .max = I9XX_P_SDVO_DAC_MAX },
526 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
527 .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT,
528 .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST },
6115707b 529 .find_pll = intel_find_best_PLL,
e4b36699
KP
530};
531
f2b115e6 532static const intel_limit_t intel_limits_pineview_lvds = {
2177832f 533 .dot = { .min = I9XX_DOT_MIN, .max = I9XX_DOT_MAX },
f2b115e6
AJ
534 .vco = { .min = PINEVIEW_VCO_MIN, .max = PINEVIEW_VCO_MAX },
535 .n = { .min = PINEVIEW_N_MIN, .max = PINEVIEW_N_MAX },
536 .m = { .min = PINEVIEW_M_MIN, .max = PINEVIEW_M_MAX },
537 .m1 = { .min = PINEVIEW_M1_MIN, .max = PINEVIEW_M1_MAX },
538 .m2 = { .min = PINEVIEW_M2_MIN, .max = PINEVIEW_M2_MAX },
539 .p = { .min = PINEVIEW_P_LVDS_MIN, .max = PINEVIEW_P_LVDS_MAX },
2177832f 540 .p1 = { .min = I9XX_P1_MIN, .max = I9XX_P1_MAX },
f2b115e6 541 /* Pineview only supports single-channel mode. */
2177832f
SL
542 .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT,
543 .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW },
6115707b 544 .find_pll = intel_find_best_PLL,
e4b36699
KP
545};
546
b91ad0ec 547static const intel_limit_t intel_limits_ironlake_dac = {
f2b115e6
AJ
548 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
549 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
b91ad0ec
ZW
550 .n = { .min = IRONLAKE_DAC_N_MIN, .max = IRONLAKE_DAC_N_MAX },
551 .m = { .min = IRONLAKE_DAC_M_MIN, .max = IRONLAKE_DAC_M_MAX },
f2b115e6
AJ
552 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
553 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
b91ad0ec
ZW
554 .p = { .min = IRONLAKE_DAC_P_MIN, .max = IRONLAKE_DAC_P_MAX },
555 .p1 = { .min = IRONLAKE_DAC_P1_MIN, .max = IRONLAKE_DAC_P1_MAX },
f2b115e6 556 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
b91ad0ec
ZW
557 .p2_slow = IRONLAKE_DAC_P2_SLOW,
558 .p2_fast = IRONLAKE_DAC_P2_FAST },
4547668a 559 .find_pll = intel_g4x_find_best_PLL,
e4b36699
KP
560};
561
b91ad0ec 562static const intel_limit_t intel_limits_ironlake_single_lvds = {
f2b115e6
AJ
563 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
564 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
b91ad0ec
ZW
565 .n = { .min = IRONLAKE_LVDS_S_N_MIN, .max = IRONLAKE_LVDS_S_N_MAX },
566 .m = { .min = IRONLAKE_LVDS_S_M_MIN, .max = IRONLAKE_LVDS_S_M_MAX },
f2b115e6
AJ
567 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
568 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
b91ad0ec
ZW
569 .p = { .min = IRONLAKE_LVDS_S_P_MIN, .max = IRONLAKE_LVDS_S_P_MAX },
570 .p1 = { .min = IRONLAKE_LVDS_S_P1_MIN, .max = IRONLAKE_LVDS_S_P1_MAX },
f2b115e6 571 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
b91ad0ec
ZW
572 .p2_slow = IRONLAKE_LVDS_S_P2_SLOW,
573 .p2_fast = IRONLAKE_LVDS_S_P2_FAST },
574 .find_pll = intel_g4x_find_best_PLL,
575};
576
577static const intel_limit_t intel_limits_ironlake_dual_lvds = {
578 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
579 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
580 .n = { .min = IRONLAKE_LVDS_D_N_MIN, .max = IRONLAKE_LVDS_D_N_MAX },
581 .m = { .min = IRONLAKE_LVDS_D_M_MIN, .max = IRONLAKE_LVDS_D_M_MAX },
582 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
583 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
584 .p = { .min = IRONLAKE_LVDS_D_P_MIN, .max = IRONLAKE_LVDS_D_P_MAX },
585 .p1 = { .min = IRONLAKE_LVDS_D_P1_MIN, .max = IRONLAKE_LVDS_D_P1_MAX },
586 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
587 .p2_slow = IRONLAKE_LVDS_D_P2_SLOW,
588 .p2_fast = IRONLAKE_LVDS_D_P2_FAST },
589 .find_pll = intel_g4x_find_best_PLL,
590};
591
592static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
593 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
594 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
595 .n = { .min = IRONLAKE_LVDS_S_SSC_N_MIN, .max = IRONLAKE_LVDS_S_SSC_N_MAX },
596 .m = { .min = IRONLAKE_LVDS_S_SSC_M_MIN, .max = IRONLAKE_LVDS_S_SSC_M_MAX },
597 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
598 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
599 .p = { .min = IRONLAKE_LVDS_S_SSC_P_MIN, .max = IRONLAKE_LVDS_S_SSC_P_MAX },
600 .p1 = { .min = IRONLAKE_LVDS_S_SSC_P1_MIN,.max = IRONLAKE_LVDS_S_SSC_P1_MAX },
601 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
602 .p2_slow = IRONLAKE_LVDS_S_SSC_P2_SLOW,
603 .p2_fast = IRONLAKE_LVDS_S_SSC_P2_FAST },
604 .find_pll = intel_g4x_find_best_PLL,
605};
606
607static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
608 .dot = { .min = IRONLAKE_DOT_MIN, .max = IRONLAKE_DOT_MAX },
609 .vco = { .min = IRONLAKE_VCO_MIN, .max = IRONLAKE_VCO_MAX },
610 .n = { .min = IRONLAKE_LVDS_D_SSC_N_MIN, .max = IRONLAKE_LVDS_D_SSC_N_MAX },
611 .m = { .min = IRONLAKE_LVDS_D_SSC_M_MIN, .max = IRONLAKE_LVDS_D_SSC_M_MAX },
612 .m1 = { .min = IRONLAKE_M1_MIN, .max = IRONLAKE_M1_MAX },
613 .m2 = { .min = IRONLAKE_M2_MIN, .max = IRONLAKE_M2_MAX },
614 .p = { .min = IRONLAKE_LVDS_D_SSC_P_MIN, .max = IRONLAKE_LVDS_D_SSC_P_MAX },
615 .p1 = { .min = IRONLAKE_LVDS_D_SSC_P1_MIN,.max = IRONLAKE_LVDS_D_SSC_P1_MAX },
616 .p2 = { .dot_limit = IRONLAKE_P2_DOT_LIMIT,
617 .p2_slow = IRONLAKE_LVDS_D_SSC_P2_SLOW,
618 .p2_fast = IRONLAKE_LVDS_D_SSC_P2_FAST },
4547668a
ZY
619 .find_pll = intel_g4x_find_best_PLL,
620};
621
622static const intel_limit_t intel_limits_ironlake_display_port = {
623 .dot = { .min = IRONLAKE_DOT_MIN,
624 .max = IRONLAKE_DOT_MAX },
625 .vco = { .min = IRONLAKE_VCO_MIN,
626 .max = IRONLAKE_VCO_MAX},
b91ad0ec
ZW
627 .n = { .min = IRONLAKE_DP_N_MIN,
628 .max = IRONLAKE_DP_N_MAX },
629 .m = { .min = IRONLAKE_DP_M_MIN,
630 .max = IRONLAKE_DP_M_MAX },
4547668a
ZY
631 .m1 = { .min = IRONLAKE_M1_MIN,
632 .max = IRONLAKE_M1_MAX },
633 .m2 = { .min = IRONLAKE_M2_MIN,
634 .max = IRONLAKE_M2_MAX },
b91ad0ec
ZW
635 .p = { .min = IRONLAKE_DP_P_MIN,
636 .max = IRONLAKE_DP_P_MAX },
637 .p1 = { .min = IRONLAKE_DP_P1_MIN,
638 .max = IRONLAKE_DP_P1_MAX},
639 .p2 = { .dot_limit = IRONLAKE_DP_P2_LIMIT,
640 .p2_slow = IRONLAKE_DP_P2_SLOW,
641 .p2_fast = IRONLAKE_DP_P2_FAST },
4547668a 642 .find_pll = intel_find_pll_ironlake_dp,
79e53945
JB
643};
644
1b894b59
CW
645static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
646 int refclk)
2c07245f 647{
b91ad0ec
ZW
648 struct drm_device *dev = crtc->dev;
649 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 650 const intel_limit_t *limit;
b91ad0ec
ZW
651
652 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
b91ad0ec
ZW
653 if ((I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) ==
654 LVDS_CLKB_POWER_UP) {
655 /* LVDS dual channel */
1b894b59 656 if (refclk == 100000)
b91ad0ec
ZW
657 limit = &intel_limits_ironlake_dual_lvds_100m;
658 else
659 limit = &intel_limits_ironlake_dual_lvds;
660 } else {
1b894b59 661 if (refclk == 100000)
b91ad0ec
ZW
662 limit = &intel_limits_ironlake_single_lvds_100m;
663 else
664 limit = &intel_limits_ironlake_single_lvds;
665 }
666 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
4547668a
ZY
667 HAS_eDP)
668 limit = &intel_limits_ironlake_display_port;
2c07245f 669 else
b91ad0ec 670 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
671
672 return limit;
673}
674
044c7c41
ML
675static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
676{
677 struct drm_device *dev = crtc->dev;
678 struct drm_i915_private *dev_priv = dev->dev_private;
679 const intel_limit_t *limit;
680
681 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
682 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
683 LVDS_CLKB_POWER_UP)
684 /* LVDS with dual channel */
e4b36699 685 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41
ML
686 else
687 /* LVDS with dual channel */
e4b36699 688 limit = &intel_limits_g4x_single_channel_lvds;
044c7c41
ML
689 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
690 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
e4b36699 691 limit = &intel_limits_g4x_hdmi;
044c7c41 692 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
e4b36699 693 limit = &intel_limits_g4x_sdvo;
a4fc5ed6 694 } else if (intel_pipe_has_type (crtc, INTEL_OUTPUT_DISPLAYPORT)) {
e4b36699 695 limit = &intel_limits_g4x_display_port;
044c7c41 696 } else /* The option is for other outputs */
e4b36699 697 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
698
699 return limit;
700}
701
1b894b59 702static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
79e53945
JB
703{
704 struct drm_device *dev = crtc->dev;
705 const intel_limit_t *limit;
706
bad720ff 707 if (HAS_PCH_SPLIT(dev))
1b894b59 708 limit = intel_ironlake_limit(crtc, refclk);
2c07245f 709 else if (IS_G4X(dev)) {
044c7c41 710 limit = intel_g4x_limit(crtc);
f2b115e6 711 } else if (IS_PINEVIEW(dev)) {
2177832f 712 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
f2b115e6 713 limit = &intel_limits_pineview_lvds;
2177832f 714 else
f2b115e6 715 limit = &intel_limits_pineview_sdvo;
a6c45cf0
CW
716 } else if (!IS_GEN2(dev)) {
717 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
718 limit = &intel_limits_i9xx_lvds;
719 else
720 limit = &intel_limits_i9xx_sdvo;
79e53945
JB
721 } else {
722 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
e4b36699 723 limit = &intel_limits_i8xx_lvds;
79e53945 724 else
e4b36699 725 limit = &intel_limits_i8xx_dvo;
79e53945
JB
726 }
727 return limit;
728}
729
f2b115e6
AJ
730/* m1 is reserved as 0 in Pineview, n is a ring counter */
731static void pineview_clock(int refclk, intel_clock_t *clock)
79e53945 732{
2177832f
SL
733 clock->m = clock->m2 + 2;
734 clock->p = clock->p1 * clock->p2;
735 clock->vco = refclk * clock->m / clock->n;
736 clock->dot = clock->vco / clock->p;
737}
738
739static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
740{
f2b115e6
AJ
741 if (IS_PINEVIEW(dev)) {
742 pineview_clock(refclk, clock);
2177832f
SL
743 return;
744 }
79e53945
JB
745 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
746 clock->p = clock->p1 * clock->p2;
747 clock->vco = refclk * clock->m / (clock->n + 2);
748 clock->dot = clock->vco / clock->p;
749}
750
79e53945
JB
751/**
752 * Returns whether any output on the specified pipe is of the specified type
753 */
4ef69c7a 754bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
79e53945 755{
4ef69c7a
CW
756 struct drm_device *dev = crtc->dev;
757 struct drm_mode_config *mode_config = &dev->mode_config;
758 struct intel_encoder *encoder;
759
760 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
761 if (encoder->base.crtc == crtc && encoder->type == type)
762 return true;
763
764 return false;
79e53945
JB
765}
766
7c04d1d9 767#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
768/**
769 * Returns whether the given set of divisors are valid for a given refclk with
770 * the given connectors.
771 */
772
1b894b59
CW
773static bool intel_PLL_is_valid(struct drm_device *dev,
774 const intel_limit_t *limit,
775 const intel_clock_t *clock)
79e53945 776{
79e53945
JB
777 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
778 INTELPllInvalid ("p1 out of range\n");
779 if (clock->p < limit->p.min || limit->p.max < clock->p)
780 INTELPllInvalid ("p out of range\n");
781 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
782 INTELPllInvalid ("m2 out of range\n");
783 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
784 INTELPllInvalid ("m1 out of range\n");
f2b115e6 785 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
79e53945
JB
786 INTELPllInvalid ("m1 <= m2\n");
787 if (clock->m < limit->m.min || limit->m.max < clock->m)
788 INTELPllInvalid ("m out of range\n");
789 if (clock->n < limit->n.min || limit->n.max < clock->n)
790 INTELPllInvalid ("n out of range\n");
791 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
792 INTELPllInvalid ("vco out of range\n");
793 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
794 * connector, etc., rather than just a single range.
795 */
796 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
797 INTELPllInvalid ("dot out of range\n");
798
799 return true;
800}
801
d4906093
ML
802static bool
803intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
804 int target, int refclk, intel_clock_t *best_clock)
805
79e53945
JB
806{
807 struct drm_device *dev = crtc->dev;
808 struct drm_i915_private *dev_priv = dev->dev_private;
809 intel_clock_t clock;
79e53945
JB
810 int err = target;
811
bc5e5718 812 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
832cc28d 813 (I915_READ(LVDS)) != 0) {
79e53945
JB
814 /*
815 * For LVDS, if the panel is on, just rely on its current
816 * settings for dual-channel. We haven't figured out how to
817 * reliably set up different single/dual channel state, if we
818 * even can.
819 */
820 if ((I915_READ(LVDS) & LVDS_CLKB_POWER_MASK) ==
821 LVDS_CLKB_POWER_UP)
822 clock.p2 = limit->p2.p2_fast;
823 else
824 clock.p2 = limit->p2.p2_slow;
825 } else {
826 if (target < limit->p2.dot_limit)
827 clock.p2 = limit->p2.p2_slow;
828 else
829 clock.p2 = limit->p2.p2_fast;
830 }
831
832 memset (best_clock, 0, sizeof (*best_clock));
833
42158660
ZY
834 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
835 clock.m1++) {
836 for (clock.m2 = limit->m2.min;
837 clock.m2 <= limit->m2.max; clock.m2++) {
f2b115e6
AJ
838 /* m1 is always 0 in Pineview */
839 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
42158660
ZY
840 break;
841 for (clock.n = limit->n.min;
842 clock.n <= limit->n.max; clock.n++) {
843 for (clock.p1 = limit->p1.min;
844 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
845 int this_err;
846
2177832f 847 intel_clock(dev, refclk, &clock);
1b894b59
CW
848 if (!intel_PLL_is_valid(dev, limit,
849 &clock))
79e53945
JB
850 continue;
851
852 this_err = abs(clock.dot - target);
853 if (this_err < err) {
854 *best_clock = clock;
855 err = this_err;
856 }
857 }
858 }
859 }
860 }
861
862 return (err != target);
863}
864
d4906093
ML
865static bool
866intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
867 int target, int refclk, intel_clock_t *best_clock)
868{
869 struct drm_device *dev = crtc->dev;
870 struct drm_i915_private *dev_priv = dev->dev_private;
871 intel_clock_t clock;
872 int max_n;
873 bool found;
6ba770dc
AJ
874 /* approximately equals target * 0.00585 */
875 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
876 found = false;
877
878 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4547668a
ZY
879 int lvds_reg;
880
c619eed4 881 if (HAS_PCH_SPLIT(dev))
4547668a
ZY
882 lvds_reg = PCH_LVDS;
883 else
884 lvds_reg = LVDS;
885 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
d4906093
ML
886 LVDS_CLKB_POWER_UP)
887 clock.p2 = limit->p2.p2_fast;
888 else
889 clock.p2 = limit->p2.p2_slow;
890 } else {
891 if (target < limit->p2.dot_limit)
892 clock.p2 = limit->p2.p2_slow;
893 else
894 clock.p2 = limit->p2.p2_fast;
895 }
896
897 memset(best_clock, 0, sizeof(*best_clock));
898 max_n = limit->n.max;
f77f13e2 899 /* based on hardware requirement, prefer smaller n to precision */
d4906093 900 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 901 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
902 for (clock.m1 = limit->m1.max;
903 clock.m1 >= limit->m1.min; clock.m1--) {
904 for (clock.m2 = limit->m2.max;
905 clock.m2 >= limit->m2.min; clock.m2--) {
906 for (clock.p1 = limit->p1.max;
907 clock.p1 >= limit->p1.min; clock.p1--) {
908 int this_err;
909
2177832f 910 intel_clock(dev, refclk, &clock);
1b894b59
CW
911 if (!intel_PLL_is_valid(dev, limit,
912 &clock))
d4906093 913 continue;
1b894b59
CW
914
915 this_err = abs(clock.dot - target);
d4906093
ML
916 if (this_err < err_most) {
917 *best_clock = clock;
918 err_most = this_err;
919 max_n = clock.n;
920 found = true;
921 }
922 }
923 }
924 }
925 }
2c07245f
ZW
926 return found;
927}
928
5eb08b69 929static bool
f2b115e6
AJ
930intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
931 int target, int refclk, intel_clock_t *best_clock)
5eb08b69
ZW
932{
933 struct drm_device *dev = crtc->dev;
934 intel_clock_t clock;
4547668a 935
5eb08b69
ZW
936 if (target < 200000) {
937 clock.n = 1;
938 clock.p1 = 2;
939 clock.p2 = 10;
940 clock.m1 = 12;
941 clock.m2 = 9;
942 } else {
943 clock.n = 2;
944 clock.p1 = 1;
945 clock.p2 = 10;
946 clock.m1 = 14;
947 clock.m2 = 8;
948 }
949 intel_clock(dev, refclk, &clock);
950 memcpy(best_clock, &clock, sizeof(intel_clock_t));
951 return true;
952}
953
a4fc5ed6
KP
954/* DisplayPort has only two frequencies, 162MHz and 270MHz */
955static bool
956intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
957 int target, int refclk, intel_clock_t *best_clock)
958{
5eddb70b
CW
959 intel_clock_t clock;
960 if (target < 200000) {
961 clock.p1 = 2;
962 clock.p2 = 10;
963 clock.n = 2;
964 clock.m1 = 23;
965 clock.m2 = 8;
966 } else {
967 clock.p1 = 1;
968 clock.p2 = 10;
969 clock.n = 1;
970 clock.m1 = 14;
971 clock.m2 = 2;
972 }
973 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
974 clock.p = (clock.p1 * clock.p2);
975 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
976 clock.vco = 0;
977 memcpy(best_clock, &clock, sizeof(intel_clock_t));
978 return true;
a4fc5ed6
KP
979}
980
9d0498a2
JB
981/**
982 * intel_wait_for_vblank - wait for vblank on a given pipe
983 * @dev: drm device
984 * @pipe: pipe to wait for
985 *
986 * Wait for vblank to occur on a given pipe. Needed for various bits of
987 * mode setting code.
988 */
989void intel_wait_for_vblank(struct drm_device *dev, int pipe)
79e53945 990{
9d0498a2
JB
991 struct drm_i915_private *dev_priv = dev->dev_private;
992 int pipestat_reg = (pipe == 0 ? PIPEASTAT : PIPEBSTAT);
993
300387c0
CW
994 /* Clear existing vblank status. Note this will clear any other
995 * sticky status fields as well.
996 *
997 * This races with i915_driver_irq_handler() with the result
998 * that either function could miss a vblank event. Here it is not
999 * fatal, as we will either wait upon the next vblank interrupt or
1000 * timeout. Generally speaking intel_wait_for_vblank() is only
1001 * called during modeset at which time the GPU should be idle and
1002 * should *not* be performing page flips and thus not waiting on
1003 * vblanks...
1004 * Currently, the result of us stealing a vblank from the irq
1005 * handler is that a single frame will be skipped during swapbuffers.
1006 */
1007 I915_WRITE(pipestat_reg,
1008 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
1009
9d0498a2 1010 /* Wait for vblank interrupt bit to set */
481b6af3
CW
1011 if (wait_for(I915_READ(pipestat_reg) &
1012 PIPE_VBLANK_INTERRUPT_STATUS,
1013 50))
9d0498a2
JB
1014 DRM_DEBUG_KMS("vblank wait timed out\n");
1015}
1016
ab7ad7f6
KP
1017/*
1018 * intel_wait_for_pipe_off - wait for pipe to turn off
9d0498a2
JB
1019 * @dev: drm device
1020 * @pipe: pipe to wait for
1021 *
1022 * After disabling a pipe, we can't wait for vblank in the usual way,
1023 * spinning on the vblank interrupt status bit, since we won't actually
1024 * see an interrupt when the pipe is disabled.
1025 *
ab7ad7f6
KP
1026 * On Gen4 and above:
1027 * wait for the pipe register state bit to turn off
1028 *
1029 * Otherwise:
1030 * wait for the display line value to settle (it usually
1031 * ends up stopping at the start of the next frame).
58e10eb9 1032 *
9d0498a2 1033 */
58e10eb9 1034void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
9d0498a2
JB
1035{
1036 struct drm_i915_private *dev_priv = dev->dev_private;
ab7ad7f6
KP
1037
1038 if (INTEL_INFO(dev)->gen >= 4) {
58e10eb9 1039 int reg = PIPECONF(pipe);
ab7ad7f6
KP
1040
1041 /* Wait for the Pipe State to go off */
58e10eb9
CW
1042 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1043 100))
ab7ad7f6
KP
1044 DRM_DEBUG_KMS("pipe_off wait timed out\n");
1045 } else {
1046 u32 last_line;
58e10eb9 1047 int reg = PIPEDSL(pipe);
ab7ad7f6
KP
1048 unsigned long timeout = jiffies + msecs_to_jiffies(100);
1049
1050 /* Wait for the display line to settle */
1051 do {
58e10eb9 1052 last_line = I915_READ(reg) & DSL_LINEMASK;
ab7ad7f6 1053 mdelay(5);
58e10eb9 1054 } while (((I915_READ(reg) & DSL_LINEMASK) != last_line) &&
ab7ad7f6
KP
1055 time_after(timeout, jiffies));
1056 if (time_after(jiffies, timeout))
1057 DRM_DEBUG_KMS("pipe_off wait timed out\n");
1058 }
79e53945
JB
1059}
1060
80824003
JB
1061static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1062{
1063 struct drm_device *dev = crtc->dev;
1064 struct drm_i915_private *dev_priv = dev->dev_private;
1065 struct drm_framebuffer *fb = crtc->fb;
1066 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 1067 struct drm_i915_gem_object *obj = intel_fb->obj;
80824003
JB
1068 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1069 int plane, i;
1070 u32 fbc_ctl, fbc_ctl2;
1071
bed4a673 1072 if (fb->pitch == dev_priv->cfb_pitch &&
05394f39 1073 obj->fence_reg == dev_priv->cfb_fence &&
bed4a673
CW
1074 intel_crtc->plane == dev_priv->cfb_plane &&
1075 I915_READ(FBC_CONTROL) & FBC_CTL_EN)
1076 return;
1077
1078 i8xx_disable_fbc(dev);
1079
80824003
JB
1080 dev_priv->cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
1081
1082 if (fb->pitch < dev_priv->cfb_pitch)
1083 dev_priv->cfb_pitch = fb->pitch;
1084
1085 /* FBC_CTL wants 64B units */
1086 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
05394f39 1087 dev_priv->cfb_fence = obj->fence_reg;
80824003
JB
1088 dev_priv->cfb_plane = intel_crtc->plane;
1089 plane = dev_priv->cfb_plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
1090
1091 /* Clear old tags */
1092 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
1093 I915_WRITE(FBC_TAG + (i * 4), 0);
1094
1095 /* Set it up... */
1096 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | plane;
05394f39 1097 if (obj->tiling_mode != I915_TILING_NONE)
80824003
JB
1098 fbc_ctl2 |= FBC_CTL_CPU_FENCE;
1099 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
1100 I915_WRITE(FBC_FENCE_OFF, crtc->y);
1101
1102 /* enable it... */
1103 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
ee25df2b 1104 if (IS_I945GM(dev))
49677901 1105 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
80824003
JB
1106 fbc_ctl |= (dev_priv->cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
1107 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
05394f39 1108 if (obj->tiling_mode != I915_TILING_NONE)
80824003
JB
1109 fbc_ctl |= dev_priv->cfb_fence;
1110 I915_WRITE(FBC_CONTROL, fbc_ctl);
1111
28c97730 1112 DRM_DEBUG_KMS("enabled FBC, pitch %ld, yoff %d, plane %d, ",
5eddb70b 1113 dev_priv->cfb_pitch, crtc->y, dev_priv->cfb_plane);
80824003
JB
1114}
1115
1116void i8xx_disable_fbc(struct drm_device *dev)
1117{
1118 struct drm_i915_private *dev_priv = dev->dev_private;
1119 u32 fbc_ctl;
1120
1121 /* Disable compression */
1122 fbc_ctl = I915_READ(FBC_CONTROL);
a5cad620
CW
1123 if ((fbc_ctl & FBC_CTL_EN) == 0)
1124 return;
1125
80824003
JB
1126 fbc_ctl &= ~FBC_CTL_EN;
1127 I915_WRITE(FBC_CONTROL, fbc_ctl);
1128
1129 /* Wait for compressing bit to clear */
481b6af3 1130 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
913d8d11
CW
1131 DRM_DEBUG_KMS("FBC idle timed out\n");
1132 return;
9517a92f 1133 }
80824003 1134
28c97730 1135 DRM_DEBUG_KMS("disabled FBC\n");
80824003
JB
1136}
1137
ee5382ae 1138static bool i8xx_fbc_enabled(struct drm_device *dev)
80824003 1139{
80824003
JB
1140 struct drm_i915_private *dev_priv = dev->dev_private;
1141
1142 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
1143}
1144
74dff282
JB
1145static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1146{
1147 struct drm_device *dev = crtc->dev;
1148 struct drm_i915_private *dev_priv = dev->dev_private;
1149 struct drm_framebuffer *fb = crtc->fb;
1150 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 1151 struct drm_i915_gem_object *obj = intel_fb->obj;
74dff282 1152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5eddb70b 1153 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
74dff282
JB
1154 unsigned long stall_watermark = 200;
1155 u32 dpfc_ctl;
1156
bed4a673
CW
1157 dpfc_ctl = I915_READ(DPFC_CONTROL);
1158 if (dpfc_ctl & DPFC_CTL_EN) {
1159 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
05394f39 1160 dev_priv->cfb_fence == obj->fence_reg &&
bed4a673
CW
1161 dev_priv->cfb_plane == intel_crtc->plane &&
1162 dev_priv->cfb_y == crtc->y)
1163 return;
1164
1165 I915_WRITE(DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1166 POSTING_READ(DPFC_CONTROL);
1167 intel_wait_for_vblank(dev, intel_crtc->pipe);
1168 }
1169
74dff282 1170 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
05394f39 1171 dev_priv->cfb_fence = obj->fence_reg;
74dff282 1172 dev_priv->cfb_plane = intel_crtc->plane;
bed4a673 1173 dev_priv->cfb_y = crtc->y;
74dff282
JB
1174
1175 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
05394f39 1176 if (obj->tiling_mode != I915_TILING_NONE) {
74dff282
JB
1177 dpfc_ctl |= DPFC_CTL_FENCE_EN | dev_priv->cfb_fence;
1178 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
1179 } else {
1180 I915_WRITE(DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1181 }
1182
74dff282
JB
1183 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1184 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1185 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1186 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
1187
1188 /* enable it... */
1189 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
1190
28c97730 1191 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
74dff282
JB
1192}
1193
1194void g4x_disable_fbc(struct drm_device *dev)
1195{
1196 struct drm_i915_private *dev_priv = dev->dev_private;
1197 u32 dpfc_ctl;
1198
1199 /* Disable compression */
1200 dpfc_ctl = I915_READ(DPFC_CONTROL);
bed4a673
CW
1201 if (dpfc_ctl & DPFC_CTL_EN) {
1202 dpfc_ctl &= ~DPFC_CTL_EN;
1203 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
74dff282 1204
bed4a673
CW
1205 DRM_DEBUG_KMS("disabled FBC\n");
1206 }
74dff282
JB
1207}
1208
ee5382ae 1209static bool g4x_fbc_enabled(struct drm_device *dev)
74dff282 1210{
74dff282
JB
1211 struct drm_i915_private *dev_priv = dev->dev_private;
1212
1213 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
1214}
1215
4efe0708
JB
1216static void sandybridge_blit_fbc_update(struct drm_device *dev)
1217{
1218 struct drm_i915_private *dev_priv = dev->dev_private;
1219 u32 blt_ecoskpd;
1220
1221 /* Make sure blitter notifies FBC of writes */
1222 __gen6_force_wake_get(dev_priv);
1223 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
1224 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
1225 GEN6_BLITTER_LOCK_SHIFT;
1226 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1227 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
1228 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1229 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
1230 GEN6_BLITTER_LOCK_SHIFT);
1231 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
1232 POSTING_READ(GEN6_BLITTER_ECOSKPD);
1233 __gen6_force_wake_put(dev_priv);
1234}
1235
b52eb4dc
ZY
1236static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1237{
1238 struct drm_device *dev = crtc->dev;
1239 struct drm_i915_private *dev_priv = dev->dev_private;
1240 struct drm_framebuffer *fb = crtc->fb;
1241 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 1242 struct drm_i915_gem_object *obj = intel_fb->obj;
b52eb4dc 1243 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5eddb70b 1244 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
b52eb4dc
ZY
1245 unsigned long stall_watermark = 200;
1246 u32 dpfc_ctl;
1247
bed4a673
CW
1248 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
1249 if (dpfc_ctl & DPFC_CTL_EN) {
1250 if (dev_priv->cfb_pitch == dev_priv->cfb_pitch / 64 - 1 &&
05394f39 1251 dev_priv->cfb_fence == obj->fence_reg &&
bed4a673 1252 dev_priv->cfb_plane == intel_crtc->plane &&
05394f39 1253 dev_priv->cfb_offset == obj->gtt_offset &&
bed4a673
CW
1254 dev_priv->cfb_y == crtc->y)
1255 return;
1256
1257 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl & ~DPFC_CTL_EN);
1258 POSTING_READ(ILK_DPFC_CONTROL);
1259 intel_wait_for_vblank(dev, intel_crtc->pipe);
1260 }
1261
b52eb4dc 1262 dev_priv->cfb_pitch = (dev_priv->cfb_pitch / 64) - 1;
05394f39 1263 dev_priv->cfb_fence = obj->fence_reg;
b52eb4dc 1264 dev_priv->cfb_plane = intel_crtc->plane;
05394f39 1265 dev_priv->cfb_offset = obj->gtt_offset;
bed4a673 1266 dev_priv->cfb_y = crtc->y;
b52eb4dc 1267
b52eb4dc
ZY
1268 dpfc_ctl &= DPFC_RESERVED;
1269 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
05394f39 1270 if (obj->tiling_mode != I915_TILING_NONE) {
b52eb4dc
ZY
1271 dpfc_ctl |= (DPFC_CTL_FENCE_EN | dev_priv->cfb_fence);
1272 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
1273 } else {
1274 I915_WRITE(ILK_DPFC_CHICKEN, ~DPFC_HT_MODIFY);
1275 }
1276
b52eb4dc
ZY
1277 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
1278 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
1279 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
1280 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
05394f39 1281 I915_WRITE(ILK_FBC_RT_BASE, obj->gtt_offset | ILK_FBC_RT_VALID);
b52eb4dc 1282 /* enable it... */
bed4a673 1283 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
b52eb4dc 1284
9c04f015
YL
1285 if (IS_GEN6(dev)) {
1286 I915_WRITE(SNB_DPFC_CTL_SA,
1287 SNB_CPU_FENCE_ENABLE | dev_priv->cfb_fence);
1288 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
4efe0708 1289 sandybridge_blit_fbc_update(dev);
9c04f015
YL
1290 }
1291
b52eb4dc
ZY
1292 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
1293}
1294
1295void ironlake_disable_fbc(struct drm_device *dev)
1296{
1297 struct drm_i915_private *dev_priv = dev->dev_private;
1298 u32 dpfc_ctl;
1299
1300 /* Disable compression */
1301 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
bed4a673
CW
1302 if (dpfc_ctl & DPFC_CTL_EN) {
1303 dpfc_ctl &= ~DPFC_CTL_EN;
1304 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
b52eb4dc 1305
bed4a673
CW
1306 DRM_DEBUG_KMS("disabled FBC\n");
1307 }
b52eb4dc
ZY
1308}
1309
1310static bool ironlake_fbc_enabled(struct drm_device *dev)
1311{
1312 struct drm_i915_private *dev_priv = dev->dev_private;
1313
1314 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
1315}
1316
ee5382ae
AJ
1317bool intel_fbc_enabled(struct drm_device *dev)
1318{
1319 struct drm_i915_private *dev_priv = dev->dev_private;
1320
1321 if (!dev_priv->display.fbc_enabled)
1322 return false;
1323
1324 return dev_priv->display.fbc_enabled(dev);
1325}
1326
1327void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
1328{
1329 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1330
1331 if (!dev_priv->display.enable_fbc)
1332 return;
1333
1334 dev_priv->display.enable_fbc(crtc, interval);
1335}
1336
1337void intel_disable_fbc(struct drm_device *dev)
1338{
1339 struct drm_i915_private *dev_priv = dev->dev_private;
1340
1341 if (!dev_priv->display.disable_fbc)
1342 return;
1343
1344 dev_priv->display.disable_fbc(dev);
1345}
1346
80824003
JB
1347/**
1348 * intel_update_fbc - enable/disable FBC as needed
bed4a673 1349 * @dev: the drm_device
80824003
JB
1350 *
1351 * Set up the framebuffer compression hardware at mode set time. We
1352 * enable it if possible:
1353 * - plane A only (on pre-965)
1354 * - no pixel mulitply/line duplication
1355 * - no alpha buffer discard
1356 * - no dual wide
1357 * - framebuffer <= 2048 in width, 1536 in height
1358 *
1359 * We can't assume that any compression will take place (worst case),
1360 * so the compressed buffer has to be the same size as the uncompressed
1361 * one. It also must reside (along with the line length buffer) in
1362 * stolen memory.
1363 *
1364 * We need to enable/disable FBC on a global basis.
1365 */
bed4a673 1366static void intel_update_fbc(struct drm_device *dev)
80824003 1367{
80824003 1368 struct drm_i915_private *dev_priv = dev->dev_private;
bed4a673
CW
1369 struct drm_crtc *crtc = NULL, *tmp_crtc;
1370 struct intel_crtc *intel_crtc;
1371 struct drm_framebuffer *fb;
80824003 1372 struct intel_framebuffer *intel_fb;
05394f39 1373 struct drm_i915_gem_object *obj;
9c928d16
JB
1374
1375 DRM_DEBUG_KMS("\n");
80824003
JB
1376
1377 if (!i915_powersave)
1378 return;
1379
ee5382ae 1380 if (!I915_HAS_FBC(dev))
e70236a8
JB
1381 return;
1382
80824003
JB
1383 /*
1384 * If FBC is already on, we just have to verify that we can
1385 * keep it that way...
1386 * Need to disable if:
9c928d16 1387 * - more than one pipe is active
80824003
JB
1388 * - changing FBC params (stride, fence, mode)
1389 * - new fb is too large to fit in compressed buffer
1390 * - going to an unsupported config (interlace, pixel multiply, etc.)
1391 */
9c928d16 1392 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
bed4a673
CW
1393 if (tmp_crtc->enabled) {
1394 if (crtc) {
1395 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
1396 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
1397 goto out_disable;
1398 }
1399 crtc = tmp_crtc;
1400 }
9c928d16 1401 }
bed4a673
CW
1402
1403 if (!crtc || crtc->fb == NULL) {
1404 DRM_DEBUG_KMS("no output, disabling\n");
1405 dev_priv->no_fbc_reason = FBC_NO_OUTPUT;
9c928d16
JB
1406 goto out_disable;
1407 }
bed4a673
CW
1408
1409 intel_crtc = to_intel_crtc(crtc);
1410 fb = crtc->fb;
1411 intel_fb = to_intel_framebuffer(fb);
05394f39 1412 obj = intel_fb->obj;
bed4a673 1413
05394f39 1414 if (intel_fb->obj->base.size > dev_priv->cfb_size) {
28c97730 1415 DRM_DEBUG_KMS("framebuffer too large, disabling "
5eddb70b 1416 "compression\n");
b5e50c3f 1417 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
80824003
JB
1418 goto out_disable;
1419 }
bed4a673
CW
1420 if ((crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) ||
1421 (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN)) {
28c97730 1422 DRM_DEBUG_KMS("mode incompatible with compression, "
5eddb70b 1423 "disabling\n");
b5e50c3f 1424 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
80824003
JB
1425 goto out_disable;
1426 }
bed4a673
CW
1427 if ((crtc->mode.hdisplay > 2048) ||
1428 (crtc->mode.vdisplay > 1536)) {
28c97730 1429 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
b5e50c3f 1430 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
80824003
JB
1431 goto out_disable;
1432 }
bed4a673 1433 if ((IS_I915GM(dev) || IS_I945GM(dev)) && intel_crtc->plane != 0) {
28c97730 1434 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
b5e50c3f 1435 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
80824003
JB
1436 goto out_disable;
1437 }
05394f39 1438 if (obj->tiling_mode != I915_TILING_X) {
28c97730 1439 DRM_DEBUG_KMS("framebuffer not tiled, disabling compression\n");
b5e50c3f 1440 dev_priv->no_fbc_reason = FBC_NOT_TILED;
80824003
JB
1441 goto out_disable;
1442 }
1443
c924b934
JW
1444 /* If the kernel debugger is active, always disable compression */
1445 if (in_dbg_master())
1446 goto out_disable;
1447
bed4a673 1448 intel_enable_fbc(crtc, 500);
80824003
JB
1449 return;
1450
1451out_disable:
80824003 1452 /* Multiple disables should be harmless */
a939406f
CW
1453 if (intel_fbc_enabled(dev)) {
1454 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
ee5382ae 1455 intel_disable_fbc(dev);
a939406f 1456 }
80824003
JB
1457}
1458
127bd2ac 1459int
48b956c5 1460intel_pin_and_fence_fb_obj(struct drm_device *dev,
05394f39 1461 struct drm_i915_gem_object *obj,
919926ae 1462 struct intel_ring_buffer *pipelined)
6b95a207 1463{
6b95a207
KH
1464 u32 alignment;
1465 int ret;
1466
05394f39 1467 switch (obj->tiling_mode) {
6b95a207 1468 case I915_TILING_NONE:
534843da
CW
1469 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1470 alignment = 128 * 1024;
a6c45cf0 1471 else if (INTEL_INFO(dev)->gen >= 4)
534843da
CW
1472 alignment = 4 * 1024;
1473 else
1474 alignment = 64 * 1024;
6b95a207
KH
1475 break;
1476 case I915_TILING_X:
1477 /* pin() will align the object as required by fence */
1478 alignment = 0;
1479 break;
1480 case I915_TILING_Y:
1481 /* FIXME: Is this true? */
1482 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1483 return -EINVAL;
1484 default:
1485 BUG();
1486 }
1487
75e9e915 1488 ret = i915_gem_object_pin(obj, alignment, true);
48b956c5 1489 if (ret)
6b95a207
KH
1490 return ret;
1491
48b956c5
CW
1492 ret = i915_gem_object_set_to_display_plane(obj, pipelined);
1493 if (ret)
1494 goto err_unpin;
7213342d 1495
6b95a207
KH
1496 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1497 * fence, whereas 965+ only requires a fence if using
1498 * framebuffer compression. For simplicity, we always install
1499 * a fence as the cost is not that onerous.
1500 */
05394f39 1501 if (obj->tiling_mode != I915_TILING_NONE) {
d9e86c0e 1502 ret = i915_gem_object_get_fence(obj, pipelined, false);
48b956c5
CW
1503 if (ret)
1504 goto err_unpin;
6b95a207
KH
1505 }
1506
1507 return 0;
48b956c5
CW
1508
1509err_unpin:
1510 i915_gem_object_unpin(obj);
1511 return ret;
6b95a207
KH
1512}
1513
81255565
JB
1514/* Assume fb object is pinned & idle & fenced and just update base pointers */
1515static int
1516intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
21c74a8e 1517 int x, int y, enum mode_set_atomic state)
81255565
JB
1518{
1519 struct drm_device *dev = crtc->dev;
1520 struct drm_i915_private *dev_priv = dev->dev_private;
1521 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1522 struct intel_framebuffer *intel_fb;
05394f39 1523 struct drm_i915_gem_object *obj;
81255565
JB
1524 int plane = intel_crtc->plane;
1525 unsigned long Start, Offset;
81255565 1526 u32 dspcntr;
5eddb70b 1527 u32 reg;
81255565
JB
1528
1529 switch (plane) {
1530 case 0:
1531 case 1:
1532 break;
1533 default:
1534 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1535 return -EINVAL;
1536 }
1537
1538 intel_fb = to_intel_framebuffer(fb);
1539 obj = intel_fb->obj;
81255565 1540
5eddb70b
CW
1541 reg = DSPCNTR(plane);
1542 dspcntr = I915_READ(reg);
81255565
JB
1543 /* Mask out pixel format bits in case we change it */
1544 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1545 switch (fb->bits_per_pixel) {
1546 case 8:
1547 dspcntr |= DISPPLANE_8BPP;
1548 break;
1549 case 16:
1550 if (fb->depth == 15)
1551 dspcntr |= DISPPLANE_15_16BPP;
1552 else
1553 dspcntr |= DISPPLANE_16BPP;
1554 break;
1555 case 24:
1556 case 32:
1557 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1558 break;
1559 default:
1560 DRM_ERROR("Unknown color depth\n");
1561 return -EINVAL;
1562 }
a6c45cf0 1563 if (INTEL_INFO(dev)->gen >= 4) {
05394f39 1564 if (obj->tiling_mode != I915_TILING_NONE)
81255565
JB
1565 dspcntr |= DISPPLANE_TILED;
1566 else
1567 dspcntr &= ~DISPPLANE_TILED;
1568 }
1569
4e6cfefc 1570 if (HAS_PCH_SPLIT(dev))
81255565
JB
1571 /* must disable */
1572 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1573
5eddb70b 1574 I915_WRITE(reg, dspcntr);
81255565 1575
05394f39 1576 Start = obj->gtt_offset;
81255565
JB
1577 Offset = y * fb->pitch + x * (fb->bits_per_pixel / 8);
1578
4e6cfefc
CW
1579 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
1580 Start, Offset, x, y, fb->pitch);
5eddb70b 1581 I915_WRITE(DSPSTRIDE(plane), fb->pitch);
a6c45cf0 1582 if (INTEL_INFO(dev)->gen >= 4) {
5eddb70b
CW
1583 I915_WRITE(DSPSURF(plane), Start);
1584 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1585 I915_WRITE(DSPADDR(plane), Offset);
1586 } else
1587 I915_WRITE(DSPADDR(plane), Start + Offset);
1588 POSTING_READ(reg);
81255565 1589
bed4a673 1590 intel_update_fbc(dev);
3dec0095 1591 intel_increase_pllclock(crtc);
81255565
JB
1592
1593 return 0;
1594}
1595
5c3b82e2 1596static int
3c4fdcfb
KH
1597intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1598 struct drm_framebuffer *old_fb)
79e53945
JB
1599{
1600 struct drm_device *dev = crtc->dev;
79e53945
JB
1601 struct drm_i915_master_private *master_priv;
1602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5c3b82e2 1603 int ret;
79e53945
JB
1604
1605 /* no fb bound */
1606 if (!crtc->fb) {
28c97730 1607 DRM_DEBUG_KMS("No FB bound\n");
5c3b82e2
CW
1608 return 0;
1609 }
1610
265db958 1611 switch (intel_crtc->plane) {
5c3b82e2
CW
1612 case 0:
1613 case 1:
1614 break;
1615 default:
5c3b82e2 1616 return -EINVAL;
79e53945
JB
1617 }
1618
5c3b82e2 1619 mutex_lock(&dev->struct_mutex);
265db958
CW
1620 ret = intel_pin_and_fence_fb_obj(dev,
1621 to_intel_framebuffer(crtc->fb)->obj,
919926ae 1622 NULL);
5c3b82e2
CW
1623 if (ret != 0) {
1624 mutex_unlock(&dev->struct_mutex);
1625 return ret;
1626 }
79e53945 1627
265db958 1628 if (old_fb) {
e6c3a2a6 1629 struct drm_i915_private *dev_priv = dev->dev_private;
05394f39 1630 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
265db958 1631
e6c3a2a6 1632 wait_event(dev_priv->pending_flip_queue,
86b27d80 1633 atomic_read(&dev_priv->mm.wedged) ||
05394f39 1634 atomic_read(&obj->pending_flip) == 0);
85345517
CW
1635
1636 /* Big Hammer, we also need to ensure that any pending
1637 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
1638 * current scanout is retired before unpinning the old
1639 * framebuffer.
86b27d80
CW
1640 *
1641 * This should only fail upon a hung GPU, in which case we
1642 * can safely continue.
85345517 1643 */
05394f39 1644 ret = i915_gem_object_flush_gpu(obj, false);
86b27d80 1645 (void) ret;
265db958
CW
1646 }
1647
21c74a8e
JW
1648 ret = intel_pipe_set_base_atomic(crtc, crtc->fb, x, y,
1649 LEAVE_ATOMIC_MODE_SET);
4e6cfefc 1650 if (ret) {
265db958 1651 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
5c3b82e2 1652 mutex_unlock(&dev->struct_mutex);
4e6cfefc 1653 return ret;
79e53945 1654 }
3c4fdcfb 1655
b7f1de28
CW
1656 if (old_fb) {
1657 intel_wait_for_vblank(dev, intel_crtc->pipe);
265db958 1658 i915_gem_object_unpin(to_intel_framebuffer(old_fb)->obj);
b7f1de28 1659 }
652c393a 1660
5c3b82e2 1661 mutex_unlock(&dev->struct_mutex);
79e53945
JB
1662
1663 if (!dev->primary->master)
5c3b82e2 1664 return 0;
79e53945
JB
1665
1666 master_priv = dev->primary->master->driver_priv;
1667 if (!master_priv->sarea_priv)
5c3b82e2 1668 return 0;
79e53945 1669
265db958 1670 if (intel_crtc->pipe) {
79e53945
JB
1671 master_priv->sarea_priv->pipeB_x = x;
1672 master_priv->sarea_priv->pipeB_y = y;
5c3b82e2
CW
1673 } else {
1674 master_priv->sarea_priv->pipeA_x = x;
1675 master_priv->sarea_priv->pipeA_y = y;
79e53945 1676 }
5c3b82e2
CW
1677
1678 return 0;
79e53945
JB
1679}
1680
5eddb70b 1681static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
32f9d658
ZW
1682{
1683 struct drm_device *dev = crtc->dev;
1684 struct drm_i915_private *dev_priv = dev->dev_private;
1685 u32 dpa_ctl;
1686
28c97730 1687 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
32f9d658
ZW
1688 dpa_ctl = I915_READ(DP_A);
1689 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1690
1691 if (clock < 200000) {
1692 u32 temp;
1693 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1694 /* workaround for 160Mhz:
1695 1) program 0x4600c bits 15:0 = 0x8124
1696 2) program 0x46010 bit 0 = 1
1697 3) program 0x46034 bit 24 = 1
1698 4) program 0x64000 bit 14 = 1
1699 */
1700 temp = I915_READ(0x4600c);
1701 temp &= 0xffff0000;
1702 I915_WRITE(0x4600c, temp | 0x8124);
1703
1704 temp = I915_READ(0x46010);
1705 I915_WRITE(0x46010, temp | 1);
1706
1707 temp = I915_READ(0x46034);
1708 I915_WRITE(0x46034, temp | (1 << 24));
1709 } else {
1710 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1711 }
1712 I915_WRITE(DP_A, dpa_ctl);
1713
5eddb70b 1714 POSTING_READ(DP_A);
32f9d658
ZW
1715 udelay(500);
1716}
1717
5e84e1a4
ZW
1718static void intel_fdi_normal_train(struct drm_crtc *crtc)
1719{
1720 struct drm_device *dev = crtc->dev;
1721 struct drm_i915_private *dev_priv = dev->dev_private;
1722 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1723 int pipe = intel_crtc->pipe;
1724 u32 reg, temp;
1725
1726 /* enable normal train */
1727 reg = FDI_TX_CTL(pipe);
1728 temp = I915_READ(reg);
1729 temp &= ~FDI_LINK_TRAIN_NONE;
1730 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
1731 I915_WRITE(reg, temp);
1732
1733 reg = FDI_RX_CTL(pipe);
1734 temp = I915_READ(reg);
1735 if (HAS_PCH_CPT(dev)) {
1736 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1737 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
1738 } else {
1739 temp &= ~FDI_LINK_TRAIN_NONE;
1740 temp |= FDI_LINK_TRAIN_NONE;
1741 }
1742 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
1743
1744 /* wait one idle pattern time */
1745 POSTING_READ(reg);
1746 udelay(1000);
1747}
1748
8db9d77b
ZW
1749/* The FDI link training functions for ILK/Ibexpeak. */
1750static void ironlake_fdi_link_train(struct drm_crtc *crtc)
1751{
1752 struct drm_device *dev = crtc->dev;
1753 struct drm_i915_private *dev_priv = dev->dev_private;
1754 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1755 int pipe = intel_crtc->pipe;
5eddb70b 1756 u32 reg, temp, tries;
8db9d77b 1757
e1a44743
AJ
1758 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1759 for train result */
5eddb70b
CW
1760 reg = FDI_RX_IMR(pipe);
1761 temp = I915_READ(reg);
e1a44743
AJ
1762 temp &= ~FDI_RX_SYMBOL_LOCK;
1763 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
1764 I915_WRITE(reg, temp);
1765 I915_READ(reg);
e1a44743
AJ
1766 udelay(150);
1767
8db9d77b 1768 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
1769 reg = FDI_TX_CTL(pipe);
1770 temp = I915_READ(reg);
77ffb597
AJ
1771 temp &= ~(7 << 19);
1772 temp |= (intel_crtc->fdi_lanes - 1) << 19;
8db9d77b
ZW
1773 temp &= ~FDI_LINK_TRAIN_NONE;
1774 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 1775 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 1776
5eddb70b
CW
1777 reg = FDI_RX_CTL(pipe);
1778 temp = I915_READ(reg);
8db9d77b
ZW
1779 temp &= ~FDI_LINK_TRAIN_NONE;
1780 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
1781 I915_WRITE(reg, temp | FDI_RX_ENABLE);
1782
1783 POSTING_READ(reg);
8db9d77b
ZW
1784 udelay(150);
1785
5b2adf89
JB
1786 /* Ironlake workaround, enable clock pointer after FDI enable*/
1787 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_ENABLE);
1788
5eddb70b 1789 reg = FDI_RX_IIR(pipe);
e1a44743 1790 for (tries = 0; tries < 5; tries++) {
5eddb70b 1791 temp = I915_READ(reg);
8db9d77b
ZW
1792 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1793
1794 if ((temp & FDI_RX_BIT_LOCK)) {
1795 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 1796 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
1797 break;
1798 }
8db9d77b 1799 }
e1a44743 1800 if (tries == 5)
5eddb70b 1801 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
1802
1803 /* Train 2 */
5eddb70b
CW
1804 reg = FDI_TX_CTL(pipe);
1805 temp = I915_READ(reg);
8db9d77b
ZW
1806 temp &= ~FDI_LINK_TRAIN_NONE;
1807 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 1808 I915_WRITE(reg, temp);
8db9d77b 1809
5eddb70b
CW
1810 reg = FDI_RX_CTL(pipe);
1811 temp = I915_READ(reg);
8db9d77b
ZW
1812 temp &= ~FDI_LINK_TRAIN_NONE;
1813 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 1814 I915_WRITE(reg, temp);
8db9d77b 1815
5eddb70b
CW
1816 POSTING_READ(reg);
1817 udelay(150);
8db9d77b 1818
5eddb70b 1819 reg = FDI_RX_IIR(pipe);
e1a44743 1820 for (tries = 0; tries < 5; tries++) {
5eddb70b 1821 temp = I915_READ(reg);
8db9d77b
ZW
1822 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1823
1824 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 1825 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
1826 DRM_DEBUG_KMS("FDI train 2 done.\n");
1827 break;
1828 }
8db9d77b 1829 }
e1a44743 1830 if (tries == 5)
5eddb70b 1831 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
1832
1833 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 1834
8db9d77b
ZW
1835}
1836
5eddb70b 1837static const int const snb_b_fdi_train_param [] = {
8db9d77b
ZW
1838 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
1839 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
1840 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
1841 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
1842};
1843
1844/* The FDI link training functions for SNB/Cougarpoint. */
1845static void gen6_fdi_link_train(struct drm_crtc *crtc)
1846{
1847 struct drm_device *dev = crtc->dev;
1848 struct drm_i915_private *dev_priv = dev->dev_private;
1849 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1850 int pipe = intel_crtc->pipe;
5eddb70b 1851 u32 reg, temp, i;
8db9d77b 1852
e1a44743
AJ
1853 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
1854 for train result */
5eddb70b
CW
1855 reg = FDI_RX_IMR(pipe);
1856 temp = I915_READ(reg);
e1a44743
AJ
1857 temp &= ~FDI_RX_SYMBOL_LOCK;
1858 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
1859 I915_WRITE(reg, temp);
1860
1861 POSTING_READ(reg);
e1a44743
AJ
1862 udelay(150);
1863
8db9d77b 1864 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
1865 reg = FDI_TX_CTL(pipe);
1866 temp = I915_READ(reg);
77ffb597
AJ
1867 temp &= ~(7 << 19);
1868 temp |= (intel_crtc->fdi_lanes - 1) << 19;
8db9d77b
ZW
1869 temp &= ~FDI_LINK_TRAIN_NONE;
1870 temp |= FDI_LINK_TRAIN_PATTERN_1;
1871 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1872 /* SNB-B */
1873 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 1874 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 1875
5eddb70b
CW
1876 reg = FDI_RX_CTL(pipe);
1877 temp = I915_READ(reg);
8db9d77b
ZW
1878 if (HAS_PCH_CPT(dev)) {
1879 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1880 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
1881 } else {
1882 temp &= ~FDI_LINK_TRAIN_NONE;
1883 temp |= FDI_LINK_TRAIN_PATTERN_1;
1884 }
5eddb70b
CW
1885 I915_WRITE(reg, temp | FDI_RX_ENABLE);
1886
1887 POSTING_READ(reg);
8db9d77b
ZW
1888 udelay(150);
1889
8db9d77b 1890 for (i = 0; i < 4; i++ ) {
5eddb70b
CW
1891 reg = FDI_TX_CTL(pipe);
1892 temp = I915_READ(reg);
8db9d77b
ZW
1893 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1894 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
1895 I915_WRITE(reg, temp);
1896
1897 POSTING_READ(reg);
8db9d77b
ZW
1898 udelay(500);
1899
5eddb70b
CW
1900 reg = FDI_RX_IIR(pipe);
1901 temp = I915_READ(reg);
8db9d77b
ZW
1902 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1903
1904 if (temp & FDI_RX_BIT_LOCK) {
5eddb70b 1905 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
1906 DRM_DEBUG_KMS("FDI train 1 done.\n");
1907 break;
1908 }
1909 }
1910 if (i == 4)
5eddb70b 1911 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
1912
1913 /* Train 2 */
5eddb70b
CW
1914 reg = FDI_TX_CTL(pipe);
1915 temp = I915_READ(reg);
8db9d77b
ZW
1916 temp &= ~FDI_LINK_TRAIN_NONE;
1917 temp |= FDI_LINK_TRAIN_PATTERN_2;
1918 if (IS_GEN6(dev)) {
1919 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1920 /* SNB-B */
1921 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
1922 }
5eddb70b 1923 I915_WRITE(reg, temp);
8db9d77b 1924
5eddb70b
CW
1925 reg = FDI_RX_CTL(pipe);
1926 temp = I915_READ(reg);
8db9d77b
ZW
1927 if (HAS_PCH_CPT(dev)) {
1928 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
1929 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
1930 } else {
1931 temp &= ~FDI_LINK_TRAIN_NONE;
1932 temp |= FDI_LINK_TRAIN_PATTERN_2;
1933 }
5eddb70b
CW
1934 I915_WRITE(reg, temp);
1935
1936 POSTING_READ(reg);
8db9d77b
ZW
1937 udelay(150);
1938
1939 for (i = 0; i < 4; i++ ) {
5eddb70b
CW
1940 reg = FDI_TX_CTL(pipe);
1941 temp = I915_READ(reg);
8db9d77b
ZW
1942 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
1943 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
1944 I915_WRITE(reg, temp);
1945
1946 POSTING_READ(reg);
8db9d77b
ZW
1947 udelay(500);
1948
5eddb70b
CW
1949 reg = FDI_RX_IIR(pipe);
1950 temp = I915_READ(reg);
8db9d77b
ZW
1951 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
1952
1953 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 1954 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
1955 DRM_DEBUG_KMS("FDI train 2 done.\n");
1956 break;
1957 }
1958 }
1959 if (i == 4)
5eddb70b 1960 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
1961
1962 DRM_DEBUG_KMS("FDI train done.\n");
1963}
1964
0e23b99d 1965static void ironlake_fdi_enable(struct drm_crtc *crtc)
2c07245f
ZW
1966{
1967 struct drm_device *dev = crtc->dev;
1968 struct drm_i915_private *dev_priv = dev->dev_private;
1969 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1970 int pipe = intel_crtc->pipe;
5eddb70b 1971 u32 reg, temp;
79e53945 1972
c64e311e 1973 /* Write the TU size bits so error detection works */
5eddb70b
CW
1974 I915_WRITE(FDI_RX_TUSIZE1(pipe),
1975 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
c64e311e 1976
c98e9dcf 1977 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
1978 reg = FDI_RX_CTL(pipe);
1979 temp = I915_READ(reg);
1980 temp &= ~((0x7 << 19) | (0x7 << 16));
c98e9dcf 1981 temp |= (intel_crtc->fdi_lanes - 1) << 19;
5eddb70b
CW
1982 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
1983 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
1984
1985 POSTING_READ(reg);
c98e9dcf
JB
1986 udelay(200);
1987
1988 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
1989 temp = I915_READ(reg);
1990 I915_WRITE(reg, temp | FDI_PCDCLK);
1991
1992 POSTING_READ(reg);
c98e9dcf
JB
1993 udelay(200);
1994
1995 /* Enable CPU FDI TX PLL, always on for Ironlake */
5eddb70b
CW
1996 reg = FDI_TX_CTL(pipe);
1997 temp = I915_READ(reg);
c98e9dcf 1998 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
5eddb70b
CW
1999 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
2000
2001 POSTING_READ(reg);
c98e9dcf 2002 udelay(100);
6be4a607 2003 }
0e23b99d
JB
2004}
2005
5eddb70b
CW
2006static void intel_flush_display_plane(struct drm_device *dev,
2007 int plane)
2008{
2009 struct drm_i915_private *dev_priv = dev->dev_private;
2010 u32 reg = DSPADDR(plane);
2011 I915_WRITE(reg, I915_READ(reg));
2012}
2013
6b383a7f
CW
2014/*
2015 * When we disable a pipe, we need to clear any pending scanline wait events
2016 * to avoid hanging the ring, which we assume we are waiting on.
2017 */
2018static void intel_clear_scanline_wait(struct drm_device *dev)
2019{
2020 struct drm_i915_private *dev_priv = dev->dev_private;
8168bd48 2021 struct intel_ring_buffer *ring;
6b383a7f
CW
2022 u32 tmp;
2023
2024 if (IS_GEN2(dev))
2025 /* Can't break the hang on i8xx */
2026 return;
2027
1ec14ad3 2028 ring = LP_RING(dev_priv);
8168bd48
CW
2029 tmp = I915_READ_CTL(ring);
2030 if (tmp & RING_WAIT)
2031 I915_WRITE_CTL(ring, tmp);
6b383a7f
CW
2032}
2033
e6c3a2a6
CW
2034static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2035{
05394f39 2036 struct drm_i915_gem_object *obj;
e6c3a2a6
CW
2037 struct drm_i915_private *dev_priv;
2038
2039 if (crtc->fb == NULL)
2040 return;
2041
05394f39 2042 obj = to_intel_framebuffer(crtc->fb)->obj;
e6c3a2a6
CW
2043 dev_priv = crtc->dev->dev_private;
2044 wait_event(dev_priv->pending_flip_queue,
05394f39 2045 atomic_read(&obj->pending_flip) == 0);
e6c3a2a6
CW
2046}
2047
011b9910
JB
2048static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2049{
2050 struct drm_device *dev = crtc->dev;
2051 struct drm_mode_config *mode_config = &dev->mode_config;
2052 struct intel_encoder *encoder;
2053
2054 /*
2055 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2056 * must be driven by its own crtc; no sharing is possible.
2057 */
2058 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2059 if (encoder->base.crtc != crtc)
2060 continue;
2061
2062 switch (encoder->type) {
2063 case INTEL_OUTPUT_EDP:
2064 if (!intel_encoder_is_pch_edp(&encoder->base))
2065 return false;
2066 continue;
2067 }
2068 }
2069
2070 return true;
2071}
2072
0e23b99d
JB
2073static void ironlake_crtc_enable(struct drm_crtc *crtc)
2074{
2075 struct drm_device *dev = crtc->dev;
2076 struct drm_i915_private *dev_priv = dev->dev_private;
2077 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2078 int pipe = intel_crtc->pipe;
2079 int plane = intel_crtc->plane;
5eddb70b 2080 u32 reg, temp;
011b9910 2081 bool is_pch_port = false;
0e23b99d 2082
f7abfe8b
CW
2083 if (intel_crtc->active)
2084 return;
2085
2086 intel_crtc->active = true;
6b383a7f
CW
2087 intel_update_watermarks(dev);
2088
0e23b99d
JB
2089 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2090 temp = I915_READ(PCH_LVDS);
5eddb70b 2091 if ((temp & LVDS_PORT_EN) == 0)
0e23b99d 2092 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
0e23b99d
JB
2093 }
2094
011b9910
JB
2095 is_pch_port = intel_crtc_driving_pch(crtc);
2096
2097 if (is_pch_port)
2098 ironlake_fdi_enable(crtc);
2099 else {
2100 /* disable CPU FDI tx and PCH FDI rx */
2101 reg = FDI_TX_CTL(pipe);
2102 temp = I915_READ(reg);
2103 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2104 POSTING_READ(reg);
2105
2106 reg = FDI_RX_CTL(pipe);
2107 temp = I915_READ(reg);
2108 temp &= ~(0x7 << 16);
2109 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2110 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2111
2112 POSTING_READ(reg);
2113 udelay(100);
2114
2115 /* Ironlake workaround, disable clock pointer after downing FDI */
2116 if (HAS_PCH_IBX(dev))
2117 I915_WRITE(FDI_RX_CHICKEN(pipe),
2118 I915_READ(FDI_RX_CHICKEN(pipe) &
2119 ~FDI_RX_PHASE_SYNC_POINTER_ENABLE));
2120
2121 /* still set train pattern 1 */
2122 reg = FDI_TX_CTL(pipe);
2123 temp = I915_READ(reg);
2124 temp &= ~FDI_LINK_TRAIN_NONE;
2125 temp |= FDI_LINK_TRAIN_PATTERN_1;
2126 I915_WRITE(reg, temp);
2127
2128 reg = FDI_RX_CTL(pipe);
2129 temp = I915_READ(reg);
2130 if (HAS_PCH_CPT(dev)) {
2131 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2132 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2133 } else {
2134 temp &= ~FDI_LINK_TRAIN_NONE;
2135 temp |= FDI_LINK_TRAIN_PATTERN_1;
2136 }
2137 /* BPC in FDI rx is consistent with that in PIPECONF */
2138 temp &= ~(0x07 << 16);
2139 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2140 I915_WRITE(reg, temp);
2141
2142 POSTING_READ(reg);
2143 udelay(100);
2144 }
2c07245f 2145
6be4a607
JB
2146 /* Enable panel fitting for LVDS */
2147 if (dev_priv->pch_pf_size &&
1d850362 2148 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
6be4a607
JB
2149 /* Force use of hard-coded filter coefficients
2150 * as some pre-programmed values are broken,
2151 * e.g. x201.
2152 */
2153 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1,
2154 PF_ENABLE | PF_FILTER_MED_3x3);
2155 I915_WRITE(pipe ? PFB_WIN_POS : PFA_WIN_POS,
2156 dev_priv->pch_pf_pos);
2157 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ,
2158 dev_priv->pch_pf_size);
2159 }
2c07245f 2160
6be4a607 2161 /* Enable CPU pipe */
5eddb70b
CW
2162 reg = PIPECONF(pipe);
2163 temp = I915_READ(reg);
2164 if ((temp & PIPECONF_ENABLE) == 0) {
2165 I915_WRITE(reg, temp | PIPECONF_ENABLE);
2166 POSTING_READ(reg);
17f6766c 2167 intel_wait_for_vblank(dev, intel_crtc->pipe);
6be4a607 2168 }
2c07245f 2169
6be4a607 2170 /* configure and enable CPU plane */
5eddb70b
CW
2171 reg = DSPCNTR(plane);
2172 temp = I915_READ(reg);
6be4a607 2173 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
5eddb70b
CW
2174 I915_WRITE(reg, temp | DISPLAY_PLANE_ENABLE);
2175 intel_flush_display_plane(dev, plane);
6be4a607 2176 }
2c07245f 2177
011b9910
JB
2178 /* Skip the PCH stuff if possible */
2179 if (!is_pch_port)
2180 goto done;
2181
c98e9dcf
JB
2182 /* For PCH output, training FDI link */
2183 if (IS_GEN6(dev))
2184 gen6_fdi_link_train(crtc);
2185 else
2186 ironlake_fdi_link_train(crtc);
2c07245f 2187
c98e9dcf 2188 /* enable PCH DPLL */
5eddb70b
CW
2189 reg = PCH_DPLL(pipe);
2190 temp = I915_READ(reg);
c98e9dcf 2191 if ((temp & DPLL_VCO_ENABLE) == 0) {
5eddb70b
CW
2192 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2193 POSTING_READ(reg);
8c4223be 2194 udelay(200);
c98e9dcf 2195 }
8db9d77b 2196
c98e9dcf
JB
2197 if (HAS_PCH_CPT(dev)) {
2198 /* Be sure PCH DPLL SEL is set */
2199 temp = I915_READ(PCH_DPLL_SEL);
5eddb70b 2200 if (pipe == 0 && (temp & TRANSA_DPLL_ENABLE) == 0)
c98e9dcf 2201 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
5eddb70b 2202 else if (pipe == 1 && (temp & TRANSB_DPLL_ENABLE) == 0)
c98e9dcf
JB
2203 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2204 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 2205 }
5eddb70b 2206
c98e9dcf 2207 /* set transcoder timing */
5eddb70b
CW
2208 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2209 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2210 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
8db9d77b 2211
5eddb70b
CW
2212 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2213 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2214 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
8db9d77b 2215
5e84e1a4
ZW
2216 intel_fdi_normal_train(crtc);
2217
c98e9dcf
JB
2218 /* For PCH DP, enable TRANS_DP_CTL */
2219 if (HAS_PCH_CPT(dev) &&
2220 intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5eddb70b
CW
2221 reg = TRANS_DP_CTL(pipe);
2222 temp = I915_READ(reg);
2223 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
2224 TRANS_DP_SYNC_MASK |
2225 TRANS_DP_BPC_MASK);
5eddb70b
CW
2226 temp |= (TRANS_DP_OUTPUT_ENABLE |
2227 TRANS_DP_ENH_FRAMING);
220cad3c 2228 temp |= TRANS_DP_8BPC;
c98e9dcf
JB
2229
2230 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 2231 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 2232 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 2233 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
2234
2235 switch (intel_trans_dp_port_sel(crtc)) {
2236 case PCH_DP_B:
5eddb70b 2237 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
2238 break;
2239 case PCH_DP_C:
5eddb70b 2240 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
2241 break;
2242 case PCH_DP_D:
5eddb70b 2243 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
2244 break;
2245 default:
2246 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
5eddb70b 2247 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 2248 break;
32f9d658 2249 }
2c07245f 2250
5eddb70b 2251 I915_WRITE(reg, temp);
6be4a607 2252 }
b52eb4dc 2253
c98e9dcf 2254 /* enable PCH transcoder */
5eddb70b
CW
2255 reg = TRANSCONF(pipe);
2256 temp = I915_READ(reg);
c98e9dcf
JB
2257 /*
2258 * make the BPC in transcoder be consistent with
2259 * that in pipeconf reg.
2260 */
2261 temp &= ~PIPE_BPC_MASK;
5eddb70b
CW
2262 temp |= I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK;
2263 I915_WRITE(reg, temp | TRANS_ENABLE);
2264 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
17f6766c 2265 DRM_ERROR("failed to enable transcoder %d\n", pipe);
011b9910 2266done:
6be4a607 2267 intel_crtc_load_lut(crtc);
bed4a673 2268 intel_update_fbc(dev);
6b383a7f 2269 intel_crtc_update_cursor(crtc, true);
6be4a607
JB
2270}
2271
2272static void ironlake_crtc_disable(struct drm_crtc *crtc)
2273{
2274 struct drm_device *dev = crtc->dev;
2275 struct drm_i915_private *dev_priv = dev->dev_private;
2276 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2277 int pipe = intel_crtc->pipe;
2278 int plane = intel_crtc->plane;
5eddb70b 2279 u32 reg, temp;
b52eb4dc 2280
f7abfe8b
CW
2281 if (!intel_crtc->active)
2282 return;
2283
e6c3a2a6 2284 intel_crtc_wait_for_pending_flips(crtc);
6be4a607 2285 drm_vblank_off(dev, pipe);
6b383a7f 2286 intel_crtc_update_cursor(crtc, false);
5eddb70b 2287
6be4a607 2288 /* Disable display plane */
5eddb70b
CW
2289 reg = DSPCNTR(plane);
2290 temp = I915_READ(reg);
2291 if (temp & DISPLAY_PLANE_ENABLE) {
2292 I915_WRITE(reg, temp & ~DISPLAY_PLANE_ENABLE);
2293 intel_flush_display_plane(dev, plane);
6be4a607 2294 }
913d8d11 2295
6be4a607
JB
2296 if (dev_priv->cfb_plane == plane &&
2297 dev_priv->display.disable_fbc)
2298 dev_priv->display.disable_fbc(dev);
2c07245f 2299
6be4a607 2300 /* disable cpu pipe, disable after all planes disabled */
5eddb70b
CW
2301 reg = PIPECONF(pipe);
2302 temp = I915_READ(reg);
2303 if (temp & PIPECONF_ENABLE) {
2304 I915_WRITE(reg, temp & ~PIPECONF_ENABLE);
17f6766c 2305 POSTING_READ(reg);
6be4a607 2306 /* wait for cpu pipe off, pipe state */
17f6766c 2307 intel_wait_for_pipe_off(dev, intel_crtc->pipe);
5eddb70b 2308 }
32f9d658 2309
6be4a607
JB
2310 /* Disable PF */
2311 I915_WRITE(pipe ? PFB_CTL_1 : PFA_CTL_1, 0);
2312 I915_WRITE(pipe ? PFB_WIN_SZ : PFA_WIN_SZ, 0);
2c07245f 2313
6be4a607 2314 /* disable CPU FDI tx and PCH FDI rx */
5eddb70b
CW
2315 reg = FDI_TX_CTL(pipe);
2316 temp = I915_READ(reg);
2317 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2318 POSTING_READ(reg);
249c0e64 2319
5eddb70b
CW
2320 reg = FDI_RX_CTL(pipe);
2321 temp = I915_READ(reg);
2322 temp &= ~(0x7 << 16);
2323 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2324 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
6be4a607 2325
5eddb70b 2326 POSTING_READ(reg);
6be4a607
JB
2327 udelay(100);
2328
5b2adf89 2329 /* Ironlake workaround, disable clock pointer after downing FDI */
e07ac3a0
ZW
2330 if (HAS_PCH_IBX(dev))
2331 I915_WRITE(FDI_RX_CHICKEN(pipe),
2332 I915_READ(FDI_RX_CHICKEN(pipe) &
2333 ~FDI_RX_PHASE_SYNC_POINTER_ENABLE));
5b2adf89 2334
6be4a607 2335 /* still set train pattern 1 */
5eddb70b
CW
2336 reg = FDI_TX_CTL(pipe);
2337 temp = I915_READ(reg);
6be4a607
JB
2338 temp &= ~FDI_LINK_TRAIN_NONE;
2339 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 2340 I915_WRITE(reg, temp);
6be4a607 2341
5eddb70b
CW
2342 reg = FDI_RX_CTL(pipe);
2343 temp = I915_READ(reg);
6be4a607
JB
2344 if (HAS_PCH_CPT(dev)) {
2345 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2346 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2347 } else {
2c07245f
ZW
2348 temp &= ~FDI_LINK_TRAIN_NONE;
2349 temp |= FDI_LINK_TRAIN_PATTERN_1;
6be4a607 2350 }
5eddb70b
CW
2351 /* BPC in FDI rx is consistent with that in PIPECONF */
2352 temp &= ~(0x07 << 16);
2353 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2354 I915_WRITE(reg, temp);
2c07245f 2355
5eddb70b 2356 POSTING_READ(reg);
6be4a607 2357 udelay(100);
2c07245f 2358
6be4a607
JB
2359 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2360 temp = I915_READ(PCH_LVDS);
5eddb70b
CW
2361 if (temp & LVDS_PORT_EN) {
2362 I915_WRITE(PCH_LVDS, temp & ~LVDS_PORT_EN);
2363 POSTING_READ(PCH_LVDS);
2364 udelay(100);
2365 }
6be4a607 2366 }
249c0e64 2367
6be4a607 2368 /* disable PCH transcoder */
5eddb70b
CW
2369 reg = TRANSCONF(plane);
2370 temp = I915_READ(reg);
2371 if (temp & TRANS_ENABLE) {
2372 I915_WRITE(reg, temp & ~TRANS_ENABLE);
6be4a607 2373 /* wait for PCH transcoder off, transcoder state */
5eddb70b 2374 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
6be4a607
JB
2375 DRM_ERROR("failed to disable transcoder\n");
2376 }
913d8d11 2377
6be4a607
JB
2378 if (HAS_PCH_CPT(dev)) {
2379 /* disable TRANS_DP_CTL */
5eddb70b
CW
2380 reg = TRANS_DP_CTL(pipe);
2381 temp = I915_READ(reg);
2382 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
2383 I915_WRITE(reg, temp);
6be4a607
JB
2384
2385 /* disable DPLL_SEL */
2386 temp = I915_READ(PCH_DPLL_SEL);
5eddb70b 2387 if (pipe == 0)
6be4a607
JB
2388 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
2389 else
2390 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
2391 I915_WRITE(PCH_DPLL_SEL, temp);
6be4a607 2392 }
e3421a18 2393
6be4a607 2394 /* disable PCH DPLL */
5eddb70b
CW
2395 reg = PCH_DPLL(pipe);
2396 temp = I915_READ(reg);
2397 I915_WRITE(reg, temp & ~DPLL_VCO_ENABLE);
8db9d77b 2398
6be4a607 2399 /* Switch from PCDclk to Rawclk */
5eddb70b
CW
2400 reg = FDI_RX_CTL(pipe);
2401 temp = I915_READ(reg);
2402 I915_WRITE(reg, temp & ~FDI_PCDCLK);
8db9d77b 2403
6be4a607 2404 /* Disable CPU FDI TX PLL */
5eddb70b
CW
2405 reg = FDI_TX_CTL(pipe);
2406 temp = I915_READ(reg);
2407 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2408
2409 POSTING_READ(reg);
6be4a607 2410 udelay(100);
8db9d77b 2411
5eddb70b
CW
2412 reg = FDI_RX_CTL(pipe);
2413 temp = I915_READ(reg);
2414 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2c07245f 2415
6be4a607 2416 /* Wait for the clocks to turn off. */
5eddb70b 2417 POSTING_READ(reg);
6be4a607 2418 udelay(100);
6b383a7f 2419
f7abfe8b 2420 intel_crtc->active = false;
6b383a7f
CW
2421 intel_update_watermarks(dev);
2422 intel_update_fbc(dev);
2423 intel_clear_scanline_wait(dev);
6be4a607 2424}
1b3c7a47 2425
6be4a607
JB
2426static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
2427{
2428 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2429 int pipe = intel_crtc->pipe;
2430 int plane = intel_crtc->plane;
8db9d77b 2431
6be4a607
JB
2432 /* XXX: When our outputs are all unaware of DPMS modes other than off
2433 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2434 */
2435 switch (mode) {
2436 case DRM_MODE_DPMS_ON:
2437 case DRM_MODE_DPMS_STANDBY:
2438 case DRM_MODE_DPMS_SUSPEND:
2439 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
2440 ironlake_crtc_enable(crtc);
2441 break;
1b3c7a47 2442
6be4a607
JB
2443 case DRM_MODE_DPMS_OFF:
2444 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
2445 ironlake_crtc_disable(crtc);
2c07245f
ZW
2446 break;
2447 }
2448}
2449
02e792fb
DV
2450static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2451{
02e792fb 2452 if (!enable && intel_crtc->overlay) {
23f09ce3 2453 struct drm_device *dev = intel_crtc->base.dev;
03f77ea5 2454
23f09ce3
CW
2455 mutex_lock(&dev->struct_mutex);
2456 (void) intel_overlay_switch_off(intel_crtc->overlay, false);
2457 mutex_unlock(&dev->struct_mutex);
02e792fb 2458 }
02e792fb 2459
5dcdbcb0
CW
2460 /* Let userspace switch the overlay on again. In most cases userspace
2461 * has to recompute where to put it anyway.
2462 */
02e792fb
DV
2463}
2464
0b8765c6 2465static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
2466{
2467 struct drm_device *dev = crtc->dev;
79e53945
JB
2468 struct drm_i915_private *dev_priv = dev->dev_private;
2469 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2470 int pipe = intel_crtc->pipe;
80824003 2471 int plane = intel_crtc->plane;
5eddb70b 2472 u32 reg, temp;
79e53945 2473
f7abfe8b
CW
2474 if (intel_crtc->active)
2475 return;
2476
2477 intel_crtc->active = true;
6b383a7f
CW
2478 intel_update_watermarks(dev);
2479
0b8765c6 2480 /* Enable the DPLL */
5eddb70b
CW
2481 reg = DPLL(pipe);
2482 temp = I915_READ(reg);
0b8765c6 2483 if ((temp & DPLL_VCO_ENABLE) == 0) {
5eddb70b
CW
2484 I915_WRITE(reg, temp);
2485
0b8765c6 2486 /* Wait for the clocks to stabilize. */
5eddb70b 2487 POSTING_READ(reg);
0b8765c6 2488 udelay(150);
5eddb70b
CW
2489
2490 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2491
0b8765c6 2492 /* Wait for the clocks to stabilize. */
5eddb70b 2493 POSTING_READ(reg);
0b8765c6 2494 udelay(150);
5eddb70b
CW
2495
2496 I915_WRITE(reg, temp | DPLL_VCO_ENABLE);
2497
0b8765c6 2498 /* Wait for the clocks to stabilize. */
5eddb70b 2499 POSTING_READ(reg);
0b8765c6
JB
2500 udelay(150);
2501 }
79e53945 2502
0b8765c6 2503 /* Enable the pipe */
5eddb70b
CW
2504 reg = PIPECONF(pipe);
2505 temp = I915_READ(reg);
2506 if ((temp & PIPECONF_ENABLE) == 0)
2507 I915_WRITE(reg, temp | PIPECONF_ENABLE);
79e53945 2508
0b8765c6 2509 /* Enable the plane */
5eddb70b
CW
2510 reg = DSPCNTR(plane);
2511 temp = I915_READ(reg);
0b8765c6 2512 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
5eddb70b
CW
2513 I915_WRITE(reg, temp | DISPLAY_PLANE_ENABLE);
2514 intel_flush_display_plane(dev, plane);
0b8765c6 2515 }
79e53945 2516
0b8765c6 2517 intel_crtc_load_lut(crtc);
bed4a673 2518 intel_update_fbc(dev);
79e53945 2519
0b8765c6
JB
2520 /* Give the overlay scaler a chance to enable if it's on this pipe */
2521 intel_crtc_dpms_overlay(intel_crtc, true);
6b383a7f 2522 intel_crtc_update_cursor(crtc, true);
0b8765c6 2523}
79e53945 2524
0b8765c6
JB
2525static void i9xx_crtc_disable(struct drm_crtc *crtc)
2526{
2527 struct drm_device *dev = crtc->dev;
2528 struct drm_i915_private *dev_priv = dev->dev_private;
2529 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2530 int pipe = intel_crtc->pipe;
2531 int plane = intel_crtc->plane;
5eddb70b 2532 u32 reg, temp;
b690e96c 2533
f7abfe8b
CW
2534 if (!intel_crtc->active)
2535 return;
2536
0b8765c6 2537 /* Give the overlay scaler a chance to disable if it's on this pipe */
e6c3a2a6
CW
2538 intel_crtc_wait_for_pending_flips(crtc);
2539 drm_vblank_off(dev, pipe);
0b8765c6 2540 intel_crtc_dpms_overlay(intel_crtc, false);
6b383a7f 2541 intel_crtc_update_cursor(crtc, false);
0b8765c6
JB
2542
2543 if (dev_priv->cfb_plane == plane &&
2544 dev_priv->display.disable_fbc)
2545 dev_priv->display.disable_fbc(dev);
79e53945 2546
0b8765c6 2547 /* Disable display plane */
5eddb70b
CW
2548 reg = DSPCNTR(plane);
2549 temp = I915_READ(reg);
2550 if (temp & DISPLAY_PLANE_ENABLE) {
2551 I915_WRITE(reg, temp & ~DISPLAY_PLANE_ENABLE);
0b8765c6 2552 /* Flush the plane changes */
5eddb70b 2553 intel_flush_display_plane(dev, plane);
0b8765c6 2554
0b8765c6 2555 /* Wait for vblank for the disable to take effect */
a6c45cf0 2556 if (IS_GEN2(dev))
ab7ad7f6 2557 intel_wait_for_vblank(dev, pipe);
0b8765c6 2558 }
79e53945 2559
0b8765c6 2560 /* Don't disable pipe A or pipe A PLLs if needed */
5eddb70b 2561 if (pipe == 0 && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
6b383a7f 2562 goto done;
0b8765c6
JB
2563
2564 /* Next, disable display pipes */
5eddb70b
CW
2565 reg = PIPECONF(pipe);
2566 temp = I915_READ(reg);
2567 if (temp & PIPECONF_ENABLE) {
2568 I915_WRITE(reg, temp & ~PIPECONF_ENABLE);
2569
ab7ad7f6 2570 /* Wait for the pipe to turn off */
5eddb70b 2571 POSTING_READ(reg);
ab7ad7f6 2572 intel_wait_for_pipe_off(dev, pipe);
0b8765c6
JB
2573 }
2574
5eddb70b
CW
2575 reg = DPLL(pipe);
2576 temp = I915_READ(reg);
2577 if (temp & DPLL_VCO_ENABLE) {
2578 I915_WRITE(reg, temp & ~DPLL_VCO_ENABLE);
0b8765c6 2579
5eddb70b
CW
2580 /* Wait for the clocks to turn off. */
2581 POSTING_READ(reg);
2582 udelay(150);
0b8765c6 2583 }
6b383a7f
CW
2584
2585done:
f7abfe8b 2586 intel_crtc->active = false;
6b383a7f
CW
2587 intel_update_fbc(dev);
2588 intel_update_watermarks(dev);
2589 intel_clear_scanline_wait(dev);
0b8765c6
JB
2590}
2591
2592static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2593{
2594 /* XXX: When our outputs are all unaware of DPMS modes other than off
2595 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2596 */
2597 switch (mode) {
2598 case DRM_MODE_DPMS_ON:
2599 case DRM_MODE_DPMS_STANDBY:
2600 case DRM_MODE_DPMS_SUSPEND:
2601 i9xx_crtc_enable(crtc);
2602 break;
2603 case DRM_MODE_DPMS_OFF:
2604 i9xx_crtc_disable(crtc);
79e53945
JB
2605 break;
2606 }
2c07245f
ZW
2607}
2608
2609/**
2610 * Sets the power management mode of the pipe and plane.
2c07245f
ZW
2611 */
2612static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2613{
2614 struct drm_device *dev = crtc->dev;
e70236a8 2615 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f
ZW
2616 struct drm_i915_master_private *master_priv;
2617 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2618 int pipe = intel_crtc->pipe;
2619 bool enabled;
2620
032d2a0d
CW
2621 if (intel_crtc->dpms_mode == mode)
2622 return;
2623
65655d4a 2624 intel_crtc->dpms_mode = mode;
debcaddc 2625
e70236a8 2626 dev_priv->display.dpms(crtc, mode);
79e53945
JB
2627
2628 if (!dev->primary->master)
2629 return;
2630
2631 master_priv = dev->primary->master->driver_priv;
2632 if (!master_priv->sarea_priv)
2633 return;
2634
2635 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2636
2637 switch (pipe) {
2638 case 0:
2639 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2640 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2641 break;
2642 case 1:
2643 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2644 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2645 break;
2646 default:
2647 DRM_ERROR("Can't update pipe %d in SAREA\n", pipe);
2648 break;
2649 }
79e53945
JB
2650}
2651
cdd59983
CW
2652static void intel_crtc_disable(struct drm_crtc *crtc)
2653{
2654 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2655 struct drm_device *dev = crtc->dev;
2656
2657 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
2658
2659 if (crtc->fb) {
2660 mutex_lock(&dev->struct_mutex);
2661 i915_gem_object_unpin(to_intel_framebuffer(crtc->fb)->obj);
2662 mutex_unlock(&dev->struct_mutex);
2663 }
2664}
2665
7e7d76c3
JB
2666/* Prepare for a mode set.
2667 *
2668 * Note we could be a lot smarter here. We need to figure out which outputs
2669 * will be enabled, which disabled (in short, how the config will changes)
2670 * and perform the minimum necessary steps to accomplish that, e.g. updating
2671 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
2672 * panel fitting is in the proper state, etc.
2673 */
2674static void i9xx_crtc_prepare(struct drm_crtc *crtc)
79e53945 2675{
7e7d76c3 2676 i9xx_crtc_disable(crtc);
79e53945
JB
2677}
2678
7e7d76c3 2679static void i9xx_crtc_commit(struct drm_crtc *crtc)
79e53945 2680{
7e7d76c3 2681 i9xx_crtc_enable(crtc);
7e7d76c3
JB
2682}
2683
2684static void ironlake_crtc_prepare(struct drm_crtc *crtc)
2685{
7e7d76c3 2686 ironlake_crtc_disable(crtc);
7e7d76c3
JB
2687}
2688
2689static void ironlake_crtc_commit(struct drm_crtc *crtc)
2690{
7e7d76c3 2691 ironlake_crtc_enable(crtc);
79e53945
JB
2692}
2693
2694void intel_encoder_prepare (struct drm_encoder *encoder)
2695{
2696 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2697 /* lvds has its own version of prepare see intel_lvds_prepare */
2698 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
2699}
2700
2701void intel_encoder_commit (struct drm_encoder *encoder)
2702{
2703 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
2704 /* lvds has its own version of commit see intel_lvds_commit */
2705 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
2706}
2707
ea5b213a
CW
2708void intel_encoder_destroy(struct drm_encoder *encoder)
2709{
4ef69c7a 2710 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 2711
ea5b213a
CW
2712 drm_encoder_cleanup(encoder);
2713 kfree(intel_encoder);
2714}
2715
79e53945
JB
2716static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
2717 struct drm_display_mode *mode,
2718 struct drm_display_mode *adjusted_mode)
2719{
2c07245f 2720 struct drm_device *dev = crtc->dev;
89749350 2721
bad720ff 2722 if (HAS_PCH_SPLIT(dev)) {
2c07245f 2723 /* FDI link clock is fixed at 2.7G */
2377b741
JB
2724 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
2725 return false;
2c07245f 2726 }
89749350
CW
2727
2728 /* XXX some encoders set the crtcinfo, others don't.
2729 * Obviously we need some form of conflict resolution here...
2730 */
2731 if (adjusted_mode->crtc_htotal == 0)
2732 drm_mode_set_crtcinfo(adjusted_mode, 0);
2733
79e53945
JB
2734 return true;
2735}
2736
e70236a8
JB
2737static int i945_get_display_clock_speed(struct drm_device *dev)
2738{
2739 return 400000;
2740}
79e53945 2741
e70236a8 2742static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 2743{
e70236a8
JB
2744 return 333000;
2745}
79e53945 2746
e70236a8
JB
2747static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
2748{
2749 return 200000;
2750}
79e53945 2751
e70236a8
JB
2752static int i915gm_get_display_clock_speed(struct drm_device *dev)
2753{
2754 u16 gcfgc = 0;
79e53945 2755
e70236a8
JB
2756 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
2757
2758 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
2759 return 133000;
2760 else {
2761 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
2762 case GC_DISPLAY_CLOCK_333_MHZ:
2763 return 333000;
2764 default:
2765 case GC_DISPLAY_CLOCK_190_200_MHZ:
2766 return 190000;
79e53945 2767 }
e70236a8
JB
2768 }
2769}
2770
2771static int i865_get_display_clock_speed(struct drm_device *dev)
2772{
2773 return 266000;
2774}
2775
2776static int i855_get_display_clock_speed(struct drm_device *dev)
2777{
2778 u16 hpllcc = 0;
2779 /* Assume that the hardware is in the high speed state. This
2780 * should be the default.
2781 */
2782 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
2783 case GC_CLOCK_133_200:
2784 case GC_CLOCK_100_200:
2785 return 200000;
2786 case GC_CLOCK_166_250:
2787 return 250000;
2788 case GC_CLOCK_100_133:
79e53945 2789 return 133000;
e70236a8 2790 }
79e53945 2791
e70236a8
JB
2792 /* Shouldn't happen */
2793 return 0;
2794}
79e53945 2795
e70236a8
JB
2796static int i830_get_display_clock_speed(struct drm_device *dev)
2797{
2798 return 133000;
79e53945
JB
2799}
2800
2c07245f
ZW
2801struct fdi_m_n {
2802 u32 tu;
2803 u32 gmch_m;
2804 u32 gmch_n;
2805 u32 link_m;
2806 u32 link_n;
2807};
2808
2809static void
2810fdi_reduce_ratio(u32 *num, u32 *den)
2811{
2812 while (*num > 0xffffff || *den > 0xffffff) {
2813 *num >>= 1;
2814 *den >>= 1;
2815 }
2816}
2817
2c07245f 2818static void
f2b115e6
AJ
2819ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
2820 int link_clock, struct fdi_m_n *m_n)
2c07245f 2821{
2c07245f
ZW
2822 m_n->tu = 64; /* default size */
2823
22ed1113
CW
2824 /* BUG_ON(pixel_clock > INT_MAX / 36); */
2825 m_n->gmch_m = bits_per_pixel * pixel_clock;
2826 m_n->gmch_n = link_clock * nlanes * 8;
2c07245f
ZW
2827 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
2828
22ed1113
CW
2829 m_n->link_m = pixel_clock;
2830 m_n->link_n = link_clock;
2c07245f
ZW
2831 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
2832}
2833
2834
7662c8bd
SL
2835struct intel_watermark_params {
2836 unsigned long fifo_size;
2837 unsigned long max_wm;
2838 unsigned long default_wm;
2839 unsigned long guard_size;
2840 unsigned long cacheline_size;
2841};
2842
f2b115e6
AJ
2843/* Pineview has different values for various configs */
2844static struct intel_watermark_params pineview_display_wm = {
2845 PINEVIEW_DISPLAY_FIFO,
2846 PINEVIEW_MAX_WM,
2847 PINEVIEW_DFT_WM,
2848 PINEVIEW_GUARD_WM,
2849 PINEVIEW_FIFO_LINE_SIZE
7662c8bd 2850};
f2b115e6
AJ
2851static struct intel_watermark_params pineview_display_hplloff_wm = {
2852 PINEVIEW_DISPLAY_FIFO,
2853 PINEVIEW_MAX_WM,
2854 PINEVIEW_DFT_HPLLOFF_WM,
2855 PINEVIEW_GUARD_WM,
2856 PINEVIEW_FIFO_LINE_SIZE
7662c8bd 2857};
f2b115e6
AJ
2858static struct intel_watermark_params pineview_cursor_wm = {
2859 PINEVIEW_CURSOR_FIFO,
2860 PINEVIEW_CURSOR_MAX_WM,
2861 PINEVIEW_CURSOR_DFT_WM,
2862 PINEVIEW_CURSOR_GUARD_WM,
2863 PINEVIEW_FIFO_LINE_SIZE,
7662c8bd 2864};
f2b115e6
AJ
2865static struct intel_watermark_params pineview_cursor_hplloff_wm = {
2866 PINEVIEW_CURSOR_FIFO,
2867 PINEVIEW_CURSOR_MAX_WM,
2868 PINEVIEW_CURSOR_DFT_WM,
2869 PINEVIEW_CURSOR_GUARD_WM,
2870 PINEVIEW_FIFO_LINE_SIZE
7662c8bd 2871};
0e442c60
JB
2872static struct intel_watermark_params g4x_wm_info = {
2873 G4X_FIFO_SIZE,
2874 G4X_MAX_WM,
2875 G4X_MAX_WM,
2876 2,
2877 G4X_FIFO_LINE_SIZE,
2878};
4fe5e611
ZY
2879static struct intel_watermark_params g4x_cursor_wm_info = {
2880 I965_CURSOR_FIFO,
2881 I965_CURSOR_MAX_WM,
2882 I965_CURSOR_DFT_WM,
2883 2,
2884 G4X_FIFO_LINE_SIZE,
2885};
2886static struct intel_watermark_params i965_cursor_wm_info = {
2887 I965_CURSOR_FIFO,
2888 I965_CURSOR_MAX_WM,
2889 I965_CURSOR_DFT_WM,
2890 2,
2891 I915_FIFO_LINE_SIZE,
2892};
7662c8bd 2893static struct intel_watermark_params i945_wm_info = {
dff33cfc 2894 I945_FIFO_SIZE,
7662c8bd
SL
2895 I915_MAX_WM,
2896 1,
dff33cfc
JB
2897 2,
2898 I915_FIFO_LINE_SIZE
7662c8bd
SL
2899};
2900static struct intel_watermark_params i915_wm_info = {
dff33cfc 2901 I915_FIFO_SIZE,
7662c8bd
SL
2902 I915_MAX_WM,
2903 1,
dff33cfc 2904 2,
7662c8bd
SL
2905 I915_FIFO_LINE_SIZE
2906};
2907static struct intel_watermark_params i855_wm_info = {
2908 I855GM_FIFO_SIZE,
2909 I915_MAX_WM,
2910 1,
dff33cfc 2911 2,
7662c8bd
SL
2912 I830_FIFO_LINE_SIZE
2913};
2914static struct intel_watermark_params i830_wm_info = {
2915 I830_FIFO_SIZE,
2916 I915_MAX_WM,
2917 1,
dff33cfc 2918 2,
7662c8bd
SL
2919 I830_FIFO_LINE_SIZE
2920};
2921
7f8a8569
ZW
2922static struct intel_watermark_params ironlake_display_wm_info = {
2923 ILK_DISPLAY_FIFO,
2924 ILK_DISPLAY_MAXWM,
2925 ILK_DISPLAY_DFTWM,
2926 2,
2927 ILK_FIFO_LINE_SIZE
2928};
2929
c936f44d
ZY
2930static struct intel_watermark_params ironlake_cursor_wm_info = {
2931 ILK_CURSOR_FIFO,
2932 ILK_CURSOR_MAXWM,
2933 ILK_CURSOR_DFTWM,
2934 2,
2935 ILK_FIFO_LINE_SIZE
2936};
2937
7f8a8569
ZW
2938static struct intel_watermark_params ironlake_display_srwm_info = {
2939 ILK_DISPLAY_SR_FIFO,
2940 ILK_DISPLAY_MAX_SRWM,
2941 ILK_DISPLAY_DFT_SRWM,
2942 2,
2943 ILK_FIFO_LINE_SIZE
2944};
2945
2946static struct intel_watermark_params ironlake_cursor_srwm_info = {
2947 ILK_CURSOR_SR_FIFO,
2948 ILK_CURSOR_MAX_SRWM,
2949 ILK_CURSOR_DFT_SRWM,
2950 2,
2951 ILK_FIFO_LINE_SIZE
2952};
2953
1398261a
YL
2954static struct intel_watermark_params sandybridge_display_wm_info = {
2955 SNB_DISPLAY_FIFO,
2956 SNB_DISPLAY_MAXWM,
2957 SNB_DISPLAY_DFTWM,
2958 2,
2959 SNB_FIFO_LINE_SIZE
2960};
2961
2962static struct intel_watermark_params sandybridge_cursor_wm_info = {
2963 SNB_CURSOR_FIFO,
2964 SNB_CURSOR_MAXWM,
2965 SNB_CURSOR_DFTWM,
2966 2,
2967 SNB_FIFO_LINE_SIZE
2968};
2969
2970static struct intel_watermark_params sandybridge_display_srwm_info = {
2971 SNB_DISPLAY_SR_FIFO,
2972 SNB_DISPLAY_MAX_SRWM,
2973 SNB_DISPLAY_DFT_SRWM,
2974 2,
2975 SNB_FIFO_LINE_SIZE
2976};
2977
2978static struct intel_watermark_params sandybridge_cursor_srwm_info = {
2979 SNB_CURSOR_SR_FIFO,
2980 SNB_CURSOR_MAX_SRWM,
2981 SNB_CURSOR_DFT_SRWM,
2982 2,
2983 SNB_FIFO_LINE_SIZE
2984};
2985
2986
dff33cfc
JB
2987/**
2988 * intel_calculate_wm - calculate watermark level
2989 * @clock_in_khz: pixel clock
2990 * @wm: chip FIFO params
2991 * @pixel_size: display pixel size
2992 * @latency_ns: memory latency for the platform
2993 *
2994 * Calculate the watermark level (the level at which the display plane will
2995 * start fetching from memory again). Each chip has a different display
2996 * FIFO size and allocation, so the caller needs to figure that out and pass
2997 * in the correct intel_watermark_params structure.
2998 *
2999 * As the pixel clock runs, the FIFO will be drained at a rate that depends
3000 * on the pixel size. When it reaches the watermark level, it'll start
3001 * fetching FIFO line sized based chunks from memory until the FIFO fills
3002 * past the watermark point. If the FIFO drains completely, a FIFO underrun
3003 * will occur, and a display engine hang could result.
3004 */
7662c8bd
SL
3005static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
3006 struct intel_watermark_params *wm,
3007 int pixel_size,
3008 unsigned long latency_ns)
3009{
390c4dd4 3010 long entries_required, wm_size;
dff33cfc 3011
d660467c
JB
3012 /*
3013 * Note: we need to make sure we don't overflow for various clock &
3014 * latency values.
3015 * clocks go from a few thousand to several hundred thousand.
3016 * latency is usually a few thousand
3017 */
3018 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
3019 1000;
8de9b311 3020 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
7662c8bd 3021
28c97730 3022 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries_required);
dff33cfc
JB
3023
3024 wm_size = wm->fifo_size - (entries_required + wm->guard_size);
3025
28c97730 3026 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
7662c8bd 3027
390c4dd4
JB
3028 /* Don't promote wm_size to unsigned... */
3029 if (wm_size > (long)wm->max_wm)
7662c8bd 3030 wm_size = wm->max_wm;
c3add4b6 3031 if (wm_size <= 0)
7662c8bd
SL
3032 wm_size = wm->default_wm;
3033 return wm_size;
3034}
3035
3036struct cxsr_latency {
3037 int is_desktop;
95534263 3038 int is_ddr3;
7662c8bd
SL
3039 unsigned long fsb_freq;
3040 unsigned long mem_freq;
3041 unsigned long display_sr;
3042 unsigned long display_hpll_disable;
3043 unsigned long cursor_sr;
3044 unsigned long cursor_hpll_disable;
3045};
3046
403c89ff 3047static const struct cxsr_latency cxsr_latency_table[] = {
95534263
LP
3048 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
3049 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
3050 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
3051 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
3052 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
3053
3054 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
3055 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
3056 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
3057 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
3058 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
3059
3060 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
3061 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
3062 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
3063 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
3064 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
3065
3066 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
3067 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
3068 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
3069 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
3070 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
3071
3072 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
3073 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
3074 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
3075 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
3076 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
3077
3078 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
3079 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
3080 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
3081 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
3082 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
7662c8bd
SL
3083};
3084
403c89ff
CW
3085static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
3086 int is_ddr3,
3087 int fsb,
3088 int mem)
7662c8bd 3089{
403c89ff 3090 const struct cxsr_latency *latency;
7662c8bd 3091 int i;
7662c8bd
SL
3092
3093 if (fsb == 0 || mem == 0)
3094 return NULL;
3095
3096 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
3097 latency = &cxsr_latency_table[i];
3098 if (is_desktop == latency->is_desktop &&
95534263 3099 is_ddr3 == latency->is_ddr3 &&
decbbcda
JSR
3100 fsb == latency->fsb_freq && mem == latency->mem_freq)
3101 return latency;
7662c8bd 3102 }
decbbcda 3103
28c97730 3104 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
decbbcda
JSR
3105
3106 return NULL;
7662c8bd
SL
3107}
3108
f2b115e6 3109static void pineview_disable_cxsr(struct drm_device *dev)
7662c8bd
SL
3110{
3111 struct drm_i915_private *dev_priv = dev->dev_private;
7662c8bd
SL
3112
3113 /* deactivate cxsr */
3e33d94d 3114 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
7662c8bd
SL
3115}
3116
bcc24fb4
JB
3117/*
3118 * Latency for FIFO fetches is dependent on several factors:
3119 * - memory configuration (speed, channels)
3120 * - chipset
3121 * - current MCH state
3122 * It can be fairly high in some situations, so here we assume a fairly
3123 * pessimal value. It's a tradeoff between extra memory fetches (if we
3124 * set this value too high, the FIFO will fetch frequently to stay full)
3125 * and power consumption (set it too low to save power and we might see
3126 * FIFO underruns and display "flicker").
3127 *
3128 * A value of 5us seems to be a good balance; safe for very low end
3129 * platforms but not overly aggressive on lower latency configs.
3130 */
69e302a9 3131static const int latency_ns = 5000;
7662c8bd 3132
e70236a8 3133static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
dff33cfc
JB
3134{
3135 struct drm_i915_private *dev_priv = dev->dev_private;
3136 uint32_t dsparb = I915_READ(DSPARB);
3137 int size;
3138
8de9b311
CW
3139 size = dsparb & 0x7f;
3140 if (plane)
3141 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
dff33cfc 3142
28c97730 3143 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
5eddb70b 3144 plane ? "B" : "A", size);
dff33cfc
JB
3145
3146 return size;
3147}
7662c8bd 3148
e70236a8
JB
3149static int i85x_get_fifo_size(struct drm_device *dev, int plane)
3150{
3151 struct drm_i915_private *dev_priv = dev->dev_private;
3152 uint32_t dsparb = I915_READ(DSPARB);
3153 int size;
3154
8de9b311
CW
3155 size = dsparb & 0x1ff;
3156 if (plane)
3157 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
e70236a8 3158 size >>= 1; /* Convert to cachelines */
dff33cfc 3159
28c97730 3160 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
5eddb70b 3161 plane ? "B" : "A", size);
dff33cfc
JB
3162
3163 return size;
3164}
7662c8bd 3165
e70236a8
JB
3166static int i845_get_fifo_size(struct drm_device *dev, int plane)
3167{
3168 struct drm_i915_private *dev_priv = dev->dev_private;
3169 uint32_t dsparb = I915_READ(DSPARB);
3170 int size;
3171
3172 size = dsparb & 0x7f;
3173 size >>= 2; /* Convert to cachelines */
3174
28c97730 3175 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
5eddb70b
CW
3176 plane ? "B" : "A",
3177 size);
e70236a8
JB
3178
3179 return size;
3180}
3181
3182static int i830_get_fifo_size(struct drm_device *dev, int plane)
3183{
3184 struct drm_i915_private *dev_priv = dev->dev_private;
3185 uint32_t dsparb = I915_READ(DSPARB);
3186 int size;
3187
3188 size = dsparb & 0x7f;
3189 size >>= 1; /* Convert to cachelines */
3190
28c97730 3191 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
5eddb70b 3192 plane ? "B" : "A", size);
e70236a8
JB
3193
3194 return size;
3195}
3196
d4294342 3197static void pineview_update_wm(struct drm_device *dev, int planea_clock,
5eddb70b
CW
3198 int planeb_clock, int sr_hdisplay, int unused,
3199 int pixel_size)
d4294342
ZY
3200{
3201 struct drm_i915_private *dev_priv = dev->dev_private;
403c89ff 3202 const struct cxsr_latency *latency;
d4294342
ZY
3203 u32 reg;
3204 unsigned long wm;
d4294342
ZY
3205 int sr_clock;
3206
403c89ff 3207 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
95534263 3208 dev_priv->fsb_freq, dev_priv->mem_freq);
d4294342
ZY
3209 if (!latency) {
3210 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
3211 pineview_disable_cxsr(dev);
3212 return;
3213 }
3214
3215 if (!planea_clock || !planeb_clock) {
3216 sr_clock = planea_clock ? planea_clock : planeb_clock;
3217
3218 /* Display SR */
3219 wm = intel_calculate_wm(sr_clock, &pineview_display_wm,
3220 pixel_size, latency->display_sr);
3221 reg = I915_READ(DSPFW1);
3222 reg &= ~DSPFW_SR_MASK;
3223 reg |= wm << DSPFW_SR_SHIFT;
3224 I915_WRITE(DSPFW1, reg);
3225 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
3226
3227 /* cursor SR */
3228 wm = intel_calculate_wm(sr_clock, &pineview_cursor_wm,
3229 pixel_size, latency->cursor_sr);
3230 reg = I915_READ(DSPFW3);
3231 reg &= ~DSPFW_CURSOR_SR_MASK;
3232 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
3233 I915_WRITE(DSPFW3, reg);
3234
3235 /* Display HPLL off SR */
3236 wm = intel_calculate_wm(sr_clock, &pineview_display_hplloff_wm,
3237 pixel_size, latency->display_hpll_disable);
3238 reg = I915_READ(DSPFW3);
3239 reg &= ~DSPFW_HPLL_SR_MASK;
3240 reg |= wm & DSPFW_HPLL_SR_MASK;
3241 I915_WRITE(DSPFW3, reg);
3242
3243 /* cursor HPLL off SR */
3244 wm = intel_calculate_wm(sr_clock, &pineview_cursor_hplloff_wm,
3245 pixel_size, latency->cursor_hpll_disable);
3246 reg = I915_READ(DSPFW3);
3247 reg &= ~DSPFW_HPLL_CURSOR_MASK;
3248 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
3249 I915_WRITE(DSPFW3, reg);
3250 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
3251
3252 /* activate cxsr */
3e33d94d
CW
3253 I915_WRITE(DSPFW3,
3254 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
d4294342
ZY
3255 DRM_DEBUG_KMS("Self-refresh is enabled\n");
3256 } else {
3257 pineview_disable_cxsr(dev);
3258 DRM_DEBUG_KMS("Self-refresh is disabled\n");
3259 }
3260}
3261
0e442c60 3262static void g4x_update_wm(struct drm_device *dev, int planea_clock,
fa143215
ZY
3263 int planeb_clock, int sr_hdisplay, int sr_htotal,
3264 int pixel_size)
652c393a
JB
3265{
3266 struct drm_i915_private *dev_priv = dev->dev_private;
0e442c60
JB
3267 int total_size, cacheline_size;
3268 int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr;
3269 struct intel_watermark_params planea_params, planeb_params;
3270 unsigned long line_time_us;
3271 int sr_clock, sr_entries = 0, entries_required;
652c393a 3272
0e442c60
JB
3273 /* Create copies of the base settings for each pipe */
3274 planea_params = planeb_params = g4x_wm_info;
3275
3276 /* Grab a couple of global values before we overwrite them */
3277 total_size = planea_params.fifo_size;
3278 cacheline_size = planea_params.cacheline_size;
3279
3280 /*
3281 * Note: we need to make sure we don't overflow for various clock &
3282 * latency values.
3283 * clocks go from a few thousand to several hundred thousand.
3284 * latency is usually a few thousand
3285 */
3286 entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) /
3287 1000;
8de9b311 3288 entries_required = DIV_ROUND_UP(entries_required, G4X_FIFO_LINE_SIZE);
0e442c60
JB
3289 planea_wm = entries_required + planea_params.guard_size;
3290
3291 entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) /
3292 1000;
8de9b311 3293 entries_required = DIV_ROUND_UP(entries_required, G4X_FIFO_LINE_SIZE);
0e442c60
JB
3294 planeb_wm = entries_required + planeb_params.guard_size;
3295
3296 cursora_wm = cursorb_wm = 16;
3297 cursor_sr = 32;
3298
3299 DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
3300
3301 /* Calc sr entries for one plane configs */
3302 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3303 /* self-refresh has much higher latency */
69e302a9 3304 static const int sr_latency_ns = 12000;
0e442c60
JB
3305
3306 sr_clock = planea_clock ? planea_clock : planeb_clock;
fa143215 3307 line_time_us = ((sr_htotal * 1000) / sr_clock);
0e442c60
JB
3308
3309 /* Use ns/us then divide to preserve precision */
fa143215 3310 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
5eddb70b 3311 pixel_size * sr_hdisplay;
8de9b311 3312 sr_entries = DIV_ROUND_UP(sr_entries, cacheline_size);
4fe5e611
ZY
3313
3314 entries_required = (((sr_latency_ns / line_time_us) +
3315 1000) / 1000) * pixel_size * 64;
8de9b311 3316 entries_required = DIV_ROUND_UP(entries_required,
5eddb70b 3317 g4x_cursor_wm_info.cacheline_size);
4fe5e611
ZY
3318 cursor_sr = entries_required + g4x_cursor_wm_info.guard_size;
3319
3320 if (cursor_sr > g4x_cursor_wm_info.max_wm)
3321 cursor_sr = g4x_cursor_wm_info.max_wm;
3322 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3323 "cursor %d\n", sr_entries, cursor_sr);
3324
0e442c60 3325 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
33c5fd12
DJ
3326 } else {
3327 /* Turn off self refresh if both pipes are enabled */
3328 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
5eddb70b 3329 & ~FW_BLC_SELF_EN);
0e442c60
JB
3330 }
3331
3332 DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n",
3333 planea_wm, planeb_wm, sr_entries);
3334
3335 planea_wm &= 0x3f;
3336 planeb_wm &= 0x3f;
3337
3338 I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) |
3339 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
3340 (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm);
3341 I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) |
3342 (cursora_wm << DSPFW_CURSORA_SHIFT));
3343 /* HPLL off in SR has some issues on G4x... disable it */
3344 I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) |
3345 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
652c393a
JB
3346}
3347
1dc7546d 3348static void i965_update_wm(struct drm_device *dev, int planea_clock,
fa143215
ZY
3349 int planeb_clock, int sr_hdisplay, int sr_htotal,
3350 int pixel_size)
7662c8bd
SL
3351{
3352 struct drm_i915_private *dev_priv = dev->dev_private;
1dc7546d
JB
3353 unsigned long line_time_us;
3354 int sr_clock, sr_entries, srwm = 1;
4fe5e611 3355 int cursor_sr = 16;
1dc7546d
JB
3356
3357 /* Calc sr entries for one plane configs */
3358 if (sr_hdisplay && (!planea_clock || !planeb_clock)) {
3359 /* self-refresh has much higher latency */
69e302a9 3360 static const int sr_latency_ns = 12000;
1dc7546d
JB
3361
3362 sr_clock = planea_clock ? planea_clock : planeb_clock;
fa143215 3363 line_time_us = ((sr_htotal * 1000) / sr_clock);
1dc7546d
JB
3364
3365 /* Use ns/us then divide to preserve precision */
fa143215 3366 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
5eddb70b 3367 pixel_size * sr_hdisplay;
8de9b311 3368 sr_entries = DIV_ROUND_UP(sr_entries, I915_FIFO_LINE_SIZE);
1dc7546d 3369 DRM_DEBUG("self-refresh entries: %d\n", sr_entries);
1b07e04e 3370 srwm = I965_FIFO_SIZE - sr_entries;
1dc7546d
JB
3371 if (srwm < 0)
3372 srwm = 1;
1b07e04e 3373 srwm &= 0x1ff;
4fe5e611
ZY
3374
3375 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
5eddb70b 3376 pixel_size * 64;
8de9b311
CW
3377 sr_entries = DIV_ROUND_UP(sr_entries,
3378 i965_cursor_wm_info.cacheline_size);
4fe5e611 3379 cursor_sr = i965_cursor_wm_info.fifo_size -
5eddb70b 3380 (sr_entries + i965_cursor_wm_info.guard_size);
4fe5e611
ZY
3381
3382 if (cursor_sr > i965_cursor_wm_info.max_wm)
3383 cursor_sr = i965_cursor_wm_info.max_wm;
3384
3385 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
3386 "cursor %d\n", srwm, cursor_sr);
3387
a6c45cf0 3388 if (IS_CRESTLINE(dev))
adcdbc66 3389 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
33c5fd12
DJ
3390 } else {
3391 /* Turn off self refresh if both pipes are enabled */
a6c45cf0 3392 if (IS_CRESTLINE(dev))
adcdbc66
JB
3393 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3394 & ~FW_BLC_SELF_EN);
1dc7546d 3395 }
7662c8bd 3396
1dc7546d
JB
3397 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
3398 srwm);
7662c8bd
SL
3399
3400 /* 965 has limitations... */
1dc7546d
JB
3401 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | (8 << 16) | (8 << 8) |
3402 (8 << 0));
7662c8bd 3403 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
4fe5e611
ZY
3404 /* update cursor SR watermark */
3405 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
7662c8bd
SL
3406}
3407
3408static void i9xx_update_wm(struct drm_device *dev, int planea_clock,
fa143215
ZY
3409 int planeb_clock, int sr_hdisplay, int sr_htotal,
3410 int pixel_size)
7662c8bd
SL
3411{
3412 struct drm_i915_private *dev_priv = dev->dev_private;
dff33cfc
JB
3413 uint32_t fwater_lo;
3414 uint32_t fwater_hi;
3415 int total_size, cacheline_size, cwm, srwm = 1;
3416 int planea_wm, planeb_wm;
3417 struct intel_watermark_params planea_params, planeb_params;
7662c8bd
SL
3418 unsigned long line_time_us;
3419 int sr_clock, sr_entries = 0;
3420
dff33cfc 3421 /* Create copies of the base settings for each pipe */
a6c45cf0 3422 if (IS_CRESTLINE(dev) || IS_I945GM(dev))
dff33cfc 3423 planea_params = planeb_params = i945_wm_info;
a6c45cf0 3424 else if (!IS_GEN2(dev))
dff33cfc 3425 planea_params = planeb_params = i915_wm_info;
7662c8bd 3426 else
dff33cfc 3427 planea_params = planeb_params = i855_wm_info;
7662c8bd 3428
dff33cfc
JB
3429 /* Grab a couple of global values before we overwrite them */
3430 total_size = planea_params.fifo_size;
3431 cacheline_size = planea_params.cacheline_size;
7662c8bd 3432
dff33cfc 3433 /* Update per-plane FIFO sizes */
e70236a8
JB
3434 planea_params.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
3435 planeb_params.fifo_size = dev_priv->display.get_fifo_size(dev, 1);
7662c8bd 3436
dff33cfc
JB
3437 planea_wm = intel_calculate_wm(planea_clock, &planea_params,
3438 pixel_size, latency_ns);
3439 planeb_wm = intel_calculate_wm(planeb_clock, &planeb_params,
3440 pixel_size, latency_ns);
28c97730 3441 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
7662c8bd
SL
3442
3443 /*
3444 * Overlay gets an aggressive default since video jitter is bad.
3445 */
3446 cwm = 2;
3447
dff33cfc 3448 /* Calc sr entries for one plane configs */
652c393a
JB
3449 if (HAS_FW_BLC(dev) && sr_hdisplay &&
3450 (!planea_clock || !planeb_clock)) {
dff33cfc 3451 /* self-refresh has much higher latency */
69e302a9 3452 static const int sr_latency_ns = 6000;
dff33cfc 3453
7662c8bd 3454 sr_clock = planea_clock ? planea_clock : planeb_clock;
fa143215 3455 line_time_us = ((sr_htotal * 1000) / sr_clock);
dff33cfc
JB
3456
3457 /* Use ns/us then divide to preserve precision */
fa143215 3458 sr_entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
5eddb70b 3459 pixel_size * sr_hdisplay;
8de9b311 3460 sr_entries = DIV_ROUND_UP(sr_entries, cacheline_size);
28c97730 3461 DRM_DEBUG_KMS("self-refresh entries: %d\n", sr_entries);
dff33cfc
JB
3462 srwm = total_size - sr_entries;
3463 if (srwm < 0)
3464 srwm = 1;
ee980b80
LP
3465
3466 if (IS_I945G(dev) || IS_I945GM(dev))
3467 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
3468 else if (IS_I915GM(dev)) {
3469 /* 915M has a smaller SRWM field */
3470 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
3471 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
3472 }
33c5fd12
DJ
3473 } else {
3474 /* Turn off self refresh if both pipes are enabled */
ee980b80
LP
3475 if (IS_I945G(dev) || IS_I945GM(dev)) {
3476 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
3477 & ~FW_BLC_SELF_EN);
3478 } else if (IS_I915GM(dev)) {
3479 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
3480 }
7662c8bd
SL
3481 }
3482
28c97730 3483 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
5eddb70b 3484 planea_wm, planeb_wm, cwm, srwm);
7662c8bd 3485
dff33cfc
JB
3486 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
3487 fwater_hi = (cwm & 0x1f);
3488
3489 /* Set request length to 8 cachelines per fetch */
3490 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
3491 fwater_hi = fwater_hi | (1 << 8);
7662c8bd
SL
3492
3493 I915_WRITE(FW_BLC, fwater_lo);
3494 I915_WRITE(FW_BLC2, fwater_hi);
7662c8bd
SL
3495}
3496
e70236a8 3497static void i830_update_wm(struct drm_device *dev, int planea_clock, int unused,
fa143215 3498 int unused2, int unused3, int pixel_size)
7662c8bd
SL
3499{
3500 struct drm_i915_private *dev_priv = dev->dev_private;
f3601326 3501 uint32_t fwater_lo = I915_READ(FW_BLC) & ~0xfff;
dff33cfc 3502 int planea_wm;
7662c8bd 3503
e70236a8 3504 i830_wm_info.fifo_size = dev_priv->display.get_fifo_size(dev, 0);
7662c8bd 3505
dff33cfc
JB
3506 planea_wm = intel_calculate_wm(planea_clock, &i830_wm_info,
3507 pixel_size, latency_ns);
f3601326
JB
3508 fwater_lo |= (3<<8) | planea_wm;
3509
28c97730 3510 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
7662c8bd
SL
3511
3512 I915_WRITE(FW_BLC, fwater_lo);
3513}
3514
7f8a8569 3515#define ILK_LP0_PLANE_LATENCY 700
c936f44d 3516#define ILK_LP0_CURSOR_LATENCY 1300
7f8a8569 3517
4ed765f9
CW
3518static bool ironlake_compute_wm0(struct drm_device *dev,
3519 int pipe,
1398261a 3520 const struct intel_watermark_params *display,
a0fa62d3 3521 int display_latency_ns,
1398261a 3522 const struct intel_watermark_params *cursor,
a0fa62d3 3523 int cursor_latency_ns,
4ed765f9
CW
3524 int *plane_wm,
3525 int *cursor_wm)
7f8a8569 3526{
c936f44d 3527 struct drm_crtc *crtc;
db66e37d
CW
3528 int htotal, hdisplay, clock, pixel_size;
3529 int line_time_us, line_count;
3530 int entries, tlb_miss;
c936f44d 3531
4ed765f9
CW
3532 crtc = intel_get_crtc_for_pipe(dev, pipe);
3533 if (crtc->fb == NULL || !crtc->enabled)
3534 return false;
7f8a8569 3535
4ed765f9
CW
3536 htotal = crtc->mode.htotal;
3537 hdisplay = crtc->mode.hdisplay;
3538 clock = crtc->mode.clock;
3539 pixel_size = crtc->fb->bits_per_pixel / 8;
3540
3541 /* Use the small buffer method to calculate plane watermark */
a0fa62d3 3542 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
db66e37d
CW
3543 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
3544 if (tlb_miss > 0)
3545 entries += tlb_miss;
1398261a
YL
3546 entries = DIV_ROUND_UP(entries, display->cacheline_size);
3547 *plane_wm = entries + display->guard_size;
3548 if (*plane_wm > (int)display->max_wm)
3549 *plane_wm = display->max_wm;
4ed765f9
CW
3550
3551 /* Use the large buffer method to calculate cursor watermark */
3552 line_time_us = ((htotal * 1000) / clock);
a0fa62d3 3553 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
4ed765f9 3554 entries = line_count * 64 * pixel_size;
db66e37d
CW
3555 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
3556 if (tlb_miss > 0)
3557 entries += tlb_miss;
1398261a
YL
3558 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
3559 *cursor_wm = entries + cursor->guard_size;
3560 if (*cursor_wm > (int)cursor->max_wm)
3561 *cursor_wm = (int)cursor->max_wm;
7f8a8569 3562
4ed765f9
CW
3563 return true;
3564}
c936f44d 3565
1398261a
YL
3566/*
3567 * Check the wm result.
3568 *
3569 * If any calculated watermark values is larger than the maximum value that
3570 * can be programmed into the associated watermark register, that watermark
3571 * must be disabled.
1398261a 3572 */
b79d4990
JB
3573static bool ironlake_check_srwm(struct drm_device *dev, int level,
3574 int fbc_wm, int display_wm, int cursor_wm,
3575 const struct intel_watermark_params *display,
3576 const struct intel_watermark_params *cursor)
1398261a
YL
3577{
3578 struct drm_i915_private *dev_priv = dev->dev_private;
3579
3580 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
3581 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
3582
3583 if (fbc_wm > SNB_FBC_MAX_SRWM) {
3584 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
b79d4990 3585 fbc_wm, SNB_FBC_MAX_SRWM, level);
1398261a
YL
3586
3587 /* fbc has it's own way to disable FBC WM */
3588 I915_WRITE(DISP_ARB_CTL,
3589 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
3590 return false;
3591 }
3592
b79d4990 3593 if (display_wm > display->max_wm) {
1398261a 3594 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
b79d4990 3595 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1398261a
YL
3596 return false;
3597 }
3598
b79d4990 3599 if (cursor_wm > cursor->max_wm) {
1398261a 3600 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
b79d4990 3601 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1398261a
YL
3602 return false;
3603 }
3604
3605 if (!(fbc_wm || display_wm || cursor_wm)) {
3606 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
3607 return false;
3608 }
3609
3610 return true;
3611}
3612
3613/*
3614 * Compute watermark values of WM[1-3],
3615 */
b79d4990
JB
3616static bool ironlake_compute_srwm(struct drm_device *dev, int level,
3617 int hdisplay, int htotal,
3618 int pixel_size, int clock, int latency_ns,
3619 const struct intel_watermark_params *display,
3620 const struct intel_watermark_params *cursor,
3621 int *fbc_wm, int *display_wm, int *cursor_wm)
1398261a
YL
3622{
3623
3624 unsigned long line_time_us;
b79d4990 3625 int line_count, line_size;
1398261a
YL
3626 int small, large;
3627 int entries;
1398261a
YL
3628
3629 if (!latency_ns) {
3630 *fbc_wm = *display_wm = *cursor_wm = 0;
3631 return false;
3632 }
3633
3634 line_time_us = (htotal * 1000) / clock;
3635 line_count = (latency_ns / line_time_us + 1000) / 1000;
3636 line_size = hdisplay * pixel_size;
3637
3638 /* Use the minimum of the small and large buffer method for primary */
3639 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
3640 large = line_count * line_size;
3641
b79d4990
JB
3642 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
3643 *display_wm = entries + display->guard_size;
1398261a
YL
3644
3645 /*
b79d4990 3646 * Spec says:
1398261a
YL
3647 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
3648 */
3649 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
3650
3651 /* calculate the self-refresh watermark for display cursor */
3652 entries = line_count * pixel_size * 64;
b79d4990
JB
3653 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
3654 *cursor_wm = entries + cursor->guard_size;
1398261a 3655
b79d4990
JB
3656 return ironlake_check_srwm(dev, level,
3657 *fbc_wm, *display_wm, *cursor_wm,
3658 display, cursor);
3659}
3660
3661static void ironlake_update_wm(struct drm_device *dev,
3662 int planea_clock, int planeb_clock,
3663 int hdisplay, int htotal,
3664 int pixel_size)
3665{
3666 struct drm_i915_private *dev_priv = dev->dev_private;
3667 int fbc_wm, plane_wm, cursor_wm, enabled;
3668 int clock;
3669
3670 enabled = 0;
3671 if (ironlake_compute_wm0(dev, 0,
3672 &ironlake_display_wm_info,
3673 ILK_LP0_PLANE_LATENCY,
3674 &ironlake_cursor_wm_info,
3675 ILK_LP0_CURSOR_LATENCY,
3676 &plane_wm, &cursor_wm)) {
3677 I915_WRITE(WM0_PIPEA_ILK,
3678 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3679 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
3680 " plane %d, " "cursor: %d\n",
3681 plane_wm, cursor_wm);
3682 enabled++;
3683 }
3684
3685 if (ironlake_compute_wm0(dev, 1,
3686 &ironlake_display_wm_info,
3687 ILK_LP0_PLANE_LATENCY,
3688 &ironlake_cursor_wm_info,
3689 ILK_LP0_CURSOR_LATENCY,
3690 &plane_wm, &cursor_wm)) {
3691 I915_WRITE(WM0_PIPEB_ILK,
3692 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3693 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
3694 " plane %d, cursor: %d\n",
3695 plane_wm, cursor_wm);
3696 enabled++;
3697 }
3698
3699 /*
3700 * Calculate and update the self-refresh watermark only when one
3701 * display plane is used.
3702 */
3703 I915_WRITE(WM3_LP_ILK, 0);
3704 I915_WRITE(WM2_LP_ILK, 0);
3705 I915_WRITE(WM1_LP_ILK, 0);
3706
3707 if (enabled != 1)
3708 return;
3709
3710 clock = planea_clock ? planea_clock : planeb_clock;
3711
3712 /* WM1 */
3713 if (!ironlake_compute_srwm(dev, 1, hdisplay, htotal, pixel_size,
3714 clock, ILK_READ_WM1_LATENCY() * 500,
3715 &ironlake_display_srwm_info,
3716 &ironlake_cursor_srwm_info,
3717 &fbc_wm, &plane_wm, &cursor_wm))
3718 return;
3719
3720 I915_WRITE(WM1_LP_ILK,
3721 WM1_LP_SR_EN |
3722 (ILK_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3723 (fbc_wm << WM1_LP_FBC_SHIFT) |
3724 (plane_wm << WM1_LP_SR_SHIFT) |
3725 cursor_wm);
3726
3727 /* WM2 */
3728 if (!ironlake_compute_srwm(dev, 2, hdisplay, htotal, pixel_size,
3729 clock, ILK_READ_WM2_LATENCY() * 500,
3730 &ironlake_display_srwm_info,
3731 &ironlake_cursor_srwm_info,
3732 &fbc_wm, &plane_wm, &cursor_wm))
3733 return;
3734
3735 I915_WRITE(WM2_LP_ILK,
3736 WM2_LP_EN |
3737 (ILK_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3738 (fbc_wm << WM1_LP_FBC_SHIFT) |
3739 (plane_wm << WM1_LP_SR_SHIFT) |
3740 cursor_wm);
3741
3742 /*
3743 * WM3 is unsupported on ILK, probably because we don't have latency
3744 * data for that power state
3745 */
1398261a
YL
3746}
3747
3748static void sandybridge_update_wm(struct drm_device *dev,
3749 int planea_clock, int planeb_clock,
3750 int hdisplay, int htotal,
3751 int pixel_size)
3752{
3753 struct drm_i915_private *dev_priv = dev->dev_private;
a0fa62d3 3754 int latency = SNB_READ_WM0_LATENCY() * 100; /* In unit 0.1us */
1398261a
YL
3755 int fbc_wm, plane_wm, cursor_wm, enabled;
3756 int clock;
3757
3758 enabled = 0;
3759 if (ironlake_compute_wm0(dev, 0,
3760 &sandybridge_display_wm_info, latency,
3761 &sandybridge_cursor_wm_info, latency,
3762 &plane_wm, &cursor_wm)) {
3763 I915_WRITE(WM0_PIPEA_ILK,
3764 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3765 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
3766 " plane %d, " "cursor: %d\n",
3767 plane_wm, cursor_wm);
3768 enabled++;
3769 }
3770
3771 if (ironlake_compute_wm0(dev, 1,
3772 &sandybridge_display_wm_info, latency,
3773 &sandybridge_cursor_wm_info, latency,
3774 &plane_wm, &cursor_wm)) {
3775 I915_WRITE(WM0_PIPEB_ILK,
3776 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
3777 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
3778 " plane %d, cursor: %d\n",
3779 plane_wm, cursor_wm);
3780 enabled++;
3781 }
3782
3783 /*
3784 * Calculate and update the self-refresh watermark only when one
3785 * display plane is used.
3786 *
3787 * SNB support 3 levels of watermark.
3788 *
3789 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
3790 * and disabled in the descending order
3791 *
3792 */
3793 I915_WRITE(WM3_LP_ILK, 0);
3794 I915_WRITE(WM2_LP_ILK, 0);
3795 I915_WRITE(WM1_LP_ILK, 0);
3796
3797 if (enabled != 1)
3798 return;
3799
3800 clock = planea_clock ? planea_clock : planeb_clock;
3801
3802 /* WM1 */
b79d4990
JB
3803 if (!ironlake_compute_srwm(dev, 1, hdisplay, htotal, pixel_size,
3804 clock, SNB_READ_WM1_LATENCY() * 500,
3805 &sandybridge_display_srwm_info,
3806 &sandybridge_cursor_srwm_info,
3807 &fbc_wm, &plane_wm, &cursor_wm))
1398261a
YL
3808 return;
3809
3810 I915_WRITE(WM1_LP_ILK,
3811 WM1_LP_SR_EN |
3812 (SNB_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3813 (fbc_wm << WM1_LP_FBC_SHIFT) |
3814 (plane_wm << WM1_LP_SR_SHIFT) |
3815 cursor_wm);
3816
3817 /* WM2 */
b79d4990
JB
3818 if (!ironlake_compute_srwm(dev, 2,
3819 hdisplay, htotal, pixel_size,
3820 clock, SNB_READ_WM2_LATENCY() * 500,
3821 &sandybridge_display_srwm_info,
3822 &sandybridge_cursor_srwm_info,
3823 &fbc_wm, &plane_wm, &cursor_wm))
1398261a
YL
3824 return;
3825
3826 I915_WRITE(WM2_LP_ILK,
3827 WM2_LP_EN |
3828 (SNB_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3829 (fbc_wm << WM1_LP_FBC_SHIFT) |
3830 (plane_wm << WM1_LP_SR_SHIFT) |
3831 cursor_wm);
3832
3833 /* WM3 */
b79d4990
JB
3834 if (!ironlake_compute_srwm(dev, 3,
3835 hdisplay, htotal, pixel_size,
3836 clock, SNB_READ_WM3_LATENCY() * 500,
3837 &sandybridge_display_srwm_info,
3838 &sandybridge_cursor_srwm_info,
3839 &fbc_wm, &plane_wm, &cursor_wm))
1398261a
YL
3840 return;
3841
3842 I915_WRITE(WM3_LP_ILK,
3843 WM3_LP_EN |
3844 (SNB_READ_WM3_LATENCY() << WM1_LP_LATENCY_SHIFT) |
3845 (fbc_wm << WM1_LP_FBC_SHIFT) |
3846 (plane_wm << WM1_LP_SR_SHIFT) |
3847 cursor_wm);
3848}
3849
7662c8bd
SL
3850/**
3851 * intel_update_watermarks - update FIFO watermark values based on current modes
3852 *
3853 * Calculate watermark values for the various WM regs based on current mode
3854 * and plane configuration.
3855 *
3856 * There are several cases to deal with here:
3857 * - normal (i.e. non-self-refresh)
3858 * - self-refresh (SR) mode
3859 * - lines are large relative to FIFO size (buffer can hold up to 2)
3860 * - lines are small relative to FIFO size (buffer can hold more than 2
3861 * lines), so need to account for TLB latency
3862 *
3863 * The normal calculation is:
3864 * watermark = dotclock * bytes per pixel * latency
3865 * where latency is platform & configuration dependent (we assume pessimal
3866 * values here).
3867 *
3868 * The SR calculation is:
3869 * watermark = (trunc(latency/line time)+1) * surface width *
3870 * bytes per pixel
3871 * where
3872 * line time = htotal / dotclock
fa143215 3873 * surface width = hdisplay for normal plane and 64 for cursor
7662c8bd
SL
3874 * and latency is assumed to be high, as above.
3875 *
3876 * The final value programmed to the register should always be rounded up,
3877 * and include an extra 2 entries to account for clock crossings.
3878 *
3879 * We don't use the sprite, so we can ignore that. And on Crestline we have
3880 * to set the non-SR watermarks to 8.
5eddb70b 3881 */
7662c8bd
SL
3882static void intel_update_watermarks(struct drm_device *dev)
3883{
e70236a8 3884 struct drm_i915_private *dev_priv = dev->dev_private;
7662c8bd 3885 struct drm_crtc *crtc;
7662c8bd
SL
3886 int sr_hdisplay = 0;
3887 unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0;
3888 int enabled = 0, pixel_size = 0;
fa143215 3889 int sr_htotal = 0;
7662c8bd 3890
c03342fa
ZW
3891 if (!dev_priv->display.update_wm)
3892 return;
3893
7662c8bd
SL
3894 /* Get the clock config from both planes */
3895 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
debcaddc 3896 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f7abfe8b 3897 if (intel_crtc->active) {
7662c8bd
SL
3898 enabled++;
3899 if (intel_crtc->plane == 0) {
28c97730 3900 DRM_DEBUG_KMS("plane A (pipe %d) clock: %d\n",
5eddb70b 3901 intel_crtc->pipe, crtc->mode.clock);
7662c8bd
SL
3902 planea_clock = crtc->mode.clock;
3903 } else {
28c97730 3904 DRM_DEBUG_KMS("plane B (pipe %d) clock: %d\n",
5eddb70b 3905 intel_crtc->pipe, crtc->mode.clock);
7662c8bd
SL
3906 planeb_clock = crtc->mode.clock;
3907 }
3908 sr_hdisplay = crtc->mode.hdisplay;
3909 sr_clock = crtc->mode.clock;
fa143215 3910 sr_htotal = crtc->mode.htotal;
7662c8bd
SL
3911 if (crtc->fb)
3912 pixel_size = crtc->fb->bits_per_pixel / 8;
3913 else
3914 pixel_size = 4; /* by default */
3915 }
3916 }
3917
3918 if (enabled <= 0)
3919 return;
3920
e70236a8 3921 dev_priv->display.update_wm(dev, planea_clock, planeb_clock,
fa143215 3922 sr_hdisplay, sr_htotal, pixel_size);
7662c8bd
SL
3923}
3924
a7615030
CW
3925static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3926{
3927 return dev_priv->lvds_use_ssc && i915_panel_use_ssc;
3928}
3929
5c3b82e2
CW
3930static int intel_crtc_mode_set(struct drm_crtc *crtc,
3931 struct drm_display_mode *mode,
3932 struct drm_display_mode *adjusted_mode,
3933 int x, int y,
3934 struct drm_framebuffer *old_fb)
79e53945
JB
3935{
3936 struct drm_device *dev = crtc->dev;
3937 struct drm_i915_private *dev_priv = dev->dev_private;
3938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3939 int pipe = intel_crtc->pipe;
80824003 3940 int plane = intel_crtc->plane;
5eddb70b 3941 u32 fp_reg, dpll_reg;
c751ce4f 3942 int refclk, num_connectors = 0;
652c393a 3943 intel_clock_t clock, reduced_clock;
5eddb70b 3944 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
652c393a 3945 bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false;
a4fc5ed6 3946 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
8e647a27 3947 struct intel_encoder *has_edp_encoder = NULL;
79e53945 3948 struct drm_mode_config *mode_config = &dev->mode_config;
5eddb70b 3949 struct intel_encoder *encoder;
d4906093 3950 const intel_limit_t *limit;
5c3b82e2 3951 int ret;
2c07245f 3952 struct fdi_m_n m_n = {0};
5eddb70b 3953 u32 reg, temp;
5eb08b69 3954 int target_clock;
79e53945
JB
3955
3956 drm_vblank_pre_modeset(dev, pipe);
3957
5eddb70b
CW
3958 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3959 if (encoder->base.crtc != crtc)
79e53945
JB
3960 continue;
3961
5eddb70b 3962 switch (encoder->type) {
79e53945
JB
3963 case INTEL_OUTPUT_LVDS:
3964 is_lvds = true;
3965 break;
3966 case INTEL_OUTPUT_SDVO:
7d57382e 3967 case INTEL_OUTPUT_HDMI:
79e53945 3968 is_sdvo = true;
5eddb70b 3969 if (encoder->needs_tv_clock)
e2f0ba97 3970 is_tv = true;
79e53945
JB
3971 break;
3972 case INTEL_OUTPUT_DVO:
3973 is_dvo = true;
3974 break;
3975 case INTEL_OUTPUT_TVOUT:
3976 is_tv = true;
3977 break;
3978 case INTEL_OUTPUT_ANALOG:
3979 is_crt = true;
3980 break;
a4fc5ed6
KP
3981 case INTEL_OUTPUT_DISPLAYPORT:
3982 is_dp = true;
3983 break;
32f9d658 3984 case INTEL_OUTPUT_EDP:
5eddb70b 3985 has_edp_encoder = encoder;
32f9d658 3986 break;
79e53945 3987 }
43565a06 3988
c751ce4f 3989 num_connectors++;
79e53945
JB
3990 }
3991
a7615030 3992 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
43565a06 3993 refclk = dev_priv->lvds_ssc_freq * 1000;
28c97730 3994 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
5eddb70b 3995 refclk / 1000);
a6c45cf0 3996 } else if (!IS_GEN2(dev)) {
79e53945 3997 refclk = 96000;
1cb1b75e
JB
3998 if (HAS_PCH_SPLIT(dev) &&
3999 (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)))
2c07245f 4000 refclk = 120000; /* 120Mhz refclk */
79e53945
JB
4001 } else {
4002 refclk = 48000;
4003 }
4004
d4906093
ML
4005 /*
4006 * Returns a set of divisors for the desired target clock with the given
4007 * refclk, or FALSE. The returned values represent the clock equation:
4008 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4009 */
1b894b59 4010 limit = intel_limit(crtc, refclk);
d4906093 4011 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, &clock);
79e53945
JB
4012 if (!ok) {
4013 DRM_ERROR("Couldn't find PLL settings for mode!\n");
1f803ee5 4014 drm_vblank_post_modeset(dev, pipe);
5c3b82e2 4015 return -EINVAL;
79e53945
JB
4016 }
4017
cda4b7d3 4018 /* Ensure that the cursor is valid for the new mode before changing... */
6b383a7f 4019 intel_crtc_update_cursor(crtc, true);
cda4b7d3 4020
ddc9003c
ZY
4021 if (is_lvds && dev_priv->lvds_downclock_avail) {
4022 has_reduced_clock = limit->find_pll(limit, crtc,
5eddb70b
CW
4023 dev_priv->lvds_downclock,
4024 refclk,
4025 &reduced_clock);
18f9ed12
ZY
4026 if (has_reduced_clock && (clock.p != reduced_clock.p)) {
4027 /*
4028 * If the different P is found, it means that we can't
4029 * switch the display clock by using the FP0/FP1.
4030 * In such case we will disable the LVDS downclock
4031 * feature.
4032 */
4033 DRM_DEBUG_KMS("Different P is found for "
5eddb70b 4034 "LVDS clock/downclock\n");
18f9ed12
ZY
4035 has_reduced_clock = 0;
4036 }
652c393a 4037 }
7026d4ac
ZW
4038 /* SDVO TV has fixed PLL values depend on its clock range,
4039 this mirrors vbios setting. */
4040 if (is_sdvo && is_tv) {
4041 if (adjusted_mode->clock >= 100000
5eddb70b 4042 && adjusted_mode->clock < 140500) {
7026d4ac
ZW
4043 clock.p1 = 2;
4044 clock.p2 = 10;
4045 clock.n = 3;
4046 clock.m1 = 16;
4047 clock.m2 = 8;
4048 } else if (adjusted_mode->clock >= 140500
5eddb70b 4049 && adjusted_mode->clock <= 200000) {
7026d4ac
ZW
4050 clock.p1 = 1;
4051 clock.p2 = 10;
4052 clock.n = 6;
4053 clock.m1 = 12;
4054 clock.m2 = 8;
4055 }
4056 }
4057
2c07245f 4058 /* FDI link */
bad720ff 4059 if (HAS_PCH_SPLIT(dev)) {
49078f7d 4060 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
77ffb597 4061 int lane = 0, link_bw, bpp;
5c5313c8 4062 /* CPU eDP doesn't require FDI link, so just set DP M/N
32f9d658 4063 according to current link config */
858bc21f 4064 if (has_edp_encoder && !intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
5eb08b69 4065 target_clock = mode->clock;
8e647a27
CW
4066 intel_edp_link_config(has_edp_encoder,
4067 &lane, &link_bw);
32f9d658 4068 } else {
5c5313c8 4069 /* [e]DP over FDI requires target mode clock
32f9d658 4070 instead of link clock */
5c5313c8 4071 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base))
32f9d658
ZW
4072 target_clock = mode->clock;
4073 else
4074 target_clock = adjusted_mode->clock;
021357ac
CW
4075
4076 /* FDI is a binary signal running at ~2.7GHz, encoding
4077 * each output octet as 10 bits. The actual frequency
4078 * is stored as a divider into a 100MHz clock, and the
4079 * mode pixel clock is stored in units of 1KHz.
4080 * Hence the bw of each lane in terms of the mode signal
4081 * is:
4082 */
4083 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
32f9d658 4084 }
58a27471
ZW
4085
4086 /* determine panel color depth */
5eddb70b 4087 temp = I915_READ(PIPECONF(pipe));
e5a95eb7
ZY
4088 temp &= ~PIPE_BPC_MASK;
4089 if (is_lvds) {
e5a95eb7 4090 /* the BPC will be 6 if it is 18-bit LVDS panel */
5eddb70b 4091 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == LVDS_A3_POWER_UP)
e5a95eb7
ZY
4092 temp |= PIPE_8BPC;
4093 else
4094 temp |= PIPE_6BPC;
1d850362 4095 } else if (has_edp_encoder) {
5ceb0f9b 4096 switch (dev_priv->edp.bpp/3) {
885a5fb5
ZW
4097 case 8:
4098 temp |= PIPE_8BPC;
4099 break;
4100 case 10:
4101 temp |= PIPE_10BPC;
4102 break;
4103 case 6:
4104 temp |= PIPE_6BPC;
4105 break;
4106 case 12:
4107 temp |= PIPE_12BPC;
4108 break;
4109 }
e5a95eb7
ZY
4110 } else
4111 temp |= PIPE_8BPC;
5eddb70b 4112 I915_WRITE(PIPECONF(pipe), temp);
58a27471
ZW
4113
4114 switch (temp & PIPE_BPC_MASK) {
4115 case PIPE_8BPC:
4116 bpp = 24;
4117 break;
4118 case PIPE_10BPC:
4119 bpp = 30;
4120 break;
4121 case PIPE_6BPC:
4122 bpp = 18;
4123 break;
4124 case PIPE_12BPC:
4125 bpp = 36;
4126 break;
4127 default:
4128 DRM_ERROR("unknown pipe bpc value\n");
4129 bpp = 24;
4130 }
4131
77ffb597
AJ
4132 if (!lane) {
4133 /*
4134 * Account for spread spectrum to avoid
4135 * oversubscribing the link. Max center spread
4136 * is 2.5%; use 5% for safety's sake.
4137 */
4138 u32 bps = target_clock * bpp * 21 / 20;
4139 lane = bps / (link_bw * 8) + 1;
4140 }
4141
4142 intel_crtc->fdi_lanes = lane;
4143
49078f7d
CW
4144 if (pixel_multiplier > 1)
4145 link_bw *= pixel_multiplier;
f2b115e6 4146 ironlake_compute_m_n(bpp, lane, target_clock, link_bw, &m_n);
5eb08b69 4147 }
2c07245f 4148
c038e51e
ZW
4149 /* Ironlake: try to setup display ref clock before DPLL
4150 * enabling. This is only under driver's control after
4151 * PCH B stepping, previous chipset stepping should be
4152 * ignoring this setting.
4153 */
bad720ff 4154 if (HAS_PCH_SPLIT(dev)) {
c038e51e
ZW
4155 temp = I915_READ(PCH_DREF_CONTROL);
4156 /* Always enable nonspread source */
4157 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
4158 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
c038e51e
ZW
4159 temp &= ~DREF_SSC_SOURCE_MASK;
4160 temp |= DREF_SSC_SOURCE_ENABLE;
4161 I915_WRITE(PCH_DREF_CONTROL, temp);
c038e51e 4162
5eddb70b 4163 POSTING_READ(PCH_DREF_CONTROL);
c038e51e
ZW
4164 udelay(200);
4165
8e647a27 4166 if (has_edp_encoder) {
a7615030 4167 if (intel_panel_use_ssc(dev_priv)) {
c038e51e
ZW
4168 temp |= DREF_SSC1_ENABLE;
4169 I915_WRITE(PCH_DREF_CONTROL, temp);
c038e51e 4170
5eddb70b 4171 POSTING_READ(PCH_DREF_CONTROL);
c038e51e 4172 udelay(200);
7f823282
JB
4173 }
4174 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4175
4176 /* Enable CPU source on CPU attached eDP */
4177 if (!intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
a7615030 4178 if (intel_panel_use_ssc(dev_priv))
7f823282
JB
4179 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
4180 else
4181 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
c038e51e 4182 } else {
7f823282 4183 /* Enable SSC on PCH eDP if needed */
a7615030 4184 if (intel_panel_use_ssc(dev_priv)) {
7f823282
JB
4185 DRM_ERROR("enabling SSC on PCH\n");
4186 temp |= DREF_SUPERSPREAD_SOURCE_ENABLE;
4187 }
c038e51e 4188 }
5eddb70b 4189 I915_WRITE(PCH_DREF_CONTROL, temp);
7f823282
JB
4190 POSTING_READ(PCH_DREF_CONTROL);
4191 udelay(200);
c038e51e
ZW
4192 }
4193 }
4194
f2b115e6 4195 if (IS_PINEVIEW(dev)) {
2177832f 4196 fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2;
652c393a
JB
4197 if (has_reduced_clock)
4198 fp2 = (1 << reduced_clock.n) << 16 |
4199 reduced_clock.m1 << 8 | reduced_clock.m2;
4200 } else {
2177832f 4201 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
652c393a
JB
4202 if (has_reduced_clock)
4203 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4204 reduced_clock.m2;
4205 }
79e53945 4206
c1858123
CW
4207 /* Enable autotuning of the PLL clock (if permissible) */
4208 if (HAS_PCH_SPLIT(dev)) {
4209 int factor = 21;
4210
4211 if (is_lvds) {
a7615030 4212 if ((intel_panel_use_ssc(dev_priv) &&
c1858123
CW
4213 dev_priv->lvds_ssc_freq == 100) ||
4214 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4215 factor = 25;
4216 } else if (is_sdvo && is_tv)
4217 factor = 20;
4218
4219 if (clock.m1 < factor * clock.n)
4220 fp |= FP_CB_TUNE;
4221 }
4222
5eddb70b 4223 dpll = 0;
bad720ff 4224 if (!HAS_PCH_SPLIT(dev))
2c07245f
ZW
4225 dpll = DPLL_VGA_MODE_DIS;
4226
a6c45cf0 4227 if (!IS_GEN2(dev)) {
79e53945
JB
4228 if (is_lvds)
4229 dpll |= DPLLB_MODE_LVDS;
4230 else
4231 dpll |= DPLLB_MODE_DAC_SERIAL;
4232 if (is_sdvo) {
6c9547ff
CW
4233 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4234 if (pixel_multiplier > 1) {
4235 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4236 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4237 else if (HAS_PCH_SPLIT(dev))
4238 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
4239 }
79e53945 4240 dpll |= DPLL_DVO_HIGH_SPEED;
79e53945 4241 }
83240120 4242 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base))
a4fc5ed6 4243 dpll |= DPLL_DVO_HIGH_SPEED;
79e53945
JB
4244
4245 /* compute bitmask from p1 value */
f2b115e6
AJ
4246 if (IS_PINEVIEW(dev))
4247 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
2c07245f 4248 else {
2177832f 4249 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
2c07245f 4250 /* also FPA1 */
bad720ff 4251 if (HAS_PCH_SPLIT(dev))
2c07245f 4252 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
652c393a
JB
4253 if (IS_G4X(dev) && has_reduced_clock)
4254 dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
2c07245f 4255 }
79e53945
JB
4256 switch (clock.p2) {
4257 case 5:
4258 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4259 break;
4260 case 7:
4261 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4262 break;
4263 case 10:
4264 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4265 break;
4266 case 14:
4267 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4268 break;
4269 }
a6c45cf0 4270 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev))
79e53945
JB
4271 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4272 } else {
4273 if (is_lvds) {
4274 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4275 } else {
4276 if (clock.p1 == 2)
4277 dpll |= PLL_P1_DIVIDE_BY_TWO;
4278 else
4279 dpll |= (clock.p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4280 if (clock.p2 == 4)
4281 dpll |= PLL_P2_DIVIDE_BY_4;
4282 }
4283 }
4284
43565a06
KH
4285 if (is_sdvo && is_tv)
4286 dpll |= PLL_REF_INPUT_TVCLKINBC;
4287 else if (is_tv)
79e53945 4288 /* XXX: just matching BIOS for now */
43565a06 4289 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
79e53945 4290 dpll |= 3;
a7615030 4291 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 4292 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
4293 else
4294 dpll |= PLL_REF_INPUT_DREFCLK;
4295
4296 /* setup pipeconf */
5eddb70b 4297 pipeconf = I915_READ(PIPECONF(pipe));
79e53945
JB
4298
4299 /* Set up the display plane register */
4300 dspcntr = DISPPLANE_GAMMA_ENABLE;
4301
f2b115e6 4302 /* Ironlake's plane is forced to pipe, bit 24 is to
2c07245f 4303 enable color space conversion */
bad720ff 4304 if (!HAS_PCH_SPLIT(dev)) {
2c07245f 4305 if (pipe == 0)
80824003 4306 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
2c07245f
ZW
4307 else
4308 dspcntr |= DISPPLANE_SEL_PIPE_B;
4309 }
79e53945 4310
a6c45cf0 4311 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
79e53945
JB
4312 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4313 * core speed.
4314 *
4315 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4316 * pipe == 0 check?
4317 */
e70236a8
JB
4318 if (mode->clock >
4319 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
5eddb70b 4320 pipeconf |= PIPECONF_DOUBLE_WIDE;
79e53945 4321 else
5eddb70b 4322 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
79e53945
JB
4323 }
4324
8d86dc6a 4325 dspcntr |= DISPLAY_PLANE_ENABLE;
5eddb70b 4326 pipeconf |= PIPECONF_ENABLE;
8d86dc6a
LT
4327 dpll |= DPLL_VCO_ENABLE;
4328
28c97730 4329 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
79e53945
JB
4330 drm_mode_debug_printmodeline(mode);
4331
f2b115e6 4332 /* assign to Ironlake registers */
bad720ff 4333 if (HAS_PCH_SPLIT(dev)) {
5eddb70b
CW
4334 fp_reg = PCH_FP0(pipe);
4335 dpll_reg = PCH_DPLL(pipe);
4336 } else {
4337 fp_reg = FP0(pipe);
4338 dpll_reg = DPLL(pipe);
2c07245f 4339 }
79e53945 4340
5c5313c8
JB
4341 /* PCH eDP needs FDI, but CPU eDP does not */
4342 if (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
79e53945
JB
4343 I915_WRITE(fp_reg, fp);
4344 I915_WRITE(dpll_reg, dpll & ~DPLL_VCO_ENABLE);
5eddb70b
CW
4345
4346 POSTING_READ(dpll_reg);
79e53945
JB
4347 udelay(150);
4348 }
4349
8db9d77b
ZW
4350 /* enable transcoder DPLL */
4351 if (HAS_PCH_CPT(dev)) {
4352 temp = I915_READ(PCH_DPLL_SEL);
5eddb70b
CW
4353 if (pipe == 0)
4354 temp |= TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL;
8db9d77b 4355 else
5eddb70b 4356 temp |= TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL;
8db9d77b 4357 I915_WRITE(PCH_DPLL_SEL, temp);
5eddb70b
CW
4358
4359 POSTING_READ(PCH_DPLL_SEL);
8db9d77b
ZW
4360 udelay(150);
4361 }
4362
79e53945
JB
4363 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4364 * This is an exception to the general rule that mode_set doesn't turn
4365 * things on.
4366 */
4367 if (is_lvds) {
5eddb70b 4368 reg = LVDS;
bad720ff 4369 if (HAS_PCH_SPLIT(dev))
5eddb70b 4370 reg = PCH_LVDS;
541998a1 4371
5eddb70b
CW
4372 temp = I915_READ(reg);
4373 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
b3b095b3
ZW
4374 if (pipe == 1) {
4375 if (HAS_PCH_CPT(dev))
5eddb70b 4376 temp |= PORT_TRANS_B_SEL_CPT;
b3b095b3 4377 else
5eddb70b 4378 temp |= LVDS_PIPEB_SELECT;
b3b095b3
ZW
4379 } else {
4380 if (HAS_PCH_CPT(dev))
5eddb70b 4381 temp &= ~PORT_TRANS_SEL_MASK;
b3b095b3 4382 else
5eddb70b 4383 temp &= ~LVDS_PIPEB_SELECT;
b3b095b3 4384 }
a3e17eb8 4385 /* set the corresponsding LVDS_BORDER bit */
5eddb70b 4386 temp |= dev_priv->lvds_border_bits;
79e53945
JB
4387 /* Set the B0-B3 data pairs corresponding to whether we're going to
4388 * set the DPLLs for dual-channel mode or not.
4389 */
4390 if (clock.p2 == 7)
5eddb70b 4391 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
79e53945 4392 else
5eddb70b 4393 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
79e53945
JB
4394
4395 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4396 * appropriately here, but we need to look more thoroughly into how
4397 * panels behave in the two modes.
4398 */
434ed097 4399 /* set the dithering flag on non-PCH LVDS as needed */
a6c45cf0 4400 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
434ed097 4401 if (dev_priv->lvds_dither)
5eddb70b 4402 temp |= LVDS_ENABLE_DITHER;
434ed097 4403 else
5eddb70b 4404 temp &= ~LVDS_ENABLE_DITHER;
898822ce 4405 }
5eddb70b 4406 I915_WRITE(reg, temp);
79e53945 4407 }
434ed097
JB
4408
4409 /* set the dithering flag and clear for anything other than a panel. */
4410 if (HAS_PCH_SPLIT(dev)) {
4411 pipeconf &= ~PIPECONF_DITHER_EN;
4412 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
4413 if (dev_priv->lvds_dither && (is_lvds || has_edp_encoder)) {
4414 pipeconf |= PIPECONF_DITHER_EN;
4415 pipeconf |= PIPECONF_DITHER_TYPE_ST1;
4416 }
4417 }
4418
5c5313c8 4419 if (is_dp || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
a4fc5ed6 4420 intel_dp_set_m_n(crtc, mode, adjusted_mode);
5c5313c8 4421 } else if (HAS_PCH_SPLIT(dev)) {
8db9d77b
ZW
4422 /* For non-DP output, clear any trans DP clock recovery setting.*/
4423 if (pipe == 0) {
4424 I915_WRITE(TRANSA_DATA_M1, 0);
4425 I915_WRITE(TRANSA_DATA_N1, 0);
4426 I915_WRITE(TRANSA_DP_LINK_M1, 0);
4427 I915_WRITE(TRANSA_DP_LINK_N1, 0);
4428 } else {
4429 I915_WRITE(TRANSB_DATA_M1, 0);
4430 I915_WRITE(TRANSB_DATA_N1, 0);
4431 I915_WRITE(TRANSB_DP_LINK_M1, 0);
4432 I915_WRITE(TRANSB_DP_LINK_N1, 0);
4433 }
4434 }
79e53945 4435
5c5313c8 4436 if (!has_edp_encoder || intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
79e53945 4437 I915_WRITE(dpll_reg, dpll);
5eddb70b 4438
32f9d658 4439 /* Wait for the clocks to stabilize. */
5eddb70b 4440 POSTING_READ(dpll_reg);
32f9d658
ZW
4441 udelay(150);
4442
a6c45cf0 4443 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
5eddb70b 4444 temp = 0;
bb66c512 4445 if (is_sdvo) {
5eddb70b
CW
4446 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4447 if (temp > 1)
4448 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
6c9547ff 4449 else
5eddb70b
CW
4450 temp = 0;
4451 }
4452 I915_WRITE(DPLL_MD(pipe), temp);
32f9d658 4453 } else {
a589b9f4
CW
4454 /* The pixel multiplier can only be updated once the
4455 * DPLL is enabled and the clocks are stable.
4456 *
4457 * So write it again.
4458 */
32f9d658
ZW
4459 I915_WRITE(dpll_reg, dpll);
4460 }
79e53945 4461 }
79e53945 4462
5eddb70b 4463 intel_crtc->lowfreq_avail = false;
652c393a
JB
4464 if (is_lvds && has_reduced_clock && i915_powersave) {
4465 I915_WRITE(fp_reg + 4, fp2);
4466 intel_crtc->lowfreq_avail = true;
4467 if (HAS_PIPE_CXSR(dev)) {
28c97730 4468 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
652c393a
JB
4469 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4470 }
4471 } else {
4472 I915_WRITE(fp_reg + 4, fp);
652c393a 4473 if (HAS_PIPE_CXSR(dev)) {
28c97730 4474 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
652c393a
JB
4475 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4476 }
4477 }
4478
734b4157
KH
4479 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4480 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4481 /* the chip adds 2 halflines automatically */
4482 adjusted_mode->crtc_vdisplay -= 1;
4483 adjusted_mode->crtc_vtotal -= 1;
4484 adjusted_mode->crtc_vblank_start -= 1;
4485 adjusted_mode->crtc_vblank_end -= 1;
4486 adjusted_mode->crtc_vsync_end -= 1;
4487 adjusted_mode->crtc_vsync_start -= 1;
4488 } else
4489 pipeconf &= ~PIPECONF_INTERLACE_W_FIELD_INDICATION; /* progressive */
4490
5eddb70b
CW
4491 I915_WRITE(HTOTAL(pipe),
4492 (adjusted_mode->crtc_hdisplay - 1) |
79e53945 4493 ((adjusted_mode->crtc_htotal - 1) << 16));
5eddb70b
CW
4494 I915_WRITE(HBLANK(pipe),
4495 (adjusted_mode->crtc_hblank_start - 1) |
79e53945 4496 ((adjusted_mode->crtc_hblank_end - 1) << 16));
5eddb70b
CW
4497 I915_WRITE(HSYNC(pipe),
4498 (adjusted_mode->crtc_hsync_start - 1) |
79e53945 4499 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5eddb70b
CW
4500
4501 I915_WRITE(VTOTAL(pipe),
4502 (adjusted_mode->crtc_vdisplay - 1) |
79e53945 4503 ((adjusted_mode->crtc_vtotal - 1) << 16));
5eddb70b
CW
4504 I915_WRITE(VBLANK(pipe),
4505 (adjusted_mode->crtc_vblank_start - 1) |
79e53945 4506 ((adjusted_mode->crtc_vblank_end - 1) << 16));
5eddb70b
CW
4507 I915_WRITE(VSYNC(pipe),
4508 (adjusted_mode->crtc_vsync_start - 1) |
79e53945 4509 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5eddb70b
CW
4510
4511 /* pipesrc and dspsize control the size that is scaled from,
4512 * which should always be the user's requested size.
79e53945 4513 */
bad720ff 4514 if (!HAS_PCH_SPLIT(dev)) {
5eddb70b
CW
4515 I915_WRITE(DSPSIZE(plane),
4516 ((mode->vdisplay - 1) << 16) |
4517 (mode->hdisplay - 1));
4518 I915_WRITE(DSPPOS(plane), 0);
2c07245f 4519 }
5eddb70b
CW
4520 I915_WRITE(PIPESRC(pipe),
4521 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
2c07245f 4522
bad720ff 4523 if (HAS_PCH_SPLIT(dev)) {
5eddb70b
CW
4524 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4525 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4526 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4527 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
2c07245f 4528
5c5313c8 4529 if (has_edp_encoder && !intel_encoder_is_pch_edp(&has_edp_encoder->base)) {
f2b115e6 4530 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
32f9d658 4531 }
2c07245f
ZW
4532 }
4533
5eddb70b
CW
4534 I915_WRITE(PIPECONF(pipe), pipeconf);
4535 POSTING_READ(PIPECONF(pipe));
79e53945 4536
9d0498a2 4537 intel_wait_for_vblank(dev, pipe);
79e53945 4538
f00a3ddf 4539 if (IS_GEN5(dev)) {
553bd149
ZW
4540 /* enable address swizzle for tiling buffer */
4541 temp = I915_READ(DISP_ARB_CTL);
4542 I915_WRITE(DISP_ARB_CTL, temp | DISP_TILE_SURFACE_SWIZZLING);
4543 }
4544
5eddb70b 4545 I915_WRITE(DSPCNTR(plane), dspcntr);
79e53945 4546
5c3b82e2 4547 ret = intel_pipe_set_base(crtc, x, y, old_fb);
7662c8bd
SL
4548
4549 intel_update_watermarks(dev);
4550
79e53945 4551 drm_vblank_post_modeset(dev, pipe);
5c3b82e2 4552
1f803ee5 4553 return ret;
79e53945
JB
4554}
4555
4556/** Loads the palette/gamma unit for the CRTC with the prepared values */
4557void intel_crtc_load_lut(struct drm_crtc *crtc)
4558{
4559 struct drm_device *dev = crtc->dev;
4560 struct drm_i915_private *dev_priv = dev->dev_private;
4561 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4562 int palreg = (intel_crtc->pipe == 0) ? PALETTE_A : PALETTE_B;
4563 int i;
4564
4565 /* The clocks have to be on to load the palette. */
4566 if (!crtc->enabled)
4567 return;
4568
f2b115e6 4569 /* use legacy palette for Ironlake */
bad720ff 4570 if (HAS_PCH_SPLIT(dev))
2c07245f
ZW
4571 palreg = (intel_crtc->pipe == 0) ? LGC_PALETTE_A :
4572 LGC_PALETTE_B;
4573
79e53945
JB
4574 for (i = 0; i < 256; i++) {
4575 I915_WRITE(palreg + 4 * i,
4576 (intel_crtc->lut_r[i] << 16) |
4577 (intel_crtc->lut_g[i] << 8) |
4578 intel_crtc->lut_b[i]);
4579 }
4580}
4581
560b85bb
CW
4582static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4583{
4584 struct drm_device *dev = crtc->dev;
4585 struct drm_i915_private *dev_priv = dev->dev_private;
4586 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4587 bool visible = base != 0;
4588 u32 cntl;
4589
4590 if (intel_crtc->cursor_visible == visible)
4591 return;
4592
4593 cntl = I915_READ(CURACNTR);
4594 if (visible) {
4595 /* On these chipsets we can only modify the base whilst
4596 * the cursor is disabled.
4597 */
4598 I915_WRITE(CURABASE, base);
4599
4600 cntl &= ~(CURSOR_FORMAT_MASK);
4601 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4602 cntl |= CURSOR_ENABLE |
4603 CURSOR_GAMMA_ENABLE |
4604 CURSOR_FORMAT_ARGB;
4605 } else
4606 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
4607 I915_WRITE(CURACNTR, cntl);
4608
4609 intel_crtc->cursor_visible = visible;
4610}
4611
4612static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4613{
4614 struct drm_device *dev = crtc->dev;
4615 struct drm_i915_private *dev_priv = dev->dev_private;
4616 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4617 int pipe = intel_crtc->pipe;
4618 bool visible = base != 0;
4619
4620 if (intel_crtc->cursor_visible != visible) {
4621 uint32_t cntl = I915_READ(pipe == 0 ? CURACNTR : CURBCNTR);
4622 if (base) {
4623 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4624 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4625 cntl |= pipe << 28; /* Connect to correct pipe */
4626 } else {
4627 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4628 cntl |= CURSOR_MODE_DISABLE;
4629 }
4630 I915_WRITE(pipe == 0 ? CURACNTR : CURBCNTR, cntl);
4631
4632 intel_crtc->cursor_visible = visible;
4633 }
4634 /* and commit changes on next vblank */
4635 I915_WRITE(pipe == 0 ? CURABASE : CURBBASE, base);
4636}
4637
cda4b7d3 4638/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
4639static void intel_crtc_update_cursor(struct drm_crtc *crtc,
4640 bool on)
cda4b7d3
CW
4641{
4642 struct drm_device *dev = crtc->dev;
4643 struct drm_i915_private *dev_priv = dev->dev_private;
4644 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4645 int pipe = intel_crtc->pipe;
4646 int x = intel_crtc->cursor_x;
4647 int y = intel_crtc->cursor_y;
560b85bb 4648 u32 base, pos;
cda4b7d3
CW
4649 bool visible;
4650
4651 pos = 0;
4652
6b383a7f 4653 if (on && crtc->enabled && crtc->fb) {
cda4b7d3
CW
4654 base = intel_crtc->cursor_addr;
4655 if (x > (int) crtc->fb->width)
4656 base = 0;
4657
4658 if (y > (int) crtc->fb->height)
4659 base = 0;
4660 } else
4661 base = 0;
4662
4663 if (x < 0) {
4664 if (x + intel_crtc->cursor_width < 0)
4665 base = 0;
4666
4667 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
4668 x = -x;
4669 }
4670 pos |= x << CURSOR_X_SHIFT;
4671
4672 if (y < 0) {
4673 if (y + intel_crtc->cursor_height < 0)
4674 base = 0;
4675
4676 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
4677 y = -y;
4678 }
4679 pos |= y << CURSOR_Y_SHIFT;
4680
4681 visible = base != 0;
560b85bb 4682 if (!visible && !intel_crtc->cursor_visible)
cda4b7d3
CW
4683 return;
4684
4685 I915_WRITE(pipe == 0 ? CURAPOS : CURBPOS, pos);
560b85bb
CW
4686 if (IS_845G(dev) || IS_I865G(dev))
4687 i845_update_cursor(crtc, base);
4688 else
4689 i9xx_update_cursor(crtc, base);
cda4b7d3
CW
4690
4691 if (visible)
4692 intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj);
4693}
4694
79e53945 4695static int intel_crtc_cursor_set(struct drm_crtc *crtc,
05394f39 4696 struct drm_file *file,
79e53945
JB
4697 uint32_t handle,
4698 uint32_t width, uint32_t height)
4699{
4700 struct drm_device *dev = crtc->dev;
4701 struct drm_i915_private *dev_priv = dev->dev_private;
4702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05394f39 4703 struct drm_i915_gem_object *obj;
cda4b7d3 4704 uint32_t addr;
3f8bc370 4705 int ret;
79e53945 4706
28c97730 4707 DRM_DEBUG_KMS("\n");
79e53945
JB
4708
4709 /* if we want to turn off the cursor ignore width and height */
4710 if (!handle) {
28c97730 4711 DRM_DEBUG_KMS("cursor off\n");
3f8bc370 4712 addr = 0;
05394f39 4713 obj = NULL;
5004417d 4714 mutex_lock(&dev->struct_mutex);
3f8bc370 4715 goto finish;
79e53945
JB
4716 }
4717
4718 /* Currently we only support 64x64 cursors */
4719 if (width != 64 || height != 64) {
4720 DRM_ERROR("we currently only support 64x64 cursors\n");
4721 return -EINVAL;
4722 }
4723
05394f39
CW
4724 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
4725 if (!obj)
79e53945
JB
4726 return -ENOENT;
4727
05394f39 4728 if (obj->base.size < width * height * 4) {
79e53945 4729 DRM_ERROR("buffer is to small\n");
34b8686e
DA
4730 ret = -ENOMEM;
4731 goto fail;
79e53945
JB
4732 }
4733
71acb5eb 4734 /* we only need to pin inside GTT if cursor is non-phy */
7f9872e0 4735 mutex_lock(&dev->struct_mutex);
b295d1b6 4736 if (!dev_priv->info->cursor_needs_physical) {
d9e86c0e
CW
4737 if (obj->tiling_mode) {
4738 DRM_ERROR("cursor cannot be tiled\n");
4739 ret = -EINVAL;
4740 goto fail_locked;
4741 }
4742
05394f39 4743 ret = i915_gem_object_pin(obj, PAGE_SIZE, true);
71acb5eb
DA
4744 if (ret) {
4745 DRM_ERROR("failed to pin cursor bo\n");
7f9872e0 4746 goto fail_locked;
71acb5eb 4747 }
e7b526bb 4748
05394f39 4749 ret = i915_gem_object_set_to_gtt_domain(obj, 0);
e7b526bb
CW
4750 if (ret) {
4751 DRM_ERROR("failed to move cursor bo into the GTT\n");
4752 goto fail_unpin;
4753 }
4754
d9e86c0e
CW
4755 ret = i915_gem_object_put_fence(obj);
4756 if (ret) {
4757 DRM_ERROR("failed to move cursor bo into the GTT\n");
4758 goto fail_unpin;
4759 }
4760
05394f39 4761 addr = obj->gtt_offset;
71acb5eb 4762 } else {
6eeefaf3 4763 int align = IS_I830(dev) ? 16 * 1024 : 256;
05394f39 4764 ret = i915_gem_attach_phys_object(dev, obj,
6eeefaf3
CW
4765 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
4766 align);
71acb5eb
DA
4767 if (ret) {
4768 DRM_ERROR("failed to attach phys object\n");
7f9872e0 4769 goto fail_locked;
71acb5eb 4770 }
05394f39 4771 addr = obj->phys_obj->handle->busaddr;
3f8bc370
KH
4772 }
4773
a6c45cf0 4774 if (IS_GEN2(dev))
14b60391
JB
4775 I915_WRITE(CURSIZE, (height << 12) | width);
4776
3f8bc370 4777 finish:
3f8bc370 4778 if (intel_crtc->cursor_bo) {
b295d1b6 4779 if (dev_priv->info->cursor_needs_physical) {
05394f39 4780 if (intel_crtc->cursor_bo != obj)
71acb5eb
DA
4781 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4782 } else
4783 i915_gem_object_unpin(intel_crtc->cursor_bo);
05394f39 4784 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
3f8bc370 4785 }
80824003 4786
7f9872e0 4787 mutex_unlock(&dev->struct_mutex);
3f8bc370
KH
4788
4789 intel_crtc->cursor_addr = addr;
05394f39 4790 intel_crtc->cursor_bo = obj;
cda4b7d3
CW
4791 intel_crtc->cursor_width = width;
4792 intel_crtc->cursor_height = height;
4793
6b383a7f 4794 intel_crtc_update_cursor(crtc, true);
3f8bc370 4795
79e53945 4796 return 0;
e7b526bb 4797fail_unpin:
05394f39 4798 i915_gem_object_unpin(obj);
7f9872e0 4799fail_locked:
34b8686e 4800 mutex_unlock(&dev->struct_mutex);
bc9025bd 4801fail:
05394f39 4802 drm_gem_object_unreference_unlocked(&obj->base);
34b8686e 4803 return ret;
79e53945
JB
4804}
4805
4806static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4807{
79e53945 4808 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 4809
cda4b7d3
CW
4810 intel_crtc->cursor_x = x;
4811 intel_crtc->cursor_y = y;
652c393a 4812
6b383a7f 4813 intel_crtc_update_cursor(crtc, true);
79e53945
JB
4814
4815 return 0;
4816}
4817
4818/** Sets the color ramps on behalf of RandR */
4819void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4820 u16 blue, int regno)
4821{
4822 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4823
4824 intel_crtc->lut_r[regno] = red >> 8;
4825 intel_crtc->lut_g[regno] = green >> 8;
4826 intel_crtc->lut_b[regno] = blue >> 8;
4827}
4828
b8c00ac5
DA
4829void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4830 u16 *blue, int regno)
4831{
4832 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4833
4834 *red = intel_crtc->lut_r[regno] << 8;
4835 *green = intel_crtc->lut_g[regno] << 8;
4836 *blue = intel_crtc->lut_b[regno] << 8;
4837}
4838
79e53945 4839static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 4840 u16 *blue, uint32_t start, uint32_t size)
79e53945 4841{
7203425a 4842 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 4843 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 4844
7203425a 4845 for (i = start; i < end; i++) {
79e53945
JB
4846 intel_crtc->lut_r[i] = red[i] >> 8;
4847 intel_crtc->lut_g[i] = green[i] >> 8;
4848 intel_crtc->lut_b[i] = blue[i] >> 8;
4849 }
4850
4851 intel_crtc_load_lut(crtc);
4852}
4853
4854/**
4855 * Get a pipe with a simple mode set on it for doing load-based monitor
4856 * detection.
4857 *
4858 * It will be up to the load-detect code to adjust the pipe as appropriate for
c751ce4f 4859 * its requirements. The pipe will be connected to no other encoders.
79e53945 4860 *
c751ce4f 4861 * Currently this code will only succeed if there is a pipe with no encoders
79e53945
JB
4862 * configured for it. In the future, it could choose to temporarily disable
4863 * some outputs to free up a pipe for its use.
4864 *
4865 * \return crtc, or NULL if no pipes are available.
4866 */
4867
4868/* VESA 640x480x72Hz mode to set on the pipe */
4869static struct drm_display_mode load_detect_mode = {
4870 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4871 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4872};
4873
21d40d37 4874struct drm_crtc *intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
c1c43977 4875 struct drm_connector *connector,
79e53945
JB
4876 struct drm_display_mode *mode,
4877 int *dpms_mode)
4878{
4879 struct intel_crtc *intel_crtc;
4880 struct drm_crtc *possible_crtc;
4881 struct drm_crtc *supported_crtc =NULL;
4ef69c7a 4882 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
4883 struct drm_crtc *crtc = NULL;
4884 struct drm_device *dev = encoder->dev;
4885 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4886 struct drm_crtc_helper_funcs *crtc_funcs;
4887 int i = -1;
4888
4889 /*
4890 * Algorithm gets a little messy:
4891 * - if the connector already has an assigned crtc, use it (but make
4892 * sure it's on first)
4893 * - try to find the first unused crtc that can drive this connector,
4894 * and use that if we find one
4895 * - if there are no unused crtcs available, try to use the first
4896 * one we found that supports the connector
4897 */
4898
4899 /* See if we already have a CRTC for this connector */
4900 if (encoder->crtc) {
4901 crtc = encoder->crtc;
4902 /* Make sure the crtc and connector are running */
4903 intel_crtc = to_intel_crtc(crtc);
4904 *dpms_mode = intel_crtc->dpms_mode;
4905 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4906 crtc_funcs = crtc->helper_private;
4907 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4908 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
4909 }
4910 return crtc;
4911 }
4912
4913 /* Find an unused one (if possible) */
4914 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
4915 i++;
4916 if (!(encoder->possible_crtcs & (1 << i)))
4917 continue;
4918 if (!possible_crtc->enabled) {
4919 crtc = possible_crtc;
4920 break;
4921 }
4922 if (!supported_crtc)
4923 supported_crtc = possible_crtc;
4924 }
4925
4926 /*
4927 * If we didn't find an unused CRTC, don't use any.
4928 */
4929 if (!crtc) {
4930 return NULL;
4931 }
4932
4933 encoder->crtc = crtc;
c1c43977 4934 connector->encoder = encoder;
21d40d37 4935 intel_encoder->load_detect_temp = true;
79e53945
JB
4936
4937 intel_crtc = to_intel_crtc(crtc);
4938 *dpms_mode = intel_crtc->dpms_mode;
4939
4940 if (!crtc->enabled) {
4941 if (!mode)
4942 mode = &load_detect_mode;
3c4fdcfb 4943 drm_crtc_helper_set_mode(crtc, mode, 0, 0, crtc->fb);
79e53945
JB
4944 } else {
4945 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
4946 crtc_funcs = crtc->helper_private;
4947 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
4948 }
4949
4950 /* Add this connector to the crtc */
4951 encoder_funcs->mode_set(encoder, &crtc->mode, &crtc->mode);
4952 encoder_funcs->commit(encoder);
4953 }
4954 /* let the connector get through one full cycle before testing */
9d0498a2 4955 intel_wait_for_vblank(dev, intel_crtc->pipe);
79e53945
JB
4956
4957 return crtc;
4958}
4959
c1c43977
ZW
4960void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
4961 struct drm_connector *connector, int dpms_mode)
79e53945 4962{
4ef69c7a 4963 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
4964 struct drm_device *dev = encoder->dev;
4965 struct drm_crtc *crtc = encoder->crtc;
4966 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
4967 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
4968
21d40d37 4969 if (intel_encoder->load_detect_temp) {
79e53945 4970 encoder->crtc = NULL;
c1c43977 4971 connector->encoder = NULL;
21d40d37 4972 intel_encoder->load_detect_temp = false;
79e53945
JB
4973 crtc->enabled = drm_helper_crtc_in_use(crtc);
4974 drm_helper_disable_unused_functions(dev);
4975 }
4976
c751ce4f 4977 /* Switch crtc and encoder back off if necessary */
79e53945
JB
4978 if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) {
4979 if (encoder->crtc == crtc)
4980 encoder_funcs->dpms(encoder, dpms_mode);
4981 crtc_funcs->dpms(crtc, dpms_mode);
4982 }
4983}
4984
4985/* Returns the clock of the currently programmed mode of the given pipe. */
4986static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
4987{
4988 struct drm_i915_private *dev_priv = dev->dev_private;
4989 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4990 int pipe = intel_crtc->pipe;
4991 u32 dpll = I915_READ((pipe == 0) ? DPLL_A : DPLL_B);
4992 u32 fp;
4993 intel_clock_t clock;
4994
4995 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
4996 fp = I915_READ((pipe == 0) ? FPA0 : FPB0);
4997 else
4998 fp = I915_READ((pipe == 0) ? FPA1 : FPB1);
4999
5000 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
5001 if (IS_PINEVIEW(dev)) {
5002 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5003 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
5004 } else {
5005 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5006 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5007 }
5008
a6c45cf0 5009 if (!IS_GEN2(dev)) {
f2b115e6
AJ
5010 if (IS_PINEVIEW(dev))
5011 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5012 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
5013 else
5014 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
5015 DPLL_FPA01_P1_POST_DIV_SHIFT);
5016
5017 switch (dpll & DPLL_MODE_MASK) {
5018 case DPLLB_MODE_DAC_SERIAL:
5019 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5020 5 : 10;
5021 break;
5022 case DPLLB_MODE_LVDS:
5023 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5024 7 : 14;
5025 break;
5026 default:
28c97730 5027 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945
JB
5028 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5029 return 0;
5030 }
5031
5032 /* XXX: Handle the 100Mhz refclk */
2177832f 5033 intel_clock(dev, 96000, &clock);
79e53945
JB
5034 } else {
5035 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5036
5037 if (is_lvds) {
5038 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5039 DPLL_FPA01_P1_POST_DIV_SHIFT);
5040 clock.p2 = 14;
5041
5042 if ((dpll & PLL_REF_INPUT_MASK) ==
5043 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5044 /* XXX: might not be 66MHz */
2177832f 5045 intel_clock(dev, 66000, &clock);
79e53945 5046 } else
2177832f 5047 intel_clock(dev, 48000, &clock);
79e53945
JB
5048 } else {
5049 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5050 clock.p1 = 2;
5051 else {
5052 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5053 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5054 }
5055 if (dpll & PLL_P2_DIVIDE_BY_4)
5056 clock.p2 = 4;
5057 else
5058 clock.p2 = 2;
5059
2177832f 5060 intel_clock(dev, 48000, &clock);
79e53945
JB
5061 }
5062 }
5063
5064 /* XXX: It would be nice to validate the clocks, but we can't reuse
5065 * i830PllIsValid() because it relies on the xf86_config connector
5066 * configuration being accurate, which it isn't necessarily.
5067 */
5068
5069 return clock.dot;
5070}
5071
5072/** Returns the currently programmed mode of the given pipe. */
5073struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5074 struct drm_crtc *crtc)
5075{
5076 struct drm_i915_private *dev_priv = dev->dev_private;
5077 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5078 int pipe = intel_crtc->pipe;
5079 struct drm_display_mode *mode;
5080 int htot = I915_READ((pipe == 0) ? HTOTAL_A : HTOTAL_B);
5081 int hsync = I915_READ((pipe == 0) ? HSYNC_A : HSYNC_B);
5082 int vtot = I915_READ((pipe == 0) ? VTOTAL_A : VTOTAL_B);
5083 int vsync = I915_READ((pipe == 0) ? VSYNC_A : VSYNC_B);
5084
5085 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5086 if (!mode)
5087 return NULL;
5088
5089 mode->clock = intel_crtc_clock_get(dev, crtc);
5090 mode->hdisplay = (htot & 0xffff) + 1;
5091 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5092 mode->hsync_start = (hsync & 0xffff) + 1;
5093 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5094 mode->vdisplay = (vtot & 0xffff) + 1;
5095 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5096 mode->vsync_start = (vsync & 0xffff) + 1;
5097 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5098
5099 drm_mode_set_name(mode);
5100 drm_mode_set_crtcinfo(mode, 0);
5101
5102 return mode;
5103}
5104
652c393a
JB
5105#define GPU_IDLE_TIMEOUT 500 /* ms */
5106
5107/* When this timer fires, we've been idle for awhile */
5108static void intel_gpu_idle_timer(unsigned long arg)
5109{
5110 struct drm_device *dev = (struct drm_device *)arg;
5111 drm_i915_private_t *dev_priv = dev->dev_private;
5112
ff7ea4c0
CW
5113 if (!list_empty(&dev_priv->mm.active_list)) {
5114 /* Still processing requests, so just re-arm the timer. */
5115 mod_timer(&dev_priv->idle_timer, jiffies +
5116 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5117 return;
5118 }
652c393a 5119
ff7ea4c0 5120 dev_priv->busy = false;
01dfba93 5121 queue_work(dev_priv->wq, &dev_priv->idle_work);
652c393a
JB
5122}
5123
652c393a
JB
5124#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5125
5126static void intel_crtc_idle_timer(unsigned long arg)
5127{
5128 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5129 struct drm_crtc *crtc = &intel_crtc->base;
5130 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
ff7ea4c0 5131 struct intel_framebuffer *intel_fb;
652c393a 5132
ff7ea4c0
CW
5133 intel_fb = to_intel_framebuffer(crtc->fb);
5134 if (intel_fb && intel_fb->obj->active) {
5135 /* The framebuffer is still being accessed by the GPU. */
5136 mod_timer(&intel_crtc->idle_timer, jiffies +
5137 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5138 return;
5139 }
652c393a 5140
ff7ea4c0 5141 intel_crtc->busy = false;
01dfba93 5142 queue_work(dev_priv->wq, &dev_priv->idle_work);
652c393a
JB
5143}
5144
3dec0095 5145static void intel_increase_pllclock(struct drm_crtc *crtc)
652c393a
JB
5146{
5147 struct drm_device *dev = crtc->dev;
5148 drm_i915_private_t *dev_priv = dev->dev_private;
5149 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5150 int pipe = intel_crtc->pipe;
dbdc6479
JB
5151 int dpll_reg = DPLL(pipe);
5152 int dpll;
652c393a 5153
bad720ff 5154 if (HAS_PCH_SPLIT(dev))
652c393a
JB
5155 return;
5156
5157 if (!dev_priv->lvds_downclock_avail)
5158 return;
5159
dbdc6479 5160 dpll = I915_READ(dpll_reg);
652c393a 5161 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
44d98a61 5162 DRM_DEBUG_DRIVER("upclocking LVDS\n");
652c393a
JB
5163
5164 /* Unlock panel regs */
dbdc6479
JB
5165 I915_WRITE(PP_CONTROL,
5166 I915_READ(PP_CONTROL) | PANEL_UNLOCK_REGS);
652c393a
JB
5167
5168 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5169 I915_WRITE(dpll_reg, dpll);
dbdc6479 5170 POSTING_READ(dpll_reg);
9d0498a2 5171 intel_wait_for_vblank(dev, pipe);
dbdc6479 5172
652c393a
JB
5173 dpll = I915_READ(dpll_reg);
5174 if (dpll & DISPLAY_RATE_SELECT_FPA1)
44d98a61 5175 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
652c393a
JB
5176
5177 /* ...and lock them again */
5178 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
5179 }
5180
5181 /* Schedule downclock */
3dec0095
DV
5182 mod_timer(&intel_crtc->idle_timer, jiffies +
5183 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
652c393a
JB
5184}
5185
5186static void intel_decrease_pllclock(struct drm_crtc *crtc)
5187{
5188 struct drm_device *dev = crtc->dev;
5189 drm_i915_private_t *dev_priv = dev->dev_private;
5190 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5191 int pipe = intel_crtc->pipe;
5192 int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B;
5193 int dpll = I915_READ(dpll_reg);
5194
bad720ff 5195 if (HAS_PCH_SPLIT(dev))
652c393a
JB
5196 return;
5197
5198 if (!dev_priv->lvds_downclock_avail)
5199 return;
5200
5201 /*
5202 * Since this is called by a timer, we should never get here in
5203 * the manual case.
5204 */
5205 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
44d98a61 5206 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a
JB
5207
5208 /* Unlock panel regs */
4a655f04
JB
5209 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
5210 PANEL_UNLOCK_REGS);
652c393a
JB
5211
5212 dpll |= DISPLAY_RATE_SELECT_FPA1;
5213 I915_WRITE(dpll_reg, dpll);
5214 dpll = I915_READ(dpll_reg);
9d0498a2 5215 intel_wait_for_vblank(dev, pipe);
652c393a
JB
5216 dpll = I915_READ(dpll_reg);
5217 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 5218 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
5219
5220 /* ...and lock them again */
5221 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3);
5222 }
5223
5224}
5225
5226/**
5227 * intel_idle_update - adjust clocks for idleness
5228 * @work: work struct
5229 *
5230 * Either the GPU or display (or both) went idle. Check the busy status
5231 * here and adjust the CRTC and GPU clocks as necessary.
5232 */
5233static void intel_idle_update(struct work_struct *work)
5234{
5235 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5236 idle_work);
5237 struct drm_device *dev = dev_priv->dev;
5238 struct drm_crtc *crtc;
5239 struct intel_crtc *intel_crtc;
45ac22c8 5240 int enabled = 0;
652c393a
JB
5241
5242 if (!i915_powersave)
5243 return;
5244
5245 mutex_lock(&dev->struct_mutex);
5246
7648fa99
JB
5247 i915_update_gfx_val(dev_priv);
5248
652c393a
JB
5249 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5250 /* Skip inactive CRTCs */
5251 if (!crtc->fb)
5252 continue;
5253
45ac22c8 5254 enabled++;
652c393a
JB
5255 intel_crtc = to_intel_crtc(crtc);
5256 if (!intel_crtc->busy)
5257 intel_decrease_pllclock(crtc);
5258 }
5259
45ac22c8
LP
5260 if ((enabled == 1) && (IS_I945G(dev) || IS_I945GM(dev))) {
5261 DRM_DEBUG_DRIVER("enable memory self refresh on 945\n");
5262 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
5263 }
5264
652c393a
JB
5265 mutex_unlock(&dev->struct_mutex);
5266}
5267
5268/**
5269 * intel_mark_busy - mark the GPU and possibly the display busy
5270 * @dev: drm device
5271 * @obj: object we're operating on
5272 *
5273 * Callers can use this function to indicate that the GPU is busy processing
5274 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5275 * buffer), we'll also mark the display as busy, so we know to increase its
5276 * clock frequency.
5277 */
05394f39 5278void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
652c393a
JB
5279{
5280 drm_i915_private_t *dev_priv = dev->dev_private;
5281 struct drm_crtc *crtc = NULL;
5282 struct intel_framebuffer *intel_fb;
5283 struct intel_crtc *intel_crtc;
5284
5e17ee74
ZW
5285 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5286 return;
5287
060e645a
LP
5288 if (!dev_priv->busy) {
5289 if (IS_I945G(dev) || IS_I945GM(dev)) {
5290 u32 fw_blc_self;
ee980b80 5291
060e645a
LP
5292 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
5293 fw_blc_self = I915_READ(FW_BLC_SELF);
5294 fw_blc_self &= ~FW_BLC_SELF_EN;
5295 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
5296 }
28cf798f 5297 dev_priv->busy = true;
060e645a 5298 } else
28cf798f
CW
5299 mod_timer(&dev_priv->idle_timer, jiffies +
5300 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
652c393a
JB
5301
5302 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5303 if (!crtc->fb)
5304 continue;
5305
5306 intel_crtc = to_intel_crtc(crtc);
5307 intel_fb = to_intel_framebuffer(crtc->fb);
5308 if (intel_fb->obj == obj) {
5309 if (!intel_crtc->busy) {
060e645a
LP
5310 if (IS_I945G(dev) || IS_I945GM(dev)) {
5311 u32 fw_blc_self;
5312
5313 DRM_DEBUG_DRIVER("disable memory self refresh on 945\n");
5314 fw_blc_self = I915_READ(FW_BLC_SELF);
5315 fw_blc_self &= ~FW_BLC_SELF_EN;
5316 I915_WRITE(FW_BLC_SELF, fw_blc_self | FW_BLC_SELF_EN_MASK);
5317 }
652c393a 5318 /* Non-busy -> busy, upclock */
3dec0095 5319 intel_increase_pllclock(crtc);
652c393a
JB
5320 intel_crtc->busy = true;
5321 } else {
5322 /* Busy -> busy, put off timer */
5323 mod_timer(&intel_crtc->idle_timer, jiffies +
5324 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5325 }
5326 }
5327 }
5328}
5329
79e53945
JB
5330static void intel_crtc_destroy(struct drm_crtc *crtc)
5331{
5332 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
5333 struct drm_device *dev = crtc->dev;
5334 struct intel_unpin_work *work;
5335 unsigned long flags;
5336
5337 spin_lock_irqsave(&dev->event_lock, flags);
5338 work = intel_crtc->unpin_work;
5339 intel_crtc->unpin_work = NULL;
5340 spin_unlock_irqrestore(&dev->event_lock, flags);
5341
5342 if (work) {
5343 cancel_work_sync(&work->work);
5344 kfree(work);
5345 }
79e53945
JB
5346
5347 drm_crtc_cleanup(crtc);
67e77c5a 5348
79e53945
JB
5349 kfree(intel_crtc);
5350}
5351
6b95a207
KH
5352static void intel_unpin_work_fn(struct work_struct *__work)
5353{
5354 struct intel_unpin_work *work =
5355 container_of(__work, struct intel_unpin_work, work);
5356
5357 mutex_lock(&work->dev->struct_mutex);
b1b87f6b 5358 i915_gem_object_unpin(work->old_fb_obj);
05394f39
CW
5359 drm_gem_object_unreference(&work->pending_flip_obj->base);
5360 drm_gem_object_unreference(&work->old_fb_obj->base);
d9e86c0e 5361
6b95a207
KH
5362 mutex_unlock(&work->dev->struct_mutex);
5363 kfree(work);
5364}
5365
1afe3e9d 5366static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 5367 struct drm_crtc *crtc)
6b95a207
KH
5368{
5369 drm_i915_private_t *dev_priv = dev->dev_private;
6b95a207
KH
5370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5371 struct intel_unpin_work *work;
05394f39 5372 struct drm_i915_gem_object *obj;
6b95a207 5373 struct drm_pending_vblank_event *e;
49b14a5c 5374 struct timeval tnow, tvbl;
6b95a207
KH
5375 unsigned long flags;
5376
5377 /* Ignore early vblank irqs */
5378 if (intel_crtc == NULL)
5379 return;
5380
49b14a5c
MK
5381 do_gettimeofday(&tnow);
5382
6b95a207
KH
5383 spin_lock_irqsave(&dev->event_lock, flags);
5384 work = intel_crtc->unpin_work;
5385 if (work == NULL || !work->pending) {
5386 spin_unlock_irqrestore(&dev->event_lock, flags);
5387 return;
5388 }
5389
5390 intel_crtc->unpin_work = NULL;
6b95a207
KH
5391
5392 if (work->event) {
5393 e = work->event;
49b14a5c 5394 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
0af7e4df
MK
5395
5396 /* Called before vblank count and timestamps have
5397 * been updated for the vblank interval of flip
5398 * completion? Need to increment vblank count and
5399 * add one videorefresh duration to returned timestamp
49b14a5c
MK
5400 * to account for this. We assume this happened if we
5401 * get called over 0.9 frame durations after the last
5402 * timestamped vblank.
5403 *
5404 * This calculation can not be used with vrefresh rates
5405 * below 5Hz (10Hz to be on the safe side) without
5406 * promoting to 64 integers.
0af7e4df 5407 */
49b14a5c
MK
5408 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5409 9 * crtc->framedur_ns) {
0af7e4df 5410 e->event.sequence++;
49b14a5c
MK
5411 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5412 crtc->framedur_ns);
0af7e4df
MK
5413 }
5414
49b14a5c
MK
5415 e->event.tv_sec = tvbl.tv_sec;
5416 e->event.tv_usec = tvbl.tv_usec;
0af7e4df 5417
6b95a207
KH
5418 list_add_tail(&e->base.link,
5419 &e->base.file_priv->event_list);
5420 wake_up_interruptible(&e->base.file_priv->event_wait);
5421 }
5422
0af7e4df
MK
5423 drm_vblank_put(dev, intel_crtc->pipe);
5424
6b95a207
KH
5425 spin_unlock_irqrestore(&dev->event_lock, flags);
5426
05394f39 5427 obj = work->old_fb_obj;
d9e86c0e 5428
e59f2bac 5429 atomic_clear_mask(1 << intel_crtc->plane,
05394f39
CW
5430 &obj->pending_flip.counter);
5431 if (atomic_read(&obj->pending_flip) == 0)
f787a5f5 5432 wake_up(&dev_priv->pending_flip_queue);
d9e86c0e 5433
6b95a207 5434 schedule_work(&work->work);
e5510fac
JB
5435
5436 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
6b95a207
KH
5437}
5438
1afe3e9d
JB
5439void intel_finish_page_flip(struct drm_device *dev, int pipe)
5440{
5441 drm_i915_private_t *dev_priv = dev->dev_private;
5442 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5443
49b14a5c 5444 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
5445}
5446
5447void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5448{
5449 drm_i915_private_t *dev_priv = dev->dev_private;
5450 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5451
49b14a5c 5452 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
5453}
5454
6b95a207
KH
5455void intel_prepare_page_flip(struct drm_device *dev, int plane)
5456{
5457 drm_i915_private_t *dev_priv = dev->dev_private;
5458 struct intel_crtc *intel_crtc =
5459 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5460 unsigned long flags;
5461
5462 spin_lock_irqsave(&dev->event_lock, flags);
de3f440f 5463 if (intel_crtc->unpin_work) {
4e5359cd
SF
5464 if ((++intel_crtc->unpin_work->pending) > 1)
5465 DRM_ERROR("Prepared flip multiple times\n");
de3f440f
JB
5466 } else {
5467 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5468 }
6b95a207
KH
5469 spin_unlock_irqrestore(&dev->event_lock, flags);
5470}
5471
5472static int intel_crtc_page_flip(struct drm_crtc *crtc,
5473 struct drm_framebuffer *fb,
5474 struct drm_pending_vblank_event *event)
5475{
5476 struct drm_device *dev = crtc->dev;
5477 struct drm_i915_private *dev_priv = dev->dev_private;
5478 struct intel_framebuffer *intel_fb;
05394f39 5479 struct drm_i915_gem_object *obj;
6b95a207
KH
5480 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5481 struct intel_unpin_work *work;
be9a3dbf 5482 unsigned long flags, offset;
52e68630 5483 int pipe = intel_crtc->pipe;
20f0cd55 5484 u32 pf, pipesrc;
52e68630 5485 int ret;
6b95a207
KH
5486
5487 work = kzalloc(sizeof *work, GFP_KERNEL);
5488 if (work == NULL)
5489 return -ENOMEM;
5490
6b95a207
KH
5491 work->event = event;
5492 work->dev = crtc->dev;
5493 intel_fb = to_intel_framebuffer(crtc->fb);
b1b87f6b 5494 work->old_fb_obj = intel_fb->obj;
6b95a207
KH
5495 INIT_WORK(&work->work, intel_unpin_work_fn);
5496
5497 /* We borrow the event spin lock for protecting unpin_work */
5498 spin_lock_irqsave(&dev->event_lock, flags);
5499 if (intel_crtc->unpin_work) {
5500 spin_unlock_irqrestore(&dev->event_lock, flags);
5501 kfree(work);
468f0b44
CW
5502
5503 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
6b95a207
KH
5504 return -EBUSY;
5505 }
5506 intel_crtc->unpin_work = work;
5507 spin_unlock_irqrestore(&dev->event_lock, flags);
5508
5509 intel_fb = to_intel_framebuffer(fb);
5510 obj = intel_fb->obj;
5511
468f0b44 5512 mutex_lock(&dev->struct_mutex);
1ec14ad3 5513 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
96b099fd
CW
5514 if (ret)
5515 goto cleanup_work;
6b95a207 5516
75dfca80 5517 /* Reference the objects for the scheduled work. */
05394f39
CW
5518 drm_gem_object_reference(&work->old_fb_obj->base);
5519 drm_gem_object_reference(&obj->base);
6b95a207
KH
5520
5521 crtc->fb = fb;
96b099fd
CW
5522
5523 ret = drm_vblank_get(dev, intel_crtc->pipe);
5524 if (ret)
5525 goto cleanup_objs;
5526
c7f9f9a8
CW
5527 if (IS_GEN3(dev) || IS_GEN2(dev)) {
5528 u32 flip_mask;
48b956c5 5529
c7f9f9a8
CW
5530 /* Can't queue multiple flips, so wait for the previous
5531 * one to finish before executing the next.
5532 */
e1f99ce6
CW
5533 ret = BEGIN_LP_RING(2);
5534 if (ret)
5535 goto cleanup_objs;
5536
c7f9f9a8
CW
5537 if (intel_crtc->plane)
5538 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5539 else
5540 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
5541 OUT_RING(MI_WAIT_FOR_EVENT | flip_mask);
5542 OUT_RING(MI_NOOP);
6146b3d6
DV
5543 ADVANCE_LP_RING();
5544 }
83f7fd05 5545
e1f99ce6 5546 work->pending_flip_obj = obj;
e1f99ce6 5547
4e5359cd
SF
5548 work->enable_stall_check = true;
5549
be9a3dbf 5550 /* Offset into the new buffer for cases of shared fbs between CRTCs */
52e68630 5551 offset = crtc->y * fb->pitch + crtc->x * fb->bits_per_pixel/8;
be9a3dbf 5552
e1f99ce6
CW
5553 ret = BEGIN_LP_RING(4);
5554 if (ret)
5555 goto cleanup_objs;
5556
5557 /* Block clients from rendering to the new back buffer until
5558 * the flip occurs and the object is no longer visible.
5559 */
05394f39 5560 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
e1f99ce6
CW
5561
5562 switch (INTEL_INFO(dev)->gen) {
52e68630 5563 case 2:
1afe3e9d
JB
5564 OUT_RING(MI_DISPLAY_FLIP |
5565 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5566 OUT_RING(fb->pitch);
05394f39 5567 OUT_RING(obj->gtt_offset + offset);
52e68630
CW
5568 OUT_RING(MI_NOOP);
5569 break;
5570
5571 case 3:
1afe3e9d
JB
5572 OUT_RING(MI_DISPLAY_FLIP_I915 |
5573 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5574 OUT_RING(fb->pitch);
05394f39 5575 OUT_RING(obj->gtt_offset + offset);
22fd0fab 5576 OUT_RING(MI_NOOP);
52e68630
CW
5577 break;
5578
5579 case 4:
5580 case 5:
5581 /* i965+ uses the linear or tiled offsets from the
5582 * Display Registers (which do not change across a page-flip)
5583 * so we need only reprogram the base address.
5584 */
69d0b96c
DV
5585 OUT_RING(MI_DISPLAY_FLIP |
5586 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5587 OUT_RING(fb->pitch);
05394f39 5588 OUT_RING(obj->gtt_offset | obj->tiling_mode);
52e68630
CW
5589
5590 /* XXX Enabling the panel-fitter across page-flip is so far
5591 * untested on non-native modes, so ignore it for now.
5592 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5593 */
5594 pf = 0;
5595 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
5596 OUT_RING(pf | pipesrc);
5597 break;
5598
5599 case 6:
5600 OUT_RING(MI_DISPLAY_FLIP |
5601 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
05394f39
CW
5602 OUT_RING(fb->pitch | obj->tiling_mode);
5603 OUT_RING(obj->gtt_offset);
52e68630
CW
5604
5605 pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5606 pipesrc = I915_READ(pipe == 0 ? PIPEASRC : PIPEBSRC) & 0x0fff0fff;
5607 OUT_RING(pf | pipesrc);
5608 break;
22fd0fab 5609 }
6b95a207
KH
5610 ADVANCE_LP_RING();
5611
5612 mutex_unlock(&dev->struct_mutex);
5613
e5510fac
JB
5614 trace_i915_flip_request(intel_crtc->plane, obj);
5615
6b95a207 5616 return 0;
96b099fd
CW
5617
5618cleanup_objs:
05394f39
CW
5619 drm_gem_object_unreference(&work->old_fb_obj->base);
5620 drm_gem_object_unreference(&obj->base);
96b099fd
CW
5621cleanup_work:
5622 mutex_unlock(&dev->struct_mutex);
5623
5624 spin_lock_irqsave(&dev->event_lock, flags);
5625 intel_crtc->unpin_work = NULL;
5626 spin_unlock_irqrestore(&dev->event_lock, flags);
5627
5628 kfree(work);
5629
5630 return ret;
6b95a207
KH
5631}
5632
5d1d0cc8
CW
5633static void intel_crtc_reset(struct drm_crtc *crtc)
5634{
5635 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5636
5637 /* Reset flags back to the 'unknown' status so that they
5638 * will be correctly set on the initial modeset.
5639 */
5d1d0cc8 5640 intel_crtc->dpms_mode = -1;
5d1d0cc8
CW
5641}
5642
7e7d76c3 5643static struct drm_crtc_helper_funcs intel_helper_funcs = {
79e53945
JB
5644 .dpms = intel_crtc_dpms,
5645 .mode_fixup = intel_crtc_mode_fixup,
5646 .mode_set = intel_crtc_mode_set,
5647 .mode_set_base = intel_pipe_set_base,
81255565 5648 .mode_set_base_atomic = intel_pipe_set_base_atomic,
068143d3 5649 .load_lut = intel_crtc_load_lut,
cdd59983 5650 .disable = intel_crtc_disable,
79e53945
JB
5651};
5652
5653static const struct drm_crtc_funcs intel_crtc_funcs = {
5d1d0cc8 5654 .reset = intel_crtc_reset,
79e53945
JB
5655 .cursor_set = intel_crtc_cursor_set,
5656 .cursor_move = intel_crtc_cursor_move,
5657 .gamma_set = intel_crtc_gamma_set,
5658 .set_config = drm_crtc_helper_set_config,
5659 .destroy = intel_crtc_destroy,
6b95a207 5660 .page_flip = intel_crtc_page_flip,
79e53945
JB
5661};
5662
47f1c6c9
CW
5663static void intel_sanitize_modesetting(struct drm_device *dev,
5664 int pipe, int plane)
5665{
5666 struct drm_i915_private *dev_priv = dev->dev_private;
5667 u32 reg, val;
5668
5669 if (HAS_PCH_SPLIT(dev))
5670 return;
5671
5672 /* Who knows what state these registers were left in by the BIOS or
5673 * grub?
5674 *
5675 * If we leave the registers in a conflicting state (e.g. with the
5676 * display plane reading from the other pipe than the one we intend
5677 * to use) then when we attempt to teardown the active mode, we will
5678 * not disable the pipes and planes in the correct order -- leaving
5679 * a plane reading from a disabled pipe and possibly leading to
5680 * undefined behaviour.
5681 */
5682
5683 reg = DSPCNTR(plane);
5684 val = I915_READ(reg);
5685
5686 if ((val & DISPLAY_PLANE_ENABLE) == 0)
5687 return;
5688 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
5689 return;
5690
5691 /* This display plane is active and attached to the other CPU pipe. */
5692 pipe = !pipe;
5693
5694 /* Disable the plane and wait for it to stop reading from the pipe. */
5695 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
5696 intel_flush_display_plane(dev, plane);
5697
5698 if (IS_GEN2(dev))
5699 intel_wait_for_vblank(dev, pipe);
5700
5701 if (pipe == 0 && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
5702 return;
5703
5704 /* Switch off the pipe. */
5705 reg = PIPECONF(pipe);
5706 val = I915_READ(reg);
5707 if (val & PIPECONF_ENABLE) {
5708 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
5709 intel_wait_for_pipe_off(dev, pipe);
5710 }
5711}
79e53945 5712
b358d0a6 5713static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 5714{
22fd0fab 5715 drm_i915_private_t *dev_priv = dev->dev_private;
79e53945
JB
5716 struct intel_crtc *intel_crtc;
5717 int i;
5718
5719 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
5720 if (intel_crtc == NULL)
5721 return;
5722
5723 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
5724
5725 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
5726 for (i = 0; i < 256; i++) {
5727 intel_crtc->lut_r[i] = i;
5728 intel_crtc->lut_g[i] = i;
5729 intel_crtc->lut_b[i] = i;
5730 }
5731
80824003
JB
5732 /* Swap pipes & planes for FBC on pre-965 */
5733 intel_crtc->pipe = pipe;
5734 intel_crtc->plane = pipe;
e2e767ab 5735 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
28c97730 5736 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 5737 intel_crtc->plane = !pipe;
80824003
JB
5738 }
5739
22fd0fab
JB
5740 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
5741 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
5742 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
5743 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
5744
5d1d0cc8 5745 intel_crtc_reset(&intel_crtc->base);
04dbff52 5746 intel_crtc->active = true; /* force the pipe off on setup_init_config */
7e7d76c3
JB
5747
5748 if (HAS_PCH_SPLIT(dev)) {
5749 intel_helper_funcs.prepare = ironlake_crtc_prepare;
5750 intel_helper_funcs.commit = ironlake_crtc_commit;
5751 } else {
5752 intel_helper_funcs.prepare = i9xx_crtc_prepare;
5753 intel_helper_funcs.commit = i9xx_crtc_commit;
5754 }
5755
79e53945
JB
5756 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
5757
652c393a
JB
5758 intel_crtc->busy = false;
5759
5760 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
5761 (unsigned long)intel_crtc);
47f1c6c9
CW
5762
5763 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
79e53945
JB
5764}
5765
08d7b3d1 5766int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 5767 struct drm_file *file)
08d7b3d1
CW
5768{
5769 drm_i915_private_t *dev_priv = dev->dev_private;
5770 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
c05422d5
DV
5771 struct drm_mode_object *drmmode_obj;
5772 struct intel_crtc *crtc;
08d7b3d1
CW
5773
5774 if (!dev_priv) {
5775 DRM_ERROR("called with no initialization\n");
5776 return -EINVAL;
5777 }
5778
c05422d5
DV
5779 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
5780 DRM_MODE_OBJECT_CRTC);
08d7b3d1 5781
c05422d5 5782 if (!drmmode_obj) {
08d7b3d1
CW
5783 DRM_ERROR("no such CRTC id\n");
5784 return -EINVAL;
5785 }
5786
c05422d5
DV
5787 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
5788 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 5789
c05422d5 5790 return 0;
08d7b3d1
CW
5791}
5792
c5e4df33 5793static int intel_encoder_clones(struct drm_device *dev, int type_mask)
79e53945 5794{
4ef69c7a 5795 struct intel_encoder *encoder;
79e53945 5796 int index_mask = 0;
79e53945
JB
5797 int entry = 0;
5798
4ef69c7a
CW
5799 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
5800 if (type_mask & encoder->clone_mask)
79e53945
JB
5801 index_mask |= (1 << entry);
5802 entry++;
5803 }
4ef69c7a 5804
79e53945
JB
5805 return index_mask;
5806}
5807
4d302442
CW
5808static bool has_edp_a(struct drm_device *dev)
5809{
5810 struct drm_i915_private *dev_priv = dev->dev_private;
5811
5812 if (!IS_MOBILE(dev))
5813 return false;
5814
5815 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
5816 return false;
5817
5818 if (IS_GEN5(dev) &&
5819 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
5820 return false;
5821
5822 return true;
5823}
5824
79e53945
JB
5825static void intel_setup_outputs(struct drm_device *dev)
5826{
725e30ad 5827 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 5828 struct intel_encoder *encoder;
cb0953d7 5829 bool dpd_is_edp = false;
c5d1b51d 5830 bool has_lvds = false;
79e53945 5831
541998a1 5832 if (IS_MOBILE(dev) && !IS_I830(dev))
c5d1b51d
CW
5833 has_lvds = intel_lvds_init(dev);
5834 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
5835 /* disable the panel fitter on everything but LVDS */
5836 I915_WRITE(PFIT_CONTROL, 0);
5837 }
79e53945 5838
bad720ff 5839 if (HAS_PCH_SPLIT(dev)) {
cb0953d7 5840 dpd_is_edp = intel_dpd_is_edp(dev);
30ad48b7 5841
4d302442 5842 if (has_edp_a(dev))
32f9d658
ZW
5843 intel_dp_init(dev, DP_A);
5844
cb0953d7
AJ
5845 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
5846 intel_dp_init(dev, PCH_DP_D);
5847 }
5848
5849 intel_crt_init(dev);
5850
5851 if (HAS_PCH_SPLIT(dev)) {
5852 int found;
5853
30ad48b7 5854 if (I915_READ(HDMIB) & PORT_DETECTED) {
461ed3ca
ZY
5855 /* PCH SDVOB multiplex with HDMIB */
5856 found = intel_sdvo_init(dev, PCH_SDVOB);
30ad48b7
ZW
5857 if (!found)
5858 intel_hdmi_init(dev, HDMIB);
5eb08b69
ZW
5859 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
5860 intel_dp_init(dev, PCH_DP_B);
30ad48b7
ZW
5861 }
5862
5863 if (I915_READ(HDMIC) & PORT_DETECTED)
5864 intel_hdmi_init(dev, HDMIC);
5865
5866 if (I915_READ(HDMID) & PORT_DETECTED)
5867 intel_hdmi_init(dev, HDMID);
5868
5eb08b69
ZW
5869 if (I915_READ(PCH_DP_C) & DP_DETECTED)
5870 intel_dp_init(dev, PCH_DP_C);
5871
cb0953d7 5872 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
5eb08b69
ZW
5873 intel_dp_init(dev, PCH_DP_D);
5874
103a196f 5875 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 5876 bool found = false;
7d57382e 5877
725e30ad 5878 if (I915_READ(SDVOB) & SDVO_DETECTED) {
b01f2c3a 5879 DRM_DEBUG_KMS("probing SDVOB\n");
725e30ad 5880 found = intel_sdvo_init(dev, SDVOB);
b01f2c3a
JB
5881 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
5882 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
725e30ad 5883 intel_hdmi_init(dev, SDVOB);
b01f2c3a 5884 }
27185ae1 5885
b01f2c3a
JB
5886 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
5887 DRM_DEBUG_KMS("probing DP_B\n");
a4fc5ed6 5888 intel_dp_init(dev, DP_B);
b01f2c3a 5889 }
725e30ad 5890 }
13520b05
KH
5891
5892 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 5893
b01f2c3a
JB
5894 if (I915_READ(SDVOB) & SDVO_DETECTED) {
5895 DRM_DEBUG_KMS("probing SDVOC\n");
725e30ad 5896 found = intel_sdvo_init(dev, SDVOC);
b01f2c3a 5897 }
27185ae1
ML
5898
5899 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
5900
b01f2c3a
JB
5901 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
5902 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
725e30ad 5903 intel_hdmi_init(dev, SDVOC);
b01f2c3a
JB
5904 }
5905 if (SUPPORTS_INTEGRATED_DP(dev)) {
5906 DRM_DEBUG_KMS("probing DP_C\n");
a4fc5ed6 5907 intel_dp_init(dev, DP_C);
b01f2c3a 5908 }
725e30ad 5909 }
27185ae1 5910
b01f2c3a
JB
5911 if (SUPPORTS_INTEGRATED_DP(dev) &&
5912 (I915_READ(DP_D) & DP_DETECTED)) {
5913 DRM_DEBUG_KMS("probing DP_D\n");
a4fc5ed6 5914 intel_dp_init(dev, DP_D);
b01f2c3a 5915 }
bad720ff 5916 } else if (IS_GEN2(dev))
79e53945
JB
5917 intel_dvo_init(dev);
5918
103a196f 5919 if (SUPPORTS_TV(dev))
79e53945
JB
5920 intel_tv_init(dev);
5921
4ef69c7a
CW
5922 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
5923 encoder->base.possible_crtcs = encoder->crtc_mask;
5924 encoder->base.possible_clones =
5925 intel_encoder_clones(dev, encoder->clone_mask);
79e53945 5926 }
47356eb6
CW
5927
5928 intel_panel_setup_backlight(dev);
79e53945
JB
5929}
5930
5931static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
5932{
5933 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945
JB
5934
5935 drm_framebuffer_cleanup(fb);
05394f39 5936 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
79e53945
JB
5937
5938 kfree(intel_fb);
5939}
5940
5941static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 5942 struct drm_file *file,
79e53945
JB
5943 unsigned int *handle)
5944{
5945 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 5946 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 5947
05394f39 5948 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
5949}
5950
5951static const struct drm_framebuffer_funcs intel_fb_funcs = {
5952 .destroy = intel_user_framebuffer_destroy,
5953 .create_handle = intel_user_framebuffer_create_handle,
5954};
5955
38651674
DA
5956int intel_framebuffer_init(struct drm_device *dev,
5957 struct intel_framebuffer *intel_fb,
5958 struct drm_mode_fb_cmd *mode_cmd,
05394f39 5959 struct drm_i915_gem_object *obj)
79e53945 5960{
79e53945
JB
5961 int ret;
5962
05394f39 5963 if (obj->tiling_mode == I915_TILING_Y)
57cd6508
CW
5964 return -EINVAL;
5965
5966 if (mode_cmd->pitch & 63)
5967 return -EINVAL;
5968
5969 switch (mode_cmd->bpp) {
5970 case 8:
5971 case 16:
5972 case 24:
5973 case 32:
5974 break;
5975 default:
5976 return -EINVAL;
5977 }
5978
79e53945
JB
5979 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
5980 if (ret) {
5981 DRM_ERROR("framebuffer init failed %d\n", ret);
5982 return ret;
5983 }
5984
5985 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
79e53945 5986 intel_fb->obj = obj;
79e53945
JB
5987 return 0;
5988}
5989
79e53945
JB
5990static struct drm_framebuffer *
5991intel_user_framebuffer_create(struct drm_device *dev,
5992 struct drm_file *filp,
5993 struct drm_mode_fb_cmd *mode_cmd)
5994{
05394f39 5995 struct drm_i915_gem_object *obj;
38651674 5996 struct intel_framebuffer *intel_fb;
79e53945
JB
5997 int ret;
5998
05394f39 5999 obj = to_intel_bo(drm_gem_object_lookup(dev, filp, mode_cmd->handle));
79e53945 6000 if (!obj)
cce13ff7 6001 return ERR_PTR(-ENOENT);
79e53945 6002
38651674
DA
6003 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6004 if (!intel_fb)
cce13ff7 6005 return ERR_PTR(-ENOMEM);
38651674 6006
05394f39 6007 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
79e53945 6008 if (ret) {
05394f39 6009 drm_gem_object_unreference_unlocked(&obj->base);
38651674 6010 kfree(intel_fb);
cce13ff7 6011 return ERR_PTR(ret);
79e53945
JB
6012 }
6013
38651674 6014 return &intel_fb->base;
79e53945
JB
6015}
6016
79e53945 6017static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 6018 .fb_create = intel_user_framebuffer_create,
eb1f8e4f 6019 .output_poll_changed = intel_fb_output_poll_changed,
79e53945
JB
6020};
6021
05394f39 6022static struct drm_i915_gem_object *
aa40d6bb 6023intel_alloc_context_page(struct drm_device *dev)
9ea8d059 6024{
05394f39 6025 struct drm_i915_gem_object *ctx;
9ea8d059
CW
6026 int ret;
6027
aa40d6bb
ZN
6028 ctx = i915_gem_alloc_object(dev, 4096);
6029 if (!ctx) {
9ea8d059
CW
6030 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
6031 return NULL;
6032 }
6033
6034 mutex_lock(&dev->struct_mutex);
75e9e915 6035 ret = i915_gem_object_pin(ctx, 4096, true);
9ea8d059
CW
6036 if (ret) {
6037 DRM_ERROR("failed to pin power context: %d\n", ret);
6038 goto err_unref;
6039 }
6040
aa40d6bb 6041 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
9ea8d059
CW
6042 if (ret) {
6043 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
6044 goto err_unpin;
6045 }
6046 mutex_unlock(&dev->struct_mutex);
6047
aa40d6bb 6048 return ctx;
9ea8d059
CW
6049
6050err_unpin:
aa40d6bb 6051 i915_gem_object_unpin(ctx);
9ea8d059 6052err_unref:
05394f39 6053 drm_gem_object_unreference(&ctx->base);
9ea8d059
CW
6054 mutex_unlock(&dev->struct_mutex);
6055 return NULL;
6056}
6057
7648fa99
JB
6058bool ironlake_set_drps(struct drm_device *dev, u8 val)
6059{
6060 struct drm_i915_private *dev_priv = dev->dev_private;
6061 u16 rgvswctl;
6062
6063 rgvswctl = I915_READ16(MEMSWCTL);
6064 if (rgvswctl & MEMCTL_CMD_STS) {
6065 DRM_DEBUG("gpu busy, RCS change rejected\n");
6066 return false; /* still busy with another command */
6067 }
6068
6069 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
6070 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
6071 I915_WRITE16(MEMSWCTL, rgvswctl);
6072 POSTING_READ16(MEMSWCTL);
6073
6074 rgvswctl |= MEMCTL_CMD_STS;
6075 I915_WRITE16(MEMSWCTL, rgvswctl);
6076
6077 return true;
6078}
6079
f97108d1
JB
6080void ironlake_enable_drps(struct drm_device *dev)
6081{
6082 struct drm_i915_private *dev_priv = dev->dev_private;
7648fa99 6083 u32 rgvmodectl = I915_READ(MEMMODECTL);
f97108d1 6084 u8 fmax, fmin, fstart, vstart;
f97108d1 6085
ea056c14
JB
6086 /* Enable temp reporting */
6087 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
6088 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
6089
f97108d1
JB
6090 /* 100ms RC evaluation intervals */
6091 I915_WRITE(RCUPEI, 100000);
6092 I915_WRITE(RCDNEI, 100000);
6093
6094 /* Set max/min thresholds to 90ms and 80ms respectively */
6095 I915_WRITE(RCBMAXAVG, 90000);
6096 I915_WRITE(RCBMINAVG, 80000);
6097
6098 I915_WRITE(MEMIHYST, 1);
6099
6100 /* Set up min, max, and cur for interrupt handling */
6101 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
6102 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
6103 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
6104 MEMMODE_FSTART_SHIFT;
7648fa99 6105
f97108d1
JB
6106 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
6107 PXVFREQ_PX_SHIFT;
6108
80dbf4b7 6109 dev_priv->fmax = fmax; /* IPS callback will increase this */
7648fa99
JB
6110 dev_priv->fstart = fstart;
6111
80dbf4b7 6112 dev_priv->max_delay = fstart;
f97108d1
JB
6113 dev_priv->min_delay = fmin;
6114 dev_priv->cur_delay = fstart;
6115
80dbf4b7
JB
6116 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
6117 fmax, fmin, fstart);
7648fa99 6118
f97108d1
JB
6119 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
6120
6121 /*
6122 * Interrupts will be enabled in ironlake_irq_postinstall
6123 */
6124
6125 I915_WRITE(VIDSTART, vstart);
6126 POSTING_READ(VIDSTART);
6127
6128 rgvmodectl |= MEMMODE_SWMODE_EN;
6129 I915_WRITE(MEMMODECTL, rgvmodectl);
6130
481b6af3 6131 if (wait_for((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
913d8d11 6132 DRM_ERROR("stuck trying to change perf mode\n");
f97108d1
JB
6133 msleep(1);
6134
7648fa99 6135 ironlake_set_drps(dev, fstart);
f97108d1 6136
7648fa99
JB
6137 dev_priv->last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
6138 I915_READ(0x112e0);
6139 dev_priv->last_time1 = jiffies_to_msecs(jiffies);
6140 dev_priv->last_count2 = I915_READ(0x112f4);
6141 getrawmonotonic(&dev_priv->last_time2);
f97108d1
JB
6142}
6143
6144void ironlake_disable_drps(struct drm_device *dev)
6145{
6146 struct drm_i915_private *dev_priv = dev->dev_private;
7648fa99 6147 u16 rgvswctl = I915_READ16(MEMSWCTL);
f97108d1
JB
6148
6149 /* Ack interrupts, disable EFC interrupt */
6150 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
6151 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
6152 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
6153 I915_WRITE(DEIIR, DE_PCU_EVENT);
6154 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
6155
6156 /* Go back to the starting frequency */
7648fa99 6157 ironlake_set_drps(dev, dev_priv->fstart);
f97108d1
JB
6158 msleep(1);
6159 rgvswctl |= MEMCTL_CMD_STS;
6160 I915_WRITE(MEMSWCTL, rgvswctl);
6161 msleep(1);
6162
6163}
6164
3b8d8d91
JB
6165void gen6_set_rps(struct drm_device *dev, u8 val)
6166{
6167 struct drm_i915_private *dev_priv = dev->dev_private;
6168 u32 swreq;
6169
6170 swreq = (val & 0x3ff) << 25;
6171 I915_WRITE(GEN6_RPNSWREQ, swreq);
6172}
6173
6174void gen6_disable_rps(struct drm_device *dev)
6175{
6176 struct drm_i915_private *dev_priv = dev->dev_private;
6177
6178 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
6179 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
6180 I915_WRITE(GEN6_PMIER, 0);
6181 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
6182}
6183
7648fa99
JB
6184static unsigned long intel_pxfreq(u32 vidfreq)
6185{
6186 unsigned long freq;
6187 int div = (vidfreq & 0x3f0000) >> 16;
6188 int post = (vidfreq & 0x3000) >> 12;
6189 int pre = (vidfreq & 0x7);
6190
6191 if (!pre)
6192 return 0;
6193
6194 freq = ((div * 133333) / ((1<<post) * pre));
6195
6196 return freq;
6197}
6198
6199void intel_init_emon(struct drm_device *dev)
6200{
6201 struct drm_i915_private *dev_priv = dev->dev_private;
6202 u32 lcfuse;
6203 u8 pxw[16];
6204 int i;
6205
6206 /* Disable to program */
6207 I915_WRITE(ECR, 0);
6208 POSTING_READ(ECR);
6209
6210 /* Program energy weights for various events */
6211 I915_WRITE(SDEW, 0x15040d00);
6212 I915_WRITE(CSIEW0, 0x007f0000);
6213 I915_WRITE(CSIEW1, 0x1e220004);
6214 I915_WRITE(CSIEW2, 0x04000004);
6215
6216 for (i = 0; i < 5; i++)
6217 I915_WRITE(PEW + (i * 4), 0);
6218 for (i = 0; i < 3; i++)
6219 I915_WRITE(DEW + (i * 4), 0);
6220
6221 /* Program P-state weights to account for frequency power adjustment */
6222 for (i = 0; i < 16; i++) {
6223 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
6224 unsigned long freq = intel_pxfreq(pxvidfreq);
6225 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6226 PXVFREQ_PX_SHIFT;
6227 unsigned long val;
6228
6229 val = vid * vid;
6230 val *= (freq / 1000);
6231 val *= 255;
6232 val /= (127*127*900);
6233 if (val > 0xff)
6234 DRM_ERROR("bad pxval: %ld\n", val);
6235 pxw[i] = val;
6236 }
6237 /* Render standby states get 0 weight */
6238 pxw[14] = 0;
6239 pxw[15] = 0;
6240
6241 for (i = 0; i < 4; i++) {
6242 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6243 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
6244 I915_WRITE(PXW + (i * 4), val);
6245 }
6246
6247 /* Adjust magic regs to magic values (more experimental results) */
6248 I915_WRITE(OGW0, 0);
6249 I915_WRITE(OGW1, 0);
6250 I915_WRITE(EG0, 0x00007f00);
6251 I915_WRITE(EG1, 0x0000000e);
6252 I915_WRITE(EG2, 0x000e0000);
6253 I915_WRITE(EG3, 0x68000300);
6254 I915_WRITE(EG4, 0x42000000);
6255 I915_WRITE(EG5, 0x00140031);
6256 I915_WRITE(EG6, 0);
6257 I915_WRITE(EG7, 0);
6258
6259 for (i = 0; i < 8; i++)
6260 I915_WRITE(PXWL + (i * 4), 0);
6261
6262 /* Enable PMON + select events */
6263 I915_WRITE(ECR, 0x80000019);
6264
6265 lcfuse = I915_READ(LCFUSE02);
6266
6267 dev_priv->corr = (lcfuse & LCFUSE_HIV_MASK);
6268}
6269
3b8d8d91 6270void gen6_enable_rps(struct drm_i915_private *dev_priv)
8fd26859 6271{
a6044e23
JB
6272 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
6273 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
6274 u32 pcu_mbox;
6275 int cur_freq, min_freq, max_freq;
8fd26859
CW
6276 int i;
6277
6278 /* Here begins a magic sequence of register writes to enable
6279 * auto-downclocking.
6280 *
6281 * Perhaps there might be some value in exposing these to
6282 * userspace...
6283 */
6284 I915_WRITE(GEN6_RC_STATE, 0);
6285 __gen6_force_wake_get(dev_priv);
6286
3b8d8d91 6287 /* disable the counters and set deterministic thresholds */
8fd26859
CW
6288 I915_WRITE(GEN6_RC_CONTROL, 0);
6289
6290 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6291 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6292 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6293 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6294 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6295
6296 for (i = 0; i < I915_NUM_RINGS; i++)
6297 I915_WRITE(RING_MAX_IDLE(dev_priv->ring[i].mmio_base), 10);
6298
6299 I915_WRITE(GEN6_RC_SLEEP, 0);
6300 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
6301 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
6302 I915_WRITE(GEN6_RC6p_THRESHOLD, 100000);
6303 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6304
6305 I915_WRITE(GEN6_RC_CONTROL,
6306 GEN6_RC_CTL_RC6p_ENABLE |
6307 GEN6_RC_CTL_RC6_ENABLE |
9c3d2f7f 6308 GEN6_RC_CTL_EI_MODE(1) |
8fd26859
CW
6309 GEN6_RC_CTL_HW_ENABLE);
6310
3b8d8d91 6311 I915_WRITE(GEN6_RPNSWREQ,
8fd26859
CW
6312 GEN6_FREQUENCY(10) |
6313 GEN6_OFFSET(0) |
6314 GEN6_AGGRESSIVE_TURBO);
6315 I915_WRITE(GEN6_RC_VIDEO_FREQ,
6316 GEN6_FREQUENCY(12));
6317
6318 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
6319 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
6320 18 << 24 |
6321 6 << 16);
6322 I915_WRITE(GEN6_RP_UP_THRESHOLD, 90000);
6323 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 100000);
6324 I915_WRITE(GEN6_RP_UP_EI, 100000);
6325 I915_WRITE(GEN6_RP_DOWN_EI, 300000);
6326 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6327 I915_WRITE(GEN6_RP_CONTROL,
6328 GEN6_RP_MEDIA_TURBO |
6329 GEN6_RP_USE_NORMAL_FREQ |
6330 GEN6_RP_MEDIA_IS_GFX |
6331 GEN6_RP_ENABLE |
6332 GEN6_RP_UP_BUSY_MAX |
6333 GEN6_RP_DOWN_BUSY_MIN);
6334
6335 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6336 500))
6337 DRM_ERROR("timeout waiting for pcode mailbox to become idle\n");
6338
6339 I915_WRITE(GEN6_PCODE_DATA, 0);
6340 I915_WRITE(GEN6_PCODE_MAILBOX,
6341 GEN6_PCODE_READY |
6342 GEN6_PCODE_WRITE_MIN_FREQ_TABLE);
6343 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6344 500))
6345 DRM_ERROR("timeout waiting for pcode mailbox to finish\n");
6346
a6044e23
JB
6347 min_freq = (rp_state_cap & 0xff0000) >> 16;
6348 max_freq = rp_state_cap & 0xff;
6349 cur_freq = (gt_perf_status & 0xff00) >> 8;
6350
6351 /* Check for overclock support */
6352 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6353 500))
6354 DRM_ERROR("timeout waiting for pcode mailbox to become idle\n");
6355 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_READ_OC_PARAMS);
6356 pcu_mbox = I915_READ(GEN6_PCODE_DATA);
6357 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6358 500))
6359 DRM_ERROR("timeout waiting for pcode mailbox to finish\n");
6360 if (pcu_mbox & (1<<31)) { /* OC supported */
6361 max_freq = pcu_mbox & 0xff;
6362 DRM_DEBUG_DRIVER("overclocking supported, adjusting frequency max to %dMHz\n", pcu_mbox * 100);
6363 }
6364
6365 /* In units of 100MHz */
6366 dev_priv->max_delay = max_freq;
6367 dev_priv->min_delay = min_freq;
6368 dev_priv->cur_delay = cur_freq;
6369
8fd26859
CW
6370 /* requires MSI enabled */
6371 I915_WRITE(GEN6_PMIER,
6372 GEN6_PM_MBOX_EVENT |
6373 GEN6_PM_THERMAL_EVENT |
6374 GEN6_PM_RP_DOWN_TIMEOUT |
6375 GEN6_PM_RP_UP_THRESHOLD |
6376 GEN6_PM_RP_DOWN_THRESHOLD |
6377 GEN6_PM_RP_UP_EI_EXPIRED |
6378 GEN6_PM_RP_DOWN_EI_EXPIRED);
3b8d8d91
JB
6379 I915_WRITE(GEN6_PMIMR, 0);
6380 /* enable all PM interrupts */
6381 I915_WRITE(GEN6_PMINTRMSK, 0);
8fd26859
CW
6382
6383 __gen6_force_wake_put(dev_priv);
6384}
6385
0cdab21f 6386void intel_enable_clock_gating(struct drm_device *dev)
652c393a
JB
6387{
6388 struct drm_i915_private *dev_priv = dev->dev_private;
6389
6390 /*
6391 * Disable clock gating reported to work incorrectly according to the
6392 * specs, but enable as much else as we can.
6393 */
bad720ff 6394 if (HAS_PCH_SPLIT(dev)) {
8956c8bb
EA
6395 uint32_t dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE;
6396
f00a3ddf 6397 if (IS_GEN5(dev)) {
8956c8bb 6398 /* Required for FBC */
1ffa325b
JB
6399 dspclk_gate |= DPFCUNIT_CLOCK_GATE_DISABLE |
6400 DPFCRUNIT_CLOCK_GATE_DISABLE |
6401 DPFDUNIT_CLOCK_GATE_DISABLE;
8956c8bb
EA
6402 /* Required for CxSR */
6403 dspclk_gate |= DPARBUNIT_CLOCK_GATE_DISABLE;
6404
6405 I915_WRITE(PCH_3DCGDIS0,
6406 MARIUNIT_CLOCK_GATE_DISABLE |
6407 SVSMUNIT_CLOCK_GATE_DISABLE);
06f37751
EA
6408 I915_WRITE(PCH_3DCGDIS1,
6409 VFMUNIT_CLOCK_GATE_DISABLE);
8956c8bb
EA
6410 }
6411
6412 I915_WRITE(PCH_DSPCLK_GATE_D, dspclk_gate);
7f8a8569 6413
382b0936
JB
6414 /*
6415 * On Ibex Peak and Cougar Point, we need to disable clock
6416 * gating for the panel power sequencer or it will fail to
6417 * start up when no ports are active.
6418 */
6419 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6420
7f8a8569
ZW
6421 /*
6422 * According to the spec the following bits should be set in
6423 * order to enable memory self-refresh
6424 * The bit 22/21 of 0x42004
6425 * The bit 5 of 0x42020
6426 * The bit 15 of 0x45000
6427 */
f00a3ddf 6428 if (IS_GEN5(dev)) {
7f8a8569
ZW
6429 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6430 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6431 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
6432 I915_WRITE(ILK_DSPCLK_GATE,
6433 (I915_READ(ILK_DSPCLK_GATE) |
6434 ILK_DPARB_CLK_GATE));
6435 I915_WRITE(DISP_ARB_CTL,
6436 (I915_READ(DISP_ARB_CTL) |
6437 DISP_FBC_WM_DIS));
1398261a
YL
6438 I915_WRITE(WM3_LP_ILK, 0);
6439 I915_WRITE(WM2_LP_ILK, 0);
6440 I915_WRITE(WM1_LP_ILK, 0);
7f8a8569 6441 }
b52eb4dc
ZY
6442 /*
6443 * Based on the document from hardware guys the following bits
6444 * should be set unconditionally in order to enable FBC.
6445 * The bit 22 of 0x42000
6446 * The bit 22 of 0x42004
6447 * The bit 7,8,9 of 0x42020.
6448 */
6449 if (IS_IRONLAKE_M(dev)) {
6450 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6451 I915_READ(ILK_DISPLAY_CHICKEN1) |
6452 ILK_FBCQ_DIS);
6453 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6454 I915_READ(ILK_DISPLAY_CHICKEN2) |
6455 ILK_DPARB_GATE);
6456 I915_WRITE(ILK_DSPCLK_GATE,
6457 I915_READ(ILK_DSPCLK_GATE) |
6458 ILK_DPFC_DIS1 |
6459 ILK_DPFC_DIS2 |
6460 ILK_CLK_FBC);
6461 }
de6e2eaf 6462
67e92af0
EA
6463 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6464 I915_READ(ILK_DISPLAY_CHICKEN2) |
6465 ILK_ELPIN_409_SELECT);
6466
de6e2eaf
EA
6467 if (IS_GEN5(dev)) {
6468 I915_WRITE(_3D_CHICKEN2,
6469 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6470 _3D_CHICKEN2_WM_READ_PIPELINED);
6471 }
8fd26859 6472
1398261a
YL
6473 if (IS_GEN6(dev)) {
6474 I915_WRITE(WM3_LP_ILK, 0);
6475 I915_WRITE(WM2_LP_ILK, 0);
6476 I915_WRITE(WM1_LP_ILK, 0);
6477
6478 /*
6479 * According to the spec the following bits should be
6480 * set in order to enable memory self-refresh and fbc:
6481 * The bit21 and bit22 of 0x42000
6482 * The bit21 and bit22 of 0x42004
6483 * The bit5 and bit7 of 0x42020
6484 * The bit14 of 0x70180
6485 * The bit14 of 0x71180
6486 */
6487 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6488 I915_READ(ILK_DISPLAY_CHICKEN1) |
6489 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6490 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6491 I915_READ(ILK_DISPLAY_CHICKEN2) |
6492 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
6493 I915_WRITE(ILK_DSPCLK_GATE,
6494 I915_READ(ILK_DSPCLK_GATE) |
6495 ILK_DPARB_CLK_GATE |
6496 ILK_DPFD_CLK_GATE);
6497
6498 I915_WRITE(DSPACNTR,
6499 I915_READ(DSPACNTR) |
6500 DISPPLANE_TRICKLE_FEED_DISABLE);
6501 I915_WRITE(DSPBCNTR,
6502 I915_READ(DSPBCNTR) |
6503 DISPPLANE_TRICKLE_FEED_DISABLE);
6504 }
c03342fa 6505 } else if (IS_G4X(dev)) {
652c393a
JB
6506 uint32_t dspclk_gate;
6507 I915_WRITE(RENCLK_GATE_D1, 0);
6508 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6509 GS_UNIT_CLOCK_GATE_DISABLE |
6510 CL_UNIT_CLOCK_GATE_DISABLE);
6511 I915_WRITE(RAMCLK_GATE_D, 0);
6512 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6513 OVRUNIT_CLOCK_GATE_DISABLE |
6514 OVCUNIT_CLOCK_GATE_DISABLE;
6515 if (IS_GM45(dev))
6516 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6517 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
a6c45cf0 6518 } else if (IS_CRESTLINE(dev)) {
652c393a
JB
6519 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6520 I915_WRITE(RENCLK_GATE_D2, 0);
6521 I915_WRITE(DSPCLK_GATE_D, 0);
6522 I915_WRITE(RAMCLK_GATE_D, 0);
6523 I915_WRITE16(DEUC, 0);
a6c45cf0 6524 } else if (IS_BROADWATER(dev)) {
652c393a
JB
6525 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6526 I965_RCC_CLOCK_GATE_DISABLE |
6527 I965_RCPB_CLOCK_GATE_DISABLE |
6528 I965_ISC_CLOCK_GATE_DISABLE |
6529 I965_FBC_CLOCK_GATE_DISABLE);
6530 I915_WRITE(RENCLK_GATE_D2, 0);
a6c45cf0 6531 } else if (IS_GEN3(dev)) {
652c393a
JB
6532 u32 dstate = I915_READ(D_STATE);
6533
6534 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6535 DSTATE_DOT_CLOCK_GATING;
6536 I915_WRITE(D_STATE, dstate);
f0f8a9ce 6537 } else if (IS_I85X(dev) || IS_I865G(dev)) {
652c393a
JB
6538 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
6539 } else if (IS_I830(dev)) {
6540 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
6541 }
6542}
6543
ac668088 6544static void ironlake_teardown_rc6(struct drm_device *dev)
0cdab21f
CW
6545{
6546 struct drm_i915_private *dev_priv = dev->dev_private;
6547
6548 if (dev_priv->renderctx) {
ac668088
CW
6549 i915_gem_object_unpin(dev_priv->renderctx);
6550 drm_gem_object_unreference(&dev_priv->renderctx->base);
0cdab21f
CW
6551 dev_priv->renderctx = NULL;
6552 }
6553
6554 if (dev_priv->pwrctx) {
ac668088
CW
6555 i915_gem_object_unpin(dev_priv->pwrctx);
6556 drm_gem_object_unreference(&dev_priv->pwrctx->base);
6557 dev_priv->pwrctx = NULL;
6558 }
6559}
6560
6561static void ironlake_disable_rc6(struct drm_device *dev)
6562{
6563 struct drm_i915_private *dev_priv = dev->dev_private;
6564
6565 if (I915_READ(PWRCTXA)) {
6566 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
6567 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
6568 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
6569 50);
0cdab21f
CW
6570
6571 I915_WRITE(PWRCTXA, 0);
6572 POSTING_READ(PWRCTXA);
6573
ac668088
CW
6574 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
6575 POSTING_READ(RSTDBYCTL);
0cdab21f 6576 }
ac668088
CW
6577
6578 ironlake_disable_rc6(dev);
0cdab21f
CW
6579}
6580
ac668088 6581static int ironlake_setup_rc6(struct drm_device *dev)
d5bb081b
JB
6582{
6583 struct drm_i915_private *dev_priv = dev->dev_private;
6584
ac668088
CW
6585 if (dev_priv->renderctx == NULL)
6586 dev_priv->renderctx = intel_alloc_context_page(dev);
6587 if (!dev_priv->renderctx)
6588 return -ENOMEM;
6589
6590 if (dev_priv->pwrctx == NULL)
6591 dev_priv->pwrctx = intel_alloc_context_page(dev);
6592 if (!dev_priv->pwrctx) {
6593 ironlake_teardown_rc6(dev);
6594 return -ENOMEM;
6595 }
6596
6597 return 0;
d5bb081b
JB
6598}
6599
6600void ironlake_enable_rc6(struct drm_device *dev)
6601{
6602 struct drm_i915_private *dev_priv = dev->dev_private;
6603 int ret;
6604
ac668088
CW
6605 /* rc6 disabled by default due to repeated reports of hanging during
6606 * boot and resume.
6607 */
6608 if (!i915_enable_rc6)
6609 return;
6610
6611 ret = ironlake_setup_rc6(dev);
6612 if (ret)
6613 return;
6614
d5bb081b
JB
6615 /*
6616 * GPU can automatically power down the render unit if given a page
6617 * to save state.
6618 */
6619 ret = BEGIN_LP_RING(6);
6620 if (ret) {
ac668088 6621 ironlake_teardown_rc6(dev);
d5bb081b
JB
6622 return;
6623 }
ac668088 6624
d5bb081b
JB
6625 OUT_RING(MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
6626 OUT_RING(MI_SET_CONTEXT);
6627 OUT_RING(dev_priv->renderctx->gtt_offset |
6628 MI_MM_SPACE_GTT |
6629 MI_SAVE_EXT_STATE_EN |
6630 MI_RESTORE_EXT_STATE_EN |
6631 MI_RESTORE_INHIBIT);
6632 OUT_RING(MI_SUSPEND_FLUSH);
6633 OUT_RING(MI_NOOP);
6634 OUT_RING(MI_FLUSH);
6635 ADVANCE_LP_RING();
6636
6637 I915_WRITE(PWRCTXA, dev_priv->pwrctx->gtt_offset | PWRCTX_EN);
6638 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
6639}
6640
ac668088 6641
e70236a8
JB
6642/* Set up chip specific display functions */
6643static void intel_init_display(struct drm_device *dev)
6644{
6645 struct drm_i915_private *dev_priv = dev->dev_private;
6646
6647 /* We always want a DPMS function */
bad720ff 6648 if (HAS_PCH_SPLIT(dev))
f2b115e6 6649 dev_priv->display.dpms = ironlake_crtc_dpms;
e70236a8
JB
6650 else
6651 dev_priv->display.dpms = i9xx_crtc_dpms;
6652
ee5382ae 6653 if (I915_HAS_FBC(dev)) {
9c04f015 6654 if (HAS_PCH_SPLIT(dev)) {
b52eb4dc
ZY
6655 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
6656 dev_priv->display.enable_fbc = ironlake_enable_fbc;
6657 dev_priv->display.disable_fbc = ironlake_disable_fbc;
6658 } else if (IS_GM45(dev)) {
74dff282
JB
6659 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
6660 dev_priv->display.enable_fbc = g4x_enable_fbc;
6661 dev_priv->display.disable_fbc = g4x_disable_fbc;
a6c45cf0 6662 } else if (IS_CRESTLINE(dev)) {
e70236a8
JB
6663 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
6664 dev_priv->display.enable_fbc = i8xx_enable_fbc;
6665 dev_priv->display.disable_fbc = i8xx_disable_fbc;
6666 }
74dff282 6667 /* 855GM needs testing */
e70236a8
JB
6668 }
6669
6670 /* Returns the core display clock speed */
f2b115e6 6671 if (IS_I945G(dev) || (IS_G33(dev) && ! IS_PINEVIEW_M(dev)))
e70236a8
JB
6672 dev_priv->display.get_display_clock_speed =
6673 i945_get_display_clock_speed;
6674 else if (IS_I915G(dev))
6675 dev_priv->display.get_display_clock_speed =
6676 i915_get_display_clock_speed;
f2b115e6 6677 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
e70236a8
JB
6678 dev_priv->display.get_display_clock_speed =
6679 i9xx_misc_get_display_clock_speed;
6680 else if (IS_I915GM(dev))
6681 dev_priv->display.get_display_clock_speed =
6682 i915gm_get_display_clock_speed;
6683 else if (IS_I865G(dev))
6684 dev_priv->display.get_display_clock_speed =
6685 i865_get_display_clock_speed;
f0f8a9ce 6686 else if (IS_I85X(dev))
e70236a8
JB
6687 dev_priv->display.get_display_clock_speed =
6688 i855_get_display_clock_speed;
6689 else /* 852, 830 */
6690 dev_priv->display.get_display_clock_speed =
6691 i830_get_display_clock_speed;
6692
6693 /* For FIFO watermark updates */
7f8a8569 6694 if (HAS_PCH_SPLIT(dev)) {
f00a3ddf 6695 if (IS_GEN5(dev)) {
7f8a8569
ZW
6696 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
6697 dev_priv->display.update_wm = ironlake_update_wm;
6698 else {
6699 DRM_DEBUG_KMS("Failed to get proper latency. "
6700 "Disable CxSR\n");
6701 dev_priv->display.update_wm = NULL;
1398261a
YL
6702 }
6703 } else if (IS_GEN6(dev)) {
6704 if (SNB_READ_WM0_LATENCY()) {
6705 dev_priv->display.update_wm = sandybridge_update_wm;
6706 } else {
6707 DRM_DEBUG_KMS("Failed to read display plane latency. "
6708 "Disable CxSR\n");
6709 dev_priv->display.update_wm = NULL;
7f8a8569
ZW
6710 }
6711 } else
6712 dev_priv->display.update_wm = NULL;
6713 } else if (IS_PINEVIEW(dev)) {
d4294342 6714 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
95534263 6715 dev_priv->is_ddr3,
d4294342
ZY
6716 dev_priv->fsb_freq,
6717 dev_priv->mem_freq)) {
6718 DRM_INFO("failed to find known CxSR latency "
95534263 6719 "(found ddr%s fsb freq %d, mem freq %d), "
d4294342 6720 "disabling CxSR\n",
95534263 6721 (dev_priv->is_ddr3 == 1) ? "3": "2",
d4294342
ZY
6722 dev_priv->fsb_freq, dev_priv->mem_freq);
6723 /* Disable CxSR and never update its watermark again */
6724 pineview_disable_cxsr(dev);
6725 dev_priv->display.update_wm = NULL;
6726 } else
6727 dev_priv->display.update_wm = pineview_update_wm;
6728 } else if (IS_G4X(dev))
e70236a8 6729 dev_priv->display.update_wm = g4x_update_wm;
a6c45cf0 6730 else if (IS_GEN4(dev))
e70236a8 6731 dev_priv->display.update_wm = i965_update_wm;
a6c45cf0 6732 else if (IS_GEN3(dev)) {
e70236a8
JB
6733 dev_priv->display.update_wm = i9xx_update_wm;
6734 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
8f4695ed
AJ
6735 } else if (IS_I85X(dev)) {
6736 dev_priv->display.update_wm = i9xx_update_wm;
6737 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
e70236a8 6738 } else {
8f4695ed
AJ
6739 dev_priv->display.update_wm = i830_update_wm;
6740 if (IS_845G(dev))
e70236a8
JB
6741 dev_priv->display.get_fifo_size = i845_get_fifo_size;
6742 else
6743 dev_priv->display.get_fifo_size = i830_get_fifo_size;
e70236a8
JB
6744 }
6745}
6746
b690e96c
JB
6747/*
6748 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
6749 * resume, or other times. This quirk makes sure that's the case for
6750 * affected systems.
6751 */
6752static void quirk_pipea_force (struct drm_device *dev)
6753{
6754 struct drm_i915_private *dev_priv = dev->dev_private;
6755
6756 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
6757 DRM_DEBUG_DRIVER("applying pipe a force quirk\n");
6758}
6759
6760struct intel_quirk {
6761 int device;
6762 int subsystem_vendor;
6763 int subsystem_device;
6764 void (*hook)(struct drm_device *dev);
6765};
6766
6767struct intel_quirk intel_quirks[] = {
6768 /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */
6769 { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force },
6770 /* HP Mini needs pipe A force quirk (LP: #322104) */
6771 { 0x27ae,0x103c, 0x361a, quirk_pipea_force },
6772
6773 /* Thinkpad R31 needs pipe A force quirk */
6774 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
6775 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
6776 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
6777
6778 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
6779 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
6780 /* ThinkPad X40 needs pipe A force quirk */
6781
6782 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
6783 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
6784
6785 /* 855 & before need to leave pipe A & dpll A up */
6786 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6787 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6788};
6789
6790static void intel_init_quirks(struct drm_device *dev)
6791{
6792 struct pci_dev *d = dev->pdev;
6793 int i;
6794
6795 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
6796 struct intel_quirk *q = &intel_quirks[i];
6797
6798 if (d->device == q->device &&
6799 (d->subsystem_vendor == q->subsystem_vendor ||
6800 q->subsystem_vendor == PCI_ANY_ID) &&
6801 (d->subsystem_device == q->subsystem_device ||
6802 q->subsystem_device == PCI_ANY_ID))
6803 q->hook(dev);
6804 }
6805}
6806
9cce37f4
JB
6807/* Disable the VGA plane that we never use */
6808static void i915_disable_vga(struct drm_device *dev)
6809{
6810 struct drm_i915_private *dev_priv = dev->dev_private;
6811 u8 sr1;
6812 u32 vga_reg;
6813
6814 if (HAS_PCH_SPLIT(dev))
6815 vga_reg = CPU_VGACNTRL;
6816 else
6817 vga_reg = VGACNTRL;
6818
6819 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
6820 outb(1, VGA_SR_INDEX);
6821 sr1 = inb(VGA_SR_DATA);
6822 outb(sr1 | 1<<5, VGA_SR_DATA);
6823 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
6824 udelay(300);
6825
6826 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6827 POSTING_READ(vga_reg);
6828}
6829
79e53945
JB
6830void intel_modeset_init(struct drm_device *dev)
6831{
652c393a 6832 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945
JB
6833 int i;
6834
6835 drm_mode_config_init(dev);
6836
6837 dev->mode_config.min_width = 0;
6838 dev->mode_config.min_height = 0;
6839
6840 dev->mode_config.funcs = (void *)&intel_mode_funcs;
6841
b690e96c
JB
6842 intel_init_quirks(dev);
6843
e70236a8
JB
6844 intel_init_display(dev);
6845
a6c45cf0
CW
6846 if (IS_GEN2(dev)) {
6847 dev->mode_config.max_width = 2048;
6848 dev->mode_config.max_height = 2048;
6849 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
6850 dev->mode_config.max_width = 4096;
6851 dev->mode_config.max_height = 4096;
79e53945 6852 } else {
a6c45cf0
CW
6853 dev->mode_config.max_width = 8192;
6854 dev->mode_config.max_height = 8192;
79e53945 6855 }
35c3047a 6856 dev->mode_config.fb_base = dev->agp->base;
79e53945 6857
a6c45cf0 6858 if (IS_MOBILE(dev) || !IS_GEN2(dev))
a3524f1b 6859 dev_priv->num_pipe = 2;
79e53945 6860 else
a3524f1b 6861 dev_priv->num_pipe = 1;
28c97730 6862 DRM_DEBUG_KMS("%d display pipe%s available.\n",
a3524f1b 6863 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
79e53945 6864
a3524f1b 6865 for (i = 0; i < dev_priv->num_pipe; i++) {
79e53945
JB
6866 intel_crtc_init(dev, i);
6867 }
6868
6869 intel_setup_outputs(dev);
652c393a 6870
0cdab21f 6871 intel_enable_clock_gating(dev);
652c393a 6872
9cce37f4
JB
6873 /* Just disable it once at startup */
6874 i915_disable_vga(dev);
6875
7648fa99 6876 if (IS_IRONLAKE_M(dev)) {
f97108d1 6877 ironlake_enable_drps(dev);
7648fa99
JB
6878 intel_init_emon(dev);
6879 }
f97108d1 6880
3b8d8d91
JB
6881 if (IS_GEN6(dev))
6882 gen6_enable_rps(dev_priv);
6883
ac668088 6884 if (IS_IRONLAKE_M(dev))
d5bb081b 6885 ironlake_enable_rc6(dev);
d5bb081b 6886
652c393a
JB
6887 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6888 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6889 (unsigned long)dev);
02e792fb
DV
6890
6891 intel_setup_overlay(dev);
79e53945
JB
6892}
6893
6894void intel_modeset_cleanup(struct drm_device *dev)
6895{
652c393a
JB
6896 struct drm_i915_private *dev_priv = dev->dev_private;
6897 struct drm_crtc *crtc;
6898 struct intel_crtc *intel_crtc;
6899
f87ea761 6900 drm_kms_helper_poll_fini(dev);
652c393a
JB
6901 mutex_lock(&dev->struct_mutex);
6902
723bfd70
JB
6903 intel_unregister_dsm_handler();
6904
6905
652c393a
JB
6906 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6907 /* Skip inactive CRTCs */
6908 if (!crtc->fb)
6909 continue;
6910
6911 intel_crtc = to_intel_crtc(crtc);
3dec0095 6912 intel_increase_pllclock(crtc);
652c393a
JB
6913 }
6914
e70236a8
JB
6915 if (dev_priv->display.disable_fbc)
6916 dev_priv->display.disable_fbc(dev);
6917
f97108d1
JB
6918 if (IS_IRONLAKE_M(dev))
6919 ironlake_disable_drps(dev);
3b8d8d91
JB
6920 if (IS_GEN6(dev))
6921 gen6_disable_rps(dev);
f97108d1 6922
d5bb081b
JB
6923 if (IS_IRONLAKE_M(dev))
6924 ironlake_disable_rc6(dev);
0cdab21f 6925
69341a5e
KH
6926 mutex_unlock(&dev->struct_mutex);
6927
6c0d9350
DV
6928 /* Disable the irq before mode object teardown, for the irq might
6929 * enqueue unpin/hotplug work. */
6930 drm_irq_uninstall(dev);
6931 cancel_work_sync(&dev_priv->hotplug_work);
6932
3dec0095
DV
6933 /* Shut off idle work before the crtcs get freed. */
6934 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6935 intel_crtc = to_intel_crtc(crtc);
6936 del_timer_sync(&intel_crtc->idle_timer);
6937 }
6938 del_timer_sync(&dev_priv->idle_timer);
6939 cancel_work_sync(&dev_priv->idle_work);
6940
79e53945
JB
6941 drm_mode_config_cleanup(dev);
6942}
6943
f1c79df3
ZW
6944/*
6945 * Return which encoder is currently attached for connector.
6946 */
df0e9248 6947struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 6948{
df0e9248
CW
6949 return &intel_attached_encoder(connector)->base;
6950}
f1c79df3 6951
df0e9248
CW
6952void intel_connector_attach_encoder(struct intel_connector *connector,
6953 struct intel_encoder *encoder)
6954{
6955 connector->encoder = encoder;
6956 drm_mode_connector_attach_encoder(&connector->base,
6957 &encoder->base);
79e53945 6958}
28d52043
DA
6959
6960/*
6961 * set vga decode state - true == enable VGA decode
6962 */
6963int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
6964{
6965 struct drm_i915_private *dev_priv = dev->dev_private;
6966 u16 gmch_ctrl;
6967
6968 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
6969 if (state)
6970 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
6971 else
6972 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
6973 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
6974 return 0;
6975}
c4a1d9e4
CW
6976
6977#ifdef CONFIG_DEBUG_FS
6978#include <linux/seq_file.h>
6979
6980struct intel_display_error_state {
6981 struct intel_cursor_error_state {
6982 u32 control;
6983 u32 position;
6984 u32 base;
6985 u32 size;
6986 } cursor[2];
6987
6988 struct intel_pipe_error_state {
6989 u32 conf;
6990 u32 source;
6991
6992 u32 htotal;
6993 u32 hblank;
6994 u32 hsync;
6995 u32 vtotal;
6996 u32 vblank;
6997 u32 vsync;
6998 } pipe[2];
6999
7000 struct intel_plane_error_state {
7001 u32 control;
7002 u32 stride;
7003 u32 size;
7004 u32 pos;
7005 u32 addr;
7006 u32 surface;
7007 u32 tile_offset;
7008 } plane[2];
7009};
7010
7011struct intel_display_error_state *
7012intel_display_capture_error_state(struct drm_device *dev)
7013{
7014 drm_i915_private_t *dev_priv = dev->dev_private;
7015 struct intel_display_error_state *error;
7016 int i;
7017
7018 error = kmalloc(sizeof(*error), GFP_ATOMIC);
7019 if (error == NULL)
7020 return NULL;
7021
7022 for (i = 0; i < 2; i++) {
7023 error->cursor[i].control = I915_READ(CURCNTR(i));
7024 error->cursor[i].position = I915_READ(CURPOS(i));
7025 error->cursor[i].base = I915_READ(CURBASE(i));
7026
7027 error->plane[i].control = I915_READ(DSPCNTR(i));
7028 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
7029 error->plane[i].size = I915_READ(DSPSIZE(i));
7030 error->plane[i].pos= I915_READ(DSPPOS(i));
7031 error->plane[i].addr = I915_READ(DSPADDR(i));
7032 if (INTEL_INFO(dev)->gen >= 4) {
7033 error->plane[i].surface = I915_READ(DSPSURF(i));
7034 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
7035 }
7036
7037 error->pipe[i].conf = I915_READ(PIPECONF(i));
7038 error->pipe[i].source = I915_READ(PIPESRC(i));
7039 error->pipe[i].htotal = I915_READ(HTOTAL(i));
7040 error->pipe[i].hblank = I915_READ(HBLANK(i));
7041 error->pipe[i].hsync = I915_READ(HSYNC(i));
7042 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
7043 error->pipe[i].vblank = I915_READ(VBLANK(i));
7044 error->pipe[i].vsync = I915_READ(VSYNC(i));
7045 }
7046
7047 return error;
7048}
7049
7050void
7051intel_display_print_error_state(struct seq_file *m,
7052 struct drm_device *dev,
7053 struct intel_display_error_state *error)
7054{
7055 int i;
7056
7057 for (i = 0; i < 2; i++) {
7058 seq_printf(m, "Pipe [%d]:\n", i);
7059 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
7060 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
7061 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
7062 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
7063 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
7064 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
7065 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
7066 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
7067
7068 seq_printf(m, "Plane [%d]:\n", i);
7069 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
7070 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
7071 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
7072 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
7073 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
7074 if (INTEL_INFO(dev)->gen >= 4) {
7075 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
7076 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
7077 }
7078
7079 seq_printf(m, "Cursor [%d]:\n", i);
7080 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
7081 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
7082 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
7083 }
7084}
7085#endif
This page took 1.310135 seconds and 5 git commands to generate.