blob: 8064ff927bccf93755caf7a62debe9fcab5a917b [file] [log] [blame]
Eugeni Dodonov85208be2012-04-16 22:20:34 -03001/*
2 * Copyright © 2012 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 DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -030028#include <linux/cpufreq.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030029#include "i915_drv.h"
30#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020031#include "../../../platform/x86/intel_ips.h"
32#include <linux/module.h>
Damien Lespiauf4db9322013-06-24 22:59:50 +010033#include <drm/i915_powerwell.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030034
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030035/* FBC, or Frame Buffer Compression, is a technique employed to compress the
36 * framebuffer contents in-memory, aiming at reducing the required bandwidth
37 * during in-memory transfers and, therefore, reduce the power packet.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030038 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030039 * The benefits of FBC are mostly visible with solid backgrounds and
40 * variation-less patterns.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030041 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030042 * FBC-related functionality can be enabled by the means of the
43 * i915.i915_enable_fbc parameter
Eugeni Dodonov85208be2012-04-16 22:20:34 -030044 */
45
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030046static void i8xx_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030047{
48 struct drm_i915_private *dev_priv = dev->dev_private;
49 u32 fbc_ctl;
50
51 /* Disable compression */
52 fbc_ctl = I915_READ(FBC_CONTROL);
53 if ((fbc_ctl & FBC_CTL_EN) == 0)
54 return;
55
56 fbc_ctl &= ~FBC_CTL_EN;
57 I915_WRITE(FBC_CONTROL, fbc_ctl);
58
59 /* Wait for compressing bit to clear */
60 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
61 DRM_DEBUG_KMS("FBC idle timed out\n");
62 return;
63 }
64
65 DRM_DEBUG_KMS("disabled FBC\n");
66}
67
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030068static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030069{
70 struct drm_device *dev = crtc->dev;
71 struct drm_i915_private *dev_priv = dev->dev_private;
72 struct drm_framebuffer *fb = crtc->fb;
73 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
74 struct drm_i915_gem_object *obj = intel_fb->obj;
75 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
76 int cfb_pitch;
77 int plane, i;
78 u32 fbc_ctl, fbc_ctl2;
79
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -070080 cfb_pitch = dev_priv->fbc.size / FBC_LL_SIZE;
Eugeni Dodonov85208be2012-04-16 22:20:34 -030081 if (fb->pitches[0] < cfb_pitch)
82 cfb_pitch = fb->pitches[0];
83
84 /* FBC_CTL wants 64B units */
85 cfb_pitch = (cfb_pitch / 64) - 1;
86 plane = intel_crtc->plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
87
88 /* Clear old tags */
89 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
90 I915_WRITE(FBC_TAG + (i * 4), 0);
91
92 /* Set it up... */
93 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE;
94 fbc_ctl2 |= plane;
95 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
96 I915_WRITE(FBC_FENCE_OFF, crtc->y);
97
98 /* enable it... */
99 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
100 if (IS_I945GM(dev))
101 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
102 fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
103 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
104 fbc_ctl |= obj->fence_reg;
105 I915_WRITE(FBC_CONTROL, fbc_ctl);
106
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300107 DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c, ",
108 cfb_pitch, crtc->y, plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300109}
110
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300111static bool i8xx_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300112{
113 struct drm_i915_private *dev_priv = dev->dev_private;
114
115 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
116}
117
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300118static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300119{
120 struct drm_device *dev = crtc->dev;
121 struct drm_i915_private *dev_priv = dev->dev_private;
122 struct drm_framebuffer *fb = crtc->fb;
123 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
124 struct drm_i915_gem_object *obj = intel_fb->obj;
125 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
126 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
127 unsigned long stall_watermark = 200;
128 u32 dpfc_ctl;
129
130 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
131 dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg;
132 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
133
134 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
135 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
136 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
137 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
138
139 /* enable it... */
140 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
141
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300142 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300143}
144
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300145static void g4x_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300146{
147 struct drm_i915_private *dev_priv = dev->dev_private;
148 u32 dpfc_ctl;
149
150 /* Disable compression */
151 dpfc_ctl = I915_READ(DPFC_CONTROL);
152 if (dpfc_ctl & DPFC_CTL_EN) {
153 dpfc_ctl &= ~DPFC_CTL_EN;
154 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
155
156 DRM_DEBUG_KMS("disabled FBC\n");
157 }
158}
159
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300160static bool g4x_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300161{
162 struct drm_i915_private *dev_priv = dev->dev_private;
163
164 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
165}
166
167static void sandybridge_blit_fbc_update(struct drm_device *dev)
168{
169 struct drm_i915_private *dev_priv = dev->dev_private;
170 u32 blt_ecoskpd;
171
172 /* Make sure blitter notifies FBC of writes */
173 gen6_gt_force_wake_get(dev_priv);
174 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
175 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
176 GEN6_BLITTER_LOCK_SHIFT;
177 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
178 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
179 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
180 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
181 GEN6_BLITTER_LOCK_SHIFT);
182 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
183 POSTING_READ(GEN6_BLITTER_ECOSKPD);
184 gen6_gt_force_wake_put(dev_priv);
185}
186
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300187static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300188{
189 struct drm_device *dev = crtc->dev;
190 struct drm_i915_private *dev_priv = dev->dev_private;
191 struct drm_framebuffer *fb = crtc->fb;
192 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
193 struct drm_i915_gem_object *obj = intel_fb->obj;
194 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
195 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
196 unsigned long stall_watermark = 200;
197 u32 dpfc_ctl;
198
199 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
200 dpfc_ctl &= DPFC_RESERVED;
201 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
202 /* Set persistent mode for front-buffer rendering, ala X. */
203 dpfc_ctl |= DPFC_CTL_PERSISTENT_MODE;
204 dpfc_ctl |= (DPFC_CTL_FENCE_EN | obj->fence_reg);
205 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
206
207 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
208 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
209 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
210 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700211 I915_WRITE(ILK_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj) | ILK_FBC_RT_VALID);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300212 /* enable it... */
213 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
214
215 if (IS_GEN6(dev)) {
216 I915_WRITE(SNB_DPFC_CTL_SA,
217 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
218 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
219 sandybridge_blit_fbc_update(dev);
220 }
221
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300222 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300223}
224
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300225static void ironlake_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300226{
227 struct drm_i915_private *dev_priv = dev->dev_private;
228 u32 dpfc_ctl;
229
230 /* Disable compression */
231 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
232 if (dpfc_ctl & DPFC_CTL_EN) {
233 dpfc_ctl &= ~DPFC_CTL_EN;
234 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
235
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300236 if (IS_IVYBRIDGE(dev))
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100237 /* WaFbcDisableDpfcClockGating:ivb */
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300238 I915_WRITE(ILK_DSPCLK_GATE_D,
239 I915_READ(ILK_DSPCLK_GATE_D) &
240 ~ILK_DPFCUNIT_CLOCK_GATE_DISABLE);
241
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300242 if (IS_HASWELL(dev))
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100243 /* WaFbcDisableDpfcClockGating:hsw */
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300244 I915_WRITE(HSW_CLKGATE_DISABLE_PART_1,
245 I915_READ(HSW_CLKGATE_DISABLE_PART_1) &
246 ~HSW_DPFC_GATING_DISABLE);
247
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300248 DRM_DEBUG_KMS("disabled FBC\n");
249 }
250}
251
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300252static bool ironlake_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300253{
254 struct drm_i915_private *dev_priv = dev->dev_private;
255
256 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
257}
258
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300259static void gen7_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
260{
261 struct drm_device *dev = crtc->dev;
262 struct drm_i915_private *dev_priv = dev->dev_private;
263 struct drm_framebuffer *fb = crtc->fb;
264 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
265 struct drm_i915_gem_object *obj = intel_fb->obj;
266 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
267
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700268 I915_WRITE(IVB_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj));
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300269
270 I915_WRITE(ILK_DPFC_CONTROL, DPFC_CTL_EN | DPFC_CTL_LIMIT_1X |
271 IVB_DPFC_CTL_FENCE_EN |
272 intel_crtc->plane << IVB_DPFC_CTL_PLANE_SHIFT);
273
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300274 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100275 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300276 I915_WRITE(ILK_DISPLAY_CHICKEN1, ILK_FBCQ_DIS);
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100277 /* WaFbcDisableDpfcClockGating:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300278 I915_WRITE(ILK_DSPCLK_GATE_D,
279 I915_READ(ILK_DSPCLK_GATE_D) |
280 ILK_DPFCUNIT_CLOCK_GATE_DISABLE);
Rodrigo Vivi28554162013-05-06 19:37:37 -0300281 } else {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100282 /* WaFbcAsynchFlipDisableFbcQueue:hsw */
Rodrigo Vivi28554162013-05-06 19:37:37 -0300283 I915_WRITE(HSW_PIPE_SLICE_CHICKEN_1(intel_crtc->pipe),
284 HSW_BYPASS_FBC_QUEUE);
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100285 /* WaFbcDisableDpfcClockGating:hsw */
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300286 I915_WRITE(HSW_CLKGATE_DISABLE_PART_1,
287 I915_READ(HSW_CLKGATE_DISABLE_PART_1) |
288 HSW_DPFC_GATING_DISABLE);
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300289 }
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300290
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300291 I915_WRITE(SNB_DPFC_CTL_SA,
292 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
293 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
294
295 sandybridge_blit_fbc_update(dev);
296
297 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
298}
299
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300300bool intel_fbc_enabled(struct drm_device *dev)
301{
302 struct drm_i915_private *dev_priv = dev->dev_private;
303
304 if (!dev_priv->display.fbc_enabled)
305 return false;
306
307 return dev_priv->display.fbc_enabled(dev);
308}
309
310static void intel_fbc_work_fn(struct work_struct *__work)
311{
312 struct intel_fbc_work *work =
313 container_of(to_delayed_work(__work),
314 struct intel_fbc_work, work);
315 struct drm_device *dev = work->crtc->dev;
316 struct drm_i915_private *dev_priv = dev->dev_private;
317
318 mutex_lock(&dev->struct_mutex);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700319 if (work == dev_priv->fbc.fbc_work) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300320 /* Double check that we haven't switched fb without cancelling
321 * the prior work.
322 */
323 if (work->crtc->fb == work->fb) {
324 dev_priv->display.enable_fbc(work->crtc,
325 work->interval);
326
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700327 dev_priv->fbc.plane = to_intel_crtc(work->crtc)->plane;
328 dev_priv->fbc.fb_id = work->crtc->fb->base.id;
329 dev_priv->fbc.y = work->crtc->y;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300330 }
331
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700332 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300333 }
334 mutex_unlock(&dev->struct_mutex);
335
336 kfree(work);
337}
338
339static void intel_cancel_fbc_work(struct drm_i915_private *dev_priv)
340{
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700341 if (dev_priv->fbc.fbc_work == NULL)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300342 return;
343
344 DRM_DEBUG_KMS("cancelling pending FBC enable\n");
345
346 /* Synchronisation is provided by struct_mutex and checking of
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700347 * dev_priv->fbc.fbc_work, so we can perform the cancellation
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300348 * entirely asynchronously.
349 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700350 if (cancel_delayed_work(&dev_priv->fbc.fbc_work->work))
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300351 /* tasklet was killed before being run, clean up */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700352 kfree(dev_priv->fbc.fbc_work);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300353
354 /* Mark the work as no longer wanted so that if it does
355 * wake-up (because the work was already running and waiting
356 * for our mutex), it will discover that is no longer
357 * necessary to run.
358 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700359 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300360}
361
Damien Lespiaub63fb442013-06-24 16:22:01 +0100362static void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300363{
364 struct intel_fbc_work *work;
365 struct drm_device *dev = crtc->dev;
366 struct drm_i915_private *dev_priv = dev->dev_private;
367
368 if (!dev_priv->display.enable_fbc)
369 return;
370
371 intel_cancel_fbc_work(dev_priv);
372
Daniel Vetterb14c5672013-09-19 12:18:32 +0200373 work = kzalloc(sizeof(*work), GFP_KERNEL);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300374 if (work == NULL) {
Paulo Zanoni6cdcb5e2013-06-12 17:27:29 -0300375 DRM_ERROR("Failed to allocate FBC work structure\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300376 dev_priv->display.enable_fbc(crtc, interval);
377 return;
378 }
379
380 work->crtc = crtc;
381 work->fb = crtc->fb;
382 work->interval = interval;
383 INIT_DELAYED_WORK(&work->work, intel_fbc_work_fn);
384
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700385 dev_priv->fbc.fbc_work = work;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300386
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300387 /* Delay the actual enabling to let pageflipping cease and the
388 * display to settle before starting the compression. Note that
389 * this delay also serves a second purpose: it allows for a
390 * vblank to pass after disabling the FBC before we attempt
391 * to modify the control registers.
392 *
393 * A more complicated solution would involve tracking vblanks
394 * following the termination of the page-flipping sequence
395 * and indeed performing the enable as a co-routine and not
396 * waiting synchronously upon the vblank.
Damien Lespiau7457d612013-06-07 17:41:07 +0100397 *
398 * WaFbcWaitForVBlankBeforeEnable:ilk,snb
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300399 */
400 schedule_delayed_work(&work->work, msecs_to_jiffies(50));
401}
402
403void intel_disable_fbc(struct drm_device *dev)
404{
405 struct drm_i915_private *dev_priv = dev->dev_private;
406
407 intel_cancel_fbc_work(dev_priv);
408
409 if (!dev_priv->display.disable_fbc)
410 return;
411
412 dev_priv->display.disable_fbc(dev);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700413 dev_priv->fbc.plane = -1;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300414}
415
Chris Wilson29ebf902013-07-27 17:23:55 +0100416static bool set_no_fbc_reason(struct drm_i915_private *dev_priv,
417 enum no_fbc_reason reason)
418{
419 if (dev_priv->fbc.no_fbc_reason == reason)
420 return false;
421
422 dev_priv->fbc.no_fbc_reason = reason;
423 return true;
424}
425
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300426/**
427 * intel_update_fbc - enable/disable FBC as needed
428 * @dev: the drm_device
429 *
430 * Set up the framebuffer compression hardware at mode set time. We
431 * enable it if possible:
432 * - plane A only (on pre-965)
433 * - no pixel mulitply/line duplication
434 * - no alpha buffer discard
435 * - no dual wide
Paulo Zanonif85da862013-06-04 16:53:39 -0300436 * - framebuffer <= max_hdisplay in width, max_vdisplay in height
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300437 *
438 * We can't assume that any compression will take place (worst case),
439 * so the compressed buffer has to be the same size as the uncompressed
440 * one. It also must reside (along with the line length buffer) in
441 * stolen memory.
442 *
443 * We need to enable/disable FBC on a global basis.
444 */
445void intel_update_fbc(struct drm_device *dev)
446{
447 struct drm_i915_private *dev_priv = dev->dev_private;
448 struct drm_crtc *crtc = NULL, *tmp_crtc;
449 struct intel_crtc *intel_crtc;
450 struct drm_framebuffer *fb;
451 struct intel_framebuffer *intel_fb;
452 struct drm_i915_gem_object *obj;
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300453 const struct drm_display_mode *adjusted_mode;
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300454 unsigned int max_width, max_height;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300455
Chris Wilson29ebf902013-07-27 17:23:55 +0100456 if (!I915_HAS_FBC(dev)) {
457 set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300458 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100459 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300460
Chris Wilson29ebf902013-07-27 17:23:55 +0100461 if (!i915_powersave) {
462 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
463 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300464 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100465 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300466
467 /*
468 * If FBC is already on, we just have to verify that we can
469 * keep it that way...
470 * Need to disable if:
471 * - more than one pipe is active
472 * - changing FBC params (stride, fence, mode)
473 * - new fb is too large to fit in compressed buffer
474 * - going to an unsupported config (interlace, pixel multiply, etc.)
475 */
476 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000477 if (intel_crtc_active(tmp_crtc) &&
Ville Syrjälä4c445e02013-10-09 17:24:58 +0300478 to_intel_crtc(tmp_crtc)->primary_enabled) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300479 if (crtc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100480 if (set_no_fbc_reason(dev_priv, FBC_MULTIPLE_PIPES))
481 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300482 goto out_disable;
483 }
484 crtc = tmp_crtc;
485 }
486 }
487
488 if (!crtc || crtc->fb == NULL) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100489 if (set_no_fbc_reason(dev_priv, FBC_NO_OUTPUT))
490 DRM_DEBUG_KMS("no output, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300491 goto out_disable;
492 }
493
494 intel_crtc = to_intel_crtc(crtc);
495 fb = crtc->fb;
496 intel_fb = to_intel_framebuffer(fb);
497 obj = intel_fb->obj;
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300498 adjusted_mode = &intel_crtc->config.adjusted_mode;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300499
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100500 if (i915_enable_fbc < 0 &&
501 INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100502 if (set_no_fbc_reason(dev_priv, FBC_CHIP_DEFAULT))
503 DRM_DEBUG_KMS("disabled per chip default\n");
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100504 goto out_disable;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300505 }
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100506 if (!i915_enable_fbc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100507 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
508 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300509 goto out_disable;
510 }
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300511 if ((adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) ||
512 (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100513 if (set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED_MODE))
514 DRM_DEBUG_KMS("mode incompatible with compression, "
515 "disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300516 goto out_disable;
517 }
Paulo Zanonif85da862013-06-04 16:53:39 -0300518
519 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300520 max_width = 4096;
521 max_height = 2048;
Paulo Zanonif85da862013-06-04 16:53:39 -0300522 } else {
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300523 max_width = 2048;
524 max_height = 1536;
Paulo Zanonif85da862013-06-04 16:53:39 -0300525 }
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300526 if (intel_crtc->config.pipe_src_w > max_width ||
527 intel_crtc->config.pipe_src_h > max_height) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100528 if (set_no_fbc_reason(dev_priv, FBC_MODE_TOO_LARGE))
529 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300530 goto out_disable;
531 }
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300532 if ((IS_I915GM(dev) || IS_I945GM(dev) || IS_HASWELL(dev)) &&
533 intel_crtc->plane != 0) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100534 if (set_no_fbc_reason(dev_priv, FBC_BAD_PLANE))
535 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300536 goto out_disable;
537 }
538
539 /* The use of a CPU fence is mandatory in order to detect writes
540 * by the CPU to the scanout and trigger updates to the FBC.
541 */
542 if (obj->tiling_mode != I915_TILING_X ||
543 obj->fence_reg == I915_FENCE_REG_NONE) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100544 if (set_no_fbc_reason(dev_priv, FBC_NOT_TILED))
545 DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300546 goto out_disable;
547 }
548
549 /* If the kernel debugger is active, always disable compression */
550 if (in_dbg_master())
551 goto out_disable;
552
Chris Wilson11be49e2012-11-15 11:32:20 +0000553 if (i915_gem_stolen_setup_compression(dev, intel_fb->obj->base.size)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100554 if (set_no_fbc_reason(dev_priv, FBC_STOLEN_TOO_SMALL))
555 DRM_DEBUG_KMS("framebuffer too large, disabling compression\n");
Chris Wilson11be49e2012-11-15 11:32:20 +0000556 goto out_disable;
557 }
558
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300559 /* If the scanout has not changed, don't modify the FBC settings.
560 * Note that we make the fundamental assumption that the fb->obj
561 * cannot be unpinned (and have its GTT offset and fence revoked)
562 * without first being decoupled from the scanout and FBC disabled.
563 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700564 if (dev_priv->fbc.plane == intel_crtc->plane &&
565 dev_priv->fbc.fb_id == fb->base.id &&
566 dev_priv->fbc.y == crtc->y)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300567 return;
568
569 if (intel_fbc_enabled(dev)) {
570 /* We update FBC along two paths, after changing fb/crtc
571 * configuration (modeswitching) and after page-flipping
572 * finishes. For the latter, we know that not only did
573 * we disable the FBC at the start of the page-flip
574 * sequence, but also more than one vblank has passed.
575 *
576 * For the former case of modeswitching, it is possible
577 * to switch between two FBC valid configurations
578 * instantaneously so we do need to disable the FBC
579 * before we can modify its control registers. We also
580 * have to wait for the next vblank for that to take
581 * effect. However, since we delay enabling FBC we can
582 * assume that a vblank has passed since disabling and
583 * that we can safely alter the registers in the deferred
584 * callback.
585 *
586 * In the scenario that we go from a valid to invalid
587 * and then back to valid FBC configuration we have
588 * no strict enforcement that a vblank occurred since
589 * disabling the FBC. However, along all current pipe
590 * disabling paths we do need to wait for a vblank at
591 * some point. And we wait before enabling FBC anyway.
592 */
593 DRM_DEBUG_KMS("disabling active FBC for update\n");
594 intel_disable_fbc(dev);
595 }
596
597 intel_enable_fbc(crtc, 500);
Chris Wilson29ebf902013-07-27 17:23:55 +0100598 dev_priv->fbc.no_fbc_reason = FBC_OK;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300599 return;
600
601out_disable:
602 /* Multiple disables should be harmless */
603 if (intel_fbc_enabled(dev)) {
604 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
605 intel_disable_fbc(dev);
606 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000607 i915_gem_stolen_cleanup_compression(dev);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300608}
609
Daniel Vetterc921aba2012-04-26 23:28:17 +0200610static void i915_pineview_get_mem_freq(struct drm_device *dev)
611{
612 drm_i915_private_t *dev_priv = dev->dev_private;
613 u32 tmp;
614
615 tmp = I915_READ(CLKCFG);
616
617 switch (tmp & CLKCFG_FSB_MASK) {
618 case CLKCFG_FSB_533:
619 dev_priv->fsb_freq = 533; /* 133*4 */
620 break;
621 case CLKCFG_FSB_800:
622 dev_priv->fsb_freq = 800; /* 200*4 */
623 break;
624 case CLKCFG_FSB_667:
625 dev_priv->fsb_freq = 667; /* 167*4 */
626 break;
627 case CLKCFG_FSB_400:
628 dev_priv->fsb_freq = 400; /* 100*4 */
629 break;
630 }
631
632 switch (tmp & CLKCFG_MEM_MASK) {
633 case CLKCFG_MEM_533:
634 dev_priv->mem_freq = 533;
635 break;
636 case CLKCFG_MEM_667:
637 dev_priv->mem_freq = 667;
638 break;
639 case CLKCFG_MEM_800:
640 dev_priv->mem_freq = 800;
641 break;
642 }
643
644 /* detect pineview DDR3 setting */
645 tmp = I915_READ(CSHRDDR3CTL);
646 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
647}
648
649static void i915_ironlake_get_mem_freq(struct drm_device *dev)
650{
651 drm_i915_private_t *dev_priv = dev->dev_private;
652 u16 ddrpll, csipll;
653
654 ddrpll = I915_READ16(DDRMPLL1);
655 csipll = I915_READ16(CSIPLL0);
656
657 switch (ddrpll & 0xff) {
658 case 0xc:
659 dev_priv->mem_freq = 800;
660 break;
661 case 0x10:
662 dev_priv->mem_freq = 1066;
663 break;
664 case 0x14:
665 dev_priv->mem_freq = 1333;
666 break;
667 case 0x18:
668 dev_priv->mem_freq = 1600;
669 break;
670 default:
671 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
672 ddrpll & 0xff);
673 dev_priv->mem_freq = 0;
674 break;
675 }
676
Daniel Vetter20e4d402012-08-08 23:35:39 +0200677 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200678
679 switch (csipll & 0x3ff) {
680 case 0x00c:
681 dev_priv->fsb_freq = 3200;
682 break;
683 case 0x00e:
684 dev_priv->fsb_freq = 3733;
685 break;
686 case 0x010:
687 dev_priv->fsb_freq = 4266;
688 break;
689 case 0x012:
690 dev_priv->fsb_freq = 4800;
691 break;
692 case 0x014:
693 dev_priv->fsb_freq = 5333;
694 break;
695 case 0x016:
696 dev_priv->fsb_freq = 5866;
697 break;
698 case 0x018:
699 dev_priv->fsb_freq = 6400;
700 break;
701 default:
702 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
703 csipll & 0x3ff);
704 dev_priv->fsb_freq = 0;
705 break;
706 }
707
708 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200709 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200710 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200711 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200712 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200713 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200714 }
715}
716
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300717static const struct cxsr_latency cxsr_latency_table[] = {
718 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
719 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
720 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
721 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
722 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
723
724 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
725 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
726 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
727 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
728 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
729
730 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
731 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
732 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
733 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
734 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
735
736 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
737 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
738 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
739 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
740 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
741
742 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
743 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
744 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
745 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
746 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
747
748 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
749 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
750 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
751 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
752 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
753};
754
Daniel Vetter63c62272012-04-21 23:17:55 +0200755static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300756 int is_ddr3,
757 int fsb,
758 int mem)
759{
760 const struct cxsr_latency *latency;
761 int i;
762
763 if (fsb == 0 || mem == 0)
764 return NULL;
765
766 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
767 latency = &cxsr_latency_table[i];
768 if (is_desktop == latency->is_desktop &&
769 is_ddr3 == latency->is_ddr3 &&
770 fsb == latency->fsb_freq && mem == latency->mem_freq)
771 return latency;
772 }
773
774 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
775
776 return NULL;
777}
778
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300779static void pineview_disable_cxsr(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300780{
781 struct drm_i915_private *dev_priv = dev->dev_private;
782
783 /* deactivate cxsr */
784 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
785}
786
787/*
788 * Latency for FIFO fetches is dependent on several factors:
789 * - memory configuration (speed, channels)
790 * - chipset
791 * - current MCH state
792 * It can be fairly high in some situations, so here we assume a fairly
793 * pessimal value. It's a tradeoff between extra memory fetches (if we
794 * set this value too high, the FIFO will fetch frequently to stay full)
795 * and power consumption (set it too low to save power and we might see
796 * FIFO underruns and display "flicker").
797 *
798 * A value of 5us seems to be a good balance; safe for very low end
799 * platforms but not overly aggressive on lower latency configs.
800 */
801static const int latency_ns = 5000;
802
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300803static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300804{
805 struct drm_i915_private *dev_priv = dev->dev_private;
806 uint32_t dsparb = I915_READ(DSPARB);
807 int size;
808
809 size = dsparb & 0x7f;
810 if (plane)
811 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
812
813 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
814 plane ? "B" : "A", size);
815
816 return size;
817}
818
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300819static int i85x_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300820{
821 struct drm_i915_private *dev_priv = dev->dev_private;
822 uint32_t dsparb = I915_READ(DSPARB);
823 int size;
824
825 size = dsparb & 0x1ff;
826 if (plane)
827 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
828 size >>= 1; /* Convert to cachelines */
829
830 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
831 plane ? "B" : "A", size);
832
833 return size;
834}
835
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300836static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300837{
838 struct drm_i915_private *dev_priv = dev->dev_private;
839 uint32_t dsparb = I915_READ(DSPARB);
840 int size;
841
842 size = dsparb & 0x7f;
843 size >>= 2; /* Convert to cachelines */
844
845 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
846 plane ? "B" : "A",
847 size);
848
849 return size;
850}
851
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300852static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300853{
854 struct drm_i915_private *dev_priv = dev->dev_private;
855 uint32_t dsparb = I915_READ(DSPARB);
856 int size;
857
858 size = dsparb & 0x7f;
859 size >>= 1; /* Convert to cachelines */
860
861 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
862 plane ? "B" : "A", size);
863
864 return size;
865}
866
867/* Pineview has different values for various configs */
868static const struct intel_watermark_params pineview_display_wm = {
869 PINEVIEW_DISPLAY_FIFO,
870 PINEVIEW_MAX_WM,
871 PINEVIEW_DFT_WM,
872 PINEVIEW_GUARD_WM,
873 PINEVIEW_FIFO_LINE_SIZE
874};
875static const struct intel_watermark_params pineview_display_hplloff_wm = {
876 PINEVIEW_DISPLAY_FIFO,
877 PINEVIEW_MAX_WM,
878 PINEVIEW_DFT_HPLLOFF_WM,
879 PINEVIEW_GUARD_WM,
880 PINEVIEW_FIFO_LINE_SIZE
881};
882static const struct intel_watermark_params pineview_cursor_wm = {
883 PINEVIEW_CURSOR_FIFO,
884 PINEVIEW_CURSOR_MAX_WM,
885 PINEVIEW_CURSOR_DFT_WM,
886 PINEVIEW_CURSOR_GUARD_WM,
887 PINEVIEW_FIFO_LINE_SIZE,
888};
889static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
890 PINEVIEW_CURSOR_FIFO,
891 PINEVIEW_CURSOR_MAX_WM,
892 PINEVIEW_CURSOR_DFT_WM,
893 PINEVIEW_CURSOR_GUARD_WM,
894 PINEVIEW_FIFO_LINE_SIZE
895};
896static const struct intel_watermark_params g4x_wm_info = {
897 G4X_FIFO_SIZE,
898 G4X_MAX_WM,
899 G4X_MAX_WM,
900 2,
901 G4X_FIFO_LINE_SIZE,
902};
903static const struct intel_watermark_params g4x_cursor_wm_info = {
904 I965_CURSOR_FIFO,
905 I965_CURSOR_MAX_WM,
906 I965_CURSOR_DFT_WM,
907 2,
908 G4X_FIFO_LINE_SIZE,
909};
910static const struct intel_watermark_params valleyview_wm_info = {
911 VALLEYVIEW_FIFO_SIZE,
912 VALLEYVIEW_MAX_WM,
913 VALLEYVIEW_MAX_WM,
914 2,
915 G4X_FIFO_LINE_SIZE,
916};
917static const struct intel_watermark_params valleyview_cursor_wm_info = {
918 I965_CURSOR_FIFO,
919 VALLEYVIEW_CURSOR_MAX_WM,
920 I965_CURSOR_DFT_WM,
921 2,
922 G4X_FIFO_LINE_SIZE,
923};
924static const struct intel_watermark_params i965_cursor_wm_info = {
925 I965_CURSOR_FIFO,
926 I965_CURSOR_MAX_WM,
927 I965_CURSOR_DFT_WM,
928 2,
929 I915_FIFO_LINE_SIZE,
930};
931static const struct intel_watermark_params i945_wm_info = {
932 I945_FIFO_SIZE,
933 I915_MAX_WM,
934 1,
935 2,
936 I915_FIFO_LINE_SIZE
937};
938static const struct intel_watermark_params i915_wm_info = {
939 I915_FIFO_SIZE,
940 I915_MAX_WM,
941 1,
942 2,
943 I915_FIFO_LINE_SIZE
944};
945static const struct intel_watermark_params i855_wm_info = {
946 I855GM_FIFO_SIZE,
947 I915_MAX_WM,
948 1,
949 2,
950 I830_FIFO_LINE_SIZE
951};
952static const struct intel_watermark_params i830_wm_info = {
953 I830_FIFO_SIZE,
954 I915_MAX_WM,
955 1,
956 2,
957 I830_FIFO_LINE_SIZE
958};
959
960static const struct intel_watermark_params ironlake_display_wm_info = {
961 ILK_DISPLAY_FIFO,
962 ILK_DISPLAY_MAXWM,
963 ILK_DISPLAY_DFTWM,
964 2,
965 ILK_FIFO_LINE_SIZE
966};
967static const struct intel_watermark_params ironlake_cursor_wm_info = {
968 ILK_CURSOR_FIFO,
969 ILK_CURSOR_MAXWM,
970 ILK_CURSOR_DFTWM,
971 2,
972 ILK_FIFO_LINE_SIZE
973};
974static const struct intel_watermark_params ironlake_display_srwm_info = {
975 ILK_DISPLAY_SR_FIFO,
976 ILK_DISPLAY_MAX_SRWM,
977 ILK_DISPLAY_DFT_SRWM,
978 2,
979 ILK_FIFO_LINE_SIZE
980};
981static const struct intel_watermark_params ironlake_cursor_srwm_info = {
982 ILK_CURSOR_SR_FIFO,
983 ILK_CURSOR_MAX_SRWM,
984 ILK_CURSOR_DFT_SRWM,
985 2,
986 ILK_FIFO_LINE_SIZE
987};
988
989static const struct intel_watermark_params sandybridge_display_wm_info = {
990 SNB_DISPLAY_FIFO,
991 SNB_DISPLAY_MAXWM,
992 SNB_DISPLAY_DFTWM,
993 2,
994 SNB_FIFO_LINE_SIZE
995};
996static const struct intel_watermark_params sandybridge_cursor_wm_info = {
997 SNB_CURSOR_FIFO,
998 SNB_CURSOR_MAXWM,
999 SNB_CURSOR_DFTWM,
1000 2,
1001 SNB_FIFO_LINE_SIZE
1002};
1003static const struct intel_watermark_params sandybridge_display_srwm_info = {
1004 SNB_DISPLAY_SR_FIFO,
1005 SNB_DISPLAY_MAX_SRWM,
1006 SNB_DISPLAY_DFT_SRWM,
1007 2,
1008 SNB_FIFO_LINE_SIZE
1009};
1010static const struct intel_watermark_params sandybridge_cursor_srwm_info = {
1011 SNB_CURSOR_SR_FIFO,
1012 SNB_CURSOR_MAX_SRWM,
1013 SNB_CURSOR_DFT_SRWM,
1014 2,
1015 SNB_FIFO_LINE_SIZE
1016};
1017
1018
1019/**
1020 * intel_calculate_wm - calculate watermark level
1021 * @clock_in_khz: pixel clock
1022 * @wm: chip FIFO params
1023 * @pixel_size: display pixel size
1024 * @latency_ns: memory latency for the platform
1025 *
1026 * Calculate the watermark level (the level at which the display plane will
1027 * start fetching from memory again). Each chip has a different display
1028 * FIFO size and allocation, so the caller needs to figure that out and pass
1029 * in the correct intel_watermark_params structure.
1030 *
1031 * As the pixel clock runs, the FIFO will be drained at a rate that depends
1032 * on the pixel size. When it reaches the watermark level, it'll start
1033 * fetching FIFO line sized based chunks from memory until the FIFO fills
1034 * past the watermark point. If the FIFO drains completely, a FIFO underrun
1035 * will occur, and a display engine hang could result.
1036 */
1037static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
1038 const struct intel_watermark_params *wm,
1039 int fifo_size,
1040 int pixel_size,
1041 unsigned long latency_ns)
1042{
1043 long entries_required, wm_size;
1044
1045 /*
1046 * Note: we need to make sure we don't overflow for various clock &
1047 * latency values.
1048 * clocks go from a few thousand to several hundred thousand.
1049 * latency is usually a few thousand
1050 */
1051 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
1052 1000;
1053 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
1054
1055 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
1056
1057 wm_size = fifo_size - (entries_required + wm->guard_size);
1058
1059 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
1060
1061 /* Don't promote wm_size to unsigned... */
1062 if (wm_size > (long)wm->max_wm)
1063 wm_size = wm->max_wm;
1064 if (wm_size <= 0)
1065 wm_size = wm->default_wm;
1066 return wm_size;
1067}
1068
1069static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
1070{
1071 struct drm_crtc *crtc, *enabled = NULL;
1072
1073 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +00001074 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001075 if (enabled)
1076 return NULL;
1077 enabled = crtc;
1078 }
1079 }
1080
1081 return enabled;
1082}
1083
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001084static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001085{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001086 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001087 struct drm_i915_private *dev_priv = dev->dev_private;
1088 struct drm_crtc *crtc;
1089 const struct cxsr_latency *latency;
1090 u32 reg;
1091 unsigned long wm;
1092
1093 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
1094 dev_priv->fsb_freq, dev_priv->mem_freq);
1095 if (!latency) {
1096 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
1097 pineview_disable_cxsr(dev);
1098 return;
1099 }
1100
1101 crtc = single_enabled_crtc(dev);
1102 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001103 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001104 int pixel_size = crtc->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001105 int clock;
1106
1107 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1108 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001109
1110 /* Display SR */
1111 wm = intel_calculate_wm(clock, &pineview_display_wm,
1112 pineview_display_wm.fifo_size,
1113 pixel_size, latency->display_sr);
1114 reg = I915_READ(DSPFW1);
1115 reg &= ~DSPFW_SR_MASK;
1116 reg |= wm << DSPFW_SR_SHIFT;
1117 I915_WRITE(DSPFW1, reg);
1118 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
1119
1120 /* cursor SR */
1121 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
1122 pineview_display_wm.fifo_size,
1123 pixel_size, latency->cursor_sr);
1124 reg = I915_READ(DSPFW3);
1125 reg &= ~DSPFW_CURSOR_SR_MASK;
1126 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
1127 I915_WRITE(DSPFW3, reg);
1128
1129 /* Display HPLL off SR */
1130 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
1131 pineview_display_hplloff_wm.fifo_size,
1132 pixel_size, latency->display_hpll_disable);
1133 reg = I915_READ(DSPFW3);
1134 reg &= ~DSPFW_HPLL_SR_MASK;
1135 reg |= wm & DSPFW_HPLL_SR_MASK;
1136 I915_WRITE(DSPFW3, reg);
1137
1138 /* cursor HPLL off SR */
1139 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
1140 pineview_display_hplloff_wm.fifo_size,
1141 pixel_size, latency->cursor_hpll_disable);
1142 reg = I915_READ(DSPFW3);
1143 reg &= ~DSPFW_HPLL_CURSOR_MASK;
1144 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
1145 I915_WRITE(DSPFW3, reg);
1146 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
1147
1148 /* activate cxsr */
1149 I915_WRITE(DSPFW3,
1150 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
1151 DRM_DEBUG_KMS("Self-refresh is enabled\n");
1152 } else {
1153 pineview_disable_cxsr(dev);
1154 DRM_DEBUG_KMS("Self-refresh is disabled\n");
1155 }
1156}
1157
1158static bool g4x_compute_wm0(struct drm_device *dev,
1159 int plane,
1160 const struct intel_watermark_params *display,
1161 int display_latency_ns,
1162 const struct intel_watermark_params *cursor,
1163 int cursor_latency_ns,
1164 int *plane_wm,
1165 int *cursor_wm)
1166{
1167 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001168 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001169 int htotal, hdisplay, clock, pixel_size;
1170 int line_time_us, line_count;
1171 int entries, tlb_miss;
1172
1173 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001174 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001175 *cursor_wm = cursor->guard_size;
1176 *plane_wm = display->guard_size;
1177 return false;
1178 }
1179
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001180 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001181 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001182 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001183 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001184 pixel_size = crtc->fb->bits_per_pixel / 8;
1185
1186 /* Use the small buffer method to calculate plane watermark */
1187 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
1188 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
1189 if (tlb_miss > 0)
1190 entries += tlb_miss;
1191 entries = DIV_ROUND_UP(entries, display->cacheline_size);
1192 *plane_wm = entries + display->guard_size;
1193 if (*plane_wm > (int)display->max_wm)
1194 *plane_wm = display->max_wm;
1195
1196 /* Use the large buffer method to calculate cursor watermark */
1197 line_time_us = ((htotal * 1000) / clock);
1198 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
1199 entries = line_count * 64 * pixel_size;
1200 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1201 if (tlb_miss > 0)
1202 entries += tlb_miss;
1203 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1204 *cursor_wm = entries + cursor->guard_size;
1205 if (*cursor_wm > (int)cursor->max_wm)
1206 *cursor_wm = (int)cursor->max_wm;
1207
1208 return true;
1209}
1210
1211/*
1212 * Check the wm result.
1213 *
1214 * If any calculated watermark values is larger than the maximum value that
1215 * can be programmed into the associated watermark register, that watermark
1216 * must be disabled.
1217 */
1218static bool g4x_check_srwm(struct drm_device *dev,
1219 int display_wm, int cursor_wm,
1220 const struct intel_watermark_params *display,
1221 const struct intel_watermark_params *cursor)
1222{
1223 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
1224 display_wm, cursor_wm);
1225
1226 if (display_wm > display->max_wm) {
1227 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
1228 display_wm, display->max_wm);
1229 return false;
1230 }
1231
1232 if (cursor_wm > cursor->max_wm) {
1233 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
1234 cursor_wm, cursor->max_wm);
1235 return false;
1236 }
1237
1238 if (!(display_wm || cursor_wm)) {
1239 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
1240 return false;
1241 }
1242
1243 return true;
1244}
1245
1246static bool g4x_compute_srwm(struct drm_device *dev,
1247 int plane,
1248 int latency_ns,
1249 const struct intel_watermark_params *display,
1250 const struct intel_watermark_params *cursor,
1251 int *display_wm, int *cursor_wm)
1252{
1253 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001254 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001255 int hdisplay, htotal, pixel_size, clock;
1256 unsigned long line_time_us;
1257 int line_count, line_size;
1258 int small, large;
1259 int entries;
1260
1261 if (!latency_ns) {
1262 *display_wm = *cursor_wm = 0;
1263 return false;
1264 }
1265
1266 crtc = intel_get_crtc_for_plane(dev, plane);
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001267 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001268 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001269 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001270 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001271 pixel_size = crtc->fb->bits_per_pixel / 8;
1272
1273 line_time_us = (htotal * 1000) / clock;
1274 line_count = (latency_ns / line_time_us + 1000) / 1000;
1275 line_size = hdisplay * pixel_size;
1276
1277 /* Use the minimum of the small and large buffer method for primary */
1278 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1279 large = line_count * line_size;
1280
1281 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1282 *display_wm = entries + display->guard_size;
1283
1284 /* calculate the self-refresh watermark for display cursor */
1285 entries = line_count * pixel_size * 64;
1286 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1287 *cursor_wm = entries + cursor->guard_size;
1288
1289 return g4x_check_srwm(dev,
1290 *display_wm, *cursor_wm,
1291 display, cursor);
1292}
1293
1294static bool vlv_compute_drain_latency(struct drm_device *dev,
1295 int plane,
1296 int *plane_prec_mult,
1297 int *plane_dl,
1298 int *cursor_prec_mult,
1299 int *cursor_dl)
1300{
1301 struct drm_crtc *crtc;
1302 int clock, pixel_size;
1303 int entries;
1304
1305 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001306 if (!intel_crtc_active(crtc))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001307 return false;
1308
Damien Lespiau241bfc32013-09-25 16:45:37 +01001309 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001310 pixel_size = crtc->fb->bits_per_pixel / 8; /* BPP */
1311
1312 entries = (clock / 1000) * pixel_size;
1313 *plane_prec_mult = (entries > 256) ?
1314 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1315 *plane_dl = (64 * (*plane_prec_mult) * 4) / ((clock / 1000) *
1316 pixel_size);
1317
1318 entries = (clock / 1000) * 4; /* BPP is always 4 for cursor */
1319 *cursor_prec_mult = (entries > 256) ?
1320 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1321 *cursor_dl = (64 * (*cursor_prec_mult) * 4) / ((clock / 1000) * 4);
1322
1323 return true;
1324}
1325
1326/*
1327 * Update drain latency registers of memory arbiter
1328 *
1329 * Valleyview SoC has a new memory arbiter and needs drain latency registers
1330 * to be programmed. Each plane has a drain latency multiplier and a drain
1331 * latency value.
1332 */
1333
1334static void vlv_update_drain_latency(struct drm_device *dev)
1335{
1336 struct drm_i915_private *dev_priv = dev->dev_private;
1337 int planea_prec, planea_dl, planeb_prec, planeb_dl;
1338 int cursora_prec, cursora_dl, cursorb_prec, cursorb_dl;
1339 int plane_prec_mult, cursor_prec_mult; /* Precision multiplier is
1340 either 16 or 32 */
1341
1342 /* For plane A, Cursor A */
1343 if (vlv_compute_drain_latency(dev, 0, &plane_prec_mult, &planea_dl,
1344 &cursor_prec_mult, &cursora_dl)) {
1345 cursora_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1346 DDL_CURSORA_PRECISION_32 : DDL_CURSORA_PRECISION_16;
1347 planea_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1348 DDL_PLANEA_PRECISION_32 : DDL_PLANEA_PRECISION_16;
1349
1350 I915_WRITE(VLV_DDL1, cursora_prec |
1351 (cursora_dl << DDL_CURSORA_SHIFT) |
1352 planea_prec | planea_dl);
1353 }
1354
1355 /* For plane B, Cursor B */
1356 if (vlv_compute_drain_latency(dev, 1, &plane_prec_mult, &planeb_dl,
1357 &cursor_prec_mult, &cursorb_dl)) {
1358 cursorb_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1359 DDL_CURSORB_PRECISION_32 : DDL_CURSORB_PRECISION_16;
1360 planeb_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1361 DDL_PLANEB_PRECISION_32 : DDL_PLANEB_PRECISION_16;
1362
1363 I915_WRITE(VLV_DDL2, cursorb_prec |
1364 (cursorb_dl << DDL_CURSORB_SHIFT) |
1365 planeb_prec | planeb_dl);
1366 }
1367}
1368
1369#define single_plane_enabled(mask) is_power_of_2(mask)
1370
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001371static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001372{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001373 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001374 static const int sr_latency_ns = 12000;
1375 struct drm_i915_private *dev_priv = dev->dev_private;
1376 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1377 int plane_sr, cursor_sr;
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001378 int ignore_plane_sr, ignore_cursor_sr;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001379 unsigned int enabled = 0;
1380
1381 vlv_update_drain_latency(dev);
1382
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001383 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001384 &valleyview_wm_info, latency_ns,
1385 &valleyview_cursor_wm_info, latency_ns,
1386 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001387 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001388
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001389 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001390 &valleyview_wm_info, latency_ns,
1391 &valleyview_cursor_wm_info, latency_ns,
1392 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001393 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001394
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001395 if (single_plane_enabled(enabled) &&
1396 g4x_compute_srwm(dev, ffs(enabled) - 1,
1397 sr_latency_ns,
1398 &valleyview_wm_info,
1399 &valleyview_cursor_wm_info,
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001400 &plane_sr, &ignore_cursor_sr) &&
1401 g4x_compute_srwm(dev, ffs(enabled) - 1,
1402 2*sr_latency_ns,
1403 &valleyview_wm_info,
1404 &valleyview_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001405 &ignore_plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001406 I915_WRITE(FW_BLC_SELF_VLV, FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001407 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001408 I915_WRITE(FW_BLC_SELF_VLV,
1409 I915_READ(FW_BLC_SELF_VLV) & ~FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001410 plane_sr = cursor_sr = 0;
1411 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001412
1413 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1414 planea_wm, cursora_wm,
1415 planeb_wm, cursorb_wm,
1416 plane_sr, cursor_sr);
1417
1418 I915_WRITE(DSPFW1,
1419 (plane_sr << DSPFW_SR_SHIFT) |
1420 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1421 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1422 planea_wm);
1423 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001424 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001425 (cursora_wm << DSPFW_CURSORA_SHIFT));
1426 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001427 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
1428 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001429}
1430
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001431static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001433 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001434 static const int sr_latency_ns = 12000;
1435 struct drm_i915_private *dev_priv = dev->dev_private;
1436 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1437 int plane_sr, cursor_sr;
1438 unsigned int enabled = 0;
1439
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001440 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001441 &g4x_wm_info, latency_ns,
1442 &g4x_cursor_wm_info, latency_ns,
1443 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001444 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001445
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001446 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001447 &g4x_wm_info, latency_ns,
1448 &g4x_cursor_wm_info, latency_ns,
1449 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001450 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001451
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001452 if (single_plane_enabled(enabled) &&
1453 g4x_compute_srwm(dev, ffs(enabled) - 1,
1454 sr_latency_ns,
1455 &g4x_wm_info,
1456 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001457 &plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001458 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001459 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001460 I915_WRITE(FW_BLC_SELF,
1461 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001462 plane_sr = cursor_sr = 0;
1463 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464
1465 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1466 planea_wm, cursora_wm,
1467 planeb_wm, cursorb_wm,
1468 plane_sr, cursor_sr);
1469
1470 I915_WRITE(DSPFW1,
1471 (plane_sr << DSPFW_SR_SHIFT) |
1472 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1473 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1474 planea_wm);
1475 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001476 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001477 (cursora_wm << DSPFW_CURSORA_SHIFT));
1478 /* HPLL off in SR has some issues on G4x... disable it */
1479 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001480 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001481 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1482}
1483
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001484static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001485{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001486 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001487 struct drm_i915_private *dev_priv = dev->dev_private;
1488 struct drm_crtc *crtc;
1489 int srwm = 1;
1490 int cursor_sr = 16;
1491
1492 /* Calc sr entries for one plane configs */
1493 crtc = single_enabled_crtc(dev);
1494 if (crtc) {
1495 /* self-refresh has much higher latency */
1496 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001497 const struct drm_display_mode *adjusted_mode =
1498 &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001499 int clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001500 int htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001501 int hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001502 int pixel_size = crtc->fb->bits_per_pixel / 8;
1503 unsigned long line_time_us;
1504 int entries;
1505
1506 line_time_us = ((htotal * 1000) / clock);
1507
1508 /* Use ns/us then divide to preserve precision */
1509 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1510 pixel_size * hdisplay;
1511 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1512 srwm = I965_FIFO_SIZE - entries;
1513 if (srwm < 0)
1514 srwm = 1;
1515 srwm &= 0x1ff;
1516 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1517 entries, srwm);
1518
1519 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1520 pixel_size * 64;
1521 entries = DIV_ROUND_UP(entries,
1522 i965_cursor_wm_info.cacheline_size);
1523 cursor_sr = i965_cursor_wm_info.fifo_size -
1524 (entries + i965_cursor_wm_info.guard_size);
1525
1526 if (cursor_sr > i965_cursor_wm_info.max_wm)
1527 cursor_sr = i965_cursor_wm_info.max_wm;
1528
1529 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1530 "cursor %d\n", srwm, cursor_sr);
1531
1532 if (IS_CRESTLINE(dev))
1533 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
1534 } else {
1535 /* Turn off self refresh if both pipes are enabled */
1536 if (IS_CRESTLINE(dev))
1537 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
1538 & ~FW_BLC_SELF_EN);
1539 }
1540
1541 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1542 srwm);
1543
1544 /* 965 has limitations... */
1545 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
1546 (8 << 16) | (8 << 8) | (8 << 0));
1547 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
1548 /* update cursor SR watermark */
1549 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1550}
1551
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001552static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001553{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001554 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001555 struct drm_i915_private *dev_priv = dev->dev_private;
1556 const struct intel_watermark_params *wm_info;
1557 uint32_t fwater_lo;
1558 uint32_t fwater_hi;
1559 int cwm, srwm = 1;
1560 int fifo_size;
1561 int planea_wm, planeb_wm;
1562 struct drm_crtc *crtc, *enabled = NULL;
1563
1564 if (IS_I945GM(dev))
1565 wm_info = &i945_wm_info;
1566 else if (!IS_GEN2(dev))
1567 wm_info = &i915_wm_info;
1568 else
1569 wm_info = &i855_wm_info;
1570
1571 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1572 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001573 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001574 const struct drm_display_mode *adjusted_mode;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001575 int cpp = crtc->fb->bits_per_pixel / 8;
1576 if (IS_GEN2(dev))
1577 cpp = 4;
1578
Damien Lespiau241bfc32013-09-25 16:45:37 +01001579 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1580 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001581 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001582 latency_ns);
1583 enabled = crtc;
1584 } else
1585 planea_wm = fifo_size - wm_info->guard_size;
1586
1587 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1588 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001589 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001590 const struct drm_display_mode *adjusted_mode;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001591 int cpp = crtc->fb->bits_per_pixel / 8;
1592 if (IS_GEN2(dev))
1593 cpp = 4;
1594
Damien Lespiau241bfc32013-09-25 16:45:37 +01001595 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1596 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001597 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001598 latency_ns);
1599 if (enabled == NULL)
1600 enabled = crtc;
1601 else
1602 enabled = NULL;
1603 } else
1604 planeb_wm = fifo_size - wm_info->guard_size;
1605
1606 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1607
1608 /*
1609 * Overlay gets an aggressive default since video jitter is bad.
1610 */
1611 cwm = 2;
1612
1613 /* Play safe and disable self-refresh before adjusting watermarks. */
1614 if (IS_I945G(dev) || IS_I945GM(dev))
1615 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
1616 else if (IS_I915GM(dev))
1617 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
1618
1619 /* Calc sr entries for one plane configs */
1620 if (HAS_FW_BLC(dev) && enabled) {
1621 /* self-refresh has much higher latency */
1622 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001623 const struct drm_display_mode *adjusted_mode =
1624 &to_intel_crtc(enabled)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001625 int clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001626 int htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001627 int hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001628 int pixel_size = enabled->fb->bits_per_pixel / 8;
1629 unsigned long line_time_us;
1630 int entries;
1631
1632 line_time_us = (htotal * 1000) / clock;
1633
1634 /* Use ns/us then divide to preserve precision */
1635 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1636 pixel_size * hdisplay;
1637 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1638 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1639 srwm = wm_info->fifo_size - entries;
1640 if (srwm < 0)
1641 srwm = 1;
1642
1643 if (IS_I945G(dev) || IS_I945GM(dev))
1644 I915_WRITE(FW_BLC_SELF,
1645 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1646 else if (IS_I915GM(dev))
1647 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1648 }
1649
1650 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1651 planea_wm, planeb_wm, cwm, srwm);
1652
1653 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1654 fwater_hi = (cwm & 0x1f);
1655
1656 /* Set request length to 8 cachelines per fetch */
1657 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1658 fwater_hi = fwater_hi | (1 << 8);
1659
1660 I915_WRITE(FW_BLC, fwater_lo);
1661 I915_WRITE(FW_BLC2, fwater_hi);
1662
1663 if (HAS_FW_BLC(dev)) {
1664 if (enabled) {
1665 if (IS_I945G(dev) || IS_I945GM(dev))
1666 I915_WRITE(FW_BLC_SELF,
1667 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
1668 else if (IS_I915GM(dev))
1669 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
1670 DRM_DEBUG_KMS("memory self refresh enabled\n");
1671 } else
1672 DRM_DEBUG_KMS("memory self refresh disabled\n");
1673 }
1674}
1675
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001676static void i830_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001677{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001678 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001679 struct drm_i915_private *dev_priv = dev->dev_private;
1680 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001681 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001682 uint32_t fwater_lo;
1683 int planea_wm;
1684
1685 crtc = single_enabled_crtc(dev);
1686 if (crtc == NULL)
1687 return;
1688
Damien Lespiau241bfc32013-09-25 16:45:37 +01001689 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1690 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001691 &i830_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001692 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001693 4, latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001694 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1695 fwater_lo |= (3<<8) | planea_wm;
1696
1697 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1698
1699 I915_WRITE(FW_BLC, fwater_lo);
1700}
1701
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001702/*
1703 * Check the wm result.
1704 *
1705 * If any calculated watermark values is larger than the maximum value that
1706 * can be programmed into the associated watermark register, that watermark
1707 * must be disabled.
1708 */
1709static bool ironlake_check_srwm(struct drm_device *dev, int level,
1710 int fbc_wm, int display_wm, int cursor_wm,
1711 const struct intel_watermark_params *display,
1712 const struct intel_watermark_params *cursor)
1713{
1714 struct drm_i915_private *dev_priv = dev->dev_private;
1715
1716 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
1717 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
1718
1719 if (fbc_wm > SNB_FBC_MAX_SRWM) {
1720 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
1721 fbc_wm, SNB_FBC_MAX_SRWM, level);
1722
1723 /* fbc has it's own way to disable FBC WM */
1724 I915_WRITE(DISP_ARB_CTL,
1725 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
1726 return false;
Ville Syrjälä615aaa52013-04-24 21:09:10 +03001727 } else if (INTEL_INFO(dev)->gen >= 6) {
1728 /* enable FBC WM (except on ILK, where it must remain off) */
1729 I915_WRITE(DISP_ARB_CTL,
1730 I915_READ(DISP_ARB_CTL) & ~DISP_FBC_WM_DIS);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001731 }
1732
1733 if (display_wm > display->max_wm) {
1734 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
1735 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1736 return false;
1737 }
1738
1739 if (cursor_wm > cursor->max_wm) {
1740 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
1741 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1742 return false;
1743 }
1744
1745 if (!(fbc_wm || display_wm || cursor_wm)) {
1746 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
1747 return false;
1748 }
1749
1750 return true;
1751}
1752
1753/*
1754 * Compute watermark values of WM[1-3],
1755 */
1756static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
1757 int latency_ns,
1758 const struct intel_watermark_params *display,
1759 const struct intel_watermark_params *cursor,
1760 int *fbc_wm, int *display_wm, int *cursor_wm)
1761{
1762 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001763 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001764 unsigned long line_time_us;
1765 int hdisplay, htotal, pixel_size, clock;
1766 int line_count, line_size;
1767 int small, large;
1768 int entries;
1769
1770 if (!latency_ns) {
1771 *fbc_wm = *display_wm = *cursor_wm = 0;
1772 return false;
1773 }
1774
1775 crtc = intel_get_crtc_for_plane(dev, plane);
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001776 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001777 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001778 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001779 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001780 pixel_size = crtc->fb->bits_per_pixel / 8;
1781
1782 line_time_us = (htotal * 1000) / clock;
1783 line_count = (latency_ns / line_time_us + 1000) / 1000;
1784 line_size = hdisplay * pixel_size;
1785
1786 /* Use the minimum of the small and large buffer method for primary */
1787 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1788 large = line_count * line_size;
1789
1790 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1791 *display_wm = entries + display->guard_size;
1792
1793 /*
1794 * Spec says:
1795 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
1796 */
1797 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
1798
1799 /* calculate the self-refresh watermark for display cursor */
1800 entries = line_count * pixel_size * 64;
1801 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1802 *cursor_wm = entries + cursor->guard_size;
1803
1804 return ironlake_check_srwm(dev, level,
1805 *fbc_wm, *display_wm, *cursor_wm,
1806 display, cursor);
1807}
1808
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001809static void ironlake_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001810{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001811 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001812 struct drm_i915_private *dev_priv = dev->dev_private;
1813 int fbc_wm, plane_wm, cursor_wm;
1814 unsigned int enabled;
1815
1816 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001817 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001818 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001819 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001820 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001821 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001822 &plane_wm, &cursor_wm)) {
1823 I915_WRITE(WM0_PIPEA_ILK,
1824 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1825 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1826 " plane %d, " "cursor: %d\n",
1827 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001828 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001829 }
1830
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001831 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001832 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001833 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001834 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001835 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001836 &plane_wm, &cursor_wm)) {
1837 I915_WRITE(WM0_PIPEB_ILK,
1838 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1839 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1840 " plane %d, cursor: %d\n",
1841 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001842 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001843 }
1844
1845 /*
1846 * Calculate and update the self-refresh watermark only when one
1847 * display plane is used.
1848 */
1849 I915_WRITE(WM3_LP_ILK, 0);
1850 I915_WRITE(WM2_LP_ILK, 0);
1851 I915_WRITE(WM1_LP_ILK, 0);
1852
1853 if (!single_plane_enabled(enabled))
1854 return;
1855 enabled = ffs(enabled) - 1;
1856
1857 /* WM1 */
1858 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001859 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001860 &ironlake_display_srwm_info,
1861 &ironlake_cursor_srwm_info,
1862 &fbc_wm, &plane_wm, &cursor_wm))
1863 return;
1864
1865 I915_WRITE(WM1_LP_ILK,
1866 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001867 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001868 (fbc_wm << WM1_LP_FBC_SHIFT) |
1869 (plane_wm << WM1_LP_SR_SHIFT) |
1870 cursor_wm);
1871
1872 /* WM2 */
1873 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001874 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001875 &ironlake_display_srwm_info,
1876 &ironlake_cursor_srwm_info,
1877 &fbc_wm, &plane_wm, &cursor_wm))
1878 return;
1879
1880 I915_WRITE(WM2_LP_ILK,
1881 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001882 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001883 (fbc_wm << WM1_LP_FBC_SHIFT) |
1884 (plane_wm << WM1_LP_SR_SHIFT) |
1885 cursor_wm);
1886
1887 /*
1888 * WM3 is unsupported on ILK, probably because we don't have latency
1889 * data for that power state
1890 */
1891}
1892
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001893static void sandybridge_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001894{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001895 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001896 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001897 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001898 u32 val;
1899 int fbc_wm, plane_wm, cursor_wm;
1900 unsigned int enabled;
1901
1902 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001903 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001904 &sandybridge_display_wm_info, latency,
1905 &sandybridge_cursor_wm_info, latency,
1906 &plane_wm, &cursor_wm)) {
1907 val = I915_READ(WM0_PIPEA_ILK);
1908 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1909 I915_WRITE(WM0_PIPEA_ILK, val |
1910 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1911 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1912 " plane %d, " "cursor: %d\n",
1913 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001914 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001915 }
1916
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001917 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001918 &sandybridge_display_wm_info, latency,
1919 &sandybridge_cursor_wm_info, latency,
1920 &plane_wm, &cursor_wm)) {
1921 val = I915_READ(WM0_PIPEB_ILK);
1922 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1923 I915_WRITE(WM0_PIPEB_ILK, val |
1924 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1925 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1926 " plane %d, cursor: %d\n",
1927 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001928 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001929 }
1930
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001931 /*
1932 * Calculate and update the self-refresh watermark only when one
1933 * display plane is used.
1934 *
1935 * SNB support 3 levels of watermark.
1936 *
1937 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
1938 * and disabled in the descending order
1939 *
1940 */
1941 I915_WRITE(WM3_LP_ILK, 0);
1942 I915_WRITE(WM2_LP_ILK, 0);
1943 I915_WRITE(WM1_LP_ILK, 0);
1944
1945 if (!single_plane_enabled(enabled) ||
1946 dev_priv->sprite_scaling_enabled)
1947 return;
1948 enabled = ffs(enabled) - 1;
1949
1950 /* WM1 */
1951 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001952 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001953 &sandybridge_display_srwm_info,
1954 &sandybridge_cursor_srwm_info,
1955 &fbc_wm, &plane_wm, &cursor_wm))
1956 return;
1957
1958 I915_WRITE(WM1_LP_ILK,
1959 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001960 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001961 (fbc_wm << WM1_LP_FBC_SHIFT) |
1962 (plane_wm << WM1_LP_SR_SHIFT) |
1963 cursor_wm);
1964
1965 /* WM2 */
1966 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001967 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001968 &sandybridge_display_srwm_info,
1969 &sandybridge_cursor_srwm_info,
1970 &fbc_wm, &plane_wm, &cursor_wm))
1971 return;
1972
1973 I915_WRITE(WM2_LP_ILK,
1974 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001975 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001976 (fbc_wm << WM1_LP_FBC_SHIFT) |
1977 (plane_wm << WM1_LP_SR_SHIFT) |
1978 cursor_wm);
1979
1980 /* WM3 */
1981 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001982 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001983 &sandybridge_display_srwm_info,
1984 &sandybridge_cursor_srwm_info,
1985 &fbc_wm, &plane_wm, &cursor_wm))
1986 return;
1987
1988 I915_WRITE(WM3_LP_ILK,
1989 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001990 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001991 (fbc_wm << WM1_LP_FBC_SHIFT) |
1992 (plane_wm << WM1_LP_SR_SHIFT) |
1993 cursor_wm);
1994}
1995
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001996static void ivybridge_update_wm(struct drm_crtc *crtc)
Chris Wilsonc43d0182012-12-11 12:01:42 +00001997{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001998 struct drm_device *dev = crtc->dev;
Chris Wilsonc43d0182012-12-11 12:01:42 +00001999 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002000 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Chris Wilsonc43d0182012-12-11 12:01:42 +00002001 u32 val;
2002 int fbc_wm, plane_wm, cursor_wm;
2003 int ignore_fbc_wm, ignore_plane_wm, ignore_cursor_wm;
2004 unsigned int enabled;
2005
2006 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002007 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002008 &sandybridge_display_wm_info, latency,
2009 &sandybridge_cursor_wm_info, latency,
2010 &plane_wm, &cursor_wm)) {
2011 val = I915_READ(WM0_PIPEA_ILK);
2012 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2013 I915_WRITE(WM0_PIPEA_ILK, val |
2014 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2015 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
2016 " plane %d, " "cursor: %d\n",
2017 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002018 enabled |= 1 << PIPE_A;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002019 }
2020
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002021 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002022 &sandybridge_display_wm_info, latency,
2023 &sandybridge_cursor_wm_info, latency,
2024 &plane_wm, &cursor_wm)) {
2025 val = I915_READ(WM0_PIPEB_ILK);
2026 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2027 I915_WRITE(WM0_PIPEB_ILK, val |
2028 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2029 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
2030 " plane %d, cursor: %d\n",
2031 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002032 enabled |= 1 << PIPE_B;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002033 }
2034
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002035 if (g4x_compute_wm0(dev, PIPE_C,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002036 &sandybridge_display_wm_info, latency,
2037 &sandybridge_cursor_wm_info, latency,
2038 &plane_wm, &cursor_wm)) {
2039 val = I915_READ(WM0_PIPEC_IVB);
2040 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2041 I915_WRITE(WM0_PIPEC_IVB, val |
2042 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2043 DRM_DEBUG_KMS("FIFO watermarks For pipe C -"
2044 " plane %d, cursor: %d\n",
2045 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002046 enabled |= 1 << PIPE_C;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002047 }
2048
2049 /*
2050 * Calculate and update the self-refresh watermark only when one
2051 * display plane is used.
2052 *
2053 * SNB support 3 levels of watermark.
2054 *
2055 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
2056 * and disabled in the descending order
2057 *
2058 */
2059 I915_WRITE(WM3_LP_ILK, 0);
2060 I915_WRITE(WM2_LP_ILK, 0);
2061 I915_WRITE(WM1_LP_ILK, 0);
2062
2063 if (!single_plane_enabled(enabled) ||
2064 dev_priv->sprite_scaling_enabled)
2065 return;
2066 enabled = ffs(enabled) - 1;
2067
2068 /* WM1 */
2069 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002070 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002071 &sandybridge_display_srwm_info,
2072 &sandybridge_cursor_srwm_info,
2073 &fbc_wm, &plane_wm, &cursor_wm))
2074 return;
2075
2076 I915_WRITE(WM1_LP_ILK,
2077 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002078 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002079 (fbc_wm << WM1_LP_FBC_SHIFT) |
2080 (plane_wm << WM1_LP_SR_SHIFT) |
2081 cursor_wm);
2082
2083 /* WM2 */
2084 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002085 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002086 &sandybridge_display_srwm_info,
2087 &sandybridge_cursor_srwm_info,
2088 &fbc_wm, &plane_wm, &cursor_wm))
2089 return;
2090
2091 I915_WRITE(WM2_LP_ILK,
2092 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002093 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002094 (fbc_wm << WM1_LP_FBC_SHIFT) |
2095 (plane_wm << WM1_LP_SR_SHIFT) |
2096 cursor_wm);
2097
Chris Wilsonc43d0182012-12-11 12:01:42 +00002098 /* WM3, note we have to correct the cursor latency */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002099 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002100 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002101 &sandybridge_display_srwm_info,
2102 &sandybridge_cursor_srwm_info,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002103 &fbc_wm, &plane_wm, &ignore_cursor_wm) ||
2104 !ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002105 dev_priv->wm.cur_latency[3] * 500,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002106 &sandybridge_display_srwm_info,
2107 &sandybridge_cursor_srwm_info,
2108 &ignore_fbc_wm, &ignore_plane_wm, &cursor_wm))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002109 return;
2110
2111 I915_WRITE(WM3_LP_ILK,
2112 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002113 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002114 (fbc_wm << WM1_LP_FBC_SHIFT) |
2115 (plane_wm << WM1_LP_SR_SHIFT) |
2116 cursor_wm);
2117}
2118
Ville Syrjälä36587292013-07-05 11:57:16 +03002119static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
2120 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002121{
2122 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002123 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002124
Damien Lespiau241bfc32013-09-25 16:45:37 +01002125 pixel_rate = intel_crtc->config.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002126
2127 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
2128 * adjust the pixel_rate here. */
2129
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002130 if (intel_crtc->config.pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002131 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002132 uint32_t pfit_size = intel_crtc->config.pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002133
Ville Syrjälä37327ab2013-09-04 18:25:28 +03002134 pipe_w = intel_crtc->config.pipe_src_w;
2135 pipe_h = intel_crtc->config.pipe_src_h;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002136 pfit_w = (pfit_size >> 16) & 0xFFFF;
2137 pfit_h = pfit_size & 0xFFFF;
2138 if (pipe_w < pfit_w)
2139 pipe_w = pfit_w;
2140 if (pipe_h < pfit_h)
2141 pipe_h = pfit_h;
2142
2143 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
2144 pfit_w * pfit_h);
2145 }
2146
2147 return pixel_rate;
2148}
2149
Ville Syrjälä37126462013-08-01 16:18:55 +03002150/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002151static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002152 uint32_t latency)
2153{
2154 uint64_t ret;
2155
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002156 if (WARN(latency == 0, "Latency value missing\n"))
2157 return UINT_MAX;
2158
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002159 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
2160 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
2161
2162 return ret;
2163}
2164
Ville Syrjälä37126462013-08-01 16:18:55 +03002165/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002166static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002167 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2168 uint32_t latency)
2169{
2170 uint32_t ret;
2171
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002172 if (WARN(latency == 0, "Latency value missing\n"))
2173 return UINT_MAX;
2174
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002175 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
2176 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
2177 ret = DIV_ROUND_UP(ret, 64) + 2;
2178 return ret;
2179}
2180
Ville Syrjälä23297042013-07-05 11:57:17 +03002181static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002182 uint8_t bytes_per_pixel)
2183{
2184 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
2185}
2186
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002187struct hsw_pipe_wm_parameters {
2188 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002189 uint32_t pipe_htotal;
2190 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002191 struct intel_plane_wm_parameters pri;
2192 struct intel_plane_wm_parameters spr;
2193 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002194};
2195
Paulo Zanonicca32e92013-05-31 11:45:06 -03002196struct hsw_wm_maximums {
2197 uint16_t pri;
2198 uint16_t spr;
2199 uint16_t cur;
2200 uint16_t fbc;
2201};
2202
Ville Syrjälä240264f2013-08-07 13:29:12 +03002203/* used in computing the new watermarks state */
2204struct intel_wm_config {
2205 unsigned int num_pipes_active;
2206 bool sprites_enabled;
2207 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03002208};
2209
Ville Syrjälä37126462013-08-01 16:18:55 +03002210/*
2211 * For both WM_PIPE and WM_LP.
2212 * mem_value must be in 0.1us units.
2213 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002214static uint32_t ilk_compute_pri_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002215 uint32_t mem_value,
2216 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002217{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002218 uint32_t method1, method2;
2219
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002220 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002221 return 0;
2222
Ville Syrjälä23297042013-07-05 11:57:17 +03002223 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002224 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002225 mem_value);
2226
2227 if (!is_lp)
2228 return method1;
2229
Ville Syrjälä23297042013-07-05 11:57:17 +03002230 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002231 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002232 params->pri.horiz_pixels,
2233 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002234 mem_value);
2235
2236 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002237}
2238
Ville Syrjälä37126462013-08-01 16:18:55 +03002239/*
2240 * For both WM_PIPE and WM_LP.
2241 * mem_value must be in 0.1us units.
2242 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002243static uint32_t ilk_compute_spr_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002244 uint32_t mem_value)
2245{
2246 uint32_t method1, method2;
2247
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002248 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002249 return 0;
2250
Ville Syrjälä23297042013-07-05 11:57:17 +03002251 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002252 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002253 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03002254 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002255 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002256 params->spr.horiz_pixels,
2257 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002258 mem_value);
2259 return min(method1, method2);
2260}
2261
Ville Syrjälä37126462013-08-01 16:18:55 +03002262/*
2263 * For both WM_PIPE and WM_LP.
2264 * mem_value must be in 0.1us units.
2265 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002266static uint32_t ilk_compute_cur_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002267 uint32_t mem_value)
2268{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002269 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002270 return 0;
2271
Ville Syrjälä23297042013-07-05 11:57:17 +03002272 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002273 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002274 params->cur.horiz_pixels,
2275 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002276 mem_value);
2277}
2278
Paulo Zanonicca32e92013-05-31 11:45:06 -03002279/* Only for WM_LP. */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002280static uint32_t ilk_compute_fbc_wm(const struct hsw_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002281 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002282{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002283 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002284 return 0;
2285
Ville Syrjälä23297042013-07-05 11:57:17 +03002286 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002287 params->pri.horiz_pixels,
2288 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002289}
2290
Ville Syrjälä158ae642013-08-07 13:28:19 +03002291static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
2292{
2293 if (INTEL_INFO(dev)->gen >= 7)
2294 return 768;
2295 else
2296 return 512;
2297}
2298
2299/* Calculate the maximum primary/sprite plane watermark */
2300static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2301 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002302 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002303 enum intel_ddb_partitioning ddb_partitioning,
2304 bool is_sprite)
2305{
2306 unsigned int fifo_size = ilk_display_fifo_size(dev);
2307 unsigned int max;
2308
2309 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002310 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002311 return 0;
2312
2313 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002314 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002315 fifo_size /= INTEL_INFO(dev)->num_pipes;
2316
2317 /*
2318 * For some reason the non self refresh
2319 * FIFO size is only half of the self
2320 * refresh FIFO size on ILK/SNB.
2321 */
2322 if (INTEL_INFO(dev)->gen <= 6)
2323 fifo_size /= 2;
2324 }
2325
Ville Syrjälä240264f2013-08-07 13:29:12 +03002326 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002327 /* level 0 is always calculated with 1:1 split */
2328 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2329 if (is_sprite)
2330 fifo_size *= 5;
2331 fifo_size /= 6;
2332 } else {
2333 fifo_size /= 2;
2334 }
2335 }
2336
2337 /* clamp to max that the registers can hold */
2338 if (INTEL_INFO(dev)->gen >= 7)
2339 /* IVB/HSW primary/sprite plane watermarks */
2340 max = level == 0 ? 127 : 1023;
2341 else if (!is_sprite)
2342 /* ILK/SNB primary plane watermarks */
2343 max = level == 0 ? 127 : 511;
2344 else
2345 /* ILK/SNB sprite plane watermarks */
2346 max = level == 0 ? 63 : 255;
2347
2348 return min(fifo_size, max);
2349}
2350
2351/* Calculate the maximum cursor plane watermark */
2352static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002353 int level,
2354 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002355{
2356 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002357 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002358 return 64;
2359
2360 /* otherwise just report max that registers can hold */
2361 if (INTEL_INFO(dev)->gen >= 7)
2362 return level == 0 ? 63 : 255;
2363 else
2364 return level == 0 ? 31 : 63;
2365}
2366
2367/* Calculate the maximum FBC watermark */
2368static unsigned int ilk_fbc_wm_max(void)
2369{
2370 /* max that registers can hold */
2371 return 15;
2372}
2373
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002374static void ilk_compute_wm_maximums(struct drm_device *dev,
2375 int level,
2376 const struct intel_wm_config *config,
2377 enum intel_ddb_partitioning ddb_partitioning,
2378 struct hsw_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002379{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002380 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2381 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2382 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002383 max->fbc = ilk_fbc_wm_max();
2384}
2385
Ville Syrjäläd9395652013-10-09 19:18:10 +03002386static bool ilk_validate_wm_level(int level,
2387 const struct hsw_wm_maximums *max,
2388 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002389{
2390 bool ret;
2391
2392 /* already determined to be invalid? */
2393 if (!result->enable)
2394 return false;
2395
2396 result->enable = result->pri_val <= max->pri &&
2397 result->spr_val <= max->spr &&
2398 result->cur_val <= max->cur;
2399
2400 ret = result->enable;
2401
2402 /*
2403 * HACK until we can pre-compute everything,
2404 * and thus fail gracefully if LP0 watermarks
2405 * are exceeded...
2406 */
2407 if (level == 0 && !result->enable) {
2408 if (result->pri_val > max->pri)
2409 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2410 level, result->pri_val, max->pri);
2411 if (result->spr_val > max->spr)
2412 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2413 level, result->spr_val, max->spr);
2414 if (result->cur_val > max->cur)
2415 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2416 level, result->cur_val, max->cur);
2417
2418 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2419 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2420 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2421 result->enable = true;
2422 }
2423
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002424 return ret;
2425}
2426
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002427static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
2428 int level,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002429 const struct hsw_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002430 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002431{
2432 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2433 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2434 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2435
2436 /* WM1+ latency values stored in 0.5us units */
2437 if (level > 0) {
2438 pri_latency *= 5;
2439 spr_latency *= 5;
2440 cur_latency *= 5;
2441 }
2442
2443 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2444 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2445 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2446 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2447 result->enable = true;
2448}
2449
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002450static uint32_t
2451hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002452{
2453 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002454 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002455 struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002456 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002457
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002458 if (!intel_crtc_active(crtc))
2459 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002460
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002461 /* The WM are computed with base on how long it takes to fill a single
2462 * row at the given clock rate, multiplied by 8.
2463 * */
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002464 linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8, mode->clock);
2465 ips_linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8,
2466 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002467
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002468 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2469 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002470}
2471
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002472static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[5])
2473{
2474 struct drm_i915_private *dev_priv = dev->dev_private;
2475
2476 if (IS_HASWELL(dev)) {
2477 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2478
2479 wm[0] = (sskpd >> 56) & 0xFF;
2480 if (wm[0] == 0)
2481 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002482 wm[1] = (sskpd >> 4) & 0xFF;
2483 wm[2] = (sskpd >> 12) & 0xFF;
2484 wm[3] = (sskpd >> 20) & 0x1FF;
2485 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002486 } else if (INTEL_INFO(dev)->gen >= 6) {
2487 uint32_t sskpd = I915_READ(MCH_SSKPD);
2488
2489 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2490 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2491 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2492 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002493 } else if (INTEL_INFO(dev)->gen >= 5) {
2494 uint32_t mltr = I915_READ(MLTR_ILK);
2495
2496 /* ILK primary LP0 latency is 700 ns */
2497 wm[0] = 7;
2498 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2499 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002500 }
2501}
2502
Ville Syrjälä53615a52013-08-01 16:18:50 +03002503static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2504{
2505 /* ILK sprite LP0 latency is 1300 ns */
2506 if (INTEL_INFO(dev)->gen == 5)
2507 wm[0] = 13;
2508}
2509
2510static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2511{
2512 /* ILK cursor LP0 latency is 1300 ns */
2513 if (INTEL_INFO(dev)->gen == 5)
2514 wm[0] = 13;
2515
2516 /* WaDoubleCursorLP3Latency:ivb */
2517 if (IS_IVYBRIDGE(dev))
2518 wm[3] *= 2;
2519}
2520
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002521static int ilk_wm_max_level(const struct drm_device *dev)
2522{
2523 /* how many WM levels are we expecting */
2524 if (IS_HASWELL(dev))
2525 return 4;
2526 else if (INTEL_INFO(dev)->gen >= 6)
2527 return 3;
2528 else
2529 return 2;
2530}
2531
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002532static void intel_print_wm_latency(struct drm_device *dev,
2533 const char *name,
2534 const uint16_t wm[5])
2535{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002536 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002537
2538 for (level = 0; level <= max_level; level++) {
2539 unsigned int latency = wm[level];
2540
2541 if (latency == 0) {
2542 DRM_ERROR("%s WM%d latency not provided\n",
2543 name, level);
2544 continue;
2545 }
2546
2547 /* WM1+ latency values in 0.5us units */
2548 if (level > 0)
2549 latency *= 5;
2550
2551 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2552 name, level, wm[level],
2553 latency / 10, latency % 10);
2554 }
2555}
2556
Ville Syrjälä53615a52013-08-01 16:18:50 +03002557static void intel_setup_wm_latency(struct drm_device *dev)
2558{
2559 struct drm_i915_private *dev_priv = dev->dev_private;
2560
2561 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2562
2563 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2564 sizeof(dev_priv->wm.pri_latency));
2565 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2566 sizeof(dev_priv->wm.pri_latency));
2567
2568 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2569 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002570
2571 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2572 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2573 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002574}
2575
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002576static void hsw_compute_wm_parameters(struct drm_crtc *crtc,
2577 struct hsw_pipe_wm_parameters *p,
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002578 struct intel_wm_config *config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002579{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002580 struct drm_device *dev = crtc->dev;
2581 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2582 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002583 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002584
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002585 p->active = intel_crtc_active(crtc);
2586 if (p->active) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002587 p->pipe_htotal = intel_crtc->config.adjusted_mode.htotal;
Ville Syrjälä36587292013-07-05 11:57:16 +03002588 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002589 p->pri.bytes_per_pixel = crtc->fb->bits_per_pixel / 8;
2590 p->cur.bytes_per_pixel = 4;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03002591 p->pri.horiz_pixels = intel_crtc->config.pipe_src_w;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002592 p->cur.horiz_pixels = 64;
2593 /* TODO: for now, assume primary and cursor planes are always enabled. */
2594 p->pri.enabled = true;
2595 p->cur.enabled = true;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002596 }
2597
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002598 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002599 config->num_pipes_active += intel_crtc_active(crtc);
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002600
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002601 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2602 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002603
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002604 if (intel_plane->pipe == pipe)
2605 p->spr = intel_plane->wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002606
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002607 config->sprites_enabled |= intel_plane->wm.enabled;
2608 config->sprites_scaled |= intel_plane->wm.scaled;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002609 }
2610}
2611
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002612/* Compute new watermarks for the pipe */
2613static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
2614 const struct hsw_pipe_wm_parameters *params,
2615 struct intel_pipe_wm *pipe_wm)
2616{
2617 struct drm_device *dev = crtc->dev;
2618 struct drm_i915_private *dev_priv = dev->dev_private;
2619 int level, max_level = ilk_wm_max_level(dev);
2620 /* LP0 watermark maximums depend on this pipe alone */
2621 struct intel_wm_config config = {
2622 .num_pipes_active = 1,
2623 .sprites_enabled = params->spr.enabled,
2624 .sprites_scaled = params->spr.scaled,
2625 };
2626 struct hsw_wm_maximums max;
2627
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002628 /* LP0 watermarks always use 1/2 DDB partitioning */
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002629 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002630
2631 for (level = 0; level <= max_level; level++)
2632 ilk_compute_wm_level(dev_priv, level, params,
2633 &pipe_wm->wm[level]);
2634
2635 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
2636
2637 /* At least LP0 must be valid */
Ville Syrjäläd9395652013-10-09 19:18:10 +03002638 return ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002639}
2640
2641/*
2642 * Merge the watermarks from all active pipes for a specific level.
2643 */
2644static void ilk_merge_wm_level(struct drm_device *dev,
2645 int level,
2646 struct intel_wm_level *ret_wm)
2647{
2648 const struct intel_crtc *intel_crtc;
2649
2650 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head) {
2651 const struct intel_wm_level *wm =
2652 &intel_crtc->wm.active.wm[level];
2653
2654 if (!wm->enable)
2655 return;
2656
2657 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2658 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2659 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2660 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2661 }
2662
2663 ret_wm->enable = true;
2664}
2665
2666/*
2667 * Merge all low power watermarks for all active pipes.
2668 */
2669static void ilk_wm_merge(struct drm_device *dev,
2670 const struct hsw_wm_maximums *max,
2671 struct intel_pipe_wm *merged)
2672{
2673 int level, max_level = ilk_wm_max_level(dev);
2674
2675 merged->fbc_wm_enabled = true;
2676
2677 /* merge each WM1+ level */
2678 for (level = 1; level <= max_level; level++) {
2679 struct intel_wm_level *wm = &merged->wm[level];
2680
2681 ilk_merge_wm_level(dev, level, wm);
2682
Ville Syrjäläd9395652013-10-09 19:18:10 +03002683 if (!ilk_validate_wm_level(level, max, wm))
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002684 break;
2685
2686 /*
2687 * The spec says it is preferred to disable
2688 * FBC WMs instead of disabling a WM level.
2689 */
2690 if (wm->fbc_val > max->fbc) {
2691 merged->fbc_wm_enabled = false;
2692 wm->fbc_val = 0;
2693 }
2694 }
2695}
2696
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002697static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2698{
2699 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2700 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2701}
2702
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002703static void hsw_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002704 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002705 enum intel_ddb_partitioning partitioning,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002706 struct hsw_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002707{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002708 struct intel_crtc *intel_crtc;
2709 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002710
Ville Syrjälä0362c782013-10-09 19:17:57 +03002711 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002712 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002713
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002714 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002715 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002716 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002717
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002718 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002719
Ville Syrjälä0362c782013-10-09 19:17:57 +03002720 r = &merged->wm[level];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002721 if (!r->enable)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002722 break;
2723
Paulo Zanonicca32e92013-05-31 11:45:06 -03002724 results->wm_lp[wm_lp - 1] = HSW_WM_LP_VAL(level * 2,
2725 r->fbc_val,
2726 r->pri_val,
2727 r->cur_val);
2728 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
2729 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002730
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002731 /* LP0 register values */
2732 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head) {
2733 enum pipe pipe = intel_crtc->pipe;
2734 const struct intel_wm_level *r =
2735 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002736
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002737 if (WARN_ON(!r->enable))
2738 continue;
2739
2740 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2741
2742 results->wm_pipe[pipe] =
2743 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2744 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2745 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002746 }
2747}
2748
Paulo Zanoni861f3382013-05-31 10:19:21 -03002749/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2750 * case both are at the same level. Prefer r1 in case they're the same. */
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002751static struct intel_pipe_wm *hsw_find_best_result(struct drm_device *dev,
2752 struct intel_pipe_wm *r1,
2753 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002754{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002755 int level, max_level = ilk_wm_max_level(dev);
2756 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002757
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002758 for (level = 1; level <= max_level; level++) {
2759 if (r1->wm[level].enable)
2760 level1 = level;
2761 if (r2->wm[level].enable)
2762 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002763 }
2764
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002765 if (level1 == level2) {
2766 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002767 return r2;
2768 else
2769 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002770 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002771 return r1;
2772 } else {
2773 return r2;
2774 }
2775}
2776
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002777/* dirty bits used to track which watermarks need changes */
2778#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2779#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2780#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2781#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2782#define WM_DIRTY_FBC (1 << 24)
2783#define WM_DIRTY_DDB (1 << 25)
2784
2785static unsigned int ilk_compute_wm_dirty(struct drm_device *dev,
2786 const struct hsw_wm_values *old,
2787 const struct hsw_wm_values *new)
2788{
2789 unsigned int dirty = 0;
2790 enum pipe pipe;
2791 int wm_lp;
2792
2793 for_each_pipe(pipe) {
2794 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2795 dirty |= WM_DIRTY_LINETIME(pipe);
2796 /* Must disable LP1+ watermarks too */
2797 dirty |= WM_DIRTY_LP_ALL;
2798 }
2799
2800 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2801 dirty |= WM_DIRTY_PIPE(pipe);
2802 /* Must disable LP1+ watermarks too */
2803 dirty |= WM_DIRTY_LP_ALL;
2804 }
2805 }
2806
2807 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2808 dirty |= WM_DIRTY_FBC;
2809 /* Must disable LP1+ watermarks too */
2810 dirty |= WM_DIRTY_LP_ALL;
2811 }
2812
2813 if (old->partitioning != new->partitioning) {
2814 dirty |= WM_DIRTY_DDB;
2815 /* Must disable LP1+ watermarks too */
2816 dirty |= WM_DIRTY_LP_ALL;
2817 }
2818
2819 /* LP1+ watermarks already deemed dirty, no need to continue */
2820 if (dirty & WM_DIRTY_LP_ALL)
2821 return dirty;
2822
2823 /* Find the lowest numbered LP1+ watermark in need of an update... */
2824 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2825 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2826 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2827 break;
2828 }
2829
2830 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2831 for (; wm_lp <= 3; wm_lp++)
2832 dirty |= WM_DIRTY_LP(wm_lp);
2833
2834 return dirty;
2835}
2836
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002837/*
2838 * The spec says we shouldn't write when we don't need, because every write
2839 * causes WMs to be re-evaluated, expending some power.
2840 */
2841static void hsw_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002842 struct hsw_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002843{
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002844 struct hsw_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002845 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002846 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002847
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002848 dirty = ilk_compute_wm_dirty(dev_priv->dev, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002849 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002850 return;
2851
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002852 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002853 I915_WRITE(WM3_LP_ILK, 0);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002854 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002855 I915_WRITE(WM2_LP_ILK, 0);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002856 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002857 I915_WRITE(WM1_LP_ILK, 0);
2858
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002859 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002860 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002861 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002862 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002863 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002864 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2865
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002866 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002867 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002868 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002869 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002870 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002871 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2872
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002873 if (dirty & WM_DIRTY_DDB) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002874 val = I915_READ(WM_MISC);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002875 if (results->partitioning == INTEL_DDB_PART_1_2)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002876 val &= ~WM_MISC_DATA_PARTITION_5_6;
2877 else
2878 val |= WM_MISC_DATA_PARTITION_5_6;
2879 I915_WRITE(WM_MISC, val);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002880 }
2881
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002882 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002883 val = I915_READ(DISP_ARB_CTL);
2884 if (results->enable_fbc_wm)
2885 val &= ~DISP_FBC_WM_DIS;
2886 else
2887 val |= DISP_FBC_WM_DIS;
2888 I915_WRITE(DISP_ARB_CTL, val);
2889 }
2890
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002891 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp_spr[0] != results->wm_lp_spr[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002892 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002893 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002894 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002895 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002896 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2897
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002898 if (dirty & WM_DIRTY_LP(1) && results->wm_lp[0] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002899 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002900 if (dirty & WM_DIRTY_LP(2) && results->wm_lp[1] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002901 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002902 if (dirty & WM_DIRTY_LP(3) && results->wm_lp[2] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002903 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002904
2905 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002906}
2907
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002908static void haswell_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002909{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002911 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002912 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002913 struct hsw_wm_maximums max;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002914 struct hsw_pipe_wm_parameters params = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002915 struct hsw_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002916 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002917 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002918 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002919 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002920
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002921 hsw_compute_wm_parameters(crtc, &params, &config);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002922
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002923 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
2924
2925 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
2926 return;
2927
2928 intel_crtc->wm.active = pipe_wm;
2929
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002930 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002931 ilk_wm_merge(dev, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03002932
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002933 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03002934 if (INTEL_INFO(dev)->gen >= 7 &&
2935 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002936 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002937 ilk_wm_merge(dev, &max, &lp_wm_5_6);
2938
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002939 best_lp_wm = hsw_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002940 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002941 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002942 }
2943
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002944 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002945 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002946
Ville Syrjälä609cede2013-10-09 19:18:03 +03002947 hsw_compute_wm_results(dev, best_lp_wm, partitioning, &results);
2948
2949 hsw_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002950}
2951
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002952static void haswell_update_sprite_wm(struct drm_plane *plane,
2953 struct drm_crtc *crtc,
Paulo Zanoni526682e2013-05-24 11:59:18 -03002954 uint32_t sprite_width, int pixel_size,
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03002955 bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03002956{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002957 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03002958
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002959 intel_plane->wm.enabled = enabled;
2960 intel_plane->wm.scaled = scaled;
2961 intel_plane->wm.horiz_pixels = sprite_width;
2962 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03002963
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002964 haswell_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03002965}
2966
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002967static bool
2968sandybridge_compute_sprite_wm(struct drm_device *dev, int plane,
2969 uint32_t sprite_width, int pixel_size,
2970 const struct intel_watermark_params *display,
2971 int display_latency_ns, int *sprite_wm)
2972{
2973 struct drm_crtc *crtc;
2974 int clock;
2975 int entries, tlb_miss;
2976
2977 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00002978 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002979 *sprite_wm = display->guard_size;
2980 return false;
2981 }
2982
Damien Lespiau241bfc32013-09-25 16:45:37 +01002983 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002984
2985 /* Use the small buffer method to calculate the sprite watermark */
2986 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
2987 tlb_miss = display->fifo_size*display->cacheline_size -
2988 sprite_width * 8;
2989 if (tlb_miss > 0)
2990 entries += tlb_miss;
2991 entries = DIV_ROUND_UP(entries, display->cacheline_size);
2992 *sprite_wm = entries + display->guard_size;
2993 if (*sprite_wm > (int)display->max_wm)
2994 *sprite_wm = display->max_wm;
2995
2996 return true;
2997}
2998
2999static bool
3000sandybridge_compute_sprite_srwm(struct drm_device *dev, int plane,
3001 uint32_t sprite_width, int pixel_size,
3002 const struct intel_watermark_params *display,
3003 int latency_ns, int *sprite_wm)
3004{
3005 struct drm_crtc *crtc;
3006 unsigned long line_time_us;
3007 int clock;
3008 int line_count, line_size;
3009 int small, large;
3010 int entries;
3011
3012 if (!latency_ns) {
3013 *sprite_wm = 0;
3014 return false;
3015 }
3016
3017 crtc = intel_get_crtc_for_plane(dev, plane);
Damien Lespiau241bfc32013-09-25 16:45:37 +01003018 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003019 if (!clock) {
3020 *sprite_wm = 0;
3021 return false;
3022 }
3023
3024 line_time_us = (sprite_width * 1000) / clock;
3025 if (!line_time_us) {
3026 *sprite_wm = 0;
3027 return false;
3028 }
3029
3030 line_count = (latency_ns / line_time_us + 1000) / 1000;
3031 line_size = sprite_width * pixel_size;
3032
3033 /* Use the minimum of the small and large buffer method for primary */
3034 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
3035 large = line_count * line_size;
3036
3037 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
3038 *sprite_wm = entries + display->guard_size;
3039
3040 return *sprite_wm > 0x3ff ? false : true;
3041}
3042
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003043static void sandybridge_update_sprite_wm(struct drm_plane *plane,
3044 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003045 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003046 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003047{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003048 struct drm_device *dev = plane->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003049 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003050 int pipe = to_intel_plane(plane)->pipe;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003051 int latency = dev_priv->wm.spr_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003052 u32 val;
3053 int sprite_wm, reg;
3054 int ret;
3055
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003056 if (!enabled)
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003057 return;
3058
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003059 switch (pipe) {
3060 case 0:
3061 reg = WM0_PIPEA_ILK;
3062 break;
3063 case 1:
3064 reg = WM0_PIPEB_ILK;
3065 break;
3066 case 2:
3067 reg = WM0_PIPEC_IVB;
3068 break;
3069 default:
3070 return; /* bad pipe */
3071 }
3072
3073 ret = sandybridge_compute_sprite_wm(dev, pipe, sprite_width, pixel_size,
3074 &sandybridge_display_wm_info,
3075 latency, &sprite_wm);
3076 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003077 DRM_DEBUG_KMS("failed to compute sprite wm for pipe %c\n",
3078 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003079 return;
3080 }
3081
3082 val = I915_READ(reg);
3083 val &= ~WM0_PIPE_SPRITE_MASK;
3084 I915_WRITE(reg, val | (sprite_wm << WM0_PIPE_SPRITE_SHIFT));
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003085 DRM_DEBUG_KMS("sprite watermarks For pipe %c - %d\n", pipe_name(pipe), sprite_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003086
3087
3088 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3089 pixel_size,
3090 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003091 dev_priv->wm.spr_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003092 &sprite_wm);
3093 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003094 DRM_DEBUG_KMS("failed to compute sprite lp1 wm on pipe %c\n",
3095 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003096 return;
3097 }
3098 I915_WRITE(WM1S_LP_ILK, sprite_wm);
3099
3100 /* Only IVB has two more LP watermarks for sprite */
3101 if (!IS_IVYBRIDGE(dev))
3102 return;
3103
3104 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3105 pixel_size,
3106 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003107 dev_priv->wm.spr_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003108 &sprite_wm);
3109 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003110 DRM_DEBUG_KMS("failed to compute sprite lp2 wm on pipe %c\n",
3111 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003112 return;
3113 }
3114 I915_WRITE(WM2S_LP_IVB, sprite_wm);
3115
3116 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3117 pixel_size,
3118 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003119 dev_priv->wm.spr_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003120 &sprite_wm);
3121 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003122 DRM_DEBUG_KMS("failed to compute sprite lp3 wm on pipe %c\n",
3123 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003124 return;
3125 }
3126 I915_WRITE(WM3S_LP_IVB, sprite_wm);
3127}
3128
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003129static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3130{
3131 struct drm_device *dev = crtc->dev;
3132 struct drm_i915_private *dev_priv = dev->dev_private;
3133 struct hsw_wm_values *hw = &dev_priv->wm.hw;
3134 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3135 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3136 enum pipe pipe = intel_crtc->pipe;
3137 static const unsigned int wm0_pipe_reg[] = {
3138 [PIPE_A] = WM0_PIPEA_ILK,
3139 [PIPE_B] = WM0_PIPEB_ILK,
3140 [PIPE_C] = WM0_PIPEC_IVB,
3141 };
3142
3143 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
3144 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3145
3146 if (intel_crtc_active(crtc)) {
3147 u32 tmp = hw->wm_pipe[pipe];
3148
3149 /*
3150 * For active pipes LP0 watermark is marked as
3151 * enabled, and LP1+ watermaks as disabled since
3152 * we can't really reverse compute them in case
3153 * multiple pipes are active.
3154 */
3155 active->wm[0].enable = true;
3156 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3157 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3158 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3159 active->linetime = hw->wm_linetime[pipe];
3160 } else {
3161 int level, max_level = ilk_wm_max_level(dev);
3162
3163 /*
3164 * For inactive pipes, all watermark levels
3165 * should be marked as enabled but zeroed,
3166 * which is what we'd compute them to.
3167 */
3168 for (level = 0; level <= max_level; level++)
3169 active->wm[level].enable = true;
3170 }
3171}
3172
3173void ilk_wm_get_hw_state(struct drm_device *dev)
3174{
3175 struct drm_i915_private *dev_priv = dev->dev_private;
3176 struct hsw_wm_values *hw = &dev_priv->wm.hw;
3177 struct drm_crtc *crtc;
3178
3179 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3180 ilk_pipe_wm_get_hw_state(crtc);
3181
3182 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3183 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3184 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3185
3186 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
3187 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3188 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3189
3190 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3191 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3192
3193 hw->enable_fbc_wm =
3194 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3195}
3196
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003197/**
3198 * intel_update_watermarks - update FIFO watermark values based on current modes
3199 *
3200 * Calculate watermark values for the various WM regs based on current mode
3201 * and plane configuration.
3202 *
3203 * There are several cases to deal with here:
3204 * - normal (i.e. non-self-refresh)
3205 * - self-refresh (SR) mode
3206 * - lines are large relative to FIFO size (buffer can hold up to 2)
3207 * - lines are small relative to FIFO size (buffer can hold more than 2
3208 * lines), so need to account for TLB latency
3209 *
3210 * The normal calculation is:
3211 * watermark = dotclock * bytes per pixel * latency
3212 * where latency is platform & configuration dependent (we assume pessimal
3213 * values here).
3214 *
3215 * The SR calculation is:
3216 * watermark = (trunc(latency/line time)+1) * surface width *
3217 * bytes per pixel
3218 * where
3219 * line time = htotal / dotclock
3220 * surface width = hdisplay for normal plane and 64 for cursor
3221 * and latency is assumed to be high, as above.
3222 *
3223 * The final value programmed to the register should always be rounded up,
3224 * and include an extra 2 entries to account for clock crossings.
3225 *
3226 * We don't use the sprite, so we can ignore that. And on Crestline we have
3227 * to set the non-SR watermarks to 8.
3228 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003229void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003230{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003231 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003232
3233 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003234 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003235}
3236
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003237void intel_update_sprite_watermarks(struct drm_plane *plane,
3238 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003239 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003240 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003241{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003242 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003243
3244 if (dev_priv->display.update_sprite_wm)
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003245 dev_priv->display.update_sprite_wm(plane, crtc, sprite_width,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003246 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003247}
3248
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003249static struct drm_i915_gem_object *
3250intel_alloc_context_page(struct drm_device *dev)
3251{
3252 struct drm_i915_gem_object *ctx;
3253 int ret;
3254
3255 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3256
3257 ctx = i915_gem_alloc_object(dev, 4096);
3258 if (!ctx) {
3259 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
3260 return NULL;
3261 }
3262
Ben Widawskyc37e2202013-07-31 16:59:58 -07003263 ret = i915_gem_obj_ggtt_pin(ctx, 4096, true, false);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003264 if (ret) {
3265 DRM_ERROR("failed to pin power context: %d\n", ret);
3266 goto err_unref;
3267 }
3268
3269 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
3270 if (ret) {
3271 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
3272 goto err_unpin;
3273 }
3274
3275 return ctx;
3276
3277err_unpin:
3278 i915_gem_object_unpin(ctx);
3279err_unref:
3280 drm_gem_object_unreference(&ctx->base);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003281 return NULL;
3282}
3283
Daniel Vetter92703882012-08-09 16:46:01 +02003284/**
3285 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003286 */
3287DEFINE_SPINLOCK(mchdev_lock);
3288
3289/* Global for IPS driver to get at the current i915 device. Protected by
3290 * mchdev_lock. */
3291static struct drm_i915_private *i915_mch_dev;
3292
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003293bool ironlake_set_drps(struct drm_device *dev, u8 val)
3294{
3295 struct drm_i915_private *dev_priv = dev->dev_private;
3296 u16 rgvswctl;
3297
Daniel Vetter92703882012-08-09 16:46:01 +02003298 assert_spin_locked(&mchdev_lock);
3299
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003300 rgvswctl = I915_READ16(MEMSWCTL);
3301 if (rgvswctl & MEMCTL_CMD_STS) {
3302 DRM_DEBUG("gpu busy, RCS change rejected\n");
3303 return false; /* still busy with another command */
3304 }
3305
3306 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3307 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3308 I915_WRITE16(MEMSWCTL, rgvswctl);
3309 POSTING_READ16(MEMSWCTL);
3310
3311 rgvswctl |= MEMCTL_CMD_STS;
3312 I915_WRITE16(MEMSWCTL, rgvswctl);
3313
3314 return true;
3315}
3316
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003317static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003318{
3319 struct drm_i915_private *dev_priv = dev->dev_private;
3320 u32 rgvmodectl = I915_READ(MEMMODECTL);
3321 u8 fmax, fmin, fstart, vstart;
3322
Daniel Vetter92703882012-08-09 16:46:01 +02003323 spin_lock_irq(&mchdev_lock);
3324
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003325 /* Enable temp reporting */
3326 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3327 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3328
3329 /* 100ms RC evaluation intervals */
3330 I915_WRITE(RCUPEI, 100000);
3331 I915_WRITE(RCDNEI, 100000);
3332
3333 /* Set max/min thresholds to 90ms and 80ms respectively */
3334 I915_WRITE(RCBMAXAVG, 90000);
3335 I915_WRITE(RCBMINAVG, 80000);
3336
3337 I915_WRITE(MEMIHYST, 1);
3338
3339 /* Set up min, max, and cur for interrupt handling */
3340 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3341 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3342 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3343 MEMMODE_FSTART_SHIFT;
3344
3345 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3346 PXVFREQ_PX_SHIFT;
3347
Daniel Vetter20e4d402012-08-08 23:35:39 +02003348 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3349 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003350
Daniel Vetter20e4d402012-08-08 23:35:39 +02003351 dev_priv->ips.max_delay = fstart;
3352 dev_priv->ips.min_delay = fmin;
3353 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003354
3355 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3356 fmax, fmin, fstart);
3357
3358 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3359
3360 /*
3361 * Interrupts will be enabled in ironlake_irq_postinstall
3362 */
3363
3364 I915_WRITE(VIDSTART, vstart);
3365 POSTING_READ(VIDSTART);
3366
3367 rgvmodectl |= MEMMODE_SWMODE_EN;
3368 I915_WRITE(MEMMODECTL, rgvmodectl);
3369
Daniel Vetter92703882012-08-09 16:46:01 +02003370 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003371 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003372 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003373
3374 ironlake_set_drps(dev, fstart);
3375
Daniel Vetter20e4d402012-08-08 23:35:39 +02003376 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003377 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003378 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3379 dev_priv->ips.last_count2 = I915_READ(0x112f4);
3380 getrawmonotonic(&dev_priv->ips.last_time2);
Daniel Vetter92703882012-08-09 16:46:01 +02003381
3382 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003383}
3384
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003385static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003386{
3387 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003388 u16 rgvswctl;
3389
3390 spin_lock_irq(&mchdev_lock);
3391
3392 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003393
3394 /* Ack interrupts, disable EFC interrupt */
3395 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3396 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3397 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3398 I915_WRITE(DEIIR, DE_PCU_EVENT);
3399 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3400
3401 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003402 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003403 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003404 rgvswctl |= MEMCTL_CMD_STS;
3405 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003406 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003407
Daniel Vetter92703882012-08-09 16:46:01 +02003408 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003409}
3410
Daniel Vetteracbe9472012-07-26 11:50:05 +02003411/* There's a funny hw issue where the hw returns all 0 when reading from
3412 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3413 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3414 * all limits and the gpu stuck at whatever frequency it is at atm).
3415 */
Daniel Vetter65bccb52012-08-08 17:42:52 +02003416static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 *val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003417{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003418 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003419
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003420 limits = 0;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003421
3422 if (*val >= dev_priv->rps.max_delay)
3423 *val = dev_priv->rps.max_delay;
3424 limits |= dev_priv->rps.max_delay << 24;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003425
Daniel Vetter20b46e52012-07-26 11:16:14 +02003426 /* Only set the down limit when we've reached the lowest level to avoid
3427 * getting more interrupts, otherwise leave this clear. This prevents a
3428 * race in the hw when coming out of rc6: There's a tiny window where
3429 * the hw runs at the minimal clock before selecting the desired
3430 * frequency, if the down threshold expires in that window we will not
3431 * receive a down interrupt. */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003432 if (*val <= dev_priv->rps.min_delay) {
3433 *val = dev_priv->rps.min_delay;
3434 limits |= dev_priv->rps.min_delay << 16;
Daniel Vetter20b46e52012-07-26 11:16:14 +02003435 }
3436
3437 return limits;
3438}
3439
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003440static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
3441{
3442 int new_power;
3443
3444 new_power = dev_priv->rps.power;
3445 switch (dev_priv->rps.power) {
3446 case LOW_POWER:
3447 if (val > dev_priv->rps.rpe_delay + 1 && val > dev_priv->rps.cur_delay)
3448 new_power = BETWEEN;
3449 break;
3450
3451 case BETWEEN:
3452 if (val <= dev_priv->rps.rpe_delay && val < dev_priv->rps.cur_delay)
3453 new_power = LOW_POWER;
3454 else if (val >= dev_priv->rps.rp0_delay && val > dev_priv->rps.cur_delay)
3455 new_power = HIGH_POWER;
3456 break;
3457
3458 case HIGH_POWER:
3459 if (val < (dev_priv->rps.rp1_delay + dev_priv->rps.rp0_delay) >> 1 && val < dev_priv->rps.cur_delay)
3460 new_power = BETWEEN;
3461 break;
3462 }
3463 /* Max/min bins are special */
3464 if (val == dev_priv->rps.min_delay)
3465 new_power = LOW_POWER;
3466 if (val == dev_priv->rps.max_delay)
3467 new_power = HIGH_POWER;
3468 if (new_power == dev_priv->rps.power)
3469 return;
3470
3471 /* Note the units here are not exactly 1us, but 1280ns. */
3472 switch (new_power) {
3473 case LOW_POWER:
3474 /* Upclock if more than 95% busy over 16ms */
3475 I915_WRITE(GEN6_RP_UP_EI, 12500);
3476 I915_WRITE(GEN6_RP_UP_THRESHOLD, 11800);
3477
3478 /* Downclock if less than 85% busy over 32ms */
3479 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3480 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 21250);
3481
3482 I915_WRITE(GEN6_RP_CONTROL,
3483 GEN6_RP_MEDIA_TURBO |
3484 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3485 GEN6_RP_MEDIA_IS_GFX |
3486 GEN6_RP_ENABLE |
3487 GEN6_RP_UP_BUSY_AVG |
3488 GEN6_RP_DOWN_IDLE_AVG);
3489 break;
3490
3491 case BETWEEN:
3492 /* Upclock if more than 90% busy over 13ms */
3493 I915_WRITE(GEN6_RP_UP_EI, 10250);
3494 I915_WRITE(GEN6_RP_UP_THRESHOLD, 9225);
3495
3496 /* Downclock if less than 75% busy over 32ms */
3497 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3498 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 18750);
3499
3500 I915_WRITE(GEN6_RP_CONTROL,
3501 GEN6_RP_MEDIA_TURBO |
3502 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3503 GEN6_RP_MEDIA_IS_GFX |
3504 GEN6_RP_ENABLE |
3505 GEN6_RP_UP_BUSY_AVG |
3506 GEN6_RP_DOWN_IDLE_AVG);
3507 break;
3508
3509 case HIGH_POWER:
3510 /* Upclock if more than 85% busy over 10ms */
3511 I915_WRITE(GEN6_RP_UP_EI, 8000);
3512 I915_WRITE(GEN6_RP_UP_THRESHOLD, 6800);
3513
3514 /* Downclock if less than 60% busy over 32ms */
3515 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3516 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 15000);
3517
3518 I915_WRITE(GEN6_RP_CONTROL,
3519 GEN6_RP_MEDIA_TURBO |
3520 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3521 GEN6_RP_MEDIA_IS_GFX |
3522 GEN6_RP_ENABLE |
3523 GEN6_RP_UP_BUSY_AVG |
3524 GEN6_RP_DOWN_IDLE_AVG);
3525 break;
3526 }
3527
3528 dev_priv->rps.power = new_power;
3529 dev_priv->rps.last_adj = 0;
3530}
3531
Daniel Vetter20b46e52012-07-26 11:16:14 +02003532void gen6_set_rps(struct drm_device *dev, u8 val)
3533{
3534 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter65bccb52012-08-08 17:42:52 +02003535 u32 limits = gen6_rps_limits(dev_priv, &val);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003536
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003537 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky79249632012-09-07 19:43:42 -07003538 WARN_ON(val > dev_priv->rps.max_delay);
3539 WARN_ON(val < dev_priv->rps.min_delay);
Daniel Vetter004777c2012-08-09 15:07:01 +02003540
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003541 if (val == dev_priv->rps.cur_delay)
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003542 return;
3543
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003544 gen6_set_rps_thresholds(dev_priv, val);
3545
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003546 if (IS_HASWELL(dev))
3547 I915_WRITE(GEN6_RPNSWREQ,
3548 HSW_FREQUENCY(val));
3549 else
3550 I915_WRITE(GEN6_RPNSWREQ,
3551 GEN6_FREQUENCY(val) |
3552 GEN6_OFFSET(0) |
3553 GEN6_AGGRESSIVE_TURBO);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003554
3555 /* Make sure we continue to get interrupts
3556 * until we hit the minimum or maximum frequencies.
3557 */
3558 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
3559
Ben Widawskyd5570a72012-09-07 19:43:41 -07003560 POSTING_READ(GEN6_RPNSWREQ);
3561
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003562 dev_priv->rps.cur_delay = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02003563
3564 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003565}
3566
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003567void gen6_rps_idle(struct drm_i915_private *dev_priv)
3568{
3569 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01003570 if (dev_priv->rps.enabled) {
3571 if (dev_priv->info->is_valleyview)
3572 valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
3573 else
3574 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
3575 dev_priv->rps.last_adj = 0;
3576 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003577 mutex_unlock(&dev_priv->rps.hw_lock);
3578}
3579
3580void gen6_rps_boost(struct drm_i915_private *dev_priv)
3581{
3582 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01003583 if (dev_priv->rps.enabled) {
3584 if (dev_priv->info->is_valleyview)
3585 valleyview_set_rps(dev_priv->dev, dev_priv->rps.max_delay);
3586 else
3587 gen6_set_rps(dev_priv->dev, dev_priv->rps.max_delay);
3588 dev_priv->rps.last_adj = 0;
3589 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003590 mutex_unlock(&dev_priv->rps.hw_lock);
3591}
3592
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003593/*
3594 * Wait until the previous freq change has completed,
3595 * or the timeout elapsed, and then update our notion
3596 * of the current GPU frequency.
3597 */
3598static void vlv_update_rps_cur_delay(struct drm_i915_private *dev_priv)
3599{
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003600 u32 pval;
3601
3602 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3603
Ville Syrjäläe8474402013-06-26 17:43:24 +03003604 if (wait_for(((pval = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS)) & GENFREQSTATUS) == 0, 10))
3605 DRM_DEBUG_DRIVER("timed out waiting for Punit\n");
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003606
3607 pval >>= 8;
3608
3609 if (pval != dev_priv->rps.cur_delay)
3610 DRM_DEBUG_DRIVER("Punit overrode GPU freq: %d MHz (%u) requested, but got %d Mhz (%u)\n",
3611 vlv_gpu_freq(dev_priv->mem_freq, dev_priv->rps.cur_delay),
3612 dev_priv->rps.cur_delay,
3613 vlv_gpu_freq(dev_priv->mem_freq, pval), pval);
3614
3615 dev_priv->rps.cur_delay = pval;
3616}
3617
Jesse Barnes0a073b82013-04-17 15:54:58 -07003618void valleyview_set_rps(struct drm_device *dev, u8 val)
3619{
3620 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7a670922013-06-25 19:21:06 +03003621
3622 gen6_rps_limits(dev_priv, &val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003623
3624 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3625 WARN_ON(val > dev_priv->rps.max_delay);
3626 WARN_ON(val < dev_priv->rps.min_delay);
3627
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003628 vlv_update_rps_cur_delay(dev_priv);
3629
Ville Syrjälä73008b92013-06-25 19:21:01 +03003630 DRM_DEBUG_DRIVER("GPU freq request from %d MHz (%u) to %d MHz (%u)\n",
Jesse Barnes0a073b82013-04-17 15:54:58 -07003631 vlv_gpu_freq(dev_priv->mem_freq,
3632 dev_priv->rps.cur_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03003633 dev_priv->rps.cur_delay,
3634 vlv_gpu_freq(dev_priv->mem_freq, val), val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003635
3636 if (val == dev_priv->rps.cur_delay)
3637 return;
3638
Jani Nikulaae992582013-05-22 15:36:19 +03003639 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003640
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003641 dev_priv->rps.cur_delay = val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003642
3643 trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv->mem_freq, val));
3644}
3645
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003646static void gen6_disable_rps_interrupts(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003647{
3648 struct drm_i915_private *dev_priv = dev->dev_private;
3649
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003650 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Ben Widawsky48484052013-05-28 19:22:27 -07003651 I915_WRITE(GEN6_PMIER, I915_READ(GEN6_PMIER) & ~GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003652 /* Complete PM interrupt masking here doesn't race with the rps work
3653 * item again unmasking PM interrupts because that is using a different
3654 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3655 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3656
Daniel Vetter59cdb632013-07-04 23:35:28 +02003657 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003658 dev_priv->rps.pm_iir = 0;
Daniel Vetter59cdb632013-07-04 23:35:28 +02003659 spin_unlock_irq(&dev_priv->irq_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003660
Ben Widawsky48484052013-05-28 19:22:27 -07003661 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003662}
3663
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003664static void gen6_disable_rps(struct drm_device *dev)
3665{
3666 struct drm_i915_private *dev_priv = dev->dev_private;
3667
3668 I915_WRITE(GEN6_RC_CONTROL, 0);
3669 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
3670
3671 gen6_disable_rps_interrupts(dev);
3672}
3673
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003674static void valleyview_disable_rps(struct drm_device *dev)
3675{
3676 struct drm_i915_private *dev_priv = dev->dev_private;
3677
3678 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003679
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003680 gen6_disable_rps_interrupts(dev);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003681
3682 if (dev_priv->vlv_pctx) {
3683 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
3684 dev_priv->vlv_pctx = NULL;
3685 }
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003686}
3687
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003688int intel_enable_rc6(const struct drm_device *dev)
3689{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01003690 /* No RC6 before Ironlake */
3691 if (INTEL_INFO(dev)->gen < 5)
3692 return 0;
3693
Daniel Vetter456470e2012-08-08 23:35:40 +02003694 /* Respect the kernel parameter if it is set */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003695 if (i915_enable_rc6 >= 0)
3696 return i915_enable_rc6;
3697
Chris Wilson6567d742012-11-10 10:00:06 +00003698 /* Disable RC6 on Ironlake */
3699 if (INTEL_INFO(dev)->gen == 5)
3700 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003701
Daniel Vetter456470e2012-08-08 23:35:40 +02003702 if (IS_HASWELL(dev)) {
3703 DRM_DEBUG_DRIVER("Haswell: only RC6 available\n");
3704 return INTEL_RC6_ENABLE;
3705 }
3706
3707 /* snb/ivb have more than one rc6 state. */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003708 if (INTEL_INFO(dev)->gen == 6) {
3709 DRM_DEBUG_DRIVER("Sandybridge: deep RC6 disabled\n");
3710 return INTEL_RC6_ENABLE;
3711 }
Daniel Vetter456470e2012-08-08 23:35:40 +02003712
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003713 DRM_DEBUG_DRIVER("RC6 and deep RC6 enabled\n");
3714 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
3715}
3716
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003717static void gen6_enable_rps_interrupts(struct drm_device *dev)
3718{
3719 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003720 u32 enabled_intrs;
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003721
3722 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vettera0b33352013-07-04 23:35:34 +02003723 WARN_ON(dev_priv->rps.pm_iir);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03003724 snb_enable_pm_irq(dev_priv, GEN6_PM_RPS_EVENTS);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003725 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
3726 spin_unlock_irq(&dev_priv->irq_lock);
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003727
Vinit Azadfd547d22013-08-14 13:34:33 -07003728 /* only unmask PM interrupts we need. Mask all others. */
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003729 enabled_intrs = GEN6_PM_RPS_EVENTS;
3730
3731 /* IVB and SNB hard hangs on looping batchbuffer
3732 * if GEN6_PM_UP_EI_EXPIRED is masked.
3733 */
3734 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
3735 enabled_intrs |= GEN6_PM_RP_UP_EI_EXPIRED;
3736
3737 I915_WRITE(GEN6_PMINTRMSK, ~enabled_intrs);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003738}
3739
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003740static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003741{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003742 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003743 struct intel_ring_buffer *ring;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003744 u32 rp_state_cap;
3745 u32 gt_perf_status;
Ben Widawsky31643d52012-09-26 10:34:01 -07003746 u32 rc6vids, pcu_mbox, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003747 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003748 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07003749 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003750
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003751 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003752
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003753 /* Here begins a magic sequence of register writes to enable
3754 * auto-downclocking.
3755 *
3756 * Perhaps there might be some value in exposing these to
3757 * userspace...
3758 */
3759 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003760
3761 /* Clear the DBG now so we don't confuse earlier errors */
3762 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3763 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3764 I915_WRITE(GTFIFODBG, gtfifodbg);
3765 }
3766
3767 gen6_gt_force_wake_get(dev_priv);
3768
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003769 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3770 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
3771
Ben Widawsky31c77382013-04-05 14:29:22 -07003772 /* In units of 50MHz */
3773 dev_priv->rps.hw_max = dev_priv->rps.max_delay = rp_state_cap & 0xff;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003774 dev_priv->rps.min_delay = (rp_state_cap >> 16) & 0xff;
3775 dev_priv->rps.rp1_delay = (rp_state_cap >> 8) & 0xff;
3776 dev_priv->rps.rp0_delay = (rp_state_cap >> 0) & 0xff;
3777 dev_priv->rps.rpe_delay = dev_priv->rps.rp1_delay;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003778 dev_priv->rps.cur_delay = 0;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003779
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003780 /* disable the counters and set deterministic thresholds */
3781 I915_WRITE(GEN6_RC_CONTROL, 0);
3782
3783 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
3784 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
3785 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
3786 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3787 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3788
Chris Wilsonb4519512012-05-11 14:29:30 +01003789 for_each_ring(ring, dev_priv, i)
3790 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003791
3792 I915_WRITE(GEN6_RC_SLEEP, 0);
3793 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Stéphane Marchesin351aa562013-08-13 11:55:17 -07003794 if (INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev))
3795 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
3796 else
3797 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08003798 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003799 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
3800
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003801 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003802 rc6_mode = intel_enable_rc6(dev_priv->dev);
3803 if (rc6_mode & INTEL_RC6_ENABLE)
3804 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
3805
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003806 /* We don't use those on Haswell */
3807 if (!IS_HASWELL(dev)) {
3808 if (rc6_mode & INTEL_RC6p_ENABLE)
3809 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003810
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003811 if (rc6_mode & INTEL_RC6pp_ENABLE)
3812 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
3813 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003814
3815 DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003816 (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3817 (rc6_mask & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3818 (rc6_mask & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003819
3820 I915_WRITE(GEN6_RC_CONTROL,
3821 rc6_mask |
3822 GEN6_RC_CTL_EI_MODE(1) |
3823 GEN6_RC_CTL_HW_ENABLE);
3824
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003825 /* Power down if completely idle for over 50ms */
3826 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003827 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003828
Ben Widawsky42c05262012-09-26 10:34:00 -07003829 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawsky988b36e2013-04-23 17:33:02 -07003830 if (!ret) {
Ben Widawsky42c05262012-09-26 10:34:00 -07003831 pcu_mbox = 0;
3832 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003833 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
Ben Widawsky10e08492013-04-05 14:29:23 -07003834 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003835 (dev_priv->rps.max_delay & 0xff) * 50,
3836 (pcu_mbox & 0xff) * 50);
Ben Widawsky31c77382013-04-05 14:29:22 -07003837 dev_priv->rps.hw_max = pcu_mbox & 0xff;
Ben Widawsky42c05262012-09-26 10:34:00 -07003838 }
3839 } else {
3840 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003841 }
3842
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003843 dev_priv->rps.power = HIGH_POWER; /* force a reset */
3844 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003845
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003846 gen6_enable_rps_interrupts(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003847
Ben Widawsky31643d52012-09-26 10:34:01 -07003848 rc6vids = 0;
3849 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
3850 if (IS_GEN6(dev) && ret) {
3851 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
3852 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
3853 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
3854 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
3855 rc6vids &= 0xffff00;
3856 rc6vids |= GEN6_ENCODE_RC6_VID(450);
3857 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
3858 if (ret)
3859 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
3860 }
3861
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003862 gen6_gt_force_wake_put(dev_priv);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003863}
3864
Paulo Zanonic67a4702013-08-19 13:18:09 -03003865void gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003866{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003867 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003868 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003869 unsigned int gpu_freq;
3870 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003871 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03003872 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003873
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003874 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003875
Ben Widawskyeda79642013-10-07 17:15:48 -03003876 policy = cpufreq_cpu_get(0);
3877 if (policy) {
3878 max_ia_freq = policy->cpuinfo.max_freq;
3879 cpufreq_cpu_put(policy);
3880 } else {
3881 /*
3882 * Default to measured freq if none found, PCU will ensure we
3883 * don't go over
3884 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003885 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03003886 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003887
3888 /* Convert from kHz to MHz */
3889 max_ia_freq /= 1000;
3890
Ben Widawskyf6aca452013-10-02 09:25:02 -07003891 min_ring_freq = I915_READ(MCHBAR_MIRROR_BASE_SNB + DCLK) & 0xf;
3892 /* convert DDR frequency from units of 266.6MHz to bandwidth */
3893 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01003894
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003895 /*
3896 * For each potential GPU frequency, load a ring frequency we'd like
3897 * to use for memory access. We do this by specifying the IA frequency
3898 * the PCU should use as a reference to determine the ring frequency.
3899 */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003900 for (gpu_freq = dev_priv->rps.max_delay; gpu_freq >= dev_priv->rps.min_delay;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003901 gpu_freq--) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003902 int diff = dev_priv->rps.max_delay - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003903 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003904
Chris Wilson3ebecd02013-04-12 19:10:13 +01003905 if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07003906 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01003907 ring_freq = max(min_ring_freq, ring_freq);
3908 /* leave ia_freq as the default, chosen by cpufreq */
3909 } else {
3910 /* On older processors, there is no separate ring
3911 * clock domain, so in order to boost the bandwidth
3912 * of the ring, we need to upclock the CPU (ia_freq).
3913 *
3914 * For GPU frequencies less than 750MHz,
3915 * just use the lowest ring freq.
3916 */
3917 if (gpu_freq < min_freq)
3918 ia_freq = 800;
3919 else
3920 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
3921 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
3922 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003923
Ben Widawsky42c05262012-09-26 10:34:00 -07003924 sandybridge_pcode_write(dev_priv,
3925 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01003926 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
3927 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
3928 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003929 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003930}
3931
Jesse Barnes0a073b82013-04-17 15:54:58 -07003932int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
3933{
3934 u32 val, rp0;
3935
Jani Nikula64936252013-05-22 15:36:20 +03003936 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003937
3938 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
3939 /* Clamp to max */
3940 rp0 = min_t(u32, rp0, 0xea);
3941
3942 return rp0;
3943}
3944
3945static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
3946{
3947 u32 val, rpe;
3948
Jani Nikula64936252013-05-22 15:36:20 +03003949 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003950 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03003951 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003952 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
3953
3954 return rpe;
3955}
3956
3957int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
3958{
Jani Nikula64936252013-05-22 15:36:20 +03003959 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003960}
3961
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003962static void valleyview_setup_pctx(struct drm_device *dev)
3963{
3964 struct drm_i915_private *dev_priv = dev->dev_private;
3965 struct drm_i915_gem_object *pctx;
3966 unsigned long pctx_paddr;
3967 u32 pcbr;
3968 int pctx_size = 24*1024;
3969
3970 pcbr = I915_READ(VLV_PCBR);
3971 if (pcbr) {
3972 /* BIOS set it up already, grab the pre-alloc'd space */
3973 int pcbr_offset;
3974
3975 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
3976 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
3977 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02003978 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003979 pctx_size);
3980 goto out;
3981 }
3982
3983 /*
3984 * From the Gunit register HAS:
3985 * The Gfx driver is expected to program this register and ensure
3986 * proper allocation within Gfx stolen memory. For example, this
3987 * register should be programmed such than the PCBR range does not
3988 * overlap with other ranges, such as the frame buffer, protected
3989 * memory, or any other relevant ranges.
3990 */
3991 pctx = i915_gem_object_create_stolen(dev, pctx_size);
3992 if (!pctx) {
3993 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
3994 return;
3995 }
3996
3997 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
3998 I915_WRITE(VLV_PCBR, pctx_paddr);
3999
4000out:
4001 dev_priv->vlv_pctx = pctx;
4002}
4003
Jesse Barnes0a073b82013-04-17 15:54:58 -07004004static void valleyview_enable_rps(struct drm_device *dev)
4005{
4006 struct drm_i915_private *dev_priv = dev->dev_private;
4007 struct intel_ring_buffer *ring;
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004008 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004009 int i;
4010
4011 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
4012
4013 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07004014 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
4015 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004016 I915_WRITE(GTFIFODBG, gtfifodbg);
4017 }
4018
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004019 valleyview_setup_pctx(dev);
4020
Jesse Barnes0a073b82013-04-17 15:54:58 -07004021 gen6_gt_force_wake_get(dev_priv);
4022
4023 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
4024 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
4025 I915_WRITE(GEN6_RP_UP_EI, 66000);
4026 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
4027
4028 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
4029
4030 I915_WRITE(GEN6_RP_CONTROL,
4031 GEN6_RP_MEDIA_TURBO |
4032 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4033 GEN6_RP_MEDIA_IS_GFX |
4034 GEN6_RP_ENABLE |
4035 GEN6_RP_UP_BUSY_AVG |
4036 GEN6_RP_DOWN_IDLE_CONT);
4037
4038 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
4039 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4040 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4041
4042 for_each_ring(ring, dev_priv, i)
4043 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4044
4045 I915_WRITE(GEN6_RC6_THRESHOLD, 0xc350);
4046
4047 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07004048 I915_WRITE(VLV_COUNTER_CONTROL,
4049 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
4050 VLV_MEDIA_RC6_COUNT_EN |
4051 VLV_RENDER_RC6_COUNT_EN));
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004052 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4053 rc6_mode = GEN7_RC_CTL_TO_MODE;
4054 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004055
Jani Nikula64936252013-05-22 15:36:20 +03004056 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes24459662013-05-02 10:48:08 -07004057 switch ((val >> 6) & 3) {
4058 case 0:
4059 case 1:
4060 dev_priv->mem_freq = 800;
4061 break;
4062 case 2:
4063 dev_priv->mem_freq = 1066;
4064 break;
4065 case 3:
4066 dev_priv->mem_freq = 1333;
4067 break;
4068 }
Jesse Barnes0a073b82013-04-17 15:54:58 -07004069 DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
4070
4071 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no");
4072 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
4073
Jesse Barnes0a073b82013-04-17 15:54:58 -07004074 dev_priv->rps.cur_delay = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03004075 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
4076 vlv_gpu_freq(dev_priv->mem_freq,
4077 dev_priv->rps.cur_delay),
4078 dev_priv->rps.cur_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004079
4080 dev_priv->rps.max_delay = valleyview_rps_max_freq(dev_priv);
4081 dev_priv->rps.hw_max = dev_priv->rps.max_delay;
Ville Syrjälä73008b92013-06-25 19:21:01 +03004082 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
4083 vlv_gpu_freq(dev_priv->mem_freq,
4084 dev_priv->rps.max_delay),
4085 dev_priv->rps.max_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004086
Ville Syrjälä73008b92013-06-25 19:21:01 +03004087 dev_priv->rps.rpe_delay = valleyview_rps_rpe_freq(dev_priv);
4088 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
4089 vlv_gpu_freq(dev_priv->mem_freq,
4090 dev_priv->rps.rpe_delay),
4091 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004092
Ville Syrjälä73008b92013-06-25 19:21:01 +03004093 dev_priv->rps.min_delay = valleyview_rps_min_freq(dev_priv);
4094 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
4095 vlv_gpu_freq(dev_priv->mem_freq,
4096 dev_priv->rps.min_delay),
4097 dev_priv->rps.min_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004098
Ville Syrjälä73008b92013-06-25 19:21:01 +03004099 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
4100 vlv_gpu_freq(dev_priv->mem_freq,
4101 dev_priv->rps.rpe_delay),
4102 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004103
Ville Syrjälä73008b92013-06-25 19:21:01 +03004104 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004105
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004106 gen6_enable_rps_interrupts(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004107
4108 gen6_gt_force_wake_put(dev_priv);
4109}
4110
Daniel Vetter930ebb42012-06-29 23:32:16 +02004111void ironlake_teardown_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004112{
4113 struct drm_i915_private *dev_priv = dev->dev_private;
4114
Daniel Vetter3e373942012-11-02 19:55:04 +01004115 if (dev_priv->ips.renderctx) {
4116 i915_gem_object_unpin(dev_priv->ips.renderctx);
4117 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
4118 dev_priv->ips.renderctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004119 }
4120
Daniel Vetter3e373942012-11-02 19:55:04 +01004121 if (dev_priv->ips.pwrctx) {
4122 i915_gem_object_unpin(dev_priv->ips.pwrctx);
4123 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
4124 dev_priv->ips.pwrctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004125 }
4126}
4127
Daniel Vetter930ebb42012-06-29 23:32:16 +02004128static void ironlake_disable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004129{
4130 struct drm_i915_private *dev_priv = dev->dev_private;
4131
4132 if (I915_READ(PWRCTXA)) {
4133 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
4134 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
4135 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
4136 50);
4137
4138 I915_WRITE(PWRCTXA, 0);
4139 POSTING_READ(PWRCTXA);
4140
4141 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
4142 POSTING_READ(RSTDBYCTL);
4143 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004144}
4145
4146static int ironlake_setup_rc6(struct drm_device *dev)
4147{
4148 struct drm_i915_private *dev_priv = dev->dev_private;
4149
Daniel Vetter3e373942012-11-02 19:55:04 +01004150 if (dev_priv->ips.renderctx == NULL)
4151 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
4152 if (!dev_priv->ips.renderctx)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004153 return -ENOMEM;
4154
Daniel Vetter3e373942012-11-02 19:55:04 +01004155 if (dev_priv->ips.pwrctx == NULL)
4156 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
4157 if (!dev_priv->ips.pwrctx) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004158 ironlake_teardown_rc6(dev);
4159 return -ENOMEM;
4160 }
4161
4162 return 0;
4163}
4164
Daniel Vetter930ebb42012-06-29 23:32:16 +02004165static void ironlake_enable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004166{
4167 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +02004168 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson3e960502012-11-27 16:22:54 +00004169 bool was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004170 int ret;
4171
4172 /* rc6 disabled by default due to repeated reports of hanging during
4173 * boot and resume.
4174 */
4175 if (!intel_enable_rc6(dev))
4176 return;
4177
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004178 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4179
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004180 ret = ironlake_setup_rc6(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004181 if (ret)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004182 return;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004183
Chris Wilson3e960502012-11-27 16:22:54 +00004184 was_interruptible = dev_priv->mm.interruptible;
4185 dev_priv->mm.interruptible = false;
4186
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004187 /*
4188 * GPU can automatically power down the render unit if given a page
4189 * to save state.
4190 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02004191 ret = intel_ring_begin(ring, 6);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004192 if (ret) {
4193 ironlake_teardown_rc6(dev);
Chris Wilson3e960502012-11-27 16:22:54 +00004194 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004195 return;
4196 }
4197
Daniel Vetter6d90c952012-04-26 23:28:05 +02004198 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
4199 intel_ring_emit(ring, MI_SET_CONTEXT);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004200 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) |
Daniel Vetter6d90c952012-04-26 23:28:05 +02004201 MI_MM_SPACE_GTT |
4202 MI_SAVE_EXT_STATE_EN |
4203 MI_RESTORE_EXT_STATE_EN |
4204 MI_RESTORE_INHIBIT);
4205 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
4206 intel_ring_emit(ring, MI_NOOP);
4207 intel_ring_emit(ring, MI_FLUSH);
4208 intel_ring_advance(ring);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004209
4210 /*
4211 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
4212 * does an implicit flush, combined with MI_FLUSH above, it should be
4213 * safe to assume that renderctx is valid
4214 */
Chris Wilson3e960502012-11-27 16:22:54 +00004215 ret = intel_ring_idle(ring);
4216 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004217 if (ret) {
Jani Nikuladef27a52013-03-12 10:49:19 +02004218 DRM_ERROR("failed to enable ironlake power savings\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004219 ironlake_teardown_rc6(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004220 return;
4221 }
4222
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004223 I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004224 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004225}
4226
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004227static unsigned long intel_pxfreq(u32 vidfreq)
4228{
4229 unsigned long freq;
4230 int div = (vidfreq & 0x3f0000) >> 16;
4231 int post = (vidfreq & 0x3000) >> 12;
4232 int pre = (vidfreq & 0x7);
4233
4234 if (!pre)
4235 return 0;
4236
4237 freq = ((div * 133333) / ((1<<post) * pre));
4238
4239 return freq;
4240}
4241
Daniel Vettereb48eb02012-04-26 23:28:12 +02004242static const struct cparams {
4243 u16 i;
4244 u16 t;
4245 u16 m;
4246 u16 c;
4247} cparams[] = {
4248 { 1, 1333, 301, 28664 },
4249 { 1, 1066, 294, 24460 },
4250 { 1, 800, 294, 25192 },
4251 { 0, 1333, 276, 27605 },
4252 { 0, 1066, 276, 27605 },
4253 { 0, 800, 231, 23784 },
4254};
4255
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004256static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004257{
4258 u64 total_count, diff, ret;
4259 u32 count1, count2, count3, m = 0, c = 0;
4260 unsigned long now = jiffies_to_msecs(jiffies), diff1;
4261 int i;
4262
Daniel Vetter02d71952012-08-09 16:44:54 +02004263 assert_spin_locked(&mchdev_lock);
4264
Daniel Vetter20e4d402012-08-08 23:35:39 +02004265 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004266
4267 /* Prevent division-by-zero if we are asking too fast.
4268 * Also, we don't get interesting results if we are polling
4269 * faster than once in 10ms, so just return the saved value
4270 * in such cases.
4271 */
4272 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02004273 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004274
4275 count1 = I915_READ(DMIEC);
4276 count2 = I915_READ(DDREC);
4277 count3 = I915_READ(CSIEC);
4278
4279 total_count = count1 + count2 + count3;
4280
4281 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004282 if (total_count < dev_priv->ips.last_count1) {
4283 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004284 diff += total_count;
4285 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004286 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004287 }
4288
4289 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004290 if (cparams[i].i == dev_priv->ips.c_m &&
4291 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02004292 m = cparams[i].m;
4293 c = cparams[i].c;
4294 break;
4295 }
4296 }
4297
4298 diff = div_u64(diff, diff1);
4299 ret = ((m * diff) + c);
4300 ret = div_u64(ret, 10);
4301
Daniel Vetter20e4d402012-08-08 23:35:39 +02004302 dev_priv->ips.last_count1 = total_count;
4303 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004304
Daniel Vetter20e4d402012-08-08 23:35:39 +02004305 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004306
4307 return ret;
4308}
4309
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004310unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
4311{
4312 unsigned long val;
4313
4314 if (dev_priv->info->gen != 5)
4315 return 0;
4316
4317 spin_lock_irq(&mchdev_lock);
4318
4319 val = __i915_chipset_val(dev_priv);
4320
4321 spin_unlock_irq(&mchdev_lock);
4322
4323 return val;
4324}
4325
Daniel Vettereb48eb02012-04-26 23:28:12 +02004326unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
4327{
4328 unsigned long m, x, b;
4329 u32 tsfs;
4330
4331 tsfs = I915_READ(TSFS);
4332
4333 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
4334 x = I915_READ8(TR1);
4335
4336 b = tsfs & TSFS_INTR_MASK;
4337
4338 return ((m * x) / 127) - b;
4339}
4340
4341static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
4342{
4343 static const struct v_table {
4344 u16 vd; /* in .1 mil */
4345 u16 vm; /* in .1 mil */
4346 } v_table[] = {
4347 { 0, 0, },
4348 { 375, 0, },
4349 { 500, 0, },
4350 { 625, 0, },
4351 { 750, 0, },
4352 { 875, 0, },
4353 { 1000, 0, },
4354 { 1125, 0, },
4355 { 4125, 3000, },
4356 { 4125, 3000, },
4357 { 4125, 3000, },
4358 { 4125, 3000, },
4359 { 4125, 3000, },
4360 { 4125, 3000, },
4361 { 4125, 3000, },
4362 { 4125, 3000, },
4363 { 4125, 3000, },
4364 { 4125, 3000, },
4365 { 4125, 3000, },
4366 { 4125, 3000, },
4367 { 4125, 3000, },
4368 { 4125, 3000, },
4369 { 4125, 3000, },
4370 { 4125, 3000, },
4371 { 4125, 3000, },
4372 { 4125, 3000, },
4373 { 4125, 3000, },
4374 { 4125, 3000, },
4375 { 4125, 3000, },
4376 { 4125, 3000, },
4377 { 4125, 3000, },
4378 { 4125, 3000, },
4379 { 4250, 3125, },
4380 { 4375, 3250, },
4381 { 4500, 3375, },
4382 { 4625, 3500, },
4383 { 4750, 3625, },
4384 { 4875, 3750, },
4385 { 5000, 3875, },
4386 { 5125, 4000, },
4387 { 5250, 4125, },
4388 { 5375, 4250, },
4389 { 5500, 4375, },
4390 { 5625, 4500, },
4391 { 5750, 4625, },
4392 { 5875, 4750, },
4393 { 6000, 4875, },
4394 { 6125, 5000, },
4395 { 6250, 5125, },
4396 { 6375, 5250, },
4397 { 6500, 5375, },
4398 { 6625, 5500, },
4399 { 6750, 5625, },
4400 { 6875, 5750, },
4401 { 7000, 5875, },
4402 { 7125, 6000, },
4403 { 7250, 6125, },
4404 { 7375, 6250, },
4405 { 7500, 6375, },
4406 { 7625, 6500, },
4407 { 7750, 6625, },
4408 { 7875, 6750, },
4409 { 8000, 6875, },
4410 { 8125, 7000, },
4411 { 8250, 7125, },
4412 { 8375, 7250, },
4413 { 8500, 7375, },
4414 { 8625, 7500, },
4415 { 8750, 7625, },
4416 { 8875, 7750, },
4417 { 9000, 7875, },
4418 { 9125, 8000, },
4419 { 9250, 8125, },
4420 { 9375, 8250, },
4421 { 9500, 8375, },
4422 { 9625, 8500, },
4423 { 9750, 8625, },
4424 { 9875, 8750, },
4425 { 10000, 8875, },
4426 { 10125, 9000, },
4427 { 10250, 9125, },
4428 { 10375, 9250, },
4429 { 10500, 9375, },
4430 { 10625, 9500, },
4431 { 10750, 9625, },
4432 { 10875, 9750, },
4433 { 11000, 9875, },
4434 { 11125, 10000, },
4435 { 11250, 10125, },
4436 { 11375, 10250, },
4437 { 11500, 10375, },
4438 { 11625, 10500, },
4439 { 11750, 10625, },
4440 { 11875, 10750, },
4441 { 12000, 10875, },
4442 { 12125, 11000, },
4443 { 12250, 11125, },
4444 { 12375, 11250, },
4445 { 12500, 11375, },
4446 { 12625, 11500, },
4447 { 12750, 11625, },
4448 { 12875, 11750, },
4449 { 13000, 11875, },
4450 { 13125, 12000, },
4451 { 13250, 12125, },
4452 { 13375, 12250, },
4453 { 13500, 12375, },
4454 { 13625, 12500, },
4455 { 13750, 12625, },
4456 { 13875, 12750, },
4457 { 14000, 12875, },
4458 { 14125, 13000, },
4459 { 14250, 13125, },
4460 { 14375, 13250, },
4461 { 14500, 13375, },
4462 { 14625, 13500, },
4463 { 14750, 13625, },
4464 { 14875, 13750, },
4465 { 15000, 13875, },
4466 { 15125, 14000, },
4467 { 15250, 14125, },
4468 { 15375, 14250, },
4469 { 15500, 14375, },
4470 { 15625, 14500, },
4471 { 15750, 14625, },
4472 { 15875, 14750, },
4473 { 16000, 14875, },
4474 { 16125, 15000, },
4475 };
4476 if (dev_priv->info->is_mobile)
4477 return v_table[pxvid].vm;
4478 else
4479 return v_table[pxvid].vd;
4480}
4481
Daniel Vetter02d71952012-08-09 16:44:54 +02004482static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004483{
4484 struct timespec now, diff1;
4485 u64 diff;
4486 unsigned long diffms;
4487 u32 count;
4488
Daniel Vetter02d71952012-08-09 16:44:54 +02004489 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004490
4491 getrawmonotonic(&now);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004492 diff1 = timespec_sub(now, dev_priv->ips.last_time2);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004493
4494 /* Don't divide by 0 */
4495 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
4496 if (!diffms)
4497 return;
4498
4499 count = I915_READ(GFXEC);
4500
Daniel Vetter20e4d402012-08-08 23:35:39 +02004501 if (count < dev_priv->ips.last_count2) {
4502 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004503 diff += count;
4504 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004505 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004506 }
4507
Daniel Vetter20e4d402012-08-08 23:35:39 +02004508 dev_priv->ips.last_count2 = count;
4509 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004510
4511 /* More magic constants... */
4512 diff = diff * 1181;
4513 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004514 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004515}
4516
Daniel Vetter02d71952012-08-09 16:44:54 +02004517void i915_update_gfx_val(struct drm_i915_private *dev_priv)
4518{
4519 if (dev_priv->info->gen != 5)
4520 return;
4521
Daniel Vetter92703882012-08-09 16:46:01 +02004522 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004523
4524 __i915_update_gfx_val(dev_priv);
4525
Daniel Vetter92703882012-08-09 16:46:01 +02004526 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004527}
4528
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004529static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004530{
4531 unsigned long t, corr, state1, corr2, state2;
4532 u32 pxvid, ext_v;
4533
Daniel Vetter02d71952012-08-09 16:44:54 +02004534 assert_spin_locked(&mchdev_lock);
4535
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004536 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_delay * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02004537 pxvid = (pxvid >> 24) & 0x7f;
4538 ext_v = pvid_to_extvid(dev_priv, pxvid);
4539
4540 state1 = ext_v;
4541
4542 t = i915_mch_val(dev_priv);
4543
4544 /* Revel in the empirically derived constants */
4545
4546 /* Correction factor in 1/100000 units */
4547 if (t > 80)
4548 corr = ((t * 2349) + 135940);
4549 else if (t >= 50)
4550 corr = ((t * 964) + 29317);
4551 else /* < 50 */
4552 corr = ((t * 301) + 1004);
4553
4554 corr = corr * ((150142 * state1) / 10000 - 78642);
4555 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02004556 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004557
4558 state2 = (corr2 * state1) / 10000;
4559 state2 /= 100; /* convert to mW */
4560
Daniel Vetter02d71952012-08-09 16:44:54 +02004561 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004562
Daniel Vetter20e4d402012-08-08 23:35:39 +02004563 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004564}
4565
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004566unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
4567{
4568 unsigned long val;
4569
4570 if (dev_priv->info->gen != 5)
4571 return 0;
4572
4573 spin_lock_irq(&mchdev_lock);
4574
4575 val = __i915_gfx_val(dev_priv);
4576
4577 spin_unlock_irq(&mchdev_lock);
4578
4579 return val;
4580}
4581
Daniel Vettereb48eb02012-04-26 23:28:12 +02004582/**
4583 * i915_read_mch_val - return value for IPS use
4584 *
4585 * Calculate and return a value for the IPS driver to use when deciding whether
4586 * we have thermal and power headroom to increase CPU or GPU power budget.
4587 */
4588unsigned long i915_read_mch_val(void)
4589{
4590 struct drm_i915_private *dev_priv;
4591 unsigned long chipset_val, graphics_val, ret = 0;
4592
Daniel Vetter92703882012-08-09 16:46:01 +02004593 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004594 if (!i915_mch_dev)
4595 goto out_unlock;
4596 dev_priv = i915_mch_dev;
4597
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004598 chipset_val = __i915_chipset_val(dev_priv);
4599 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004600
4601 ret = chipset_val + graphics_val;
4602
4603out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004604 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004605
4606 return ret;
4607}
4608EXPORT_SYMBOL_GPL(i915_read_mch_val);
4609
4610/**
4611 * i915_gpu_raise - raise GPU frequency limit
4612 *
4613 * Raise the limit; IPS indicates we have thermal headroom.
4614 */
4615bool i915_gpu_raise(void)
4616{
4617 struct drm_i915_private *dev_priv;
4618 bool ret = true;
4619
Daniel Vetter92703882012-08-09 16:46:01 +02004620 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004621 if (!i915_mch_dev) {
4622 ret = false;
4623 goto out_unlock;
4624 }
4625 dev_priv = i915_mch_dev;
4626
Daniel Vetter20e4d402012-08-08 23:35:39 +02004627 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
4628 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004629
4630out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004631 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004632
4633 return ret;
4634}
4635EXPORT_SYMBOL_GPL(i915_gpu_raise);
4636
4637/**
4638 * i915_gpu_lower - lower GPU frequency limit
4639 *
4640 * IPS indicates we're close to a thermal limit, so throttle back the GPU
4641 * frequency maximum.
4642 */
4643bool i915_gpu_lower(void)
4644{
4645 struct drm_i915_private *dev_priv;
4646 bool ret = true;
4647
Daniel Vetter92703882012-08-09 16:46:01 +02004648 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004649 if (!i915_mch_dev) {
4650 ret = false;
4651 goto out_unlock;
4652 }
4653 dev_priv = i915_mch_dev;
4654
Daniel Vetter20e4d402012-08-08 23:35:39 +02004655 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
4656 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004657
4658out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004659 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004660
4661 return ret;
4662}
4663EXPORT_SYMBOL_GPL(i915_gpu_lower);
4664
4665/**
4666 * i915_gpu_busy - indicate GPU business to IPS
4667 *
4668 * Tell the IPS driver whether or not the GPU is busy.
4669 */
4670bool i915_gpu_busy(void)
4671{
4672 struct drm_i915_private *dev_priv;
Chris Wilsonf047e392012-07-21 12:31:41 +01004673 struct intel_ring_buffer *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004674 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01004675 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004676
Daniel Vetter92703882012-08-09 16:46:01 +02004677 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004678 if (!i915_mch_dev)
4679 goto out_unlock;
4680 dev_priv = i915_mch_dev;
4681
Chris Wilsonf047e392012-07-21 12:31:41 +01004682 for_each_ring(ring, dev_priv, i)
4683 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004684
4685out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004686 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004687
4688 return ret;
4689}
4690EXPORT_SYMBOL_GPL(i915_gpu_busy);
4691
4692/**
4693 * i915_gpu_turbo_disable - disable graphics turbo
4694 *
4695 * Disable graphics turbo by resetting the max frequency and setting the
4696 * current frequency to the default.
4697 */
4698bool i915_gpu_turbo_disable(void)
4699{
4700 struct drm_i915_private *dev_priv;
4701 bool ret = true;
4702
Daniel Vetter92703882012-08-09 16:46:01 +02004703 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004704 if (!i915_mch_dev) {
4705 ret = false;
4706 goto out_unlock;
4707 }
4708 dev_priv = i915_mch_dev;
4709
Daniel Vetter20e4d402012-08-08 23:35:39 +02004710 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004711
Daniel Vetter20e4d402012-08-08 23:35:39 +02004712 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02004713 ret = false;
4714
4715out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004716 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004717
4718 return ret;
4719}
4720EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
4721
4722/**
4723 * Tells the intel_ips driver that the i915 driver is now loaded, if
4724 * IPS got loaded first.
4725 *
4726 * This awkward dance is so that neither module has to depend on the
4727 * other in order for IPS to do the appropriate communication of
4728 * GPU turbo limits to i915.
4729 */
4730static void
4731ips_ping_for_i915_load(void)
4732{
4733 void (*link)(void);
4734
4735 link = symbol_get(ips_link_to_i915_driver);
4736 if (link) {
4737 link();
4738 symbol_put(ips_link_to_i915_driver);
4739 }
4740}
4741
4742void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
4743{
Daniel Vetter02d71952012-08-09 16:44:54 +02004744 /* We only register the i915 ips part with intel-ips once everything is
4745 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02004746 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004747 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02004748 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004749
4750 ips_ping_for_i915_load();
4751}
4752
4753void intel_gpu_ips_teardown(void)
4754{
Daniel Vetter92703882012-08-09 16:46:01 +02004755 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004756 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02004757 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004758}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004759static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004760{
4761 struct drm_i915_private *dev_priv = dev->dev_private;
4762 u32 lcfuse;
4763 u8 pxw[16];
4764 int i;
4765
4766 /* Disable to program */
4767 I915_WRITE(ECR, 0);
4768 POSTING_READ(ECR);
4769
4770 /* Program energy weights for various events */
4771 I915_WRITE(SDEW, 0x15040d00);
4772 I915_WRITE(CSIEW0, 0x007f0000);
4773 I915_WRITE(CSIEW1, 0x1e220004);
4774 I915_WRITE(CSIEW2, 0x04000004);
4775
4776 for (i = 0; i < 5; i++)
4777 I915_WRITE(PEW + (i * 4), 0);
4778 for (i = 0; i < 3; i++)
4779 I915_WRITE(DEW + (i * 4), 0);
4780
4781 /* Program P-state weights to account for frequency power adjustment */
4782 for (i = 0; i < 16; i++) {
4783 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
4784 unsigned long freq = intel_pxfreq(pxvidfreq);
4785 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
4786 PXVFREQ_PX_SHIFT;
4787 unsigned long val;
4788
4789 val = vid * vid;
4790 val *= (freq / 1000);
4791 val *= 255;
4792 val /= (127*127*900);
4793 if (val > 0xff)
4794 DRM_ERROR("bad pxval: %ld\n", val);
4795 pxw[i] = val;
4796 }
4797 /* Render standby states get 0 weight */
4798 pxw[14] = 0;
4799 pxw[15] = 0;
4800
4801 for (i = 0; i < 4; i++) {
4802 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
4803 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
4804 I915_WRITE(PXW + (i * 4), val);
4805 }
4806
4807 /* Adjust magic regs to magic values (more experimental results) */
4808 I915_WRITE(OGW0, 0);
4809 I915_WRITE(OGW1, 0);
4810 I915_WRITE(EG0, 0x00007f00);
4811 I915_WRITE(EG1, 0x0000000e);
4812 I915_WRITE(EG2, 0x000e0000);
4813 I915_WRITE(EG3, 0x68000300);
4814 I915_WRITE(EG4, 0x42000000);
4815 I915_WRITE(EG5, 0x00140031);
4816 I915_WRITE(EG6, 0);
4817 I915_WRITE(EG7, 0);
4818
4819 for (i = 0; i < 8; i++)
4820 I915_WRITE(PXWL + (i * 4), 0);
4821
4822 /* Enable PMON + select events */
4823 I915_WRITE(ECR, 0x80000019);
4824
4825 lcfuse = I915_READ(LCFUSE02);
4826
Daniel Vetter20e4d402012-08-08 23:35:39 +02004827 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004828}
4829
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004830void intel_disable_gt_powersave(struct drm_device *dev)
4831{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004832 struct drm_i915_private *dev_priv = dev->dev_private;
4833
Daniel Vetterfd0c0642013-04-24 11:13:35 +02004834 /* Interrupts should be disabled already to avoid re-arming. */
4835 WARN_ON(dev->irq_enabled);
4836
Daniel Vetter930ebb42012-06-29 23:32:16 +02004837 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004838 ironlake_disable_drps(dev);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004839 ironlake_disable_rc6(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004840 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004841 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
Jesse Barnes250848c2013-04-23 10:09:27 -07004842 cancel_work_sync(&dev_priv->rps.work);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004843 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004844 if (IS_VALLEYVIEW(dev))
4845 valleyview_disable_rps(dev);
4846 else
4847 gen6_disable_rps(dev);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004848 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004849 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004850 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004851}
4852
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004853static void intel_gen6_powersave_work(struct work_struct *work)
4854{
4855 struct drm_i915_private *dev_priv =
4856 container_of(work, struct drm_i915_private,
4857 rps.delayed_resume_work.work);
4858 struct drm_device *dev = dev_priv->dev;
4859
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004860 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004861
4862 if (IS_VALLEYVIEW(dev)) {
4863 valleyview_enable_rps(dev);
4864 } else {
4865 gen6_enable_rps(dev);
4866 gen6_update_ring_freq(dev);
4867 }
Chris Wilsonc0951f02013-10-10 21:58:50 +01004868 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004869 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004870}
4871
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004872void intel_enable_gt_powersave(struct drm_device *dev)
4873{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004874 struct drm_i915_private *dev_priv = dev->dev_private;
4875
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004876 if (IS_IRONLAKE_M(dev)) {
4877 ironlake_enable_drps(dev);
4878 ironlake_enable_rc6(dev);
4879 intel_init_emon(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004880 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004881 /*
4882 * PCU communication is slow and this doesn't need to be
4883 * done at any specific time, so do this out of our fast path
4884 * to make resume and init faster.
4885 */
4886 schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
4887 round_jiffies_up_relative(HZ));
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004888 }
4889}
4890
Daniel Vetter3107bd42012-10-31 22:52:31 +01004891static void ibx_init_clock_gating(struct drm_device *dev)
4892{
4893 struct drm_i915_private *dev_priv = dev->dev_private;
4894
4895 /*
4896 * On Ibex Peak and Cougar Point, we need to disable clock
4897 * gating for the panel power sequencer or it will fail to
4898 * start up when no ports are active.
4899 */
4900 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4901}
4902
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004903static void g4x_disable_trickle_feed(struct drm_device *dev)
4904{
4905 struct drm_i915_private *dev_priv = dev->dev_private;
4906 int pipe;
4907
4908 for_each_pipe(pipe) {
4909 I915_WRITE(DSPCNTR(pipe),
4910 I915_READ(DSPCNTR(pipe)) |
4911 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03004912 intel_flush_primary_plane(dev_priv, pipe);
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004913 }
4914}
4915
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004916static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004917{
4918 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004919 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004920
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01004921 /*
4922 * Required for FBC
4923 * WaFbcDisableDpfcClockGating:ilk
4924 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004925 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
4926 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
4927 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004928
4929 I915_WRITE(PCH_3DCGDIS0,
4930 MARIUNIT_CLOCK_GATE_DISABLE |
4931 SVSMUNIT_CLOCK_GATE_DISABLE);
4932 I915_WRITE(PCH_3DCGDIS1,
4933 VFMUNIT_CLOCK_GATE_DISABLE);
4934
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004935 /*
4936 * According to the spec the following bits should be set in
4937 * order to enable memory self-refresh
4938 * The bit 22/21 of 0x42004
4939 * The bit 5 of 0x42020
4940 * The bit 15 of 0x45000
4941 */
4942 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4943 (I915_READ(ILK_DISPLAY_CHICKEN2) |
4944 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004945 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004946 I915_WRITE(DISP_ARB_CTL,
4947 (I915_READ(DISP_ARB_CTL) |
4948 DISP_FBC_WM_DIS));
4949 I915_WRITE(WM3_LP_ILK, 0);
4950 I915_WRITE(WM2_LP_ILK, 0);
4951 I915_WRITE(WM1_LP_ILK, 0);
4952
4953 /*
4954 * Based on the document from hardware guys the following bits
4955 * should be set unconditionally in order to enable FBC.
4956 * The bit 22 of 0x42000
4957 * The bit 22 of 0x42004
4958 * The bit 7,8,9 of 0x42020.
4959 */
4960 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01004961 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004962 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4963 I915_READ(ILK_DISPLAY_CHICKEN1) |
4964 ILK_FBCQ_DIS);
4965 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4966 I915_READ(ILK_DISPLAY_CHICKEN2) |
4967 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004968 }
4969
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004970 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
4971
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004972 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4973 I915_READ(ILK_DISPLAY_CHICKEN2) |
4974 ILK_ELPIN_409_SELECT);
4975 I915_WRITE(_3D_CHICKEN2,
4976 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
4977 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02004978
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004979 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02004980 I915_WRITE(CACHE_MODE_0,
4981 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004982
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004983 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03004984
Daniel Vetter3107bd42012-10-31 22:52:31 +01004985 ibx_init_clock_gating(dev);
4986}
4987
4988static void cpt_init_clock_gating(struct drm_device *dev)
4989{
4990 struct drm_i915_private *dev_priv = dev->dev_private;
4991 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004992 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01004993
4994 /*
4995 * On Ibex Peak and Cougar Point, we need to disable clock
4996 * gating for the panel power sequencer or it will fail to
4997 * start up when no ports are active.
4998 */
4999 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
5000 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
5001 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01005002 /* The below fixes the weird display corruption, a few pixels shifted
5003 * downward, on (only) LVDS of some HP laptops with IVY.
5004 */
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005005 for_each_pipe(pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005006 val = I915_READ(TRANS_CHICKEN2(pipe));
5007 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
5008 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005009 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005010 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005011 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
5012 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
5013 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005014 I915_WRITE(TRANS_CHICKEN2(pipe), val);
5015 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01005016 /* WADP0ClockGatingDisable */
5017 for_each_pipe(pipe) {
5018 I915_WRITE(TRANS_CHICKEN1(pipe),
5019 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
5020 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005021}
5022
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005023static void gen6_check_mch_setup(struct drm_device *dev)
5024{
5025 struct drm_i915_private *dev_priv = dev->dev_private;
5026 uint32_t tmp;
5027
5028 tmp = I915_READ(MCH_SSKPD);
5029 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) {
5030 DRM_INFO("Wrong MCH_SSKPD value: 0x%08x\n", tmp);
5031 DRM_INFO("This can cause pipe underruns and display issues.\n");
5032 DRM_INFO("Please upgrade your BIOS to fix this.\n");
5033 }
5034}
5035
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005036static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005037{
5038 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005039 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005040
Damien Lespiau231e54f2012-10-19 17:55:41 +01005041 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005042
5043 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5044 I915_READ(ILK_DISPLAY_CHICKEN2) |
5045 ILK_ELPIN_409_SELECT);
5046
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005047 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01005048 I915_WRITE(_3D_CHICKEN,
5049 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
5050
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005051 /* WaSetupGtModeTdRowDispatch:snb */
Daniel Vetter6547fbd2012-12-14 23:38:29 +01005052 if (IS_SNB_GT1(dev))
5053 I915_WRITE(GEN6_GT_MODE,
5054 _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE));
5055
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005056 I915_WRITE(WM3_LP_ILK, 0);
5057 I915_WRITE(WM2_LP_ILK, 0);
5058 I915_WRITE(WM1_LP_ILK, 0);
5059
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005060 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02005061 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005062
5063 I915_WRITE(GEN6_UCGCTL1,
5064 I915_READ(GEN6_UCGCTL1) |
5065 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
5066 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
5067
5068 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5069 * gating disable must be set. Failure to set it results in
5070 * flickering pixels due to Z write ordering failures after
5071 * some amount of runtime in the Mesa "fire" demo, and Unigine
5072 * Sanctuary and Tropics, and apparently anything else with
5073 * alpha test or pixel discard.
5074 *
5075 * According to the spec, bit 11 (RCCUNIT) must also be set,
5076 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005077 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005078 * Also apply WaDisableVDSUnitClockGating:snb and
5079 * WaDisableRCPBUnitClockGating:snb.
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005080 */
5081 I915_WRITE(GEN6_UCGCTL2,
Jesse Barnes0f846f82012-06-14 11:04:47 -07005082 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005083 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5084 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5085
5086 /* Bspec says we need to always set all mask bits. */
Kenneth Graunke26b6e442012-10-07 08:51:07 -07005087 I915_WRITE(_3D_CHICKEN3, (0xFFFF << 16) |
5088 _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005089
5090 /*
5091 * According to the spec the following bits should be
5092 * set in order to enable memory self-refresh and fbc:
5093 * The bit21 and bit22 of 0x42000
5094 * The bit21 and bit22 of 0x42004
5095 * The bit5 and bit7 of 0x42020
5096 * The bit14 of 0x70180
5097 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01005098 *
5099 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005100 */
5101 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5102 I915_READ(ILK_DISPLAY_CHICKEN1) |
5103 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
5104 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5105 I915_READ(ILK_DISPLAY_CHICKEN2) |
5106 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01005107 I915_WRITE(ILK_DSPCLK_GATE_D,
5108 I915_READ(ILK_DSPCLK_GATE_D) |
5109 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
5110 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005111
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005112 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07005113
5114 /* The default value should be 0x200 according to docs, but the two
5115 * platforms I checked have a 0 for this. (Maybe BIOS overrides?) */
5116 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_DISABLE(0xffff));
5117 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_ENABLE(GEN6_GT_MODE_HI));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005118
5119 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005120
5121 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005122}
5123
5124static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
5125{
5126 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
5127
5128 reg &= ~GEN7_FF_SCHED_MASK;
5129 reg |= GEN7_FF_TS_SCHED_HW;
5130 reg |= GEN7_FF_VS_SCHED_HW;
5131 reg |= GEN7_FF_DS_SCHED_HW;
5132
Ben Widawsky41c0b3a2013-01-26 11:52:00 -08005133 if (IS_HASWELL(dev_priv->dev))
5134 reg &= ~GEN7_FF_VS_REF_CNT_FFME;
5135
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005136 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
5137}
5138
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005139static void lpt_init_clock_gating(struct drm_device *dev)
5140{
5141 struct drm_i915_private *dev_priv = dev->dev_private;
5142
5143 /*
5144 * TODO: this bit should only be enabled when really needed, then
5145 * disabled when not needed anymore in order to save power.
5146 */
5147 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
5148 I915_WRITE(SOUTH_DSPCLK_GATE_D,
5149 I915_READ(SOUTH_DSPCLK_GATE_D) |
5150 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03005151
5152 /* WADPOClockGatingDisable:hsw */
5153 I915_WRITE(_TRANSA_CHICKEN1,
5154 I915_READ(_TRANSA_CHICKEN1) |
5155 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005156}
5157
Imre Deak7d708ee2013-04-17 14:04:50 +03005158static void lpt_suspend_hw(struct drm_device *dev)
5159{
5160 struct drm_i915_private *dev_priv = dev->dev_private;
5161
5162 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
5163 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
5164
5165 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
5166 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
5167 }
5168}
5169
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005170static void haswell_init_clock_gating(struct drm_device *dev)
5171{
5172 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005173
5174 I915_WRITE(WM3_LP_ILK, 0);
5175 I915_WRITE(WM2_LP_ILK, 0);
5176 I915_WRITE(WM1_LP_ILK, 0);
5177
5178 /* According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005179 * This implements the WaDisableRCZUnitClockGating:hsw workaround.
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005180 */
5181 I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
5182
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005183 /* Apply the WaDisableRHWOOptimizationForRenderHang:hsw workaround. */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005184 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5185 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5186
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005187 /* WaApplyL3ControlAndL3ChickenMode:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005188 I915_WRITE(GEN7_L3CNTLREG1,
5189 GEN7_WA_FOR_GEN7_L3_CONTROL);
5190 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
5191 GEN7_WA_L3_CHICKEN_MODE);
5192
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005193 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005194 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5195 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5196 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5197
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005198 /* WaVSRefCountFullforceMissDisable:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005199 gen7_setup_fixed_func_scheduler(dev_priv);
5200
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005201 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005202 I915_WRITE(CACHE_MODE_1,
5203 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03005204
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005205 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07005206 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
5207
Paulo Zanoni90a88642013-05-03 17:23:45 -03005208 /* WaRsPkgCStateDisplayPMReq:hsw */
5209 I915_WRITE(CHICKEN_PAR1_1,
5210 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03005211
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005212 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005213}
5214
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005215static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005216{
5217 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07005218 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005219
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005220 I915_WRITE(WM3_LP_ILK, 0);
5221 I915_WRITE(WM2_LP_ILK, 0);
5222 I915_WRITE(WM1_LP_ILK, 0);
5223
Damien Lespiau231e54f2012-10-19 17:55:41 +01005224 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005225
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005226 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05005227 I915_WRITE(_3D_CHICKEN3,
5228 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5229
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005230 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005231 I915_WRITE(IVB_CHICKEN3,
5232 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5233 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5234
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005235 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07005236 if (IS_IVB_GT1(dev))
5237 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
5238 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5239 else
5240 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1_GT2,
5241 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5242
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005243 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005244 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5245 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5246
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005247 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005248 I915_WRITE(GEN7_L3CNTLREG1,
5249 GEN7_WA_FOR_GEN7_L3_CONTROL);
5250 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07005251 GEN7_WA_L3_CHICKEN_MODE);
5252 if (IS_IVB_GT1(dev))
5253 I915_WRITE(GEN7_ROW_CHICKEN2,
5254 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5255 else
5256 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
5257 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5258
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005259
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005260 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05005261 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5262 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5263
Jesse Barnes0f846f82012-06-14 11:04:47 -07005264 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5265 * gating disable must be set. Failure to set it results in
5266 * flickering pixels due to Z write ordering failures after
5267 * some amount of runtime in the Mesa "fire" demo, and Unigine
5268 * Sanctuary and Tropics, and apparently anything else with
5269 * alpha test or pixel discard.
5270 *
5271 * According to the spec, bit 11 (RCCUNIT) must also be set,
5272 * but we didn't debug actual testcases to find it out.
5273 *
5274 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005275 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005276 */
5277 I915_WRITE(GEN6_UCGCTL2,
5278 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5279 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5280
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005281 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005282 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5283 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5284 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5285
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005286 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005287
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005288 /* WaVSRefCountFullforceMissDisable:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005289 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02005290
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005291 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02005292 I915_WRITE(CACHE_MODE_1,
5293 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07005294
5295 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
5296 snpcr &= ~GEN6_MBC_SNPCR_MASK;
5297 snpcr |= GEN6_MBC_SNPCR_MED;
5298 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005299
Ben Widawskyab5c6082013-04-05 13:12:41 -07005300 if (!HAS_PCH_NOP(dev))
5301 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005302
5303 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005304}
5305
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005306static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005307{
5308 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005309
Ville Syrjäläd7fe0cc2013-05-21 18:01:50 +03005310 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005311
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005312 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05005313 I915_WRITE(_3D_CHICKEN3,
5314 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5315
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005316 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005317 I915_WRITE(IVB_CHICKEN3,
5318 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5319 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5320
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005321 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07005322 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08005323 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
5324 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07005325
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005326 /* Apply the WaDisableRHWOOptimizationForRenderHang:vlv workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005327 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5328 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5329
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005330 /* WaApplyL3ControlAndL3ChickenMode:vlv */
Jesse Barnesd0cf5ea2012-10-25 12:15:41 -07005331 I915_WRITE(GEN7_L3CNTLREG1, I915_READ(GEN7_L3CNTLREG1) | GEN7_L3AGDIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005332 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, GEN7_WA_L3_CHICKEN_MODE);
5333
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005334 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05005335 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5336 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5337
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005338 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07005339 I915_WRITE(GEN7_ROW_CHICKEN2,
5340 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5341
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005342 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005343 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5344 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5345 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5346
Jesse Barnes0f846f82012-06-14 11:04:47 -07005347 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5348 * gating disable must be set. Failure to set it results in
5349 * flickering pixels due to Z write ordering failures after
5350 * some amount of runtime in the Mesa "fire" demo, and Unigine
5351 * Sanctuary and Tropics, and apparently anything else with
5352 * alpha test or pixel discard.
5353 *
5354 * According to the spec, bit 11 (RCCUNIT) must also be set,
5355 * but we didn't debug actual testcases to find it out.
5356 *
5357 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005358 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005359 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005360 * Also apply WaDisableVDSUnitClockGating:vlv and
5361 * WaDisableRCPBUnitClockGating:vlv.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005362 */
5363 I915_WRITE(GEN6_UCGCTL2,
5364 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes6edaa7f2012-06-14 11:04:49 -07005365 GEN7_TDLUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes0f846f82012-06-14 11:04:47 -07005366 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5367 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5368 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5369
Jesse Barnese3f33d42012-06-14 11:04:50 -07005370 I915_WRITE(GEN7_UCGCTL4, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
5371
Ville Syrjäläe0d8d592013-06-12 22:11:18 +03005372 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005373
Daniel Vetter6b26c862012-04-24 14:04:12 +02005374 I915_WRITE(CACHE_MODE_1,
5375 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07005376
5377 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005378 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07005379 * Disable clock gating on th GCFG unit to prevent a delay
5380 * in the reporting of vblank events.
5381 */
Jesse Barnes4e8c84a2013-03-08 10:45:54 -08005382 I915_WRITE(VLV_GUNIT_CLOCK_GATE, 0xffffffff);
5383
5384 /* Conservative clock gating settings for now */
5385 I915_WRITE(0x9400, 0xffffffff);
5386 I915_WRITE(0x9404, 0xffffffff);
5387 I915_WRITE(0x9408, 0xffffffff);
5388 I915_WRITE(0x940c, 0xffffffff);
5389 I915_WRITE(0x9410, 0xffffffff);
5390 I915_WRITE(0x9414, 0xffffffff);
5391 I915_WRITE(0x9418, 0xffffffff);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005392}
5393
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005394static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005395{
5396 struct drm_i915_private *dev_priv = dev->dev_private;
5397 uint32_t dspclk_gate;
5398
5399 I915_WRITE(RENCLK_GATE_D1, 0);
5400 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5401 GS_UNIT_CLOCK_GATE_DISABLE |
5402 CL_UNIT_CLOCK_GATE_DISABLE);
5403 I915_WRITE(RAMCLK_GATE_D, 0);
5404 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5405 OVRUNIT_CLOCK_GATE_DISABLE |
5406 OVCUNIT_CLOCK_GATE_DISABLE;
5407 if (IS_GM45(dev))
5408 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5409 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02005410
5411 /* WaDisableRenderCachePipelinedFlush */
5412 I915_WRITE(CACHE_MODE_0,
5413 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03005414
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005415 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005416}
5417
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005418static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005419{
5420 struct drm_i915_private *dev_priv = dev->dev_private;
5421
5422 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5423 I915_WRITE(RENCLK_GATE_D2, 0);
5424 I915_WRITE(DSPCLK_GATE_D, 0);
5425 I915_WRITE(RAMCLK_GATE_D, 0);
5426 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005427 I915_WRITE(MI_ARB_STATE,
5428 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005429}
5430
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005431static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005432{
5433 struct drm_i915_private *dev_priv = dev->dev_private;
5434
5435 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5436 I965_RCC_CLOCK_GATE_DISABLE |
5437 I965_RCPB_CLOCK_GATE_DISABLE |
5438 I965_ISC_CLOCK_GATE_DISABLE |
5439 I965_FBC_CLOCK_GATE_DISABLE);
5440 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005441 I915_WRITE(MI_ARB_STATE,
5442 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005443}
5444
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005445static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005446{
5447 struct drm_i915_private *dev_priv = dev->dev_private;
5448 u32 dstate = I915_READ(D_STATE);
5449
5450 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5451 DSTATE_DOT_CLOCK_GATING;
5452 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01005453
5454 if (IS_PINEVIEW(dev))
5455 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02005456
5457 /* IIR "flip pending" means done if this bit is set */
5458 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005459}
5460
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005461static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005462{
5463 struct drm_i915_private *dev_priv = dev->dev_private;
5464
5465 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5466}
5467
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005468static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005469{
5470 struct drm_i915_private *dev_priv = dev->dev_private;
5471
5472 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5473}
5474
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005475void intel_init_clock_gating(struct drm_device *dev)
5476{
5477 struct drm_i915_private *dev_priv = dev->dev_private;
5478
5479 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005480}
5481
Imre Deak7d708ee2013-04-17 14:04:50 +03005482void intel_suspend_hw(struct drm_device *dev)
5483{
5484 if (HAS_PCH_LPT(dev))
5485 lpt_suspend_hw(dev);
5486}
5487
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005488/**
5489 * We should only use the power well if we explicitly asked the hardware to
5490 * enable it, so check if it's enabled and also check if we've requested it to
5491 * be enabled.
5492 */
Paulo Zanonib97186f2013-05-03 12:15:36 -03005493bool intel_display_power_enabled(struct drm_device *dev,
5494 enum intel_display_power_domain domain)
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005495{
5496 struct drm_i915_private *dev_priv = dev->dev_private;
5497
Paulo Zanonib97186f2013-05-03 12:15:36 -03005498 if (!HAS_POWER_WELL(dev))
5499 return true;
5500
5501 switch (domain) {
5502 case POWER_DOMAIN_PIPE_A:
5503 case POWER_DOMAIN_TRANSCODER_EDP:
5504 return true;
Ville Syrjäläcdf8dd72013-09-16 17:38:30 +03005505 case POWER_DOMAIN_VGA:
Paulo Zanonib97186f2013-05-03 12:15:36 -03005506 case POWER_DOMAIN_PIPE_B:
5507 case POWER_DOMAIN_PIPE_C:
5508 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
5509 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
5510 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
5511 case POWER_DOMAIN_TRANSCODER_A:
5512 case POWER_DOMAIN_TRANSCODER_B:
5513 case POWER_DOMAIN_TRANSCODER_C:
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005514 return I915_READ(HSW_PWR_WELL_DRIVER) ==
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005515 (HSW_PWR_WELL_ENABLE_REQUEST | HSW_PWR_WELL_STATE_ENABLED);
Paulo Zanonib97186f2013-05-03 12:15:36 -03005516 default:
5517 BUG();
5518 }
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005519}
5520
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005521static void __intel_set_power_well(struct drm_device *dev, bool enable)
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005522{
5523 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonifa42e232013-01-25 16:59:11 -02005524 bool is_enabled, enable_requested;
5525 uint32_t tmp;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005526
Paulo Zanonifa42e232013-01-25 16:59:11 -02005527 tmp = I915_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005528 is_enabled = tmp & HSW_PWR_WELL_STATE_ENABLED;
5529 enable_requested = tmp & HSW_PWR_WELL_ENABLE_REQUEST;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005530
Paulo Zanonifa42e232013-01-25 16:59:11 -02005531 if (enable) {
5532 if (!enable_requested)
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005533 I915_WRITE(HSW_PWR_WELL_DRIVER,
5534 HSW_PWR_WELL_ENABLE_REQUEST);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005535
Paulo Zanonifa42e232013-01-25 16:59:11 -02005536 if (!is_enabled) {
5537 DRM_DEBUG_KMS("Enabling power well\n");
5538 if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005539 HSW_PWR_WELL_STATE_ENABLED), 20))
Paulo Zanonifa42e232013-01-25 16:59:11 -02005540 DRM_ERROR("Timeout enabling power well\n");
5541 }
5542 } else {
5543 if (enable_requested) {
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005544 unsigned long irqflags;
5545 enum pipe p;
5546
Paulo Zanonifa42e232013-01-25 16:59:11 -02005547 I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005548 POSTING_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanonifa42e232013-01-25 16:59:11 -02005549 DRM_DEBUG_KMS("Requesting to disable the power well\n");
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005550
5551 /*
5552 * After this, the registers on the pipes that are part
5553 * of the power well will become zero, so we have to
5554 * adjust our counters according to that.
5555 *
5556 * FIXME: Should we do this in general in
5557 * drm_vblank_post_modeset?
5558 */
5559 spin_lock_irqsave(&dev->vbl_lock, irqflags);
5560 for_each_pipe(p)
5561 if (p != PIPE_A)
Ville Syrjälä5380e922013-10-04 14:53:36 +03005562 dev->vblank[p].last = 0;
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005563 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005564 }
5565 }
Paulo Zanonifa42e232013-01-25 16:59:11 -02005566}
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005567
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005568static void __intel_power_well_get(struct i915_power_well *power_well)
5569{
5570 if (!power_well->count++)
5571 __intel_set_power_well(power_well->device, true);
5572}
5573
5574static void __intel_power_well_put(struct i915_power_well *power_well)
5575{
5576 WARN_ON(!power_well->count);
5577 if (!--power_well->count)
5578 __intel_set_power_well(power_well->device, false);
5579}
5580
Ville Syrjälä67656252013-09-16 17:38:28 +03005581void intel_display_power_get(struct drm_device *dev,
5582 enum intel_display_power_domain domain)
5583{
5584 struct drm_i915_private *dev_priv = dev->dev_private;
5585 struct i915_power_well *power_well = &dev_priv->power_well;
5586
5587 if (!HAS_POWER_WELL(dev))
5588 return;
5589
5590 switch (domain) {
5591 case POWER_DOMAIN_PIPE_A:
5592 case POWER_DOMAIN_TRANSCODER_EDP:
5593 return;
Ville Syrjäläcdf8dd72013-09-16 17:38:30 +03005594 case POWER_DOMAIN_VGA:
Ville Syrjälä67656252013-09-16 17:38:28 +03005595 case POWER_DOMAIN_PIPE_B:
5596 case POWER_DOMAIN_PIPE_C:
5597 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
5598 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
5599 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
5600 case POWER_DOMAIN_TRANSCODER_A:
5601 case POWER_DOMAIN_TRANSCODER_B:
5602 case POWER_DOMAIN_TRANSCODER_C:
5603 spin_lock_irq(&power_well->lock);
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005604 __intel_power_well_get(power_well);
Ville Syrjälä67656252013-09-16 17:38:28 +03005605 spin_unlock_irq(&power_well->lock);
5606 return;
5607 default:
5608 BUG();
5609 }
5610}
5611
5612void intel_display_power_put(struct drm_device *dev,
5613 enum intel_display_power_domain domain)
5614{
5615 struct drm_i915_private *dev_priv = dev->dev_private;
5616 struct i915_power_well *power_well = &dev_priv->power_well;
5617
5618 if (!HAS_POWER_WELL(dev))
5619 return;
5620
5621 switch (domain) {
5622 case POWER_DOMAIN_PIPE_A:
5623 case POWER_DOMAIN_TRANSCODER_EDP:
5624 return;
Ville Syrjäläcdf8dd72013-09-16 17:38:30 +03005625 case POWER_DOMAIN_VGA:
Ville Syrjälä67656252013-09-16 17:38:28 +03005626 case POWER_DOMAIN_PIPE_B:
5627 case POWER_DOMAIN_PIPE_C:
5628 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
5629 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
5630 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
5631 case POWER_DOMAIN_TRANSCODER_A:
5632 case POWER_DOMAIN_TRANSCODER_B:
5633 case POWER_DOMAIN_TRANSCODER_C:
5634 spin_lock_irq(&power_well->lock);
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005635 __intel_power_well_put(power_well);
Ville Syrjälä67656252013-09-16 17:38:28 +03005636 spin_unlock_irq(&power_well->lock);
5637 return;
5638 default:
5639 BUG();
5640 }
5641}
5642
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005643static struct i915_power_well *hsw_pwr;
5644
5645/* Display audio driver power well request */
5646void i915_request_power_well(void)
5647{
5648 if (WARN_ON(!hsw_pwr))
5649 return;
5650
5651 spin_lock_irq(&hsw_pwr->lock);
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005652 __intel_power_well_get(hsw_pwr);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005653 spin_unlock_irq(&hsw_pwr->lock);
5654}
5655EXPORT_SYMBOL_GPL(i915_request_power_well);
5656
5657/* Display audio driver power well release */
5658void i915_release_power_well(void)
5659{
5660 if (WARN_ON(!hsw_pwr))
5661 return;
5662
5663 spin_lock_irq(&hsw_pwr->lock);
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005664 __intel_power_well_put(hsw_pwr);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005665 spin_unlock_irq(&hsw_pwr->lock);
5666}
5667EXPORT_SYMBOL_GPL(i915_release_power_well);
5668
5669int i915_init_power_well(struct drm_device *dev)
5670{
5671 struct drm_i915_private *dev_priv = dev->dev_private;
5672
5673 hsw_pwr = &dev_priv->power_well;
5674
5675 hsw_pwr->device = dev;
5676 spin_lock_init(&hsw_pwr->lock);
5677 hsw_pwr->count = 0;
5678
5679 return 0;
5680}
5681
5682void i915_remove_power_well(struct drm_device *dev)
5683{
5684 hsw_pwr = NULL;
5685}
5686
5687void intel_set_power_well(struct drm_device *dev, bool enable)
5688{
5689 struct drm_i915_private *dev_priv = dev->dev_private;
5690 struct i915_power_well *power_well = &dev_priv->power_well;
5691
5692 if (!HAS_POWER_WELL(dev))
5693 return;
5694
5695 if (!i915_disable_power_well && !enable)
5696 return;
5697
5698 spin_lock_irq(&power_well->lock);
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005699
5700 /*
5701 * This function will only ever contribute one
5702 * to the power well reference count. i915_request
5703 * is what tracks whether we have or have not
5704 * added the one to the reference count.
5705 */
5706 if (power_well->i915_request == enable)
5707 goto out;
5708
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005709 power_well->i915_request = enable;
5710
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005711 if (enable)
5712 __intel_power_well_get(power_well);
5713 else
5714 __intel_power_well_put(power_well);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005715
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005716 out:
5717 spin_unlock_irq(&power_well->lock);
5718}
5719
Damien Lespiau51340992013-09-28 16:46:56 +01005720static void intel_resume_power_well(struct drm_device *dev)
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005721{
5722 struct drm_i915_private *dev_priv = dev->dev_private;
5723 struct i915_power_well *power_well = &dev_priv->power_well;
5724
5725 if (!HAS_POWER_WELL(dev))
5726 return;
5727
5728 spin_lock_irq(&power_well->lock);
5729 __intel_set_power_well(dev, power_well->count > 0);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005730 spin_unlock_irq(&power_well->lock);
5731}
5732
Paulo Zanonifa42e232013-01-25 16:59:11 -02005733/*
5734 * Starting with Haswell, we have a "Power Down Well" that can be turned off
5735 * when not needed anymore. We have 4 registers that can request the power well
5736 * to be enabled, and it will only be disabled if none of the registers is
5737 * requesting it to be enabled.
5738 */
5739void intel_init_power_well(struct drm_device *dev)
5740{
5741 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005742
Paulo Zanoni86d52df2013-03-06 20:03:18 -03005743 if (!HAS_POWER_WELL(dev))
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005744 return;
5745
Paulo Zanonifa42e232013-01-25 16:59:11 -02005746 /* For now, we need the power well to be always enabled. */
5747 intel_set_power_well(dev, true);
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005748 intel_resume_power_well(dev);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005749
Paulo Zanonifa42e232013-01-25 16:59:11 -02005750 /* We're taking over the BIOS, so clear any requests made by it since
5751 * the driver is in charge now. */
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005752 if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE_REQUEST)
Paulo Zanonifa42e232013-01-25 16:59:11 -02005753 I915_WRITE(HSW_PWR_WELL_BIOS, 0);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005754}
5755
Paulo Zanonic67a4702013-08-19 13:18:09 -03005756/* Disables PC8 so we can use the GMBUS and DP AUX interrupts. */
5757void intel_aux_display_runtime_get(struct drm_i915_private *dev_priv)
5758{
5759 hsw_disable_package_c8(dev_priv);
5760}
5761
5762void intel_aux_display_runtime_put(struct drm_i915_private *dev_priv)
5763{
5764 hsw_enable_package_c8(dev_priv);
5765}
5766
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005767/* Set up chip specific power management-related functions */
5768void intel_init_pm(struct drm_device *dev)
5769{
5770 struct drm_i915_private *dev_priv = dev->dev_private;
5771
5772 if (I915_HAS_FBC(dev)) {
5773 if (HAS_PCH_SPLIT(dev)) {
5774 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
Rodrigo Vivi891348b2013-05-06 19:37:36 -03005775 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Rodrigo Viviabe959c2013-05-06 19:37:33 -03005776 dev_priv->display.enable_fbc =
5777 gen7_enable_fbc;
5778 else
5779 dev_priv->display.enable_fbc =
5780 ironlake_enable_fbc;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005781 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5782 } else if (IS_GM45(dev)) {
5783 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5784 dev_priv->display.enable_fbc = g4x_enable_fbc;
5785 dev_priv->display.disable_fbc = g4x_disable_fbc;
5786 } else if (IS_CRESTLINE(dev)) {
5787 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5788 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5789 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5790 }
5791 /* 855GM needs testing */
5792 }
5793
Daniel Vetterc921aba2012-04-26 23:28:17 +02005794 /* For cxsr */
5795 if (IS_PINEVIEW(dev))
5796 i915_pineview_get_mem_freq(dev);
5797 else if (IS_GEN5(dev))
5798 i915_ironlake_get_mem_freq(dev);
5799
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005800 /* For FIFO watermark updates */
5801 if (HAS_PCH_SPLIT(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005802 intel_setup_wm_latency(dev);
5803
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005804 if (IS_GEN5(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005805 if (dev_priv->wm.pri_latency[1] &&
5806 dev_priv->wm.spr_latency[1] &&
5807 dev_priv->wm.cur_latency[1])
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005808 dev_priv->display.update_wm = ironlake_update_wm;
5809 else {
5810 DRM_DEBUG_KMS("Failed to get proper latency. "
5811 "Disable CxSR\n");
5812 dev_priv->display.update_wm = NULL;
5813 }
5814 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
5815 } else if (IS_GEN6(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005816 if (dev_priv->wm.pri_latency[0] &&
5817 dev_priv->wm.spr_latency[0] &&
5818 dev_priv->wm.cur_latency[0]) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005819 dev_priv->display.update_wm = sandybridge_update_wm;
5820 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5821 } else {
5822 DRM_DEBUG_KMS("Failed to read display plane latency. "
5823 "Disable CxSR\n");
5824 dev_priv->display.update_wm = NULL;
5825 }
5826 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
5827 } else if (IS_IVYBRIDGE(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005828 if (dev_priv->wm.pri_latency[0] &&
5829 dev_priv->wm.spr_latency[0] &&
5830 dev_priv->wm.cur_latency[0]) {
Chris Wilsonc43d0182012-12-11 12:01:42 +00005831 dev_priv->display.update_wm = ivybridge_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005832 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5833 } else {
5834 DRM_DEBUG_KMS("Failed to read display plane latency. "
5835 "Disable CxSR\n");
5836 dev_priv->display.update_wm = NULL;
5837 }
5838 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005839 } else if (IS_HASWELL(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005840 if (dev_priv->wm.pri_latency[0] &&
5841 dev_priv->wm.spr_latency[0] &&
5842 dev_priv->wm.cur_latency[0]) {
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005843 dev_priv->display.update_wm = haswell_update_wm;
Paulo Zanoni526682e2013-05-24 11:59:18 -03005844 dev_priv->display.update_sprite_wm =
5845 haswell_update_sprite_wm;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005846 } else {
5847 DRM_DEBUG_KMS("Failed to read display plane latency. "
5848 "Disable CxSR\n");
5849 dev_priv->display.update_wm = NULL;
5850 }
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005851 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005852 } else
5853 dev_priv->display.update_wm = NULL;
5854 } else if (IS_VALLEYVIEW(dev)) {
5855 dev_priv->display.update_wm = valleyview_update_wm;
5856 dev_priv->display.init_clock_gating =
5857 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005858 } else if (IS_PINEVIEW(dev)) {
5859 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
5860 dev_priv->is_ddr3,
5861 dev_priv->fsb_freq,
5862 dev_priv->mem_freq)) {
5863 DRM_INFO("failed to find known CxSR latency "
5864 "(found ddr%s fsb freq %d, mem freq %d), "
5865 "disabling CxSR\n",
5866 (dev_priv->is_ddr3 == 1) ? "3" : "2",
5867 dev_priv->fsb_freq, dev_priv->mem_freq);
5868 /* Disable CxSR and never update its watermark again */
5869 pineview_disable_cxsr(dev);
5870 dev_priv->display.update_wm = NULL;
5871 } else
5872 dev_priv->display.update_wm = pineview_update_wm;
5873 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5874 } else if (IS_G4X(dev)) {
5875 dev_priv->display.update_wm = g4x_update_wm;
5876 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
5877 } else if (IS_GEN4(dev)) {
5878 dev_priv->display.update_wm = i965_update_wm;
5879 if (IS_CRESTLINE(dev))
5880 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
5881 else if (IS_BROADWATER(dev))
5882 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
5883 } else if (IS_GEN3(dev)) {
5884 dev_priv->display.update_wm = i9xx_update_wm;
5885 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
5886 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5887 } else if (IS_I865G(dev)) {
5888 dev_priv->display.update_wm = i830_update_wm;
5889 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5890 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5891 } else if (IS_I85X(dev)) {
5892 dev_priv->display.update_wm = i9xx_update_wm;
5893 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
5894 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5895 } else {
5896 dev_priv->display.update_wm = i830_update_wm;
5897 dev_priv->display.init_clock_gating = i830_init_clock_gating;
5898 if (IS_845G(dev))
5899 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5900 else
5901 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5902 }
5903}
5904
Ben Widawsky42c05262012-09-26 10:34:00 -07005905int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val)
5906{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005907 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005908
5909 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5910 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
5911 return -EAGAIN;
5912 }
5913
5914 I915_WRITE(GEN6_PCODE_DATA, *val);
5915 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5916
5917 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5918 500)) {
5919 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
5920 return -ETIMEDOUT;
5921 }
5922
5923 *val = I915_READ(GEN6_PCODE_DATA);
5924 I915_WRITE(GEN6_PCODE_DATA, 0);
5925
5926 return 0;
5927}
5928
5929int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val)
5930{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005931 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005932
5933 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5934 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
5935 return -EAGAIN;
5936 }
5937
5938 I915_WRITE(GEN6_PCODE_DATA, val);
5939 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5940
5941 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5942 500)) {
5943 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
5944 return -ETIMEDOUT;
5945 }
5946
5947 I915_WRITE(GEN6_PCODE_DATA, 0);
5948
5949 return 0;
5950}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07005951
Jesse Barnes855ba3b2013-04-17 15:54:57 -07005952int vlv_gpu_freq(int ddr_freq, int val)
5953{
5954 int mult, base;
5955
5956 switch (ddr_freq) {
5957 case 800:
5958 mult = 20;
5959 base = 120;
5960 break;
5961 case 1066:
5962 mult = 22;
5963 base = 133;
5964 break;
5965 case 1333:
5966 mult = 21;
5967 base = 125;
5968 break;
5969 default:
5970 return -1;
5971 }
5972
5973 return ((val - 0xbd) * mult) + base;
5974}
5975
5976int vlv_freq_opcode(int ddr_freq, int val)
5977{
5978 int mult, base;
5979
5980 switch (ddr_freq) {
5981 case 800:
5982 mult = 20;
5983 base = 120;
5984 break;
5985 case 1066:
5986 mult = 22;
5987 base = 133;
5988 break;
5989 case 1333:
5990 mult = 21;
5991 base = 125;
5992 break;
5993 default:
5994 return -1;
5995 }
5996
5997 val /= mult;
5998 val -= base / mult;
5999 val += 0xbd;
6000
6001 if (val > 0xea)
6002 val = 0xea;
6003
6004 return val;
6005}
6006
Chris Wilson907b28c2013-07-19 20:36:52 +01006007void intel_pm_init(struct drm_device *dev)
6008{
6009 struct drm_i915_private *dev_priv = dev->dev_private;
6010
6011 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
6012 intel_gen6_powersave_work);
6013}
6014