blob: b107d25282e32299effa22512ce404329d363930 [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
Chris Wilson3490ea52013-01-07 10:11:40 +000046static bool intel_crtc_active(struct drm_crtc *crtc)
47{
48 /* Be paranoid as we can arrive here with only partial
49 * state retrieved from the hardware during setup.
50 */
51 return to_intel_crtc(crtc)->active && crtc->fb && crtc->mode.clock;
52}
53
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030054static void i8xx_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030055{
56 struct drm_i915_private *dev_priv = dev->dev_private;
57 u32 fbc_ctl;
58
59 /* Disable compression */
60 fbc_ctl = I915_READ(FBC_CONTROL);
61 if ((fbc_ctl & FBC_CTL_EN) == 0)
62 return;
63
64 fbc_ctl &= ~FBC_CTL_EN;
65 I915_WRITE(FBC_CONTROL, fbc_ctl);
66
67 /* Wait for compressing bit to clear */
68 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
69 DRM_DEBUG_KMS("FBC idle timed out\n");
70 return;
71 }
72
73 DRM_DEBUG_KMS("disabled FBC\n");
74}
75
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030076static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030077{
78 struct drm_device *dev = crtc->dev;
79 struct drm_i915_private *dev_priv = dev->dev_private;
80 struct drm_framebuffer *fb = crtc->fb;
81 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
82 struct drm_i915_gem_object *obj = intel_fb->obj;
83 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
84 int cfb_pitch;
85 int plane, i;
86 u32 fbc_ctl, fbc_ctl2;
87
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -070088 cfb_pitch = dev_priv->fbc.size / FBC_LL_SIZE;
Eugeni Dodonov85208be2012-04-16 22:20:34 -030089 if (fb->pitches[0] < cfb_pitch)
90 cfb_pitch = fb->pitches[0];
91
92 /* FBC_CTL wants 64B units */
93 cfb_pitch = (cfb_pitch / 64) - 1;
94 plane = intel_crtc->plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
95
96 /* Clear old tags */
97 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
98 I915_WRITE(FBC_TAG + (i * 4), 0);
99
100 /* Set it up... */
101 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE;
102 fbc_ctl2 |= plane;
103 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
104 I915_WRITE(FBC_FENCE_OFF, crtc->y);
105
106 /* enable it... */
107 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
108 if (IS_I945GM(dev))
109 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
110 fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
111 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
112 fbc_ctl |= obj->fence_reg;
113 I915_WRITE(FBC_CONTROL, fbc_ctl);
114
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300115 DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c, ",
116 cfb_pitch, crtc->y, plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300117}
118
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300119static bool i8xx_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300120{
121 struct drm_i915_private *dev_priv = dev->dev_private;
122
123 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
124}
125
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300126static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300127{
128 struct drm_device *dev = crtc->dev;
129 struct drm_i915_private *dev_priv = dev->dev_private;
130 struct drm_framebuffer *fb = crtc->fb;
131 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
132 struct drm_i915_gem_object *obj = intel_fb->obj;
133 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
134 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
135 unsigned long stall_watermark = 200;
136 u32 dpfc_ctl;
137
138 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
139 dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg;
140 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
141
142 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
143 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
144 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
145 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
146
147 /* enable it... */
148 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
149
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300150 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300151}
152
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300153static void g4x_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300154{
155 struct drm_i915_private *dev_priv = dev->dev_private;
156 u32 dpfc_ctl;
157
158 /* Disable compression */
159 dpfc_ctl = I915_READ(DPFC_CONTROL);
160 if (dpfc_ctl & DPFC_CTL_EN) {
161 dpfc_ctl &= ~DPFC_CTL_EN;
162 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
163
164 DRM_DEBUG_KMS("disabled FBC\n");
165 }
166}
167
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300168static bool g4x_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300169{
170 struct drm_i915_private *dev_priv = dev->dev_private;
171
172 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
173}
174
175static void sandybridge_blit_fbc_update(struct drm_device *dev)
176{
177 struct drm_i915_private *dev_priv = dev->dev_private;
178 u32 blt_ecoskpd;
179
180 /* Make sure blitter notifies FBC of writes */
181 gen6_gt_force_wake_get(dev_priv);
182 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
183 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
184 GEN6_BLITTER_LOCK_SHIFT;
185 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
186 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
187 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
188 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
189 GEN6_BLITTER_LOCK_SHIFT);
190 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
191 POSTING_READ(GEN6_BLITTER_ECOSKPD);
192 gen6_gt_force_wake_put(dev_priv);
193}
194
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300195static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300196{
197 struct drm_device *dev = crtc->dev;
198 struct drm_i915_private *dev_priv = dev->dev_private;
199 struct drm_framebuffer *fb = crtc->fb;
200 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
201 struct drm_i915_gem_object *obj = intel_fb->obj;
202 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
203 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
204 unsigned long stall_watermark = 200;
205 u32 dpfc_ctl;
206
207 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
208 dpfc_ctl &= DPFC_RESERVED;
209 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
210 /* Set persistent mode for front-buffer rendering, ala X. */
211 dpfc_ctl |= DPFC_CTL_PERSISTENT_MODE;
212 dpfc_ctl |= (DPFC_CTL_FENCE_EN | obj->fence_reg);
213 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
214
215 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
216 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
217 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
218 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700219 I915_WRITE(ILK_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj) | ILK_FBC_RT_VALID);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300220 /* enable it... */
221 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
222
223 if (IS_GEN6(dev)) {
224 I915_WRITE(SNB_DPFC_CTL_SA,
225 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
226 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
227 sandybridge_blit_fbc_update(dev);
228 }
229
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300230 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300231}
232
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300233static void ironlake_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300234{
235 struct drm_i915_private *dev_priv = dev->dev_private;
236 u32 dpfc_ctl;
237
238 /* Disable compression */
239 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
240 if (dpfc_ctl & DPFC_CTL_EN) {
241 dpfc_ctl &= ~DPFC_CTL_EN;
242 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
243
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300244 if (IS_IVYBRIDGE(dev))
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100245 /* WaFbcDisableDpfcClockGating:ivb */
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300246 I915_WRITE(ILK_DSPCLK_GATE_D,
247 I915_READ(ILK_DSPCLK_GATE_D) &
248 ~ILK_DPFCUNIT_CLOCK_GATE_DISABLE);
249
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300250 if (IS_HASWELL(dev))
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100251 /* WaFbcDisableDpfcClockGating:hsw */
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300252 I915_WRITE(HSW_CLKGATE_DISABLE_PART_1,
253 I915_READ(HSW_CLKGATE_DISABLE_PART_1) &
254 ~HSW_DPFC_GATING_DISABLE);
255
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300256 DRM_DEBUG_KMS("disabled FBC\n");
257 }
258}
259
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300260static bool ironlake_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300261{
262 struct drm_i915_private *dev_priv = dev->dev_private;
263
264 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
265}
266
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300267static void gen7_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
268{
269 struct drm_device *dev = crtc->dev;
270 struct drm_i915_private *dev_priv = dev->dev_private;
271 struct drm_framebuffer *fb = crtc->fb;
272 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
273 struct drm_i915_gem_object *obj = intel_fb->obj;
274 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
275
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700276 I915_WRITE(IVB_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj));
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300277
278 I915_WRITE(ILK_DPFC_CONTROL, DPFC_CTL_EN | DPFC_CTL_LIMIT_1X |
279 IVB_DPFC_CTL_FENCE_EN |
280 intel_crtc->plane << IVB_DPFC_CTL_PLANE_SHIFT);
281
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300282 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100283 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300284 I915_WRITE(ILK_DISPLAY_CHICKEN1, ILK_FBCQ_DIS);
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100285 /* WaFbcDisableDpfcClockGating:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300286 I915_WRITE(ILK_DSPCLK_GATE_D,
287 I915_READ(ILK_DSPCLK_GATE_D) |
288 ILK_DPFCUNIT_CLOCK_GATE_DISABLE);
Rodrigo Vivi28554162013-05-06 19:37:37 -0300289 } else {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100290 /* WaFbcAsynchFlipDisableFbcQueue:hsw */
Rodrigo Vivi28554162013-05-06 19:37:37 -0300291 I915_WRITE(HSW_PIPE_SLICE_CHICKEN_1(intel_crtc->pipe),
292 HSW_BYPASS_FBC_QUEUE);
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100293 /* WaFbcDisableDpfcClockGating:hsw */
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300294 I915_WRITE(HSW_CLKGATE_DISABLE_PART_1,
295 I915_READ(HSW_CLKGATE_DISABLE_PART_1) |
296 HSW_DPFC_GATING_DISABLE);
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300297 }
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300298
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300299 I915_WRITE(SNB_DPFC_CTL_SA,
300 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
301 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
302
303 sandybridge_blit_fbc_update(dev);
304
305 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
306}
307
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300308bool intel_fbc_enabled(struct drm_device *dev)
309{
310 struct drm_i915_private *dev_priv = dev->dev_private;
311
312 if (!dev_priv->display.fbc_enabled)
313 return false;
314
315 return dev_priv->display.fbc_enabled(dev);
316}
317
318static void intel_fbc_work_fn(struct work_struct *__work)
319{
320 struct intel_fbc_work *work =
321 container_of(to_delayed_work(__work),
322 struct intel_fbc_work, work);
323 struct drm_device *dev = work->crtc->dev;
324 struct drm_i915_private *dev_priv = dev->dev_private;
325
326 mutex_lock(&dev->struct_mutex);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700327 if (work == dev_priv->fbc.fbc_work) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300328 /* Double check that we haven't switched fb without cancelling
329 * the prior work.
330 */
331 if (work->crtc->fb == work->fb) {
332 dev_priv->display.enable_fbc(work->crtc,
333 work->interval);
334
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700335 dev_priv->fbc.plane = to_intel_crtc(work->crtc)->plane;
336 dev_priv->fbc.fb_id = work->crtc->fb->base.id;
337 dev_priv->fbc.y = work->crtc->y;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300338 }
339
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700340 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300341 }
342 mutex_unlock(&dev->struct_mutex);
343
344 kfree(work);
345}
346
347static void intel_cancel_fbc_work(struct drm_i915_private *dev_priv)
348{
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700349 if (dev_priv->fbc.fbc_work == NULL)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300350 return;
351
352 DRM_DEBUG_KMS("cancelling pending FBC enable\n");
353
354 /* Synchronisation is provided by struct_mutex and checking of
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700355 * dev_priv->fbc.fbc_work, so we can perform the cancellation
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300356 * entirely asynchronously.
357 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700358 if (cancel_delayed_work(&dev_priv->fbc.fbc_work->work))
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300359 /* tasklet was killed before being run, clean up */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700360 kfree(dev_priv->fbc.fbc_work);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300361
362 /* Mark the work as no longer wanted so that if it does
363 * wake-up (because the work was already running and waiting
364 * for our mutex), it will discover that is no longer
365 * necessary to run.
366 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700367 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300368}
369
Damien Lespiaub63fb442013-06-24 16:22:01 +0100370static void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300371{
372 struct intel_fbc_work *work;
373 struct drm_device *dev = crtc->dev;
374 struct drm_i915_private *dev_priv = dev->dev_private;
375
376 if (!dev_priv->display.enable_fbc)
377 return;
378
379 intel_cancel_fbc_work(dev_priv);
380
381 work = kzalloc(sizeof *work, GFP_KERNEL);
382 if (work == NULL) {
Paulo Zanoni6cdcb5e2013-06-12 17:27:29 -0300383 DRM_ERROR("Failed to allocate FBC work structure\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300384 dev_priv->display.enable_fbc(crtc, interval);
385 return;
386 }
387
388 work->crtc = crtc;
389 work->fb = crtc->fb;
390 work->interval = interval;
391 INIT_DELAYED_WORK(&work->work, intel_fbc_work_fn);
392
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700393 dev_priv->fbc.fbc_work = work;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300394
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300395 /* Delay the actual enabling to let pageflipping cease and the
396 * display to settle before starting the compression. Note that
397 * this delay also serves a second purpose: it allows for a
398 * vblank to pass after disabling the FBC before we attempt
399 * to modify the control registers.
400 *
401 * A more complicated solution would involve tracking vblanks
402 * following the termination of the page-flipping sequence
403 * and indeed performing the enable as a co-routine and not
404 * waiting synchronously upon the vblank.
Damien Lespiau7457d612013-06-07 17:41:07 +0100405 *
406 * WaFbcWaitForVBlankBeforeEnable:ilk,snb
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300407 */
408 schedule_delayed_work(&work->work, msecs_to_jiffies(50));
409}
410
411void intel_disable_fbc(struct drm_device *dev)
412{
413 struct drm_i915_private *dev_priv = dev->dev_private;
414
415 intel_cancel_fbc_work(dev_priv);
416
417 if (!dev_priv->display.disable_fbc)
418 return;
419
420 dev_priv->display.disable_fbc(dev);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700421 dev_priv->fbc.plane = -1;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300422}
423
Chris Wilson29ebf902013-07-27 17:23:55 +0100424static bool set_no_fbc_reason(struct drm_i915_private *dev_priv,
425 enum no_fbc_reason reason)
426{
427 if (dev_priv->fbc.no_fbc_reason == reason)
428 return false;
429
430 dev_priv->fbc.no_fbc_reason = reason;
431 return true;
432}
433
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300434/**
435 * intel_update_fbc - enable/disable FBC as needed
436 * @dev: the drm_device
437 *
438 * Set up the framebuffer compression hardware at mode set time. We
439 * enable it if possible:
440 * - plane A only (on pre-965)
441 * - no pixel mulitply/line duplication
442 * - no alpha buffer discard
443 * - no dual wide
Paulo Zanonif85da862013-06-04 16:53:39 -0300444 * - framebuffer <= max_hdisplay in width, max_vdisplay in height
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300445 *
446 * We can't assume that any compression will take place (worst case),
447 * so the compressed buffer has to be the same size as the uncompressed
448 * one. It also must reside (along with the line length buffer) in
449 * stolen memory.
450 *
451 * We need to enable/disable FBC on a global basis.
452 */
453void intel_update_fbc(struct drm_device *dev)
454{
455 struct drm_i915_private *dev_priv = dev->dev_private;
456 struct drm_crtc *crtc = NULL, *tmp_crtc;
457 struct intel_crtc *intel_crtc;
458 struct drm_framebuffer *fb;
459 struct intel_framebuffer *intel_fb;
460 struct drm_i915_gem_object *obj;
Paulo Zanonif85da862013-06-04 16:53:39 -0300461 unsigned int max_hdisplay, max_vdisplay;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300462
Chris Wilson29ebf902013-07-27 17:23:55 +0100463 if (!I915_HAS_FBC(dev)) {
464 set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300465 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100466 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300467
Chris Wilson29ebf902013-07-27 17:23:55 +0100468 if (!i915_powersave) {
469 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
470 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300471 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100472 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300473
474 /*
475 * If FBC is already on, we just have to verify that we can
476 * keep it that way...
477 * Need to disable if:
478 * - more than one pipe is active
479 * - changing FBC params (stride, fence, mode)
480 * - new fb is too large to fit in compressed buffer
481 * - going to an unsupported config (interlace, pixel multiply, etc.)
482 */
483 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000484 if (intel_crtc_active(tmp_crtc) &&
485 !to_intel_crtc(tmp_crtc)->primary_disabled) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300486 if (crtc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100487 if (set_no_fbc_reason(dev_priv, FBC_MULTIPLE_PIPES))
488 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300489 goto out_disable;
490 }
491 crtc = tmp_crtc;
492 }
493 }
494
495 if (!crtc || crtc->fb == NULL) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100496 if (set_no_fbc_reason(dev_priv, FBC_NO_OUTPUT))
497 DRM_DEBUG_KMS("no output, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300498 goto out_disable;
499 }
500
501 intel_crtc = to_intel_crtc(crtc);
502 fb = crtc->fb;
503 intel_fb = to_intel_framebuffer(fb);
504 obj = intel_fb->obj;
505
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100506 if (i915_enable_fbc < 0 &&
507 INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100508 if (set_no_fbc_reason(dev_priv, FBC_CHIP_DEFAULT))
509 DRM_DEBUG_KMS("disabled per chip default\n");
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100510 goto out_disable;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300511 }
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100512 if (!i915_enable_fbc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100513 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
514 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300515 goto out_disable;
516 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300517 if ((crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) ||
518 (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100519 if (set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED_MODE))
520 DRM_DEBUG_KMS("mode incompatible with compression, "
521 "disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300522 goto out_disable;
523 }
Paulo Zanonif85da862013-06-04 16:53:39 -0300524
525 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
526 max_hdisplay = 4096;
527 max_vdisplay = 2048;
528 } else {
529 max_hdisplay = 2048;
530 max_vdisplay = 1536;
531 }
532 if ((crtc->mode.hdisplay > max_hdisplay) ||
533 (crtc->mode.vdisplay > max_vdisplay)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100534 if (set_no_fbc_reason(dev_priv, FBC_MODE_TOO_LARGE))
535 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300536 goto out_disable;
537 }
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300538 if ((IS_I915GM(dev) || IS_I945GM(dev) || IS_HASWELL(dev)) &&
539 intel_crtc->plane != 0) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100540 if (set_no_fbc_reason(dev_priv, FBC_BAD_PLANE))
541 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300542 goto out_disable;
543 }
544
545 /* The use of a CPU fence is mandatory in order to detect writes
546 * by the CPU to the scanout and trigger updates to the FBC.
547 */
548 if (obj->tiling_mode != I915_TILING_X ||
549 obj->fence_reg == I915_FENCE_REG_NONE) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100550 if (set_no_fbc_reason(dev_priv, FBC_NOT_TILED))
551 DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300552 goto out_disable;
553 }
554
555 /* If the kernel debugger is active, always disable compression */
556 if (in_dbg_master())
557 goto out_disable;
558
Chris Wilson11be49e2012-11-15 11:32:20 +0000559 if (i915_gem_stolen_setup_compression(dev, intel_fb->obj->base.size)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100560 if (set_no_fbc_reason(dev_priv, FBC_STOLEN_TOO_SMALL))
561 DRM_DEBUG_KMS("framebuffer too large, disabling compression\n");
Chris Wilson11be49e2012-11-15 11:32:20 +0000562 goto out_disable;
563 }
564
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300565 /* If the scanout has not changed, don't modify the FBC settings.
566 * Note that we make the fundamental assumption that the fb->obj
567 * cannot be unpinned (and have its GTT offset and fence revoked)
568 * without first being decoupled from the scanout and FBC disabled.
569 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700570 if (dev_priv->fbc.plane == intel_crtc->plane &&
571 dev_priv->fbc.fb_id == fb->base.id &&
572 dev_priv->fbc.y == crtc->y)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300573 return;
574
575 if (intel_fbc_enabled(dev)) {
576 /* We update FBC along two paths, after changing fb/crtc
577 * configuration (modeswitching) and after page-flipping
578 * finishes. For the latter, we know that not only did
579 * we disable the FBC at the start of the page-flip
580 * sequence, but also more than one vblank has passed.
581 *
582 * For the former case of modeswitching, it is possible
583 * to switch between two FBC valid configurations
584 * instantaneously so we do need to disable the FBC
585 * before we can modify its control registers. We also
586 * have to wait for the next vblank for that to take
587 * effect. However, since we delay enabling FBC we can
588 * assume that a vblank has passed since disabling and
589 * that we can safely alter the registers in the deferred
590 * callback.
591 *
592 * In the scenario that we go from a valid to invalid
593 * and then back to valid FBC configuration we have
594 * no strict enforcement that a vblank occurred since
595 * disabling the FBC. However, along all current pipe
596 * disabling paths we do need to wait for a vblank at
597 * some point. And we wait before enabling FBC anyway.
598 */
599 DRM_DEBUG_KMS("disabling active FBC for update\n");
600 intel_disable_fbc(dev);
601 }
602
603 intel_enable_fbc(crtc, 500);
Chris Wilson29ebf902013-07-27 17:23:55 +0100604 dev_priv->fbc.no_fbc_reason = FBC_OK;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300605 return;
606
607out_disable:
608 /* Multiple disables should be harmless */
609 if (intel_fbc_enabled(dev)) {
610 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
611 intel_disable_fbc(dev);
612 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000613 i915_gem_stolen_cleanup_compression(dev);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300614}
615
Daniel Vetterc921aba2012-04-26 23:28:17 +0200616static void i915_pineview_get_mem_freq(struct drm_device *dev)
617{
618 drm_i915_private_t *dev_priv = dev->dev_private;
619 u32 tmp;
620
621 tmp = I915_READ(CLKCFG);
622
623 switch (tmp & CLKCFG_FSB_MASK) {
624 case CLKCFG_FSB_533:
625 dev_priv->fsb_freq = 533; /* 133*4 */
626 break;
627 case CLKCFG_FSB_800:
628 dev_priv->fsb_freq = 800; /* 200*4 */
629 break;
630 case CLKCFG_FSB_667:
631 dev_priv->fsb_freq = 667; /* 167*4 */
632 break;
633 case CLKCFG_FSB_400:
634 dev_priv->fsb_freq = 400; /* 100*4 */
635 break;
636 }
637
638 switch (tmp & CLKCFG_MEM_MASK) {
639 case CLKCFG_MEM_533:
640 dev_priv->mem_freq = 533;
641 break;
642 case CLKCFG_MEM_667:
643 dev_priv->mem_freq = 667;
644 break;
645 case CLKCFG_MEM_800:
646 dev_priv->mem_freq = 800;
647 break;
648 }
649
650 /* detect pineview DDR3 setting */
651 tmp = I915_READ(CSHRDDR3CTL);
652 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
653}
654
655static void i915_ironlake_get_mem_freq(struct drm_device *dev)
656{
657 drm_i915_private_t *dev_priv = dev->dev_private;
658 u16 ddrpll, csipll;
659
660 ddrpll = I915_READ16(DDRMPLL1);
661 csipll = I915_READ16(CSIPLL0);
662
663 switch (ddrpll & 0xff) {
664 case 0xc:
665 dev_priv->mem_freq = 800;
666 break;
667 case 0x10:
668 dev_priv->mem_freq = 1066;
669 break;
670 case 0x14:
671 dev_priv->mem_freq = 1333;
672 break;
673 case 0x18:
674 dev_priv->mem_freq = 1600;
675 break;
676 default:
677 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
678 ddrpll & 0xff);
679 dev_priv->mem_freq = 0;
680 break;
681 }
682
Daniel Vetter20e4d402012-08-08 23:35:39 +0200683 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200684
685 switch (csipll & 0x3ff) {
686 case 0x00c:
687 dev_priv->fsb_freq = 3200;
688 break;
689 case 0x00e:
690 dev_priv->fsb_freq = 3733;
691 break;
692 case 0x010:
693 dev_priv->fsb_freq = 4266;
694 break;
695 case 0x012:
696 dev_priv->fsb_freq = 4800;
697 break;
698 case 0x014:
699 dev_priv->fsb_freq = 5333;
700 break;
701 case 0x016:
702 dev_priv->fsb_freq = 5866;
703 break;
704 case 0x018:
705 dev_priv->fsb_freq = 6400;
706 break;
707 default:
708 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
709 csipll & 0x3ff);
710 dev_priv->fsb_freq = 0;
711 break;
712 }
713
714 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200715 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200716 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200717 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200718 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200719 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200720 }
721}
722
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300723static const struct cxsr_latency cxsr_latency_table[] = {
724 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
725 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
726 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
727 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
728 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
729
730 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
731 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
732 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
733 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
734 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
735
736 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
737 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
738 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
739 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
740 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
741
742 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
743 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
744 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
745 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
746 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
747
748 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
749 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
750 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
751 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
752 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
753
754 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
755 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
756 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
757 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
758 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
759};
760
Daniel Vetter63c62272012-04-21 23:17:55 +0200761static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300762 int is_ddr3,
763 int fsb,
764 int mem)
765{
766 const struct cxsr_latency *latency;
767 int i;
768
769 if (fsb == 0 || mem == 0)
770 return NULL;
771
772 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
773 latency = &cxsr_latency_table[i];
774 if (is_desktop == latency->is_desktop &&
775 is_ddr3 == latency->is_ddr3 &&
776 fsb == latency->fsb_freq && mem == latency->mem_freq)
777 return latency;
778 }
779
780 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
781
782 return NULL;
783}
784
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300785static void pineview_disable_cxsr(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300786{
787 struct drm_i915_private *dev_priv = dev->dev_private;
788
789 /* deactivate cxsr */
790 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
791}
792
793/*
794 * Latency for FIFO fetches is dependent on several factors:
795 * - memory configuration (speed, channels)
796 * - chipset
797 * - current MCH state
798 * It can be fairly high in some situations, so here we assume a fairly
799 * pessimal value. It's a tradeoff between extra memory fetches (if we
800 * set this value too high, the FIFO will fetch frequently to stay full)
801 * and power consumption (set it too low to save power and we might see
802 * FIFO underruns and display "flicker").
803 *
804 * A value of 5us seems to be a good balance; safe for very low end
805 * platforms but not overly aggressive on lower latency configs.
806 */
807static const int latency_ns = 5000;
808
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300809static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300810{
811 struct drm_i915_private *dev_priv = dev->dev_private;
812 uint32_t dsparb = I915_READ(DSPARB);
813 int size;
814
815 size = dsparb & 0x7f;
816 if (plane)
817 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
818
819 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
820 plane ? "B" : "A", size);
821
822 return size;
823}
824
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300825static int i85x_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300826{
827 struct drm_i915_private *dev_priv = dev->dev_private;
828 uint32_t dsparb = I915_READ(DSPARB);
829 int size;
830
831 size = dsparb & 0x1ff;
832 if (plane)
833 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
834 size >>= 1; /* Convert to cachelines */
835
836 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
837 plane ? "B" : "A", size);
838
839 return size;
840}
841
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300842static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300843{
844 struct drm_i915_private *dev_priv = dev->dev_private;
845 uint32_t dsparb = I915_READ(DSPARB);
846 int size;
847
848 size = dsparb & 0x7f;
849 size >>= 2; /* Convert to cachelines */
850
851 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
852 plane ? "B" : "A",
853 size);
854
855 return size;
856}
857
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300858static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300859{
860 struct drm_i915_private *dev_priv = dev->dev_private;
861 uint32_t dsparb = I915_READ(DSPARB);
862 int size;
863
864 size = dsparb & 0x7f;
865 size >>= 1; /* Convert to cachelines */
866
867 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
868 plane ? "B" : "A", size);
869
870 return size;
871}
872
873/* Pineview has different values for various configs */
874static const struct intel_watermark_params pineview_display_wm = {
875 PINEVIEW_DISPLAY_FIFO,
876 PINEVIEW_MAX_WM,
877 PINEVIEW_DFT_WM,
878 PINEVIEW_GUARD_WM,
879 PINEVIEW_FIFO_LINE_SIZE
880};
881static const struct intel_watermark_params pineview_display_hplloff_wm = {
882 PINEVIEW_DISPLAY_FIFO,
883 PINEVIEW_MAX_WM,
884 PINEVIEW_DFT_HPLLOFF_WM,
885 PINEVIEW_GUARD_WM,
886 PINEVIEW_FIFO_LINE_SIZE
887};
888static const struct intel_watermark_params pineview_cursor_wm = {
889 PINEVIEW_CURSOR_FIFO,
890 PINEVIEW_CURSOR_MAX_WM,
891 PINEVIEW_CURSOR_DFT_WM,
892 PINEVIEW_CURSOR_GUARD_WM,
893 PINEVIEW_FIFO_LINE_SIZE,
894};
895static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
896 PINEVIEW_CURSOR_FIFO,
897 PINEVIEW_CURSOR_MAX_WM,
898 PINEVIEW_CURSOR_DFT_WM,
899 PINEVIEW_CURSOR_GUARD_WM,
900 PINEVIEW_FIFO_LINE_SIZE
901};
902static const struct intel_watermark_params g4x_wm_info = {
903 G4X_FIFO_SIZE,
904 G4X_MAX_WM,
905 G4X_MAX_WM,
906 2,
907 G4X_FIFO_LINE_SIZE,
908};
909static const struct intel_watermark_params g4x_cursor_wm_info = {
910 I965_CURSOR_FIFO,
911 I965_CURSOR_MAX_WM,
912 I965_CURSOR_DFT_WM,
913 2,
914 G4X_FIFO_LINE_SIZE,
915};
916static const struct intel_watermark_params valleyview_wm_info = {
917 VALLEYVIEW_FIFO_SIZE,
918 VALLEYVIEW_MAX_WM,
919 VALLEYVIEW_MAX_WM,
920 2,
921 G4X_FIFO_LINE_SIZE,
922};
923static const struct intel_watermark_params valleyview_cursor_wm_info = {
924 I965_CURSOR_FIFO,
925 VALLEYVIEW_CURSOR_MAX_WM,
926 I965_CURSOR_DFT_WM,
927 2,
928 G4X_FIFO_LINE_SIZE,
929};
930static const struct intel_watermark_params i965_cursor_wm_info = {
931 I965_CURSOR_FIFO,
932 I965_CURSOR_MAX_WM,
933 I965_CURSOR_DFT_WM,
934 2,
935 I915_FIFO_LINE_SIZE,
936};
937static const struct intel_watermark_params i945_wm_info = {
938 I945_FIFO_SIZE,
939 I915_MAX_WM,
940 1,
941 2,
942 I915_FIFO_LINE_SIZE
943};
944static const struct intel_watermark_params i915_wm_info = {
945 I915_FIFO_SIZE,
946 I915_MAX_WM,
947 1,
948 2,
949 I915_FIFO_LINE_SIZE
950};
951static const struct intel_watermark_params i855_wm_info = {
952 I855GM_FIFO_SIZE,
953 I915_MAX_WM,
954 1,
955 2,
956 I830_FIFO_LINE_SIZE
957};
958static const struct intel_watermark_params i830_wm_info = {
959 I830_FIFO_SIZE,
960 I915_MAX_WM,
961 1,
962 2,
963 I830_FIFO_LINE_SIZE
964};
965
966static const struct intel_watermark_params ironlake_display_wm_info = {
967 ILK_DISPLAY_FIFO,
968 ILK_DISPLAY_MAXWM,
969 ILK_DISPLAY_DFTWM,
970 2,
971 ILK_FIFO_LINE_SIZE
972};
973static const struct intel_watermark_params ironlake_cursor_wm_info = {
974 ILK_CURSOR_FIFO,
975 ILK_CURSOR_MAXWM,
976 ILK_CURSOR_DFTWM,
977 2,
978 ILK_FIFO_LINE_SIZE
979};
980static const struct intel_watermark_params ironlake_display_srwm_info = {
981 ILK_DISPLAY_SR_FIFO,
982 ILK_DISPLAY_MAX_SRWM,
983 ILK_DISPLAY_DFT_SRWM,
984 2,
985 ILK_FIFO_LINE_SIZE
986};
987static const struct intel_watermark_params ironlake_cursor_srwm_info = {
988 ILK_CURSOR_SR_FIFO,
989 ILK_CURSOR_MAX_SRWM,
990 ILK_CURSOR_DFT_SRWM,
991 2,
992 ILK_FIFO_LINE_SIZE
993};
994
995static const struct intel_watermark_params sandybridge_display_wm_info = {
996 SNB_DISPLAY_FIFO,
997 SNB_DISPLAY_MAXWM,
998 SNB_DISPLAY_DFTWM,
999 2,
1000 SNB_FIFO_LINE_SIZE
1001};
1002static const struct intel_watermark_params sandybridge_cursor_wm_info = {
1003 SNB_CURSOR_FIFO,
1004 SNB_CURSOR_MAXWM,
1005 SNB_CURSOR_DFTWM,
1006 2,
1007 SNB_FIFO_LINE_SIZE
1008};
1009static const struct intel_watermark_params sandybridge_display_srwm_info = {
1010 SNB_DISPLAY_SR_FIFO,
1011 SNB_DISPLAY_MAX_SRWM,
1012 SNB_DISPLAY_DFT_SRWM,
1013 2,
1014 SNB_FIFO_LINE_SIZE
1015};
1016static const struct intel_watermark_params sandybridge_cursor_srwm_info = {
1017 SNB_CURSOR_SR_FIFO,
1018 SNB_CURSOR_MAX_SRWM,
1019 SNB_CURSOR_DFT_SRWM,
1020 2,
1021 SNB_FIFO_LINE_SIZE
1022};
1023
1024
1025/**
1026 * intel_calculate_wm - calculate watermark level
1027 * @clock_in_khz: pixel clock
1028 * @wm: chip FIFO params
1029 * @pixel_size: display pixel size
1030 * @latency_ns: memory latency for the platform
1031 *
1032 * Calculate the watermark level (the level at which the display plane will
1033 * start fetching from memory again). Each chip has a different display
1034 * FIFO size and allocation, so the caller needs to figure that out and pass
1035 * in the correct intel_watermark_params structure.
1036 *
1037 * As the pixel clock runs, the FIFO will be drained at a rate that depends
1038 * on the pixel size. When it reaches the watermark level, it'll start
1039 * fetching FIFO line sized based chunks from memory until the FIFO fills
1040 * past the watermark point. If the FIFO drains completely, a FIFO underrun
1041 * will occur, and a display engine hang could result.
1042 */
1043static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
1044 const struct intel_watermark_params *wm,
1045 int fifo_size,
1046 int pixel_size,
1047 unsigned long latency_ns)
1048{
1049 long entries_required, wm_size;
1050
1051 /*
1052 * Note: we need to make sure we don't overflow for various clock &
1053 * latency values.
1054 * clocks go from a few thousand to several hundred thousand.
1055 * latency is usually a few thousand
1056 */
1057 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
1058 1000;
1059 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
1060
1061 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
1062
1063 wm_size = fifo_size - (entries_required + wm->guard_size);
1064
1065 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
1066
1067 /* Don't promote wm_size to unsigned... */
1068 if (wm_size > (long)wm->max_wm)
1069 wm_size = wm->max_wm;
1070 if (wm_size <= 0)
1071 wm_size = wm->default_wm;
1072 return wm_size;
1073}
1074
1075static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
1076{
1077 struct drm_crtc *crtc, *enabled = NULL;
1078
1079 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +00001080 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001081 if (enabled)
1082 return NULL;
1083 enabled = crtc;
1084 }
1085 }
1086
1087 return enabled;
1088}
1089
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001090static void pineview_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001091{
1092 struct drm_i915_private *dev_priv = dev->dev_private;
1093 struct drm_crtc *crtc;
1094 const struct cxsr_latency *latency;
1095 u32 reg;
1096 unsigned long wm;
1097
1098 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
1099 dev_priv->fsb_freq, dev_priv->mem_freq);
1100 if (!latency) {
1101 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
1102 pineview_disable_cxsr(dev);
1103 return;
1104 }
1105
1106 crtc = single_enabled_crtc(dev);
1107 if (crtc) {
1108 int clock = crtc->mode.clock;
1109 int pixel_size = crtc->fb->bits_per_pixel / 8;
1110
1111 /* Display SR */
1112 wm = intel_calculate_wm(clock, &pineview_display_wm,
1113 pineview_display_wm.fifo_size,
1114 pixel_size, latency->display_sr);
1115 reg = I915_READ(DSPFW1);
1116 reg &= ~DSPFW_SR_MASK;
1117 reg |= wm << DSPFW_SR_SHIFT;
1118 I915_WRITE(DSPFW1, reg);
1119 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
1120
1121 /* cursor SR */
1122 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
1123 pineview_display_wm.fifo_size,
1124 pixel_size, latency->cursor_sr);
1125 reg = I915_READ(DSPFW3);
1126 reg &= ~DSPFW_CURSOR_SR_MASK;
1127 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
1128 I915_WRITE(DSPFW3, reg);
1129
1130 /* Display HPLL off SR */
1131 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
1132 pineview_display_hplloff_wm.fifo_size,
1133 pixel_size, latency->display_hpll_disable);
1134 reg = I915_READ(DSPFW3);
1135 reg &= ~DSPFW_HPLL_SR_MASK;
1136 reg |= wm & DSPFW_HPLL_SR_MASK;
1137 I915_WRITE(DSPFW3, reg);
1138
1139 /* cursor HPLL off SR */
1140 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
1141 pineview_display_hplloff_wm.fifo_size,
1142 pixel_size, latency->cursor_hpll_disable);
1143 reg = I915_READ(DSPFW3);
1144 reg &= ~DSPFW_HPLL_CURSOR_MASK;
1145 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
1146 I915_WRITE(DSPFW3, reg);
1147 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
1148
1149 /* activate cxsr */
1150 I915_WRITE(DSPFW3,
1151 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
1152 DRM_DEBUG_KMS("Self-refresh is enabled\n");
1153 } else {
1154 pineview_disable_cxsr(dev);
1155 DRM_DEBUG_KMS("Self-refresh is disabled\n");
1156 }
1157}
1158
1159static bool g4x_compute_wm0(struct drm_device *dev,
1160 int plane,
1161 const struct intel_watermark_params *display,
1162 int display_latency_ns,
1163 const struct intel_watermark_params *cursor,
1164 int cursor_latency_ns,
1165 int *plane_wm,
1166 int *cursor_wm)
1167{
1168 struct drm_crtc *crtc;
1169 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
1180 htotal = crtc->mode.htotal;
1181 hdisplay = crtc->mode.hdisplay;
1182 clock = crtc->mode.clock;
1183 pixel_size = crtc->fb->bits_per_pixel / 8;
1184
1185 /* Use the small buffer method to calculate plane watermark */
1186 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
1187 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
1188 if (tlb_miss > 0)
1189 entries += tlb_miss;
1190 entries = DIV_ROUND_UP(entries, display->cacheline_size);
1191 *plane_wm = entries + display->guard_size;
1192 if (*plane_wm > (int)display->max_wm)
1193 *plane_wm = display->max_wm;
1194
1195 /* Use the large buffer method to calculate cursor watermark */
1196 line_time_us = ((htotal * 1000) / clock);
1197 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
1198 entries = line_count * 64 * pixel_size;
1199 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1200 if (tlb_miss > 0)
1201 entries += tlb_miss;
1202 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1203 *cursor_wm = entries + cursor->guard_size;
1204 if (*cursor_wm > (int)cursor->max_wm)
1205 *cursor_wm = (int)cursor->max_wm;
1206
1207 return true;
1208}
1209
1210/*
1211 * Check the wm result.
1212 *
1213 * If any calculated watermark values is larger than the maximum value that
1214 * can be programmed into the associated watermark register, that watermark
1215 * must be disabled.
1216 */
1217static bool g4x_check_srwm(struct drm_device *dev,
1218 int display_wm, int cursor_wm,
1219 const struct intel_watermark_params *display,
1220 const struct intel_watermark_params *cursor)
1221{
1222 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
1223 display_wm, cursor_wm);
1224
1225 if (display_wm > display->max_wm) {
1226 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
1227 display_wm, display->max_wm);
1228 return false;
1229 }
1230
1231 if (cursor_wm > cursor->max_wm) {
1232 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
1233 cursor_wm, cursor->max_wm);
1234 return false;
1235 }
1236
1237 if (!(display_wm || cursor_wm)) {
1238 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
1239 return false;
1240 }
1241
1242 return true;
1243}
1244
1245static bool g4x_compute_srwm(struct drm_device *dev,
1246 int plane,
1247 int latency_ns,
1248 const struct intel_watermark_params *display,
1249 const struct intel_watermark_params *cursor,
1250 int *display_wm, int *cursor_wm)
1251{
1252 struct drm_crtc *crtc;
1253 int hdisplay, htotal, pixel_size, clock;
1254 unsigned long line_time_us;
1255 int line_count, line_size;
1256 int small, large;
1257 int entries;
1258
1259 if (!latency_ns) {
1260 *display_wm = *cursor_wm = 0;
1261 return false;
1262 }
1263
1264 crtc = intel_get_crtc_for_plane(dev, plane);
1265 hdisplay = crtc->mode.hdisplay;
1266 htotal = crtc->mode.htotal;
1267 clock = crtc->mode.clock;
1268 pixel_size = crtc->fb->bits_per_pixel / 8;
1269
1270 line_time_us = (htotal * 1000) / clock;
1271 line_count = (latency_ns / line_time_us + 1000) / 1000;
1272 line_size = hdisplay * pixel_size;
1273
1274 /* Use the minimum of the small and large buffer method for primary */
1275 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1276 large = line_count * line_size;
1277
1278 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1279 *display_wm = entries + display->guard_size;
1280
1281 /* calculate the self-refresh watermark for display cursor */
1282 entries = line_count * pixel_size * 64;
1283 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1284 *cursor_wm = entries + cursor->guard_size;
1285
1286 return g4x_check_srwm(dev,
1287 *display_wm, *cursor_wm,
1288 display, cursor);
1289}
1290
1291static bool vlv_compute_drain_latency(struct drm_device *dev,
1292 int plane,
1293 int *plane_prec_mult,
1294 int *plane_dl,
1295 int *cursor_prec_mult,
1296 int *cursor_dl)
1297{
1298 struct drm_crtc *crtc;
1299 int clock, pixel_size;
1300 int entries;
1301
1302 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001303 if (!intel_crtc_active(crtc))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001304 return false;
1305
1306 clock = crtc->mode.clock; /* VESA DOT Clock */
1307 pixel_size = crtc->fb->bits_per_pixel / 8; /* BPP */
1308
1309 entries = (clock / 1000) * pixel_size;
1310 *plane_prec_mult = (entries > 256) ?
1311 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1312 *plane_dl = (64 * (*plane_prec_mult) * 4) / ((clock / 1000) *
1313 pixel_size);
1314
1315 entries = (clock / 1000) * 4; /* BPP is always 4 for cursor */
1316 *cursor_prec_mult = (entries > 256) ?
1317 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1318 *cursor_dl = (64 * (*cursor_prec_mult) * 4) / ((clock / 1000) * 4);
1319
1320 return true;
1321}
1322
1323/*
1324 * Update drain latency registers of memory arbiter
1325 *
1326 * Valleyview SoC has a new memory arbiter and needs drain latency registers
1327 * to be programmed. Each plane has a drain latency multiplier and a drain
1328 * latency value.
1329 */
1330
1331static void vlv_update_drain_latency(struct drm_device *dev)
1332{
1333 struct drm_i915_private *dev_priv = dev->dev_private;
1334 int planea_prec, planea_dl, planeb_prec, planeb_dl;
1335 int cursora_prec, cursora_dl, cursorb_prec, cursorb_dl;
1336 int plane_prec_mult, cursor_prec_mult; /* Precision multiplier is
1337 either 16 or 32 */
1338
1339 /* For plane A, Cursor A */
1340 if (vlv_compute_drain_latency(dev, 0, &plane_prec_mult, &planea_dl,
1341 &cursor_prec_mult, &cursora_dl)) {
1342 cursora_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1343 DDL_CURSORA_PRECISION_32 : DDL_CURSORA_PRECISION_16;
1344 planea_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1345 DDL_PLANEA_PRECISION_32 : DDL_PLANEA_PRECISION_16;
1346
1347 I915_WRITE(VLV_DDL1, cursora_prec |
1348 (cursora_dl << DDL_CURSORA_SHIFT) |
1349 planea_prec | planea_dl);
1350 }
1351
1352 /* For plane B, Cursor B */
1353 if (vlv_compute_drain_latency(dev, 1, &plane_prec_mult, &planeb_dl,
1354 &cursor_prec_mult, &cursorb_dl)) {
1355 cursorb_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1356 DDL_CURSORB_PRECISION_32 : DDL_CURSORB_PRECISION_16;
1357 planeb_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1358 DDL_PLANEB_PRECISION_32 : DDL_PLANEB_PRECISION_16;
1359
1360 I915_WRITE(VLV_DDL2, cursorb_prec |
1361 (cursorb_dl << DDL_CURSORB_SHIFT) |
1362 planeb_prec | planeb_dl);
1363 }
1364}
1365
1366#define single_plane_enabled(mask) is_power_of_2(mask)
1367
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001368static void valleyview_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001369{
1370 static const int sr_latency_ns = 12000;
1371 struct drm_i915_private *dev_priv = dev->dev_private;
1372 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1373 int plane_sr, cursor_sr;
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001374 int ignore_plane_sr, ignore_cursor_sr;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001375 unsigned int enabled = 0;
1376
1377 vlv_update_drain_latency(dev);
1378
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001379 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001380 &valleyview_wm_info, latency_ns,
1381 &valleyview_cursor_wm_info, latency_ns,
1382 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001383 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001384
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001385 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001386 &valleyview_wm_info, latency_ns,
1387 &valleyview_cursor_wm_info, latency_ns,
1388 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001389 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001390
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001391 if (single_plane_enabled(enabled) &&
1392 g4x_compute_srwm(dev, ffs(enabled) - 1,
1393 sr_latency_ns,
1394 &valleyview_wm_info,
1395 &valleyview_cursor_wm_info,
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001396 &plane_sr, &ignore_cursor_sr) &&
1397 g4x_compute_srwm(dev, ffs(enabled) - 1,
1398 2*sr_latency_ns,
1399 &valleyview_wm_info,
1400 &valleyview_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001401 &ignore_plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402 I915_WRITE(FW_BLC_SELF_VLV, FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001403 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001404 I915_WRITE(FW_BLC_SELF_VLV,
1405 I915_READ(FW_BLC_SELF_VLV) & ~FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001406 plane_sr = cursor_sr = 0;
1407 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001408
1409 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1410 planea_wm, cursora_wm,
1411 planeb_wm, cursorb_wm,
1412 plane_sr, cursor_sr);
1413
1414 I915_WRITE(DSPFW1,
1415 (plane_sr << DSPFW_SR_SHIFT) |
1416 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1417 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1418 planea_wm);
1419 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001420 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001421 (cursora_wm << DSPFW_CURSORA_SHIFT));
1422 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001423 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
1424 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001425}
1426
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001427static void g4x_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001428{
1429 static const int sr_latency_ns = 12000;
1430 struct drm_i915_private *dev_priv = dev->dev_private;
1431 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1432 int plane_sr, cursor_sr;
1433 unsigned int enabled = 0;
1434
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001435 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001436 &g4x_wm_info, latency_ns,
1437 &g4x_cursor_wm_info, latency_ns,
1438 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001439 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001441 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 &g4x_wm_info, latency_ns,
1443 &g4x_cursor_wm_info, latency_ns,
1444 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001445 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001446
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001447 if (single_plane_enabled(enabled) &&
1448 g4x_compute_srwm(dev, ffs(enabled) - 1,
1449 sr_latency_ns,
1450 &g4x_wm_info,
1451 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001452 &plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001453 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001454 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001455 I915_WRITE(FW_BLC_SELF,
1456 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001457 plane_sr = cursor_sr = 0;
1458 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001459
1460 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1461 planea_wm, cursora_wm,
1462 planeb_wm, cursorb_wm,
1463 plane_sr, cursor_sr);
1464
1465 I915_WRITE(DSPFW1,
1466 (plane_sr << DSPFW_SR_SHIFT) |
1467 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1468 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1469 planea_wm);
1470 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001471 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001472 (cursora_wm << DSPFW_CURSORA_SHIFT));
1473 /* HPLL off in SR has some issues on G4x... disable it */
1474 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001475 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001476 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1477}
1478
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001479static void i965_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001480{
1481 struct drm_i915_private *dev_priv = dev->dev_private;
1482 struct drm_crtc *crtc;
1483 int srwm = 1;
1484 int cursor_sr = 16;
1485
1486 /* Calc sr entries for one plane configs */
1487 crtc = single_enabled_crtc(dev);
1488 if (crtc) {
1489 /* self-refresh has much higher latency */
1490 static const int sr_latency_ns = 12000;
1491 int clock = crtc->mode.clock;
1492 int htotal = crtc->mode.htotal;
1493 int hdisplay = crtc->mode.hdisplay;
1494 int pixel_size = crtc->fb->bits_per_pixel / 8;
1495 unsigned long line_time_us;
1496 int entries;
1497
1498 line_time_us = ((htotal * 1000) / clock);
1499
1500 /* Use ns/us then divide to preserve precision */
1501 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1502 pixel_size * hdisplay;
1503 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1504 srwm = I965_FIFO_SIZE - entries;
1505 if (srwm < 0)
1506 srwm = 1;
1507 srwm &= 0x1ff;
1508 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1509 entries, srwm);
1510
1511 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1512 pixel_size * 64;
1513 entries = DIV_ROUND_UP(entries,
1514 i965_cursor_wm_info.cacheline_size);
1515 cursor_sr = i965_cursor_wm_info.fifo_size -
1516 (entries + i965_cursor_wm_info.guard_size);
1517
1518 if (cursor_sr > i965_cursor_wm_info.max_wm)
1519 cursor_sr = i965_cursor_wm_info.max_wm;
1520
1521 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1522 "cursor %d\n", srwm, cursor_sr);
1523
1524 if (IS_CRESTLINE(dev))
1525 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
1526 } else {
1527 /* Turn off self refresh if both pipes are enabled */
1528 if (IS_CRESTLINE(dev))
1529 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
1530 & ~FW_BLC_SELF_EN);
1531 }
1532
1533 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1534 srwm);
1535
1536 /* 965 has limitations... */
1537 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
1538 (8 << 16) | (8 << 8) | (8 << 0));
1539 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
1540 /* update cursor SR watermark */
1541 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1542}
1543
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001544static void i9xx_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001545{
1546 struct drm_i915_private *dev_priv = dev->dev_private;
1547 const struct intel_watermark_params *wm_info;
1548 uint32_t fwater_lo;
1549 uint32_t fwater_hi;
1550 int cwm, srwm = 1;
1551 int fifo_size;
1552 int planea_wm, planeb_wm;
1553 struct drm_crtc *crtc, *enabled = NULL;
1554
1555 if (IS_I945GM(dev))
1556 wm_info = &i945_wm_info;
1557 else if (!IS_GEN2(dev))
1558 wm_info = &i915_wm_info;
1559 else
1560 wm_info = &i855_wm_info;
1561
1562 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1563 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001564 if (intel_crtc_active(crtc)) {
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001565 int cpp = crtc->fb->bits_per_pixel / 8;
1566 if (IS_GEN2(dev))
1567 cpp = 4;
1568
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001569 planea_wm = intel_calculate_wm(crtc->mode.clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001570 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001571 latency_ns);
1572 enabled = crtc;
1573 } else
1574 planea_wm = fifo_size - wm_info->guard_size;
1575
1576 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1577 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001578 if (intel_crtc_active(crtc)) {
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001579 int cpp = crtc->fb->bits_per_pixel / 8;
1580 if (IS_GEN2(dev))
1581 cpp = 4;
1582
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001583 planeb_wm = intel_calculate_wm(crtc->mode.clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001584 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001585 latency_ns);
1586 if (enabled == NULL)
1587 enabled = crtc;
1588 else
1589 enabled = NULL;
1590 } else
1591 planeb_wm = fifo_size - wm_info->guard_size;
1592
1593 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1594
1595 /*
1596 * Overlay gets an aggressive default since video jitter is bad.
1597 */
1598 cwm = 2;
1599
1600 /* Play safe and disable self-refresh before adjusting watermarks. */
1601 if (IS_I945G(dev) || IS_I945GM(dev))
1602 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
1603 else if (IS_I915GM(dev))
1604 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
1605
1606 /* Calc sr entries for one plane configs */
1607 if (HAS_FW_BLC(dev) && enabled) {
1608 /* self-refresh has much higher latency */
1609 static const int sr_latency_ns = 6000;
1610 int clock = enabled->mode.clock;
1611 int htotal = enabled->mode.htotal;
1612 int hdisplay = enabled->mode.hdisplay;
1613 int pixel_size = enabled->fb->bits_per_pixel / 8;
1614 unsigned long line_time_us;
1615 int entries;
1616
1617 line_time_us = (htotal * 1000) / clock;
1618
1619 /* Use ns/us then divide to preserve precision */
1620 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1621 pixel_size * hdisplay;
1622 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1623 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1624 srwm = wm_info->fifo_size - entries;
1625 if (srwm < 0)
1626 srwm = 1;
1627
1628 if (IS_I945G(dev) || IS_I945GM(dev))
1629 I915_WRITE(FW_BLC_SELF,
1630 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1631 else if (IS_I915GM(dev))
1632 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1633 }
1634
1635 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1636 planea_wm, planeb_wm, cwm, srwm);
1637
1638 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1639 fwater_hi = (cwm & 0x1f);
1640
1641 /* Set request length to 8 cachelines per fetch */
1642 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1643 fwater_hi = fwater_hi | (1 << 8);
1644
1645 I915_WRITE(FW_BLC, fwater_lo);
1646 I915_WRITE(FW_BLC2, fwater_hi);
1647
1648 if (HAS_FW_BLC(dev)) {
1649 if (enabled) {
1650 if (IS_I945G(dev) || IS_I945GM(dev))
1651 I915_WRITE(FW_BLC_SELF,
1652 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
1653 else if (IS_I915GM(dev))
1654 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
1655 DRM_DEBUG_KMS("memory self refresh enabled\n");
1656 } else
1657 DRM_DEBUG_KMS("memory self refresh disabled\n");
1658 }
1659}
1660
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001661static void i830_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001662{
1663 struct drm_i915_private *dev_priv = dev->dev_private;
1664 struct drm_crtc *crtc;
1665 uint32_t fwater_lo;
1666 int planea_wm;
1667
1668 crtc = single_enabled_crtc(dev);
1669 if (crtc == NULL)
1670 return;
1671
1672 planea_wm = intel_calculate_wm(crtc->mode.clock, &i830_wm_info,
1673 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001674 4, latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001675 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1676 fwater_lo |= (3<<8) | planea_wm;
1677
1678 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1679
1680 I915_WRITE(FW_BLC, fwater_lo);
1681}
1682
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001683/*
1684 * Check the wm result.
1685 *
1686 * If any calculated watermark values is larger than the maximum value that
1687 * can be programmed into the associated watermark register, that watermark
1688 * must be disabled.
1689 */
1690static bool ironlake_check_srwm(struct drm_device *dev, int level,
1691 int fbc_wm, int display_wm, int cursor_wm,
1692 const struct intel_watermark_params *display,
1693 const struct intel_watermark_params *cursor)
1694{
1695 struct drm_i915_private *dev_priv = dev->dev_private;
1696
1697 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
1698 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
1699
1700 if (fbc_wm > SNB_FBC_MAX_SRWM) {
1701 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
1702 fbc_wm, SNB_FBC_MAX_SRWM, level);
1703
1704 /* fbc has it's own way to disable FBC WM */
1705 I915_WRITE(DISP_ARB_CTL,
1706 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
1707 return false;
Ville Syrjälä615aaa52013-04-24 21:09:10 +03001708 } else if (INTEL_INFO(dev)->gen >= 6) {
1709 /* enable FBC WM (except on ILK, where it must remain off) */
1710 I915_WRITE(DISP_ARB_CTL,
1711 I915_READ(DISP_ARB_CTL) & ~DISP_FBC_WM_DIS);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001712 }
1713
1714 if (display_wm > display->max_wm) {
1715 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
1716 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1717 return false;
1718 }
1719
1720 if (cursor_wm > cursor->max_wm) {
1721 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
1722 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1723 return false;
1724 }
1725
1726 if (!(fbc_wm || display_wm || cursor_wm)) {
1727 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
1728 return false;
1729 }
1730
1731 return true;
1732}
1733
1734/*
1735 * Compute watermark values of WM[1-3],
1736 */
1737static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
1738 int latency_ns,
1739 const struct intel_watermark_params *display,
1740 const struct intel_watermark_params *cursor,
1741 int *fbc_wm, int *display_wm, int *cursor_wm)
1742{
1743 struct drm_crtc *crtc;
1744 unsigned long line_time_us;
1745 int hdisplay, htotal, pixel_size, clock;
1746 int line_count, line_size;
1747 int small, large;
1748 int entries;
1749
1750 if (!latency_ns) {
1751 *fbc_wm = *display_wm = *cursor_wm = 0;
1752 return false;
1753 }
1754
1755 crtc = intel_get_crtc_for_plane(dev, plane);
1756 hdisplay = crtc->mode.hdisplay;
1757 htotal = crtc->mode.htotal;
1758 clock = crtc->mode.clock;
1759 pixel_size = crtc->fb->bits_per_pixel / 8;
1760
1761 line_time_us = (htotal * 1000) / clock;
1762 line_count = (latency_ns / line_time_us + 1000) / 1000;
1763 line_size = hdisplay * pixel_size;
1764
1765 /* Use the minimum of the small and large buffer method for primary */
1766 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1767 large = line_count * line_size;
1768
1769 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1770 *display_wm = entries + display->guard_size;
1771
1772 /*
1773 * Spec says:
1774 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
1775 */
1776 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
1777
1778 /* calculate the self-refresh watermark for display cursor */
1779 entries = line_count * pixel_size * 64;
1780 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1781 *cursor_wm = entries + cursor->guard_size;
1782
1783 return ironlake_check_srwm(dev, level,
1784 *fbc_wm, *display_wm, *cursor_wm,
1785 display, cursor);
1786}
1787
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001788static void ironlake_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001789{
1790 struct drm_i915_private *dev_priv = dev->dev_private;
1791 int fbc_wm, plane_wm, cursor_wm;
1792 unsigned int enabled;
1793
1794 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001795 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001796 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001797 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001798 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001799 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001800 &plane_wm, &cursor_wm)) {
1801 I915_WRITE(WM0_PIPEA_ILK,
1802 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1803 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1804 " plane %d, " "cursor: %d\n",
1805 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001806 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001807 }
1808
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001809 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001810 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001811 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001812 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001813 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001814 &plane_wm, &cursor_wm)) {
1815 I915_WRITE(WM0_PIPEB_ILK,
1816 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1817 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1818 " plane %d, cursor: %d\n",
1819 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001820 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001821 }
1822
1823 /*
1824 * Calculate and update the self-refresh watermark only when one
1825 * display plane is used.
1826 */
1827 I915_WRITE(WM3_LP_ILK, 0);
1828 I915_WRITE(WM2_LP_ILK, 0);
1829 I915_WRITE(WM1_LP_ILK, 0);
1830
1831 if (!single_plane_enabled(enabled))
1832 return;
1833 enabled = ffs(enabled) - 1;
1834
1835 /* WM1 */
1836 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001837 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001838 &ironlake_display_srwm_info,
1839 &ironlake_cursor_srwm_info,
1840 &fbc_wm, &plane_wm, &cursor_wm))
1841 return;
1842
1843 I915_WRITE(WM1_LP_ILK,
1844 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001845 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001846 (fbc_wm << WM1_LP_FBC_SHIFT) |
1847 (plane_wm << WM1_LP_SR_SHIFT) |
1848 cursor_wm);
1849
1850 /* WM2 */
1851 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001852 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001853 &ironlake_display_srwm_info,
1854 &ironlake_cursor_srwm_info,
1855 &fbc_wm, &plane_wm, &cursor_wm))
1856 return;
1857
1858 I915_WRITE(WM2_LP_ILK,
1859 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001860 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001861 (fbc_wm << WM1_LP_FBC_SHIFT) |
1862 (plane_wm << WM1_LP_SR_SHIFT) |
1863 cursor_wm);
1864
1865 /*
1866 * WM3 is unsupported on ILK, probably because we don't have latency
1867 * data for that power state
1868 */
1869}
1870
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001871static void sandybridge_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001872{
1873 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001874 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001875 u32 val;
1876 int fbc_wm, plane_wm, cursor_wm;
1877 unsigned int enabled;
1878
1879 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001880 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001881 &sandybridge_display_wm_info, latency,
1882 &sandybridge_cursor_wm_info, latency,
1883 &plane_wm, &cursor_wm)) {
1884 val = I915_READ(WM0_PIPEA_ILK);
1885 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1886 I915_WRITE(WM0_PIPEA_ILK, val |
1887 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1888 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1889 " plane %d, " "cursor: %d\n",
1890 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001891 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001892 }
1893
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001894 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001895 &sandybridge_display_wm_info, latency,
1896 &sandybridge_cursor_wm_info, latency,
1897 &plane_wm, &cursor_wm)) {
1898 val = I915_READ(WM0_PIPEB_ILK);
1899 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1900 I915_WRITE(WM0_PIPEB_ILK, val |
1901 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1902 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1903 " plane %d, cursor: %d\n",
1904 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001905 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001906 }
1907
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001908 /*
1909 * Calculate and update the self-refresh watermark only when one
1910 * display plane is used.
1911 *
1912 * SNB support 3 levels of watermark.
1913 *
1914 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
1915 * and disabled in the descending order
1916 *
1917 */
1918 I915_WRITE(WM3_LP_ILK, 0);
1919 I915_WRITE(WM2_LP_ILK, 0);
1920 I915_WRITE(WM1_LP_ILK, 0);
1921
1922 if (!single_plane_enabled(enabled) ||
1923 dev_priv->sprite_scaling_enabled)
1924 return;
1925 enabled = ffs(enabled) - 1;
1926
1927 /* WM1 */
1928 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001929 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001930 &sandybridge_display_srwm_info,
1931 &sandybridge_cursor_srwm_info,
1932 &fbc_wm, &plane_wm, &cursor_wm))
1933 return;
1934
1935 I915_WRITE(WM1_LP_ILK,
1936 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001937 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001938 (fbc_wm << WM1_LP_FBC_SHIFT) |
1939 (plane_wm << WM1_LP_SR_SHIFT) |
1940 cursor_wm);
1941
1942 /* WM2 */
1943 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001944 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001945 &sandybridge_display_srwm_info,
1946 &sandybridge_cursor_srwm_info,
1947 &fbc_wm, &plane_wm, &cursor_wm))
1948 return;
1949
1950 I915_WRITE(WM2_LP_ILK,
1951 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001952 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001953 (fbc_wm << WM1_LP_FBC_SHIFT) |
1954 (plane_wm << WM1_LP_SR_SHIFT) |
1955 cursor_wm);
1956
1957 /* WM3 */
1958 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001959 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001960 &sandybridge_display_srwm_info,
1961 &sandybridge_cursor_srwm_info,
1962 &fbc_wm, &plane_wm, &cursor_wm))
1963 return;
1964
1965 I915_WRITE(WM3_LP_ILK,
1966 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001967 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001968 (fbc_wm << WM1_LP_FBC_SHIFT) |
1969 (plane_wm << WM1_LP_SR_SHIFT) |
1970 cursor_wm);
1971}
1972
Chris Wilsonc43d0182012-12-11 12:01:42 +00001973static void ivybridge_update_wm(struct drm_device *dev)
1974{
1975 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001976 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Chris Wilsonc43d0182012-12-11 12:01:42 +00001977 u32 val;
1978 int fbc_wm, plane_wm, cursor_wm;
1979 int ignore_fbc_wm, ignore_plane_wm, ignore_cursor_wm;
1980 unsigned int enabled;
1981
1982 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001983 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilsonc43d0182012-12-11 12:01:42 +00001984 &sandybridge_display_wm_info, latency,
1985 &sandybridge_cursor_wm_info, latency,
1986 &plane_wm, &cursor_wm)) {
1987 val = I915_READ(WM0_PIPEA_ILK);
1988 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1989 I915_WRITE(WM0_PIPEA_ILK, val |
1990 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1991 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1992 " plane %d, " "cursor: %d\n",
1993 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001994 enabled |= 1 << PIPE_A;
Chris Wilsonc43d0182012-12-11 12:01:42 +00001995 }
1996
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001997 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilsonc43d0182012-12-11 12:01:42 +00001998 &sandybridge_display_wm_info, latency,
1999 &sandybridge_cursor_wm_info, latency,
2000 &plane_wm, &cursor_wm)) {
2001 val = I915_READ(WM0_PIPEB_ILK);
2002 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2003 I915_WRITE(WM0_PIPEB_ILK, val |
2004 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2005 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
2006 " plane %d, cursor: %d\n",
2007 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002008 enabled |= 1 << PIPE_B;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002009 }
2010
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002011 if (g4x_compute_wm0(dev, PIPE_C,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002012 &sandybridge_display_wm_info, latency,
2013 &sandybridge_cursor_wm_info, latency,
2014 &plane_wm, &cursor_wm)) {
2015 val = I915_READ(WM0_PIPEC_IVB);
2016 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2017 I915_WRITE(WM0_PIPEC_IVB, val |
2018 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2019 DRM_DEBUG_KMS("FIFO watermarks For pipe C -"
2020 " plane %d, cursor: %d\n",
2021 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002022 enabled |= 1 << PIPE_C;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002023 }
2024
2025 /*
2026 * Calculate and update the self-refresh watermark only when one
2027 * display plane is used.
2028 *
2029 * SNB support 3 levels of watermark.
2030 *
2031 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
2032 * and disabled in the descending order
2033 *
2034 */
2035 I915_WRITE(WM3_LP_ILK, 0);
2036 I915_WRITE(WM2_LP_ILK, 0);
2037 I915_WRITE(WM1_LP_ILK, 0);
2038
2039 if (!single_plane_enabled(enabled) ||
2040 dev_priv->sprite_scaling_enabled)
2041 return;
2042 enabled = ffs(enabled) - 1;
2043
2044 /* WM1 */
2045 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002046 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002047 &sandybridge_display_srwm_info,
2048 &sandybridge_cursor_srwm_info,
2049 &fbc_wm, &plane_wm, &cursor_wm))
2050 return;
2051
2052 I915_WRITE(WM1_LP_ILK,
2053 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002054 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002055 (fbc_wm << WM1_LP_FBC_SHIFT) |
2056 (plane_wm << WM1_LP_SR_SHIFT) |
2057 cursor_wm);
2058
2059 /* WM2 */
2060 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002061 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002062 &sandybridge_display_srwm_info,
2063 &sandybridge_cursor_srwm_info,
2064 &fbc_wm, &plane_wm, &cursor_wm))
2065 return;
2066
2067 I915_WRITE(WM2_LP_ILK,
2068 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002069 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002070 (fbc_wm << WM1_LP_FBC_SHIFT) |
2071 (plane_wm << WM1_LP_SR_SHIFT) |
2072 cursor_wm);
2073
Chris Wilsonc43d0182012-12-11 12:01:42 +00002074 /* WM3, note we have to correct the cursor latency */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002075 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002076 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002077 &sandybridge_display_srwm_info,
2078 &sandybridge_cursor_srwm_info,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002079 &fbc_wm, &plane_wm, &ignore_cursor_wm) ||
2080 !ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002081 dev_priv->wm.cur_latency[3] * 500,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002082 &sandybridge_display_srwm_info,
2083 &sandybridge_cursor_srwm_info,
2084 &ignore_fbc_wm, &ignore_plane_wm, &cursor_wm))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002085 return;
2086
2087 I915_WRITE(WM3_LP_ILK,
2088 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002089 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002090 (fbc_wm << WM1_LP_FBC_SHIFT) |
2091 (plane_wm << WM1_LP_SR_SHIFT) |
2092 cursor_wm);
2093}
2094
Ville Syrjälä36587292013-07-05 11:57:16 +03002095static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
2096 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002097{
2098 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2099 uint32_t pixel_rate, pfit_size;
2100
Daniel Vetterff9a6752013-06-01 17:16:21 +02002101 pixel_rate = intel_crtc->config.adjusted_mode.clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002102
2103 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
2104 * adjust the pixel_rate here. */
2105
2106 pfit_size = intel_crtc->config.pch_pfit.size;
2107 if (pfit_size) {
2108 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
2109
2110 pipe_w = intel_crtc->config.requested_mode.hdisplay;
2111 pipe_h = intel_crtc->config.requested_mode.vdisplay;
2112 pfit_w = (pfit_size >> 16) & 0xFFFF;
2113 pfit_h = pfit_size & 0xFFFF;
2114 if (pipe_w < pfit_w)
2115 pipe_w = pfit_w;
2116 if (pipe_h < pfit_h)
2117 pipe_h = pfit_h;
2118
2119 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
2120 pfit_w * pfit_h);
2121 }
2122
2123 return pixel_rate;
2124}
2125
Ville Syrjälä37126462013-08-01 16:18:55 +03002126/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002127static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002128 uint32_t latency)
2129{
2130 uint64_t ret;
2131
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002132 if (WARN(latency == 0, "Latency value missing\n"))
2133 return UINT_MAX;
2134
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002135 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
2136 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
2137
2138 return ret;
2139}
2140
Ville Syrjälä37126462013-08-01 16:18:55 +03002141/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002142static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002143 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2144 uint32_t latency)
2145{
2146 uint32_t ret;
2147
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002148 if (WARN(latency == 0, "Latency value missing\n"))
2149 return UINT_MAX;
2150
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002151 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
2152 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
2153 ret = DIV_ROUND_UP(ret, 64) + 2;
2154 return ret;
2155}
2156
Ville Syrjälä23297042013-07-05 11:57:17 +03002157static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002158 uint8_t bytes_per_pixel)
2159{
2160 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
2161}
2162
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002163struct hsw_pipe_wm_parameters {
2164 bool active;
2165 bool sprite_enabled;
2166 uint8_t pri_bytes_per_pixel;
2167 uint8_t spr_bytes_per_pixel;
2168 uint8_t cur_bytes_per_pixel;
2169 uint32_t pri_horiz_pixels;
2170 uint32_t spr_horiz_pixels;
2171 uint32_t cur_horiz_pixels;
2172 uint32_t pipe_htotal;
2173 uint32_t pixel_rate;
2174};
2175
Paulo Zanonicca32e92013-05-31 11:45:06 -03002176struct hsw_wm_maximums {
2177 uint16_t pri;
2178 uint16_t spr;
2179 uint16_t cur;
2180 uint16_t fbc;
2181};
2182
2183struct hsw_lp_wm_result {
2184 bool enable;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002185 uint32_t pri_val;
2186 uint32_t spr_val;
2187 uint32_t cur_val;
2188 uint32_t fbc_val;
2189};
2190
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002191struct hsw_wm_values {
2192 uint32_t wm_pipe[3];
2193 uint32_t wm_lp[3];
2194 uint32_t wm_lp_spr[3];
2195 uint32_t wm_linetime[3];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002196 bool enable_fbc_wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002197};
2198
Ville Syrjälä37126462013-08-01 16:18:55 +03002199/*
2200 * For both WM_PIPE and WM_LP.
2201 * mem_value must be in 0.1us units.
2202 */
Ville Syrjälä23297042013-07-05 11:57:17 +03002203static uint32_t ilk_compute_pri_wm(struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002204 uint32_t mem_value,
2205 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002206{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002207 uint32_t method1, method2;
2208
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002209 /* TODO: for now, assume the primary plane is always enabled. */
2210 if (!params->active)
2211 return 0;
2212
Ville Syrjälä23297042013-07-05 11:57:17 +03002213 method1 = ilk_wm_method1(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002214 params->pri_bytes_per_pixel,
2215 mem_value);
2216
2217 if (!is_lp)
2218 return method1;
2219
Ville Syrjälä23297042013-07-05 11:57:17 +03002220 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002221 params->pipe_htotal,
2222 params->pri_horiz_pixels,
2223 params->pri_bytes_per_pixel,
2224 mem_value);
2225
2226 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002227}
2228
Ville Syrjälä37126462013-08-01 16:18:55 +03002229/*
2230 * For both WM_PIPE and WM_LP.
2231 * mem_value must be in 0.1us units.
2232 */
Ville Syrjälä23297042013-07-05 11:57:17 +03002233static uint32_t ilk_compute_spr_wm(struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002234 uint32_t mem_value)
2235{
2236 uint32_t method1, method2;
2237
2238 if (!params->active || !params->sprite_enabled)
2239 return 0;
2240
Ville Syrjälä23297042013-07-05 11:57:17 +03002241 method1 = ilk_wm_method1(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002242 params->spr_bytes_per_pixel,
2243 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03002244 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002245 params->pipe_htotal,
2246 params->spr_horiz_pixels,
2247 params->spr_bytes_per_pixel,
2248 mem_value);
2249 return min(method1, method2);
2250}
2251
Ville Syrjälä37126462013-08-01 16:18:55 +03002252/*
2253 * For both WM_PIPE and WM_LP.
2254 * mem_value must be in 0.1us units.
2255 */
Ville Syrjälä23297042013-07-05 11:57:17 +03002256static uint32_t ilk_compute_cur_wm(struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002257 uint32_t mem_value)
2258{
2259 if (!params->active)
2260 return 0;
2261
Ville Syrjälä23297042013-07-05 11:57:17 +03002262 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002263 params->pipe_htotal,
2264 params->cur_horiz_pixels,
2265 params->cur_bytes_per_pixel,
2266 mem_value);
2267}
2268
Paulo Zanonicca32e92013-05-31 11:45:06 -03002269/* Only for WM_LP. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002270static uint32_t ilk_compute_fbc_wm(struct hsw_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002271 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002272{
2273 if (!params->active)
2274 return 0;
2275
Ville Syrjälä23297042013-07-05 11:57:17 +03002276 return ilk_wm_fbc(pri_val,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002277 params->pri_horiz_pixels,
2278 params->pri_bytes_per_pixel);
2279}
2280
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002281static bool ilk_check_wm(int level,
2282 const struct hsw_wm_maximums *max,
2283 struct hsw_lp_wm_result *result)
2284{
2285 bool ret;
2286
2287 /* already determined to be invalid? */
2288 if (!result->enable)
2289 return false;
2290
2291 result->enable = result->pri_val <= max->pri &&
2292 result->spr_val <= max->spr &&
2293 result->cur_val <= max->cur;
2294
2295 ret = result->enable;
2296
2297 /*
2298 * HACK until we can pre-compute everything,
2299 * and thus fail gracefully if LP0 watermarks
2300 * are exceeded...
2301 */
2302 if (level == 0 && !result->enable) {
2303 if (result->pri_val > max->pri)
2304 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2305 level, result->pri_val, max->pri);
2306 if (result->spr_val > max->spr)
2307 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2308 level, result->spr_val, max->spr);
2309 if (result->cur_val > max->cur)
2310 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2311 level, result->cur_val, max->cur);
2312
2313 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2314 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2315 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2316 result->enable = true;
2317 }
2318
2319 DRM_DEBUG_KMS("WM%d: %sabled\n", level, result->enable ? "en" : "dis");
2320
2321 return ret;
2322}
2323
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002324static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
2325 int level,
2326 struct hsw_pipe_wm_parameters *p,
2327 struct hsw_lp_wm_result *result)
2328{
2329 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2330 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2331 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2332
2333 /* WM1+ latency values stored in 0.5us units */
2334 if (level > 0) {
2335 pri_latency *= 5;
2336 spr_latency *= 5;
2337 cur_latency *= 5;
2338 }
2339
2340 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2341 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2342 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2343 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2344 result->enable = true;
2345}
2346
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002347static bool hsw_compute_lp_wm(struct drm_i915_private *dev_priv,
2348 int level, struct hsw_wm_maximums *max,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002349 struct hsw_pipe_wm_parameters *params,
2350 struct hsw_lp_wm_result *result)
2351{
2352 enum pipe pipe;
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002353 struct hsw_lp_wm_result res[3];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002354
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002355 for (pipe = PIPE_A; pipe <= PIPE_C; pipe++)
2356 ilk_compute_wm_level(dev_priv, level, &params[pipe], &res[pipe]);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002357
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002358 result->pri_val = max3(res[0].pri_val, res[1].pri_val, res[2].pri_val);
2359 result->spr_val = max3(res[0].spr_val, res[1].spr_val, res[2].spr_val);
2360 result->cur_val = max3(res[0].cur_val, res[1].cur_val, res[2].cur_val);
2361 result->fbc_val = max3(res[0].fbc_val, res[1].fbc_val, res[2].fbc_val);
2362 result->enable = true;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002363
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002364 return ilk_check_wm(level, max, result);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002365}
2366
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002367static uint32_t hsw_compute_wm_pipe(struct drm_i915_private *dev_priv,
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002368 enum pipe pipe,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002369 struct hsw_pipe_wm_parameters *params)
2370{
2371 uint32_t pri_val, cur_val, spr_val;
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002372 /* WM0 latency values stored in 0.1us units */
2373 uint16_t pri_latency = dev_priv->wm.pri_latency[0];
2374 uint16_t spr_latency = dev_priv->wm.spr_latency[0];
2375 uint16_t cur_latency = dev_priv->wm.cur_latency[0];
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002376
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002377 pri_val = ilk_compute_pri_wm(params, pri_latency, false);
2378 spr_val = ilk_compute_spr_wm(params, spr_latency);
2379 cur_val = ilk_compute_cur_wm(params, cur_latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002380
2381 WARN(pri_val > 127,
2382 "Primary WM error, mode not supported for pipe %c\n",
2383 pipe_name(pipe));
2384 WARN(spr_val > 127,
2385 "Sprite WM error, mode not supported for pipe %c\n",
2386 pipe_name(pipe));
2387 WARN(cur_val > 63,
2388 "Cursor WM error, mode not supported for pipe %c\n",
2389 pipe_name(pipe));
2390
2391 return (pri_val << WM0_PIPE_PLANE_SHIFT) |
2392 (spr_val << WM0_PIPE_SPRITE_SHIFT) |
2393 cur_val;
2394}
2395
2396static uint32_t
2397hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002398{
2399 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002400 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002401 struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002402 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002403
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002404 if (!intel_crtc_active(crtc))
2405 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002406
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002407 /* The WM are computed with base on how long it takes to fill a single
2408 * row at the given clock rate, multiplied by 8.
2409 * */
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002410 linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8, mode->clock);
2411 ips_linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8,
2412 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002413
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002414 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2415 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002416}
2417
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002418static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[5])
2419{
2420 struct drm_i915_private *dev_priv = dev->dev_private;
2421
2422 if (IS_HASWELL(dev)) {
2423 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2424
2425 wm[0] = (sskpd >> 56) & 0xFF;
2426 if (wm[0] == 0)
2427 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002428 wm[1] = (sskpd >> 4) & 0xFF;
2429 wm[2] = (sskpd >> 12) & 0xFF;
2430 wm[3] = (sskpd >> 20) & 0x1FF;
2431 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002432 } else if (INTEL_INFO(dev)->gen >= 6) {
2433 uint32_t sskpd = I915_READ(MCH_SSKPD);
2434
2435 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2436 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2437 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2438 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002439 } else if (INTEL_INFO(dev)->gen >= 5) {
2440 uint32_t mltr = I915_READ(MLTR_ILK);
2441
2442 /* ILK primary LP0 latency is 700 ns */
2443 wm[0] = 7;
2444 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2445 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002446 }
2447}
2448
Ville Syrjälä53615a52013-08-01 16:18:50 +03002449static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2450{
2451 /* ILK sprite LP0 latency is 1300 ns */
2452 if (INTEL_INFO(dev)->gen == 5)
2453 wm[0] = 13;
2454}
2455
2456static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2457{
2458 /* ILK cursor LP0 latency is 1300 ns */
2459 if (INTEL_INFO(dev)->gen == 5)
2460 wm[0] = 13;
2461
2462 /* WaDoubleCursorLP3Latency:ivb */
2463 if (IS_IVYBRIDGE(dev))
2464 wm[3] *= 2;
2465}
2466
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002467static void intel_print_wm_latency(struct drm_device *dev,
2468 const char *name,
2469 const uint16_t wm[5])
2470{
2471 int level, max_level;
2472
2473 /* how many WM levels are we expecting */
2474 if (IS_HASWELL(dev))
2475 max_level = 4;
2476 else if (INTEL_INFO(dev)->gen >= 6)
2477 max_level = 3;
2478 else
2479 max_level = 2;
2480
2481 for (level = 0; level <= max_level; level++) {
2482 unsigned int latency = wm[level];
2483
2484 if (latency == 0) {
2485 DRM_ERROR("%s WM%d latency not provided\n",
2486 name, level);
2487 continue;
2488 }
2489
2490 /* WM1+ latency values in 0.5us units */
2491 if (level > 0)
2492 latency *= 5;
2493
2494 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2495 name, level, wm[level],
2496 latency / 10, latency % 10);
2497 }
2498}
2499
Ville Syrjälä53615a52013-08-01 16:18:50 +03002500static void intel_setup_wm_latency(struct drm_device *dev)
2501{
2502 struct drm_i915_private *dev_priv = dev->dev_private;
2503
2504 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2505
2506 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2507 sizeof(dev_priv->wm.pri_latency));
2508 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2509 sizeof(dev_priv->wm.pri_latency));
2510
2511 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2512 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002513
2514 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2515 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2516 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002517}
2518
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002519static void hsw_compute_wm_parameters(struct drm_device *dev,
2520 struct hsw_pipe_wm_parameters *params,
Paulo Zanoni861f3382013-05-31 10:19:21 -03002521 struct hsw_wm_maximums *lp_max_1_2,
2522 struct hsw_wm_maximums *lp_max_5_6)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002523{
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002524 struct drm_crtc *crtc;
2525 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002526 enum pipe pipe;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002527 int pipes_active = 0, sprites_enabled = 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002528
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002529 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2530 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2531 struct hsw_pipe_wm_parameters *p;
2532
2533 pipe = intel_crtc->pipe;
2534 p = &params[pipe];
2535
2536 p->active = intel_crtc_active(crtc);
2537 if (!p->active)
2538 continue;
2539
Paulo Zanonicca32e92013-05-31 11:45:06 -03002540 pipes_active++;
2541
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002542 p->pipe_htotal = intel_crtc->config.adjusted_mode.htotal;
Ville Syrjälä36587292013-07-05 11:57:16 +03002543 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002544 p->pri_bytes_per_pixel = crtc->fb->bits_per_pixel / 8;
2545 p->cur_bytes_per_pixel = 4;
2546 p->pri_horiz_pixels =
2547 intel_crtc->config.requested_mode.hdisplay;
2548 p->cur_horiz_pixels = 64;
2549 }
2550
2551 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2552 struct intel_plane *intel_plane = to_intel_plane(plane);
2553 struct hsw_pipe_wm_parameters *p;
2554
2555 pipe = intel_plane->pipe;
2556 p = &params[pipe];
2557
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03002558 p->sprite_enabled = intel_plane->wm.enabled;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002559 p->spr_bytes_per_pixel = intel_plane->wm.bytes_per_pixel;
2560 p->spr_horiz_pixels = intel_plane->wm.horiz_pixels;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002561
2562 if (p->sprite_enabled)
2563 sprites_enabled++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002564 }
Paulo Zanonicca32e92013-05-31 11:45:06 -03002565
2566 if (pipes_active > 1) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002567 lp_max_1_2->pri = lp_max_5_6->pri = sprites_enabled ? 128 : 256;
2568 lp_max_1_2->spr = lp_max_5_6->spr = 128;
2569 lp_max_1_2->cur = lp_max_5_6->cur = 64;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002570 } else {
2571 lp_max_1_2->pri = sprites_enabled ? 384 : 768;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002572 lp_max_5_6->pri = sprites_enabled ? 128 : 768;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002573 lp_max_1_2->spr = 384;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002574 lp_max_5_6->spr = 640;
2575 lp_max_1_2->cur = lp_max_5_6->cur = 255;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002576 }
Paulo Zanoni861f3382013-05-31 10:19:21 -03002577 lp_max_1_2->fbc = lp_max_5_6->fbc = 15;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002578}
2579
2580static void hsw_compute_wm_results(struct drm_device *dev,
2581 struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002582 struct hsw_wm_maximums *lp_maximums,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002583 struct hsw_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002584{
2585 struct drm_i915_private *dev_priv = dev->dev_private;
2586 struct drm_crtc *crtc;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002587 struct hsw_lp_wm_result lp_results[4] = {};
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002588 enum pipe pipe;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002589 int level, max_level, wm_lp;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002590
Paulo Zanonicca32e92013-05-31 11:45:06 -03002591 for (level = 1; level <= 4; level++)
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002592 if (!hsw_compute_lp_wm(dev_priv, level,
2593 lp_maximums, params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002594 &lp_results[level - 1]))
2595 break;
2596 max_level = level - 1;
2597
2598 /* The spec says it is preferred to disable FBC WMs instead of disabling
2599 * a WM level. */
2600 results->enable_fbc_wm = true;
2601 for (level = 1; level <= max_level; level++) {
Ville Syrjälä71fff202013-08-06 22:24:03 +03002602 if (!lp_results[level - 1].fbc_val > lp_maximums->fbc) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002603 results->enable_fbc_wm = false;
Ville Syrjälä71fff202013-08-06 22:24:03 +03002604 lp_results[level - 1].fbc_val = 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002605 }
2606 }
2607
2608 memset(results, 0, sizeof(*results));
2609 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2610 const struct hsw_lp_wm_result *r;
2611
2612 level = (max_level == 4 && wm_lp > 1) ? wm_lp + 1 : wm_lp;
2613 if (level > max_level)
2614 break;
2615
2616 r = &lp_results[level - 1];
2617 results->wm_lp[wm_lp - 1] = HSW_WM_LP_VAL(level * 2,
2618 r->fbc_val,
2619 r->pri_val,
2620 r->cur_val);
2621 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
2622 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002623
2624 for_each_pipe(pipe)
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002625 results->wm_pipe[pipe] = hsw_compute_wm_pipe(dev_priv, pipe,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002626 &params[pipe]);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002627
2628 for_each_pipe(pipe) {
2629 crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002630 results->wm_linetime[pipe] = hsw_compute_linetime_wm(dev, crtc);
2631 }
2632}
2633
Paulo Zanoni861f3382013-05-31 10:19:21 -03002634/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2635 * case both are at the same level. Prefer r1 in case they're the same. */
Damien Lespiauf4db9322013-06-24 22:59:50 +01002636static struct hsw_wm_values *hsw_find_best_result(struct hsw_wm_values *r1,
2637 struct hsw_wm_values *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002638{
2639 int i, val_r1 = 0, val_r2 = 0;
2640
2641 for (i = 0; i < 3; i++) {
2642 if (r1->wm_lp[i] & WM3_LP_EN)
2643 val_r1 = r1->wm_lp[i] & WM1_LP_LATENCY_MASK;
2644 if (r2->wm_lp[i] & WM3_LP_EN)
2645 val_r2 = r2->wm_lp[i] & WM1_LP_LATENCY_MASK;
2646 }
2647
2648 if (val_r1 == val_r2) {
2649 if (r2->enable_fbc_wm && !r1->enable_fbc_wm)
2650 return r2;
2651 else
2652 return r1;
2653 } else if (val_r1 > val_r2) {
2654 return r1;
2655 } else {
2656 return r2;
2657 }
2658}
2659
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002660/*
2661 * The spec says we shouldn't write when we don't need, because every write
2662 * causes WMs to be re-evaluated, expending some power.
2663 */
2664static void hsw_write_wm_values(struct drm_i915_private *dev_priv,
2665 struct hsw_wm_values *results,
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002666 enum intel_ddb_partitioning partitioning)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002667{
2668 struct hsw_wm_values previous;
2669 uint32_t val;
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002670 enum intel_ddb_partitioning prev_partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002671 bool prev_enable_fbc_wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002672
2673 previous.wm_pipe[0] = I915_READ(WM0_PIPEA_ILK);
2674 previous.wm_pipe[1] = I915_READ(WM0_PIPEB_ILK);
2675 previous.wm_pipe[2] = I915_READ(WM0_PIPEC_IVB);
2676 previous.wm_lp[0] = I915_READ(WM1_LP_ILK);
2677 previous.wm_lp[1] = I915_READ(WM2_LP_ILK);
2678 previous.wm_lp[2] = I915_READ(WM3_LP_ILK);
2679 previous.wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
2680 previous.wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
2681 previous.wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
2682 previous.wm_linetime[0] = I915_READ(PIPE_WM_LINETIME(PIPE_A));
2683 previous.wm_linetime[1] = I915_READ(PIPE_WM_LINETIME(PIPE_B));
2684 previous.wm_linetime[2] = I915_READ(PIPE_WM_LINETIME(PIPE_C));
2685
2686 prev_partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002687 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002688
Paulo Zanonicca32e92013-05-31 11:45:06 -03002689 prev_enable_fbc_wm = !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
2690
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002691 if (memcmp(results->wm_pipe, previous.wm_pipe,
2692 sizeof(results->wm_pipe)) == 0 &&
2693 memcmp(results->wm_lp, previous.wm_lp,
2694 sizeof(results->wm_lp)) == 0 &&
2695 memcmp(results->wm_lp_spr, previous.wm_lp_spr,
2696 sizeof(results->wm_lp_spr)) == 0 &&
2697 memcmp(results->wm_linetime, previous.wm_linetime,
2698 sizeof(results->wm_linetime)) == 0 &&
Paulo Zanonicca32e92013-05-31 11:45:06 -03002699 partitioning == prev_partitioning &&
2700 results->enable_fbc_wm == prev_enable_fbc_wm)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002701 return;
2702
2703 if (previous.wm_lp[2] != 0)
2704 I915_WRITE(WM3_LP_ILK, 0);
2705 if (previous.wm_lp[1] != 0)
2706 I915_WRITE(WM2_LP_ILK, 0);
2707 if (previous.wm_lp[0] != 0)
2708 I915_WRITE(WM1_LP_ILK, 0);
2709
2710 if (previous.wm_pipe[0] != results->wm_pipe[0])
2711 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
2712 if (previous.wm_pipe[1] != results->wm_pipe[1])
2713 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
2714 if (previous.wm_pipe[2] != results->wm_pipe[2])
2715 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2716
2717 if (previous.wm_linetime[0] != results->wm_linetime[0])
2718 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
2719 if (previous.wm_linetime[1] != results->wm_linetime[1])
2720 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
2721 if (previous.wm_linetime[2] != results->wm_linetime[2])
2722 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2723
2724 if (prev_partitioning != partitioning) {
2725 val = I915_READ(WM_MISC);
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002726 if (partitioning == INTEL_DDB_PART_1_2)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002727 val &= ~WM_MISC_DATA_PARTITION_5_6;
2728 else
2729 val |= WM_MISC_DATA_PARTITION_5_6;
2730 I915_WRITE(WM_MISC, val);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002731 }
2732
Paulo Zanonicca32e92013-05-31 11:45:06 -03002733 if (prev_enable_fbc_wm != results->enable_fbc_wm) {
2734 val = I915_READ(DISP_ARB_CTL);
2735 if (results->enable_fbc_wm)
2736 val &= ~DISP_FBC_WM_DIS;
2737 else
2738 val |= DISP_FBC_WM_DIS;
2739 I915_WRITE(DISP_ARB_CTL, val);
2740 }
2741
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002742 if (previous.wm_lp_spr[0] != results->wm_lp_spr[0])
2743 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2744 if (previous.wm_lp_spr[1] != results->wm_lp_spr[1])
2745 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2746 if (previous.wm_lp_spr[2] != results->wm_lp_spr[2])
2747 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2748
2749 if (results->wm_lp[0] != 0)
2750 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
2751 if (results->wm_lp[1] != 0)
2752 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
2753 if (results->wm_lp[2] != 0)
2754 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
2755}
2756
2757static void haswell_update_wm(struct drm_device *dev)
2758{
2759 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002760 struct hsw_wm_maximums lp_max_1_2, lp_max_5_6;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002761 struct hsw_pipe_wm_parameters params[3];
Paulo Zanoni861f3382013-05-31 10:19:21 -03002762 struct hsw_wm_values results_1_2, results_5_6, *best_results;
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002763 enum intel_ddb_partitioning partitioning;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002764
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002765 hsw_compute_wm_parameters(dev, params, &lp_max_1_2, &lp_max_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002766
Ville Syrjälä53615a52013-08-01 16:18:50 +03002767 hsw_compute_wm_results(dev, params,
Ville Syrjälä53615a52013-08-01 16:18:50 +03002768 &lp_max_1_2, &results_1_2);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002769 if (lp_max_1_2.pri != lp_max_5_6.pri) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03002770 hsw_compute_wm_results(dev, params,
Ville Syrjälä53615a52013-08-01 16:18:50 +03002771 &lp_max_5_6, &results_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002772 best_results = hsw_find_best_result(&results_1_2, &results_5_6);
2773 } else {
2774 best_results = &results_1_2;
2775 }
2776
2777 partitioning = (best_results == &results_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002778 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002779
2780 hsw_write_wm_values(dev_priv, best_results, partitioning);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002781}
2782
Paulo Zanoni526682e2013-05-24 11:59:18 -03002783static void haswell_update_sprite_wm(struct drm_device *dev, int pipe,
2784 uint32_t sprite_width, int pixel_size,
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03002785 bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03002786{
2787 struct drm_plane *plane;
2788
2789 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2790 struct intel_plane *intel_plane = to_intel_plane(plane);
2791
2792 if (intel_plane->pipe == pipe) {
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03002793 intel_plane->wm.enabled = enabled;
2794 intel_plane->wm.scaled = scaled;
Ville Syrjälä67ca28f2013-07-05 11:57:14 +03002795 intel_plane->wm.horiz_pixels = sprite_width;
Paulo Zanoni526682e2013-05-24 11:59:18 -03002796 intel_plane->wm.bytes_per_pixel = pixel_size;
2797 break;
2798 }
2799 }
2800
2801 haswell_update_wm(dev);
2802}
2803
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002804static bool
2805sandybridge_compute_sprite_wm(struct drm_device *dev, int plane,
2806 uint32_t sprite_width, int pixel_size,
2807 const struct intel_watermark_params *display,
2808 int display_latency_ns, int *sprite_wm)
2809{
2810 struct drm_crtc *crtc;
2811 int clock;
2812 int entries, tlb_miss;
2813
2814 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00002815 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002816 *sprite_wm = display->guard_size;
2817 return false;
2818 }
2819
2820 clock = crtc->mode.clock;
2821
2822 /* Use the small buffer method to calculate the sprite watermark */
2823 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
2824 tlb_miss = display->fifo_size*display->cacheline_size -
2825 sprite_width * 8;
2826 if (tlb_miss > 0)
2827 entries += tlb_miss;
2828 entries = DIV_ROUND_UP(entries, display->cacheline_size);
2829 *sprite_wm = entries + display->guard_size;
2830 if (*sprite_wm > (int)display->max_wm)
2831 *sprite_wm = display->max_wm;
2832
2833 return true;
2834}
2835
2836static bool
2837sandybridge_compute_sprite_srwm(struct drm_device *dev, int plane,
2838 uint32_t sprite_width, int pixel_size,
2839 const struct intel_watermark_params *display,
2840 int latency_ns, int *sprite_wm)
2841{
2842 struct drm_crtc *crtc;
2843 unsigned long line_time_us;
2844 int clock;
2845 int line_count, line_size;
2846 int small, large;
2847 int entries;
2848
2849 if (!latency_ns) {
2850 *sprite_wm = 0;
2851 return false;
2852 }
2853
2854 crtc = intel_get_crtc_for_plane(dev, plane);
2855 clock = crtc->mode.clock;
2856 if (!clock) {
2857 *sprite_wm = 0;
2858 return false;
2859 }
2860
2861 line_time_us = (sprite_width * 1000) / clock;
2862 if (!line_time_us) {
2863 *sprite_wm = 0;
2864 return false;
2865 }
2866
2867 line_count = (latency_ns / line_time_us + 1000) / 1000;
2868 line_size = sprite_width * pixel_size;
2869
2870 /* Use the minimum of the small and large buffer method for primary */
2871 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
2872 large = line_count * line_size;
2873
2874 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
2875 *sprite_wm = entries + display->guard_size;
2876
2877 return *sprite_wm > 0x3ff ? false : true;
2878}
2879
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03002880static void sandybridge_update_sprite_wm(struct drm_device *dev, int pipe,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002881 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03002882 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002883{
2884 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002885 int latency = dev_priv->wm.spr_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002886 u32 val;
2887 int sprite_wm, reg;
2888 int ret;
2889
Ville Syrjälä39db4a42013-08-06 22:24:00 +03002890 if (!enabled)
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002891 return;
2892
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002893 switch (pipe) {
2894 case 0:
2895 reg = WM0_PIPEA_ILK;
2896 break;
2897 case 1:
2898 reg = WM0_PIPEB_ILK;
2899 break;
2900 case 2:
2901 reg = WM0_PIPEC_IVB;
2902 break;
2903 default:
2904 return; /* bad pipe */
2905 }
2906
2907 ret = sandybridge_compute_sprite_wm(dev, pipe, sprite_width, pixel_size,
2908 &sandybridge_display_wm_info,
2909 latency, &sprite_wm);
2910 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002911 DRM_DEBUG_KMS("failed to compute sprite wm for pipe %c\n",
2912 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002913 return;
2914 }
2915
2916 val = I915_READ(reg);
2917 val &= ~WM0_PIPE_SPRITE_MASK;
2918 I915_WRITE(reg, val | (sprite_wm << WM0_PIPE_SPRITE_SHIFT));
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002919 DRM_DEBUG_KMS("sprite watermarks For pipe %c - %d\n", pipe_name(pipe), sprite_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002920
2921
2922 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
2923 pixel_size,
2924 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002925 dev_priv->wm.spr_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002926 &sprite_wm);
2927 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002928 DRM_DEBUG_KMS("failed to compute sprite lp1 wm on pipe %c\n",
2929 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002930 return;
2931 }
2932 I915_WRITE(WM1S_LP_ILK, sprite_wm);
2933
2934 /* Only IVB has two more LP watermarks for sprite */
2935 if (!IS_IVYBRIDGE(dev))
2936 return;
2937
2938 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
2939 pixel_size,
2940 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002941 dev_priv->wm.spr_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002942 &sprite_wm);
2943 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002944 DRM_DEBUG_KMS("failed to compute sprite lp2 wm on pipe %c\n",
2945 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002946 return;
2947 }
2948 I915_WRITE(WM2S_LP_IVB, sprite_wm);
2949
2950 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
2951 pixel_size,
2952 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002953 dev_priv->wm.spr_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002954 &sprite_wm);
2955 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002956 DRM_DEBUG_KMS("failed to compute sprite lp3 wm on pipe %c\n",
2957 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002958 return;
2959 }
2960 I915_WRITE(WM3S_LP_IVB, sprite_wm);
2961}
2962
2963/**
2964 * intel_update_watermarks - update FIFO watermark values based on current modes
2965 *
2966 * Calculate watermark values for the various WM regs based on current mode
2967 * and plane configuration.
2968 *
2969 * There are several cases to deal with here:
2970 * - normal (i.e. non-self-refresh)
2971 * - self-refresh (SR) mode
2972 * - lines are large relative to FIFO size (buffer can hold up to 2)
2973 * - lines are small relative to FIFO size (buffer can hold more than 2
2974 * lines), so need to account for TLB latency
2975 *
2976 * The normal calculation is:
2977 * watermark = dotclock * bytes per pixel * latency
2978 * where latency is platform & configuration dependent (we assume pessimal
2979 * values here).
2980 *
2981 * The SR calculation is:
2982 * watermark = (trunc(latency/line time)+1) * surface width *
2983 * bytes per pixel
2984 * where
2985 * line time = htotal / dotclock
2986 * surface width = hdisplay for normal plane and 64 for cursor
2987 * and latency is assumed to be high, as above.
2988 *
2989 * The final value programmed to the register should always be rounded up,
2990 * and include an extra 2 entries to account for clock crossings.
2991 *
2992 * We don't use the sprite, so we can ignore that. And on Crestline we have
2993 * to set the non-SR watermarks to 8.
2994 */
2995void intel_update_watermarks(struct drm_device *dev)
2996{
2997 struct drm_i915_private *dev_priv = dev->dev_private;
2998
2999 if (dev_priv->display.update_wm)
3000 dev_priv->display.update_wm(dev);
3001}
3002
3003void intel_update_sprite_watermarks(struct drm_device *dev, int pipe,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003004 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003005 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003006{
3007 struct drm_i915_private *dev_priv = dev->dev_private;
3008
3009 if (dev_priv->display.update_sprite_wm)
3010 dev_priv->display.update_sprite_wm(dev, pipe, sprite_width,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003011 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003012}
3013
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003014static struct drm_i915_gem_object *
3015intel_alloc_context_page(struct drm_device *dev)
3016{
3017 struct drm_i915_gem_object *ctx;
3018 int ret;
3019
3020 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3021
3022 ctx = i915_gem_alloc_object(dev, 4096);
3023 if (!ctx) {
3024 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
3025 return NULL;
3026 }
3027
Ben Widawskyc37e2202013-07-31 16:59:58 -07003028 ret = i915_gem_obj_ggtt_pin(ctx, 4096, true, false);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003029 if (ret) {
3030 DRM_ERROR("failed to pin power context: %d\n", ret);
3031 goto err_unref;
3032 }
3033
3034 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
3035 if (ret) {
3036 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
3037 goto err_unpin;
3038 }
3039
3040 return ctx;
3041
3042err_unpin:
3043 i915_gem_object_unpin(ctx);
3044err_unref:
3045 drm_gem_object_unreference(&ctx->base);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003046 return NULL;
3047}
3048
Daniel Vetter92703882012-08-09 16:46:01 +02003049/**
3050 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003051 */
3052DEFINE_SPINLOCK(mchdev_lock);
3053
3054/* Global for IPS driver to get at the current i915 device. Protected by
3055 * mchdev_lock. */
3056static struct drm_i915_private *i915_mch_dev;
3057
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003058bool ironlake_set_drps(struct drm_device *dev, u8 val)
3059{
3060 struct drm_i915_private *dev_priv = dev->dev_private;
3061 u16 rgvswctl;
3062
Daniel Vetter92703882012-08-09 16:46:01 +02003063 assert_spin_locked(&mchdev_lock);
3064
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003065 rgvswctl = I915_READ16(MEMSWCTL);
3066 if (rgvswctl & MEMCTL_CMD_STS) {
3067 DRM_DEBUG("gpu busy, RCS change rejected\n");
3068 return false; /* still busy with another command */
3069 }
3070
3071 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3072 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3073 I915_WRITE16(MEMSWCTL, rgvswctl);
3074 POSTING_READ16(MEMSWCTL);
3075
3076 rgvswctl |= MEMCTL_CMD_STS;
3077 I915_WRITE16(MEMSWCTL, rgvswctl);
3078
3079 return true;
3080}
3081
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003082static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003083{
3084 struct drm_i915_private *dev_priv = dev->dev_private;
3085 u32 rgvmodectl = I915_READ(MEMMODECTL);
3086 u8 fmax, fmin, fstart, vstart;
3087
Daniel Vetter92703882012-08-09 16:46:01 +02003088 spin_lock_irq(&mchdev_lock);
3089
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003090 /* Enable temp reporting */
3091 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3092 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3093
3094 /* 100ms RC evaluation intervals */
3095 I915_WRITE(RCUPEI, 100000);
3096 I915_WRITE(RCDNEI, 100000);
3097
3098 /* Set max/min thresholds to 90ms and 80ms respectively */
3099 I915_WRITE(RCBMAXAVG, 90000);
3100 I915_WRITE(RCBMINAVG, 80000);
3101
3102 I915_WRITE(MEMIHYST, 1);
3103
3104 /* Set up min, max, and cur for interrupt handling */
3105 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3106 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3107 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3108 MEMMODE_FSTART_SHIFT;
3109
3110 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3111 PXVFREQ_PX_SHIFT;
3112
Daniel Vetter20e4d402012-08-08 23:35:39 +02003113 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3114 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003115
Daniel Vetter20e4d402012-08-08 23:35:39 +02003116 dev_priv->ips.max_delay = fstart;
3117 dev_priv->ips.min_delay = fmin;
3118 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003119
3120 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3121 fmax, fmin, fstart);
3122
3123 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3124
3125 /*
3126 * Interrupts will be enabled in ironlake_irq_postinstall
3127 */
3128
3129 I915_WRITE(VIDSTART, vstart);
3130 POSTING_READ(VIDSTART);
3131
3132 rgvmodectl |= MEMMODE_SWMODE_EN;
3133 I915_WRITE(MEMMODECTL, rgvmodectl);
3134
Daniel Vetter92703882012-08-09 16:46:01 +02003135 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003136 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003137 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003138
3139 ironlake_set_drps(dev, fstart);
3140
Daniel Vetter20e4d402012-08-08 23:35:39 +02003141 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003142 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003143 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3144 dev_priv->ips.last_count2 = I915_READ(0x112f4);
3145 getrawmonotonic(&dev_priv->ips.last_time2);
Daniel Vetter92703882012-08-09 16:46:01 +02003146
3147 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003148}
3149
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003150static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003151{
3152 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003153 u16 rgvswctl;
3154
3155 spin_lock_irq(&mchdev_lock);
3156
3157 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003158
3159 /* Ack interrupts, disable EFC interrupt */
3160 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3161 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3162 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3163 I915_WRITE(DEIIR, DE_PCU_EVENT);
3164 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3165
3166 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003167 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003168 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003169 rgvswctl |= MEMCTL_CMD_STS;
3170 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003171 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003172
Daniel Vetter92703882012-08-09 16:46:01 +02003173 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003174}
3175
Daniel Vetteracbe9472012-07-26 11:50:05 +02003176/* There's a funny hw issue where the hw returns all 0 when reading from
3177 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3178 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3179 * all limits and the gpu stuck at whatever frequency it is at atm).
3180 */
Daniel Vetter65bccb52012-08-08 17:42:52 +02003181static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 *val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003182{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003183 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003184
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003185 limits = 0;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003186
3187 if (*val >= dev_priv->rps.max_delay)
3188 *val = dev_priv->rps.max_delay;
3189 limits |= dev_priv->rps.max_delay << 24;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003190
Daniel Vetter20b46e52012-07-26 11:16:14 +02003191 /* Only set the down limit when we've reached the lowest level to avoid
3192 * getting more interrupts, otherwise leave this clear. This prevents a
3193 * race in the hw when coming out of rc6: There's a tiny window where
3194 * the hw runs at the minimal clock before selecting the desired
3195 * frequency, if the down threshold expires in that window we will not
3196 * receive a down interrupt. */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003197 if (*val <= dev_priv->rps.min_delay) {
3198 *val = dev_priv->rps.min_delay;
3199 limits |= dev_priv->rps.min_delay << 16;
Daniel Vetter20b46e52012-07-26 11:16:14 +02003200 }
3201
3202 return limits;
3203}
3204
3205void gen6_set_rps(struct drm_device *dev, u8 val)
3206{
3207 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter65bccb52012-08-08 17:42:52 +02003208 u32 limits = gen6_rps_limits(dev_priv, &val);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003209
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003210 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky79249632012-09-07 19:43:42 -07003211 WARN_ON(val > dev_priv->rps.max_delay);
3212 WARN_ON(val < dev_priv->rps.min_delay);
Daniel Vetter004777c2012-08-09 15:07:01 +02003213
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003214 if (val == dev_priv->rps.cur_delay)
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003215 return;
3216
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003217 if (IS_HASWELL(dev))
3218 I915_WRITE(GEN6_RPNSWREQ,
3219 HSW_FREQUENCY(val));
3220 else
3221 I915_WRITE(GEN6_RPNSWREQ,
3222 GEN6_FREQUENCY(val) |
3223 GEN6_OFFSET(0) |
3224 GEN6_AGGRESSIVE_TURBO);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003225
3226 /* Make sure we continue to get interrupts
3227 * until we hit the minimum or maximum frequencies.
3228 */
3229 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
3230
Ben Widawskyd5570a72012-09-07 19:43:41 -07003231 POSTING_READ(GEN6_RPNSWREQ);
3232
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003233 dev_priv->rps.cur_delay = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02003234
3235 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003236}
3237
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003238/*
3239 * Wait until the previous freq change has completed,
3240 * or the timeout elapsed, and then update our notion
3241 * of the current GPU frequency.
3242 */
3243static void vlv_update_rps_cur_delay(struct drm_i915_private *dev_priv)
3244{
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003245 u32 pval;
3246
3247 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3248
Ville Syrjäläe8474402013-06-26 17:43:24 +03003249 if (wait_for(((pval = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS)) & GENFREQSTATUS) == 0, 10))
3250 DRM_DEBUG_DRIVER("timed out waiting for Punit\n");
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003251
3252 pval >>= 8;
3253
3254 if (pval != dev_priv->rps.cur_delay)
3255 DRM_DEBUG_DRIVER("Punit overrode GPU freq: %d MHz (%u) requested, but got %d Mhz (%u)\n",
3256 vlv_gpu_freq(dev_priv->mem_freq, dev_priv->rps.cur_delay),
3257 dev_priv->rps.cur_delay,
3258 vlv_gpu_freq(dev_priv->mem_freq, pval), pval);
3259
3260 dev_priv->rps.cur_delay = pval;
3261}
3262
Jesse Barnes0a073b82013-04-17 15:54:58 -07003263void valleyview_set_rps(struct drm_device *dev, u8 val)
3264{
3265 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7a670922013-06-25 19:21:06 +03003266
3267 gen6_rps_limits(dev_priv, &val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003268
3269 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3270 WARN_ON(val > dev_priv->rps.max_delay);
3271 WARN_ON(val < dev_priv->rps.min_delay);
3272
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003273 vlv_update_rps_cur_delay(dev_priv);
3274
Ville Syrjälä73008b92013-06-25 19:21:01 +03003275 DRM_DEBUG_DRIVER("GPU freq request from %d MHz (%u) to %d MHz (%u)\n",
Jesse Barnes0a073b82013-04-17 15:54:58 -07003276 vlv_gpu_freq(dev_priv->mem_freq,
3277 dev_priv->rps.cur_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03003278 dev_priv->rps.cur_delay,
3279 vlv_gpu_freq(dev_priv->mem_freq, val), val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003280
3281 if (val == dev_priv->rps.cur_delay)
3282 return;
3283
Jani Nikulaae992582013-05-22 15:36:19 +03003284 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003285
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003286 dev_priv->rps.cur_delay = val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003287
3288 trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv->mem_freq, val));
3289}
3290
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003291static void gen6_disable_rps_interrupts(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003292{
3293 struct drm_i915_private *dev_priv = dev->dev_private;
3294
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003295 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Ben Widawsky48484052013-05-28 19:22:27 -07003296 I915_WRITE(GEN6_PMIER, I915_READ(GEN6_PMIER) & ~GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003297 /* Complete PM interrupt masking here doesn't race with the rps work
3298 * item again unmasking PM interrupts because that is using a different
3299 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3300 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3301
Daniel Vetter59cdb632013-07-04 23:35:28 +02003302 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003303 dev_priv->rps.pm_iir = 0;
Daniel Vetter59cdb632013-07-04 23:35:28 +02003304 spin_unlock_irq(&dev_priv->irq_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003305
Ben Widawsky48484052013-05-28 19:22:27 -07003306 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003307}
3308
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003309static void gen6_disable_rps(struct drm_device *dev)
3310{
3311 struct drm_i915_private *dev_priv = dev->dev_private;
3312
3313 I915_WRITE(GEN6_RC_CONTROL, 0);
3314 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
3315
3316 gen6_disable_rps_interrupts(dev);
3317}
3318
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003319static void valleyview_disable_rps(struct drm_device *dev)
3320{
3321 struct drm_i915_private *dev_priv = dev->dev_private;
3322
3323 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003324
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003325 gen6_disable_rps_interrupts(dev);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003326
3327 if (dev_priv->vlv_pctx) {
3328 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
3329 dev_priv->vlv_pctx = NULL;
3330 }
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003331}
3332
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003333int intel_enable_rc6(const struct drm_device *dev)
3334{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01003335 /* No RC6 before Ironlake */
3336 if (INTEL_INFO(dev)->gen < 5)
3337 return 0;
3338
Daniel Vetter456470e2012-08-08 23:35:40 +02003339 /* Respect the kernel parameter if it is set */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003340 if (i915_enable_rc6 >= 0)
3341 return i915_enable_rc6;
3342
Chris Wilson6567d742012-11-10 10:00:06 +00003343 /* Disable RC6 on Ironlake */
3344 if (INTEL_INFO(dev)->gen == 5)
3345 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003346
Daniel Vetter456470e2012-08-08 23:35:40 +02003347 if (IS_HASWELL(dev)) {
3348 DRM_DEBUG_DRIVER("Haswell: only RC6 available\n");
3349 return INTEL_RC6_ENABLE;
3350 }
3351
3352 /* snb/ivb have more than one rc6 state. */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003353 if (INTEL_INFO(dev)->gen == 6) {
3354 DRM_DEBUG_DRIVER("Sandybridge: deep RC6 disabled\n");
3355 return INTEL_RC6_ENABLE;
3356 }
Daniel Vetter456470e2012-08-08 23:35:40 +02003357
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003358 DRM_DEBUG_DRIVER("RC6 and deep RC6 enabled\n");
3359 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
3360}
3361
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003362static void gen6_enable_rps_interrupts(struct drm_device *dev)
3363{
3364 struct drm_i915_private *dev_priv = dev->dev_private;
3365
3366 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vettera0b33352013-07-04 23:35:34 +02003367 WARN_ON(dev_priv->rps.pm_iir);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003368 I915_WRITE(GEN6_PMIMR, I915_READ(GEN6_PMIMR) & ~GEN6_PM_RPS_EVENTS);
3369 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
3370 spin_unlock_irq(&dev_priv->irq_lock);
3371 /* unmask all PM interrupts */
3372 I915_WRITE(GEN6_PMINTRMSK, 0);
3373}
3374
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003375static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003376{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003377 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003378 struct intel_ring_buffer *ring;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003379 u32 rp_state_cap;
3380 u32 gt_perf_status;
Ben Widawsky31643d52012-09-26 10:34:01 -07003381 u32 rc6vids, pcu_mbox, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003382 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003383 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07003384 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003385
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003386 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003387
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003388 /* Here begins a magic sequence of register writes to enable
3389 * auto-downclocking.
3390 *
3391 * Perhaps there might be some value in exposing these to
3392 * userspace...
3393 */
3394 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003395
3396 /* Clear the DBG now so we don't confuse earlier errors */
3397 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3398 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3399 I915_WRITE(GTFIFODBG, gtfifodbg);
3400 }
3401
3402 gen6_gt_force_wake_get(dev_priv);
3403
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003404 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3405 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
3406
Ben Widawsky31c77382013-04-05 14:29:22 -07003407 /* In units of 50MHz */
3408 dev_priv->rps.hw_max = dev_priv->rps.max_delay = rp_state_cap & 0xff;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003409 dev_priv->rps.min_delay = (rp_state_cap & 0xff0000) >> 16;
3410 dev_priv->rps.cur_delay = 0;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003411
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003412 /* disable the counters and set deterministic thresholds */
3413 I915_WRITE(GEN6_RC_CONTROL, 0);
3414
3415 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
3416 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
3417 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
3418 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3419 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3420
Chris Wilsonb4519512012-05-11 14:29:30 +01003421 for_each_ring(ring, dev_priv, i)
3422 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003423
3424 I915_WRITE(GEN6_RC_SLEEP, 0);
3425 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
3426 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08003427 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003428 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
3429
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003430 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003431 rc6_mode = intel_enable_rc6(dev_priv->dev);
3432 if (rc6_mode & INTEL_RC6_ENABLE)
3433 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
3434
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003435 /* We don't use those on Haswell */
3436 if (!IS_HASWELL(dev)) {
3437 if (rc6_mode & INTEL_RC6p_ENABLE)
3438 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003439
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003440 if (rc6_mode & INTEL_RC6pp_ENABLE)
3441 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
3442 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003443
3444 DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003445 (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3446 (rc6_mask & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3447 (rc6_mask & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003448
3449 I915_WRITE(GEN6_RC_CONTROL,
3450 rc6_mask |
3451 GEN6_RC_CTL_EI_MODE(1) |
3452 GEN6_RC_CTL_HW_ENABLE);
3453
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003454 if (IS_HASWELL(dev)) {
3455 I915_WRITE(GEN6_RPNSWREQ,
3456 HSW_FREQUENCY(10));
3457 I915_WRITE(GEN6_RC_VIDEO_FREQ,
3458 HSW_FREQUENCY(12));
3459 } else {
3460 I915_WRITE(GEN6_RPNSWREQ,
3461 GEN6_FREQUENCY(10) |
3462 GEN6_OFFSET(0) |
3463 GEN6_AGGRESSIVE_TURBO);
3464 I915_WRITE(GEN6_RC_VIDEO_FREQ,
3465 GEN6_FREQUENCY(12));
3466 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003467
3468 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
3469 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003470 dev_priv->rps.max_delay << 24 |
3471 dev_priv->rps.min_delay << 16);
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003472
Daniel Vetter1ee9ae32012-08-15 10:41:45 +02003473 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
3474 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
3475 I915_WRITE(GEN6_RP_UP_EI, 66000);
3476 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003477
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003478 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3479 I915_WRITE(GEN6_RP_CONTROL,
3480 GEN6_RP_MEDIA_TURBO |
Jesse Barnes89ba8292012-05-22 09:30:33 -07003481 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003482 GEN6_RP_MEDIA_IS_GFX |
3483 GEN6_RP_ENABLE |
3484 GEN6_RP_UP_BUSY_AVG |
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003485 (IS_HASWELL(dev) ? GEN7_RP_DOWN_IDLE_AVG : GEN6_RP_DOWN_IDLE_CONT));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003486
Ben Widawsky42c05262012-09-26 10:34:00 -07003487 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawsky988b36e2013-04-23 17:33:02 -07003488 if (!ret) {
Ben Widawsky42c05262012-09-26 10:34:00 -07003489 pcu_mbox = 0;
3490 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003491 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
Ben Widawsky10e08492013-04-05 14:29:23 -07003492 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003493 (dev_priv->rps.max_delay & 0xff) * 50,
3494 (pcu_mbox & 0xff) * 50);
Ben Widawsky31c77382013-04-05 14:29:22 -07003495 dev_priv->rps.hw_max = pcu_mbox & 0xff;
Ben Widawsky42c05262012-09-26 10:34:00 -07003496 }
3497 } else {
3498 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003499 }
3500
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003501 gen6_set_rps(dev_priv->dev, (gt_perf_status & 0xff00) >> 8);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003502
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003503 gen6_enable_rps_interrupts(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003504
Ben Widawsky31643d52012-09-26 10:34:01 -07003505 rc6vids = 0;
3506 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
3507 if (IS_GEN6(dev) && ret) {
3508 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
3509 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
3510 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
3511 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
3512 rc6vids &= 0xffff00;
3513 rc6vids |= GEN6_ENCODE_RC6_VID(450);
3514 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
3515 if (ret)
3516 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
3517 }
3518
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003519 gen6_gt_force_wake_put(dev_priv);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003520}
3521
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003522static void gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003523{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003524 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003525 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003526 unsigned int gpu_freq;
3527 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003528 int scaling_factor = 180;
3529
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003530 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003531
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003532 max_ia_freq = cpufreq_quick_get_max(0);
3533 /*
3534 * Default to measured freq if none found, PCU will ensure we don't go
3535 * over
3536 */
3537 if (!max_ia_freq)
3538 max_ia_freq = tsc_khz;
3539
3540 /* Convert from kHz to MHz */
3541 max_ia_freq /= 1000;
3542
Chris Wilson3ebecd02013-04-12 19:10:13 +01003543 min_ring_freq = I915_READ(MCHBAR_MIRROR_BASE_SNB + DCLK);
3544 /* convert DDR frequency from units of 133.3MHz to bandwidth */
3545 min_ring_freq = (2 * 4 * min_ring_freq + 2) / 3;
3546
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003547 /*
3548 * For each potential GPU frequency, load a ring frequency we'd like
3549 * to use for memory access. We do this by specifying the IA frequency
3550 * the PCU should use as a reference to determine the ring frequency.
3551 */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003552 for (gpu_freq = dev_priv->rps.max_delay; gpu_freq >= dev_priv->rps.min_delay;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003553 gpu_freq--) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003554 int diff = dev_priv->rps.max_delay - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003555 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003556
Chris Wilson3ebecd02013-04-12 19:10:13 +01003557 if (IS_HASWELL(dev)) {
3558 ring_freq = (gpu_freq * 5 + 3) / 4;
3559 ring_freq = max(min_ring_freq, ring_freq);
3560 /* leave ia_freq as the default, chosen by cpufreq */
3561 } else {
3562 /* On older processors, there is no separate ring
3563 * clock domain, so in order to boost the bandwidth
3564 * of the ring, we need to upclock the CPU (ia_freq).
3565 *
3566 * For GPU frequencies less than 750MHz,
3567 * just use the lowest ring freq.
3568 */
3569 if (gpu_freq < min_freq)
3570 ia_freq = 800;
3571 else
3572 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
3573 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
3574 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003575
Ben Widawsky42c05262012-09-26 10:34:00 -07003576 sandybridge_pcode_write(dev_priv,
3577 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01003578 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
3579 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
3580 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003581 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003582}
3583
Jesse Barnes0a073b82013-04-17 15:54:58 -07003584int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
3585{
3586 u32 val, rp0;
3587
Jani Nikula64936252013-05-22 15:36:20 +03003588 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003589
3590 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
3591 /* Clamp to max */
3592 rp0 = min_t(u32, rp0, 0xea);
3593
3594 return rp0;
3595}
3596
3597static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
3598{
3599 u32 val, rpe;
3600
Jani Nikula64936252013-05-22 15:36:20 +03003601 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003602 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03003603 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003604 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
3605
3606 return rpe;
3607}
3608
3609int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
3610{
Jani Nikula64936252013-05-22 15:36:20 +03003611 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003612}
3613
Jesse Barnes52ceb902013-04-23 10:09:26 -07003614static void vlv_rps_timer_work(struct work_struct *work)
3615{
3616 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
3617 rps.vlv_work.work);
3618
3619 /*
3620 * Timer fired, we must be idle. Drop to min voltage state.
3621 * Note: we use RPe here since it should match the
3622 * Vmin we were shooting for. That should give us better
3623 * perf when we come back out of RC6 than if we used the
3624 * min freq available.
3625 */
3626 mutex_lock(&dev_priv->rps.hw_lock);
Ville Syrjälä6dc58482013-06-25 21:38:10 +03003627 if (dev_priv->rps.cur_delay > dev_priv->rps.rpe_delay)
3628 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes52ceb902013-04-23 10:09:26 -07003629 mutex_unlock(&dev_priv->rps.hw_lock);
3630}
3631
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003632static void valleyview_setup_pctx(struct drm_device *dev)
3633{
3634 struct drm_i915_private *dev_priv = dev->dev_private;
3635 struct drm_i915_gem_object *pctx;
3636 unsigned long pctx_paddr;
3637 u32 pcbr;
3638 int pctx_size = 24*1024;
3639
3640 pcbr = I915_READ(VLV_PCBR);
3641 if (pcbr) {
3642 /* BIOS set it up already, grab the pre-alloc'd space */
3643 int pcbr_offset;
3644
3645 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
3646 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
3647 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02003648 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003649 pctx_size);
3650 goto out;
3651 }
3652
3653 /*
3654 * From the Gunit register HAS:
3655 * The Gfx driver is expected to program this register and ensure
3656 * proper allocation within Gfx stolen memory. For example, this
3657 * register should be programmed such than the PCBR range does not
3658 * overlap with other ranges, such as the frame buffer, protected
3659 * memory, or any other relevant ranges.
3660 */
3661 pctx = i915_gem_object_create_stolen(dev, pctx_size);
3662 if (!pctx) {
3663 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
3664 return;
3665 }
3666
3667 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
3668 I915_WRITE(VLV_PCBR, pctx_paddr);
3669
3670out:
3671 dev_priv->vlv_pctx = pctx;
3672}
3673
Jesse Barnes0a073b82013-04-17 15:54:58 -07003674static void valleyview_enable_rps(struct drm_device *dev)
3675{
3676 struct drm_i915_private *dev_priv = dev->dev_private;
3677 struct intel_ring_buffer *ring;
Ville Syrjälä73008b92013-06-25 19:21:01 +03003678 u32 gtfifodbg, val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003679 int i;
3680
3681 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3682
3683 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3684 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3685 I915_WRITE(GTFIFODBG, gtfifodbg);
3686 }
3687
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003688 valleyview_setup_pctx(dev);
3689
Jesse Barnes0a073b82013-04-17 15:54:58 -07003690 gen6_gt_force_wake_get(dev_priv);
3691
3692 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
3693 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
3694 I915_WRITE(GEN6_RP_UP_EI, 66000);
3695 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
3696
3697 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3698
3699 I915_WRITE(GEN6_RP_CONTROL,
3700 GEN6_RP_MEDIA_TURBO |
3701 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3702 GEN6_RP_MEDIA_IS_GFX |
3703 GEN6_RP_ENABLE |
3704 GEN6_RP_UP_BUSY_AVG |
3705 GEN6_RP_DOWN_IDLE_CONT);
3706
3707 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
3708 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3709 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3710
3711 for_each_ring(ring, dev_priv, i)
3712 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
3713
3714 I915_WRITE(GEN6_RC6_THRESHOLD, 0xc350);
3715
3716 /* allows RC6 residency counter to work */
3717 I915_WRITE(0x138104, _MASKED_BIT_ENABLE(0x3));
3718 I915_WRITE(GEN6_RC_CONTROL,
3719 GEN7_RC_CTL_TO_MODE);
3720
Jani Nikula64936252013-05-22 15:36:20 +03003721 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes24459662013-05-02 10:48:08 -07003722 switch ((val >> 6) & 3) {
3723 case 0:
3724 case 1:
3725 dev_priv->mem_freq = 800;
3726 break;
3727 case 2:
3728 dev_priv->mem_freq = 1066;
3729 break;
3730 case 3:
3731 dev_priv->mem_freq = 1333;
3732 break;
3733 }
Jesse Barnes0a073b82013-04-17 15:54:58 -07003734 DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
3735
3736 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no");
3737 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
3738
Jesse Barnes0a073b82013-04-17 15:54:58 -07003739 dev_priv->rps.cur_delay = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03003740 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
3741 vlv_gpu_freq(dev_priv->mem_freq,
3742 dev_priv->rps.cur_delay),
3743 dev_priv->rps.cur_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003744
3745 dev_priv->rps.max_delay = valleyview_rps_max_freq(dev_priv);
3746 dev_priv->rps.hw_max = dev_priv->rps.max_delay;
Ville Syrjälä73008b92013-06-25 19:21:01 +03003747 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
3748 vlv_gpu_freq(dev_priv->mem_freq,
3749 dev_priv->rps.max_delay),
3750 dev_priv->rps.max_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003751
Ville Syrjälä73008b92013-06-25 19:21:01 +03003752 dev_priv->rps.rpe_delay = valleyview_rps_rpe_freq(dev_priv);
3753 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
3754 vlv_gpu_freq(dev_priv->mem_freq,
3755 dev_priv->rps.rpe_delay),
3756 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003757
Ville Syrjälä73008b92013-06-25 19:21:01 +03003758 dev_priv->rps.min_delay = valleyview_rps_min_freq(dev_priv);
3759 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
3760 vlv_gpu_freq(dev_priv->mem_freq,
3761 dev_priv->rps.min_delay),
3762 dev_priv->rps.min_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003763
Ville Syrjälä73008b92013-06-25 19:21:01 +03003764 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
3765 vlv_gpu_freq(dev_priv->mem_freq,
3766 dev_priv->rps.rpe_delay),
3767 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003768
Jesse Barnes52ceb902013-04-23 10:09:26 -07003769 INIT_DELAYED_WORK(&dev_priv->rps.vlv_work, vlv_rps_timer_work);
3770
Ville Syrjälä73008b92013-06-25 19:21:01 +03003771 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003772
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003773 gen6_enable_rps_interrupts(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003774
3775 gen6_gt_force_wake_put(dev_priv);
3776}
3777
Daniel Vetter930ebb42012-06-29 23:32:16 +02003778void ironlake_teardown_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003779{
3780 struct drm_i915_private *dev_priv = dev->dev_private;
3781
Daniel Vetter3e373942012-11-02 19:55:04 +01003782 if (dev_priv->ips.renderctx) {
3783 i915_gem_object_unpin(dev_priv->ips.renderctx);
3784 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
3785 dev_priv->ips.renderctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003786 }
3787
Daniel Vetter3e373942012-11-02 19:55:04 +01003788 if (dev_priv->ips.pwrctx) {
3789 i915_gem_object_unpin(dev_priv->ips.pwrctx);
3790 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
3791 dev_priv->ips.pwrctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003792 }
3793}
3794
Daniel Vetter930ebb42012-06-29 23:32:16 +02003795static void ironlake_disable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003796{
3797 struct drm_i915_private *dev_priv = dev->dev_private;
3798
3799 if (I915_READ(PWRCTXA)) {
3800 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
3801 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
3802 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
3803 50);
3804
3805 I915_WRITE(PWRCTXA, 0);
3806 POSTING_READ(PWRCTXA);
3807
3808 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
3809 POSTING_READ(RSTDBYCTL);
3810 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003811}
3812
3813static int ironlake_setup_rc6(struct drm_device *dev)
3814{
3815 struct drm_i915_private *dev_priv = dev->dev_private;
3816
Daniel Vetter3e373942012-11-02 19:55:04 +01003817 if (dev_priv->ips.renderctx == NULL)
3818 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
3819 if (!dev_priv->ips.renderctx)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003820 return -ENOMEM;
3821
Daniel Vetter3e373942012-11-02 19:55:04 +01003822 if (dev_priv->ips.pwrctx == NULL)
3823 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
3824 if (!dev_priv->ips.pwrctx) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003825 ironlake_teardown_rc6(dev);
3826 return -ENOMEM;
3827 }
3828
3829 return 0;
3830}
3831
Daniel Vetter930ebb42012-06-29 23:32:16 +02003832static void ironlake_enable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003833{
3834 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +02003835 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson3e960502012-11-27 16:22:54 +00003836 bool was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003837 int ret;
3838
3839 /* rc6 disabled by default due to repeated reports of hanging during
3840 * boot and resume.
3841 */
3842 if (!intel_enable_rc6(dev))
3843 return;
3844
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003845 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3846
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003847 ret = ironlake_setup_rc6(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003848 if (ret)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003849 return;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003850
Chris Wilson3e960502012-11-27 16:22:54 +00003851 was_interruptible = dev_priv->mm.interruptible;
3852 dev_priv->mm.interruptible = false;
3853
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003854 /*
3855 * GPU can automatically power down the render unit if given a page
3856 * to save state.
3857 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02003858 ret = intel_ring_begin(ring, 6);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003859 if (ret) {
3860 ironlake_teardown_rc6(dev);
Chris Wilson3e960502012-11-27 16:22:54 +00003861 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003862 return;
3863 }
3864
Daniel Vetter6d90c952012-04-26 23:28:05 +02003865 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
3866 intel_ring_emit(ring, MI_SET_CONTEXT);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003867 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) |
Daniel Vetter6d90c952012-04-26 23:28:05 +02003868 MI_MM_SPACE_GTT |
3869 MI_SAVE_EXT_STATE_EN |
3870 MI_RESTORE_EXT_STATE_EN |
3871 MI_RESTORE_INHIBIT);
3872 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
3873 intel_ring_emit(ring, MI_NOOP);
3874 intel_ring_emit(ring, MI_FLUSH);
3875 intel_ring_advance(ring);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003876
3877 /*
3878 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
3879 * does an implicit flush, combined with MI_FLUSH above, it should be
3880 * safe to assume that renderctx is valid
3881 */
Chris Wilson3e960502012-11-27 16:22:54 +00003882 ret = intel_ring_idle(ring);
3883 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003884 if (ret) {
Jani Nikuladef27a52013-03-12 10:49:19 +02003885 DRM_ERROR("failed to enable ironlake power savings\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003886 ironlake_teardown_rc6(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003887 return;
3888 }
3889
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003890 I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003891 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003892}
3893
Eugeni Dodonovdde18882012-04-18 15:29:24 -03003894static unsigned long intel_pxfreq(u32 vidfreq)
3895{
3896 unsigned long freq;
3897 int div = (vidfreq & 0x3f0000) >> 16;
3898 int post = (vidfreq & 0x3000) >> 12;
3899 int pre = (vidfreq & 0x7);
3900
3901 if (!pre)
3902 return 0;
3903
3904 freq = ((div * 133333) / ((1<<post) * pre));
3905
3906 return freq;
3907}
3908
Daniel Vettereb48eb02012-04-26 23:28:12 +02003909static const struct cparams {
3910 u16 i;
3911 u16 t;
3912 u16 m;
3913 u16 c;
3914} cparams[] = {
3915 { 1, 1333, 301, 28664 },
3916 { 1, 1066, 294, 24460 },
3917 { 1, 800, 294, 25192 },
3918 { 0, 1333, 276, 27605 },
3919 { 0, 1066, 276, 27605 },
3920 { 0, 800, 231, 23784 },
3921};
3922
Chris Wilsonf531dcb2012-09-25 10:16:12 +01003923static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02003924{
3925 u64 total_count, diff, ret;
3926 u32 count1, count2, count3, m = 0, c = 0;
3927 unsigned long now = jiffies_to_msecs(jiffies), diff1;
3928 int i;
3929
Daniel Vetter02d71952012-08-09 16:44:54 +02003930 assert_spin_locked(&mchdev_lock);
3931
Daniel Vetter20e4d402012-08-08 23:35:39 +02003932 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003933
3934 /* Prevent division-by-zero if we are asking too fast.
3935 * Also, we don't get interesting results if we are polling
3936 * faster than once in 10ms, so just return the saved value
3937 * in such cases.
3938 */
3939 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02003940 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003941
3942 count1 = I915_READ(DMIEC);
3943 count2 = I915_READ(DDREC);
3944 count3 = I915_READ(CSIEC);
3945
3946 total_count = count1 + count2 + count3;
3947
3948 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003949 if (total_count < dev_priv->ips.last_count1) {
3950 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003951 diff += total_count;
3952 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02003953 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003954 }
3955
3956 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02003957 if (cparams[i].i == dev_priv->ips.c_m &&
3958 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02003959 m = cparams[i].m;
3960 c = cparams[i].c;
3961 break;
3962 }
3963 }
3964
3965 diff = div_u64(diff, diff1);
3966 ret = ((m * diff) + c);
3967 ret = div_u64(ret, 10);
3968
Daniel Vetter20e4d402012-08-08 23:35:39 +02003969 dev_priv->ips.last_count1 = total_count;
3970 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003971
Daniel Vetter20e4d402012-08-08 23:35:39 +02003972 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003973
3974 return ret;
3975}
3976
Chris Wilsonf531dcb2012-09-25 10:16:12 +01003977unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
3978{
3979 unsigned long val;
3980
3981 if (dev_priv->info->gen != 5)
3982 return 0;
3983
3984 spin_lock_irq(&mchdev_lock);
3985
3986 val = __i915_chipset_val(dev_priv);
3987
3988 spin_unlock_irq(&mchdev_lock);
3989
3990 return val;
3991}
3992
Daniel Vettereb48eb02012-04-26 23:28:12 +02003993unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
3994{
3995 unsigned long m, x, b;
3996 u32 tsfs;
3997
3998 tsfs = I915_READ(TSFS);
3999
4000 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
4001 x = I915_READ8(TR1);
4002
4003 b = tsfs & TSFS_INTR_MASK;
4004
4005 return ((m * x) / 127) - b;
4006}
4007
4008static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
4009{
4010 static const struct v_table {
4011 u16 vd; /* in .1 mil */
4012 u16 vm; /* in .1 mil */
4013 } v_table[] = {
4014 { 0, 0, },
4015 { 375, 0, },
4016 { 500, 0, },
4017 { 625, 0, },
4018 { 750, 0, },
4019 { 875, 0, },
4020 { 1000, 0, },
4021 { 1125, 0, },
4022 { 4125, 3000, },
4023 { 4125, 3000, },
4024 { 4125, 3000, },
4025 { 4125, 3000, },
4026 { 4125, 3000, },
4027 { 4125, 3000, },
4028 { 4125, 3000, },
4029 { 4125, 3000, },
4030 { 4125, 3000, },
4031 { 4125, 3000, },
4032 { 4125, 3000, },
4033 { 4125, 3000, },
4034 { 4125, 3000, },
4035 { 4125, 3000, },
4036 { 4125, 3000, },
4037 { 4125, 3000, },
4038 { 4125, 3000, },
4039 { 4125, 3000, },
4040 { 4125, 3000, },
4041 { 4125, 3000, },
4042 { 4125, 3000, },
4043 { 4125, 3000, },
4044 { 4125, 3000, },
4045 { 4125, 3000, },
4046 { 4250, 3125, },
4047 { 4375, 3250, },
4048 { 4500, 3375, },
4049 { 4625, 3500, },
4050 { 4750, 3625, },
4051 { 4875, 3750, },
4052 { 5000, 3875, },
4053 { 5125, 4000, },
4054 { 5250, 4125, },
4055 { 5375, 4250, },
4056 { 5500, 4375, },
4057 { 5625, 4500, },
4058 { 5750, 4625, },
4059 { 5875, 4750, },
4060 { 6000, 4875, },
4061 { 6125, 5000, },
4062 { 6250, 5125, },
4063 { 6375, 5250, },
4064 { 6500, 5375, },
4065 { 6625, 5500, },
4066 { 6750, 5625, },
4067 { 6875, 5750, },
4068 { 7000, 5875, },
4069 { 7125, 6000, },
4070 { 7250, 6125, },
4071 { 7375, 6250, },
4072 { 7500, 6375, },
4073 { 7625, 6500, },
4074 { 7750, 6625, },
4075 { 7875, 6750, },
4076 { 8000, 6875, },
4077 { 8125, 7000, },
4078 { 8250, 7125, },
4079 { 8375, 7250, },
4080 { 8500, 7375, },
4081 { 8625, 7500, },
4082 { 8750, 7625, },
4083 { 8875, 7750, },
4084 { 9000, 7875, },
4085 { 9125, 8000, },
4086 { 9250, 8125, },
4087 { 9375, 8250, },
4088 { 9500, 8375, },
4089 { 9625, 8500, },
4090 { 9750, 8625, },
4091 { 9875, 8750, },
4092 { 10000, 8875, },
4093 { 10125, 9000, },
4094 { 10250, 9125, },
4095 { 10375, 9250, },
4096 { 10500, 9375, },
4097 { 10625, 9500, },
4098 { 10750, 9625, },
4099 { 10875, 9750, },
4100 { 11000, 9875, },
4101 { 11125, 10000, },
4102 { 11250, 10125, },
4103 { 11375, 10250, },
4104 { 11500, 10375, },
4105 { 11625, 10500, },
4106 { 11750, 10625, },
4107 { 11875, 10750, },
4108 { 12000, 10875, },
4109 { 12125, 11000, },
4110 { 12250, 11125, },
4111 { 12375, 11250, },
4112 { 12500, 11375, },
4113 { 12625, 11500, },
4114 { 12750, 11625, },
4115 { 12875, 11750, },
4116 { 13000, 11875, },
4117 { 13125, 12000, },
4118 { 13250, 12125, },
4119 { 13375, 12250, },
4120 { 13500, 12375, },
4121 { 13625, 12500, },
4122 { 13750, 12625, },
4123 { 13875, 12750, },
4124 { 14000, 12875, },
4125 { 14125, 13000, },
4126 { 14250, 13125, },
4127 { 14375, 13250, },
4128 { 14500, 13375, },
4129 { 14625, 13500, },
4130 { 14750, 13625, },
4131 { 14875, 13750, },
4132 { 15000, 13875, },
4133 { 15125, 14000, },
4134 { 15250, 14125, },
4135 { 15375, 14250, },
4136 { 15500, 14375, },
4137 { 15625, 14500, },
4138 { 15750, 14625, },
4139 { 15875, 14750, },
4140 { 16000, 14875, },
4141 { 16125, 15000, },
4142 };
4143 if (dev_priv->info->is_mobile)
4144 return v_table[pxvid].vm;
4145 else
4146 return v_table[pxvid].vd;
4147}
4148
Daniel Vetter02d71952012-08-09 16:44:54 +02004149static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004150{
4151 struct timespec now, diff1;
4152 u64 diff;
4153 unsigned long diffms;
4154 u32 count;
4155
Daniel Vetter02d71952012-08-09 16:44:54 +02004156 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004157
4158 getrawmonotonic(&now);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004159 diff1 = timespec_sub(now, dev_priv->ips.last_time2);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004160
4161 /* Don't divide by 0 */
4162 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
4163 if (!diffms)
4164 return;
4165
4166 count = I915_READ(GFXEC);
4167
Daniel Vetter20e4d402012-08-08 23:35:39 +02004168 if (count < dev_priv->ips.last_count2) {
4169 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004170 diff += count;
4171 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004172 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004173 }
4174
Daniel Vetter20e4d402012-08-08 23:35:39 +02004175 dev_priv->ips.last_count2 = count;
4176 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004177
4178 /* More magic constants... */
4179 diff = diff * 1181;
4180 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004181 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004182}
4183
Daniel Vetter02d71952012-08-09 16:44:54 +02004184void i915_update_gfx_val(struct drm_i915_private *dev_priv)
4185{
4186 if (dev_priv->info->gen != 5)
4187 return;
4188
Daniel Vetter92703882012-08-09 16:46:01 +02004189 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004190
4191 __i915_update_gfx_val(dev_priv);
4192
Daniel Vetter92703882012-08-09 16:46:01 +02004193 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004194}
4195
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004196static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004197{
4198 unsigned long t, corr, state1, corr2, state2;
4199 u32 pxvid, ext_v;
4200
Daniel Vetter02d71952012-08-09 16:44:54 +02004201 assert_spin_locked(&mchdev_lock);
4202
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004203 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_delay * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02004204 pxvid = (pxvid >> 24) & 0x7f;
4205 ext_v = pvid_to_extvid(dev_priv, pxvid);
4206
4207 state1 = ext_v;
4208
4209 t = i915_mch_val(dev_priv);
4210
4211 /* Revel in the empirically derived constants */
4212
4213 /* Correction factor in 1/100000 units */
4214 if (t > 80)
4215 corr = ((t * 2349) + 135940);
4216 else if (t >= 50)
4217 corr = ((t * 964) + 29317);
4218 else /* < 50 */
4219 corr = ((t * 301) + 1004);
4220
4221 corr = corr * ((150142 * state1) / 10000 - 78642);
4222 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02004223 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004224
4225 state2 = (corr2 * state1) / 10000;
4226 state2 /= 100; /* convert to mW */
4227
Daniel Vetter02d71952012-08-09 16:44:54 +02004228 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004229
Daniel Vetter20e4d402012-08-08 23:35:39 +02004230 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004231}
4232
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004233unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
4234{
4235 unsigned long val;
4236
4237 if (dev_priv->info->gen != 5)
4238 return 0;
4239
4240 spin_lock_irq(&mchdev_lock);
4241
4242 val = __i915_gfx_val(dev_priv);
4243
4244 spin_unlock_irq(&mchdev_lock);
4245
4246 return val;
4247}
4248
Daniel Vettereb48eb02012-04-26 23:28:12 +02004249/**
4250 * i915_read_mch_val - return value for IPS use
4251 *
4252 * Calculate and return a value for the IPS driver to use when deciding whether
4253 * we have thermal and power headroom to increase CPU or GPU power budget.
4254 */
4255unsigned long i915_read_mch_val(void)
4256{
4257 struct drm_i915_private *dev_priv;
4258 unsigned long chipset_val, graphics_val, ret = 0;
4259
Daniel Vetter92703882012-08-09 16:46:01 +02004260 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004261 if (!i915_mch_dev)
4262 goto out_unlock;
4263 dev_priv = i915_mch_dev;
4264
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004265 chipset_val = __i915_chipset_val(dev_priv);
4266 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004267
4268 ret = chipset_val + graphics_val;
4269
4270out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004271 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004272
4273 return ret;
4274}
4275EXPORT_SYMBOL_GPL(i915_read_mch_val);
4276
4277/**
4278 * i915_gpu_raise - raise GPU frequency limit
4279 *
4280 * Raise the limit; IPS indicates we have thermal headroom.
4281 */
4282bool i915_gpu_raise(void)
4283{
4284 struct drm_i915_private *dev_priv;
4285 bool ret = true;
4286
Daniel Vetter92703882012-08-09 16:46:01 +02004287 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004288 if (!i915_mch_dev) {
4289 ret = false;
4290 goto out_unlock;
4291 }
4292 dev_priv = i915_mch_dev;
4293
Daniel Vetter20e4d402012-08-08 23:35:39 +02004294 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
4295 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004296
4297out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004298 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004299
4300 return ret;
4301}
4302EXPORT_SYMBOL_GPL(i915_gpu_raise);
4303
4304/**
4305 * i915_gpu_lower - lower GPU frequency limit
4306 *
4307 * IPS indicates we're close to a thermal limit, so throttle back the GPU
4308 * frequency maximum.
4309 */
4310bool i915_gpu_lower(void)
4311{
4312 struct drm_i915_private *dev_priv;
4313 bool ret = true;
4314
Daniel Vetter92703882012-08-09 16:46:01 +02004315 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004316 if (!i915_mch_dev) {
4317 ret = false;
4318 goto out_unlock;
4319 }
4320 dev_priv = i915_mch_dev;
4321
Daniel Vetter20e4d402012-08-08 23:35:39 +02004322 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
4323 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004324
4325out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004326 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004327
4328 return ret;
4329}
4330EXPORT_SYMBOL_GPL(i915_gpu_lower);
4331
4332/**
4333 * i915_gpu_busy - indicate GPU business to IPS
4334 *
4335 * Tell the IPS driver whether or not the GPU is busy.
4336 */
4337bool i915_gpu_busy(void)
4338{
4339 struct drm_i915_private *dev_priv;
Chris Wilsonf047e392012-07-21 12:31:41 +01004340 struct intel_ring_buffer *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004341 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01004342 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004343
Daniel Vetter92703882012-08-09 16:46:01 +02004344 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004345 if (!i915_mch_dev)
4346 goto out_unlock;
4347 dev_priv = i915_mch_dev;
4348
Chris Wilsonf047e392012-07-21 12:31:41 +01004349 for_each_ring(ring, dev_priv, i)
4350 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004351
4352out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004353 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004354
4355 return ret;
4356}
4357EXPORT_SYMBOL_GPL(i915_gpu_busy);
4358
4359/**
4360 * i915_gpu_turbo_disable - disable graphics turbo
4361 *
4362 * Disable graphics turbo by resetting the max frequency and setting the
4363 * current frequency to the default.
4364 */
4365bool i915_gpu_turbo_disable(void)
4366{
4367 struct drm_i915_private *dev_priv;
4368 bool ret = true;
4369
Daniel Vetter92703882012-08-09 16:46:01 +02004370 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004371 if (!i915_mch_dev) {
4372 ret = false;
4373 goto out_unlock;
4374 }
4375 dev_priv = i915_mch_dev;
4376
Daniel Vetter20e4d402012-08-08 23:35:39 +02004377 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004378
Daniel Vetter20e4d402012-08-08 23:35:39 +02004379 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02004380 ret = false;
4381
4382out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004383 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004384
4385 return ret;
4386}
4387EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
4388
4389/**
4390 * Tells the intel_ips driver that the i915 driver is now loaded, if
4391 * IPS got loaded first.
4392 *
4393 * This awkward dance is so that neither module has to depend on the
4394 * other in order for IPS to do the appropriate communication of
4395 * GPU turbo limits to i915.
4396 */
4397static void
4398ips_ping_for_i915_load(void)
4399{
4400 void (*link)(void);
4401
4402 link = symbol_get(ips_link_to_i915_driver);
4403 if (link) {
4404 link();
4405 symbol_put(ips_link_to_i915_driver);
4406 }
4407}
4408
4409void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
4410{
Daniel Vetter02d71952012-08-09 16:44:54 +02004411 /* We only register the i915 ips part with intel-ips once everything is
4412 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02004413 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004414 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02004415 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004416
4417 ips_ping_for_i915_load();
4418}
4419
4420void intel_gpu_ips_teardown(void)
4421{
Daniel Vetter92703882012-08-09 16:46:01 +02004422 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004423 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02004424 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004425}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004426static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004427{
4428 struct drm_i915_private *dev_priv = dev->dev_private;
4429 u32 lcfuse;
4430 u8 pxw[16];
4431 int i;
4432
4433 /* Disable to program */
4434 I915_WRITE(ECR, 0);
4435 POSTING_READ(ECR);
4436
4437 /* Program energy weights for various events */
4438 I915_WRITE(SDEW, 0x15040d00);
4439 I915_WRITE(CSIEW0, 0x007f0000);
4440 I915_WRITE(CSIEW1, 0x1e220004);
4441 I915_WRITE(CSIEW2, 0x04000004);
4442
4443 for (i = 0; i < 5; i++)
4444 I915_WRITE(PEW + (i * 4), 0);
4445 for (i = 0; i < 3; i++)
4446 I915_WRITE(DEW + (i * 4), 0);
4447
4448 /* Program P-state weights to account for frequency power adjustment */
4449 for (i = 0; i < 16; i++) {
4450 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
4451 unsigned long freq = intel_pxfreq(pxvidfreq);
4452 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
4453 PXVFREQ_PX_SHIFT;
4454 unsigned long val;
4455
4456 val = vid * vid;
4457 val *= (freq / 1000);
4458 val *= 255;
4459 val /= (127*127*900);
4460 if (val > 0xff)
4461 DRM_ERROR("bad pxval: %ld\n", val);
4462 pxw[i] = val;
4463 }
4464 /* Render standby states get 0 weight */
4465 pxw[14] = 0;
4466 pxw[15] = 0;
4467
4468 for (i = 0; i < 4; i++) {
4469 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
4470 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
4471 I915_WRITE(PXW + (i * 4), val);
4472 }
4473
4474 /* Adjust magic regs to magic values (more experimental results) */
4475 I915_WRITE(OGW0, 0);
4476 I915_WRITE(OGW1, 0);
4477 I915_WRITE(EG0, 0x00007f00);
4478 I915_WRITE(EG1, 0x0000000e);
4479 I915_WRITE(EG2, 0x000e0000);
4480 I915_WRITE(EG3, 0x68000300);
4481 I915_WRITE(EG4, 0x42000000);
4482 I915_WRITE(EG5, 0x00140031);
4483 I915_WRITE(EG6, 0);
4484 I915_WRITE(EG7, 0);
4485
4486 for (i = 0; i < 8; i++)
4487 I915_WRITE(PXWL + (i * 4), 0);
4488
4489 /* Enable PMON + select events */
4490 I915_WRITE(ECR, 0x80000019);
4491
4492 lcfuse = I915_READ(LCFUSE02);
4493
Daniel Vetter20e4d402012-08-08 23:35:39 +02004494 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004495}
4496
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004497void intel_disable_gt_powersave(struct drm_device *dev)
4498{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004499 struct drm_i915_private *dev_priv = dev->dev_private;
4500
Daniel Vetterfd0c0642013-04-24 11:13:35 +02004501 /* Interrupts should be disabled already to avoid re-arming. */
4502 WARN_ON(dev->irq_enabled);
4503
Daniel Vetter930ebb42012-06-29 23:32:16 +02004504 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004505 ironlake_disable_drps(dev);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004506 ironlake_disable_rc6(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004507 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004508 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
Jesse Barnes250848c2013-04-23 10:09:27 -07004509 cancel_work_sync(&dev_priv->rps.work);
Jesse Barnes52ceb902013-04-23 10:09:26 -07004510 if (IS_VALLEYVIEW(dev))
4511 cancel_delayed_work_sync(&dev_priv->rps.vlv_work);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004512 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004513 if (IS_VALLEYVIEW(dev))
4514 valleyview_disable_rps(dev);
4515 else
4516 gen6_disable_rps(dev);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004517 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004518 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004519}
4520
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004521static void intel_gen6_powersave_work(struct work_struct *work)
4522{
4523 struct drm_i915_private *dev_priv =
4524 container_of(work, struct drm_i915_private,
4525 rps.delayed_resume_work.work);
4526 struct drm_device *dev = dev_priv->dev;
4527
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004528 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004529
4530 if (IS_VALLEYVIEW(dev)) {
4531 valleyview_enable_rps(dev);
4532 } else {
4533 gen6_enable_rps(dev);
4534 gen6_update_ring_freq(dev);
4535 }
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004536 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004537}
4538
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004539void intel_enable_gt_powersave(struct drm_device *dev)
4540{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004541 struct drm_i915_private *dev_priv = dev->dev_private;
4542
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004543 if (IS_IRONLAKE_M(dev)) {
4544 ironlake_enable_drps(dev);
4545 ironlake_enable_rc6(dev);
4546 intel_init_emon(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004547 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004548 /*
4549 * PCU communication is slow and this doesn't need to be
4550 * done at any specific time, so do this out of our fast path
4551 * to make resume and init faster.
4552 */
4553 schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
4554 round_jiffies_up_relative(HZ));
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004555 }
4556}
4557
Daniel Vetter3107bd42012-10-31 22:52:31 +01004558static void ibx_init_clock_gating(struct drm_device *dev)
4559{
4560 struct drm_i915_private *dev_priv = dev->dev_private;
4561
4562 /*
4563 * On Ibex Peak and Cougar Point, we need to disable clock
4564 * gating for the panel power sequencer or it will fail to
4565 * start up when no ports are active.
4566 */
4567 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4568}
4569
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004570static void g4x_disable_trickle_feed(struct drm_device *dev)
4571{
4572 struct drm_i915_private *dev_priv = dev->dev_private;
4573 int pipe;
4574
4575 for_each_pipe(pipe) {
4576 I915_WRITE(DSPCNTR(pipe),
4577 I915_READ(DSPCNTR(pipe)) |
4578 DISPPLANE_TRICKLE_FEED_DISABLE);
4579 intel_flush_display_plane(dev_priv, pipe);
4580 }
4581}
4582
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004583static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004584{
4585 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004586 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004587
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01004588 /*
4589 * Required for FBC
4590 * WaFbcDisableDpfcClockGating:ilk
4591 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004592 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
4593 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
4594 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004595
4596 I915_WRITE(PCH_3DCGDIS0,
4597 MARIUNIT_CLOCK_GATE_DISABLE |
4598 SVSMUNIT_CLOCK_GATE_DISABLE);
4599 I915_WRITE(PCH_3DCGDIS1,
4600 VFMUNIT_CLOCK_GATE_DISABLE);
4601
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004602 /*
4603 * According to the spec the following bits should be set in
4604 * order to enable memory self-refresh
4605 * The bit 22/21 of 0x42004
4606 * The bit 5 of 0x42020
4607 * The bit 15 of 0x45000
4608 */
4609 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4610 (I915_READ(ILK_DISPLAY_CHICKEN2) |
4611 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004612 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004613 I915_WRITE(DISP_ARB_CTL,
4614 (I915_READ(DISP_ARB_CTL) |
4615 DISP_FBC_WM_DIS));
4616 I915_WRITE(WM3_LP_ILK, 0);
4617 I915_WRITE(WM2_LP_ILK, 0);
4618 I915_WRITE(WM1_LP_ILK, 0);
4619
4620 /*
4621 * Based on the document from hardware guys the following bits
4622 * should be set unconditionally in order to enable FBC.
4623 * The bit 22 of 0x42000
4624 * The bit 22 of 0x42004
4625 * The bit 7,8,9 of 0x42020.
4626 */
4627 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01004628 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004629 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4630 I915_READ(ILK_DISPLAY_CHICKEN1) |
4631 ILK_FBCQ_DIS);
4632 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4633 I915_READ(ILK_DISPLAY_CHICKEN2) |
4634 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004635 }
4636
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004637 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
4638
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004639 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4640 I915_READ(ILK_DISPLAY_CHICKEN2) |
4641 ILK_ELPIN_409_SELECT);
4642 I915_WRITE(_3D_CHICKEN2,
4643 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
4644 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02004645
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004646 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02004647 I915_WRITE(CACHE_MODE_0,
4648 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004649
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004650 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03004651
Daniel Vetter3107bd42012-10-31 22:52:31 +01004652 ibx_init_clock_gating(dev);
4653}
4654
4655static void cpt_init_clock_gating(struct drm_device *dev)
4656{
4657 struct drm_i915_private *dev_priv = dev->dev_private;
4658 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004659 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01004660
4661 /*
4662 * On Ibex Peak and Cougar Point, we need to disable clock
4663 * gating for the panel power sequencer or it will fail to
4664 * start up when no ports are active.
4665 */
4666 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4667 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
4668 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01004669 /* The below fixes the weird display corruption, a few pixels shifted
4670 * downward, on (only) LVDS of some HP laptops with IVY.
4671 */
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004672 for_each_pipe(pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03004673 val = I915_READ(TRANS_CHICKEN2(pipe));
4674 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
4675 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004676 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004677 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03004678 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
4679 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
4680 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004681 I915_WRITE(TRANS_CHICKEN2(pipe), val);
4682 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01004683 /* WADP0ClockGatingDisable */
4684 for_each_pipe(pipe) {
4685 I915_WRITE(TRANS_CHICKEN1(pipe),
4686 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
4687 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004688}
4689
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004690static void gen6_check_mch_setup(struct drm_device *dev)
4691{
4692 struct drm_i915_private *dev_priv = dev->dev_private;
4693 uint32_t tmp;
4694
4695 tmp = I915_READ(MCH_SSKPD);
4696 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) {
4697 DRM_INFO("Wrong MCH_SSKPD value: 0x%08x\n", tmp);
4698 DRM_INFO("This can cause pipe underruns and display issues.\n");
4699 DRM_INFO("Please upgrade your BIOS to fix this.\n");
4700 }
4701}
4702
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004703static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004704{
4705 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004706 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004707
Damien Lespiau231e54f2012-10-19 17:55:41 +01004708 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004709
4710 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4711 I915_READ(ILK_DISPLAY_CHICKEN2) |
4712 ILK_ELPIN_409_SELECT);
4713
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004714 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01004715 I915_WRITE(_3D_CHICKEN,
4716 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
4717
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004718 /* WaSetupGtModeTdRowDispatch:snb */
Daniel Vetter6547fbd2012-12-14 23:38:29 +01004719 if (IS_SNB_GT1(dev))
4720 I915_WRITE(GEN6_GT_MODE,
4721 _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE));
4722
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004723 I915_WRITE(WM3_LP_ILK, 0);
4724 I915_WRITE(WM2_LP_ILK, 0);
4725 I915_WRITE(WM1_LP_ILK, 0);
4726
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004727 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02004728 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004729
4730 I915_WRITE(GEN6_UCGCTL1,
4731 I915_READ(GEN6_UCGCTL1) |
4732 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
4733 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
4734
4735 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
4736 * gating disable must be set. Failure to set it results in
4737 * flickering pixels due to Z write ordering failures after
4738 * some amount of runtime in the Mesa "fire" demo, and Unigine
4739 * Sanctuary and Tropics, and apparently anything else with
4740 * alpha test or pixel discard.
4741 *
4742 * According to the spec, bit 11 (RCCUNIT) must also be set,
4743 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004744 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004745 * Also apply WaDisableVDSUnitClockGating:snb and
4746 * WaDisableRCPBUnitClockGating:snb.
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004747 */
4748 I915_WRITE(GEN6_UCGCTL2,
Jesse Barnes0f846f82012-06-14 11:04:47 -07004749 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004750 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
4751 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
4752
4753 /* Bspec says we need to always set all mask bits. */
Kenneth Graunke26b6e442012-10-07 08:51:07 -07004754 I915_WRITE(_3D_CHICKEN3, (0xFFFF << 16) |
4755 _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004756
4757 /*
4758 * According to the spec the following bits should be
4759 * set in order to enable memory self-refresh and fbc:
4760 * The bit21 and bit22 of 0x42000
4761 * The bit21 and bit22 of 0x42004
4762 * The bit5 and bit7 of 0x42020
4763 * The bit14 of 0x70180
4764 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01004765 *
4766 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004767 */
4768 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4769 I915_READ(ILK_DISPLAY_CHICKEN1) |
4770 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
4771 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4772 I915_READ(ILK_DISPLAY_CHICKEN2) |
4773 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01004774 I915_WRITE(ILK_DSPCLK_GATE_D,
4775 I915_READ(ILK_DSPCLK_GATE_D) |
4776 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
4777 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004778
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004779 /* WaMbcDriverBootEnable:snb */
Jesse Barnesb4ae3f22012-06-14 11:04:48 -07004780 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4781 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4782
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004783 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07004784
4785 /* The default value should be 0x200 according to docs, but the two
4786 * platforms I checked have a 0 for this. (Maybe BIOS overrides?) */
4787 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_DISABLE(0xffff));
4788 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_ENABLE(GEN6_GT_MODE_HI));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004789
4790 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004791
4792 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004793}
4794
4795static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
4796{
4797 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
4798
4799 reg &= ~GEN7_FF_SCHED_MASK;
4800 reg |= GEN7_FF_TS_SCHED_HW;
4801 reg |= GEN7_FF_VS_SCHED_HW;
4802 reg |= GEN7_FF_DS_SCHED_HW;
4803
Ben Widawsky41c0b3a2013-01-26 11:52:00 -08004804 if (IS_HASWELL(dev_priv->dev))
4805 reg &= ~GEN7_FF_VS_REF_CNT_FFME;
4806
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004807 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
4808}
4809
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004810static void lpt_init_clock_gating(struct drm_device *dev)
4811{
4812 struct drm_i915_private *dev_priv = dev->dev_private;
4813
4814 /*
4815 * TODO: this bit should only be enabled when really needed, then
4816 * disabled when not needed anymore in order to save power.
4817 */
4818 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
4819 I915_WRITE(SOUTH_DSPCLK_GATE_D,
4820 I915_READ(SOUTH_DSPCLK_GATE_D) |
4821 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03004822
4823 /* WADPOClockGatingDisable:hsw */
4824 I915_WRITE(_TRANSA_CHICKEN1,
4825 I915_READ(_TRANSA_CHICKEN1) |
4826 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004827}
4828
Imre Deak7d708ee2013-04-17 14:04:50 +03004829static void lpt_suspend_hw(struct drm_device *dev)
4830{
4831 struct drm_i915_private *dev_priv = dev->dev_private;
4832
4833 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
4834 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
4835
4836 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
4837 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
4838 }
4839}
4840
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004841static void haswell_init_clock_gating(struct drm_device *dev)
4842{
4843 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004844
4845 I915_WRITE(WM3_LP_ILK, 0);
4846 I915_WRITE(WM2_LP_ILK, 0);
4847 I915_WRITE(WM1_LP_ILK, 0);
4848
4849 /* According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004850 * This implements the WaDisableRCZUnitClockGating:hsw workaround.
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004851 */
4852 I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
4853
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004854 /* Apply the WaDisableRHWOOptimizationForRenderHang:hsw workaround. */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004855 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
4856 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
4857
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004858 /* WaApplyL3ControlAndL3ChickenMode:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004859 I915_WRITE(GEN7_L3CNTLREG1,
4860 GEN7_WA_FOR_GEN7_L3_CONTROL);
4861 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
4862 GEN7_WA_L3_CHICKEN_MODE);
4863
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004864 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004865 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
4866 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
4867 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
4868
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004869 g4x_disable_trickle_feed(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004870
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004871 /* WaVSRefCountFullforceMissDisable:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004872 gen7_setup_fixed_func_scheduler(dev_priv);
4873
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004874 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004875 I915_WRITE(CACHE_MODE_1,
4876 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03004877
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004878 /* WaMbcDriverBootEnable:hsw */
Paulo Zanonib3bf0762012-11-20 13:27:44 -02004879 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4880 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4881
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004882 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07004883 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
4884
Paulo Zanoni90a88642013-05-03 17:23:45 -03004885 /* WaRsPkgCStateDisplayPMReq:hsw */
4886 I915_WRITE(CHICKEN_PAR1_1,
4887 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03004888
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004889 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004890}
4891
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004892static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004893{
4894 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07004895 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004896
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004897 I915_WRITE(WM3_LP_ILK, 0);
4898 I915_WRITE(WM2_LP_ILK, 0);
4899 I915_WRITE(WM1_LP_ILK, 0);
4900
Damien Lespiau231e54f2012-10-19 17:55:41 +01004901 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004902
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004903 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05004904 I915_WRITE(_3D_CHICKEN3,
4905 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
4906
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004907 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004908 I915_WRITE(IVB_CHICKEN3,
4909 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
4910 CHICKEN3_DGMG_DONE_FIX_DISABLE);
4911
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004912 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07004913 if (IS_IVB_GT1(dev))
4914 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
4915 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
4916 else
4917 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1_GT2,
4918 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
4919
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004920 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004921 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
4922 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
4923
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004924 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004925 I915_WRITE(GEN7_L3CNTLREG1,
4926 GEN7_WA_FOR_GEN7_L3_CONTROL);
4927 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07004928 GEN7_WA_L3_CHICKEN_MODE);
4929 if (IS_IVB_GT1(dev))
4930 I915_WRITE(GEN7_ROW_CHICKEN2,
4931 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
4932 else
4933 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
4934 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
4935
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004936
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004937 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05004938 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
4939 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
4940
Jesse Barnes0f846f82012-06-14 11:04:47 -07004941 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
4942 * gating disable must be set. Failure to set it results in
4943 * flickering pixels due to Z write ordering failures after
4944 * some amount of runtime in the Mesa "fire" demo, and Unigine
4945 * Sanctuary and Tropics, and apparently anything else with
4946 * alpha test or pixel discard.
4947 *
4948 * According to the spec, bit 11 (RCCUNIT) must also be set,
4949 * but we didn't debug actual testcases to find it out.
4950 *
4951 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004952 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004953 */
4954 I915_WRITE(GEN6_UCGCTL2,
4955 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
4956 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
4957
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004958 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004959 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
4960 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
4961 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
4962
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004963 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004964
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004965 /* WaMbcDriverBootEnable:ivb */
Jesse Barnesb4ae3f22012-06-14 11:04:48 -07004966 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4967 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4968
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004969 /* WaVSRefCountFullforceMissDisable:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004970 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02004971
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004972 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02004973 I915_WRITE(CACHE_MODE_1,
4974 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07004975
4976 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
4977 snpcr &= ~GEN6_MBC_SNPCR_MASK;
4978 snpcr |= GEN6_MBC_SNPCR_MED;
4979 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01004980
Ben Widawskyab5c6082013-04-05 13:12:41 -07004981 if (!HAS_PCH_NOP(dev))
4982 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004983
4984 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004985}
4986
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004987static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004988{
4989 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004990
Ville Syrjäläd7fe0cc2013-05-21 18:01:50 +03004991 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004992
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004993 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05004994 I915_WRITE(_3D_CHICKEN3,
4995 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
4996
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004997 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004998 I915_WRITE(IVB_CHICKEN3,
4999 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5000 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5001
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005002 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07005003 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08005004 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
5005 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07005006
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005007 /* Apply the WaDisableRHWOOptimizationForRenderHang:vlv workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005008 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5009 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5010
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005011 /* WaApplyL3ControlAndL3ChickenMode:vlv */
Jesse Barnesd0cf5ea2012-10-25 12:15:41 -07005012 I915_WRITE(GEN7_L3CNTLREG1, I915_READ(GEN7_L3CNTLREG1) | GEN7_L3AGDIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005013 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, GEN7_WA_L3_CHICKEN_MODE);
5014
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005015 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05005016 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5017 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5018
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005019 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07005020 I915_WRITE(GEN7_ROW_CHICKEN2,
5021 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5022
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005023 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005024 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5025 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5026 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5027
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005028 /* WaMbcDriverBootEnable:vlv */
Jesse Barnesb4ae3f22012-06-14 11:04:48 -07005029 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
5030 GEN6_MBCTL_ENABLE_BOOT_FETCH);
5031
Jesse Barnes0f846f82012-06-14 11:04:47 -07005032
5033 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5034 * gating disable must be set. Failure to set it results in
5035 * flickering pixels due to Z write ordering failures after
5036 * some amount of runtime in the Mesa "fire" demo, and Unigine
5037 * Sanctuary and Tropics, and apparently anything else with
5038 * alpha test or pixel discard.
5039 *
5040 * According to the spec, bit 11 (RCCUNIT) must also be set,
5041 * but we didn't debug actual testcases to find it out.
5042 *
5043 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005044 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005045 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005046 * Also apply WaDisableVDSUnitClockGating:vlv and
5047 * WaDisableRCPBUnitClockGating:vlv.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005048 */
5049 I915_WRITE(GEN6_UCGCTL2,
5050 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes6edaa7f2012-06-14 11:04:49 -07005051 GEN7_TDLUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes0f846f82012-06-14 11:04:47 -07005052 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5053 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5054 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5055
Jesse Barnese3f33d42012-06-14 11:04:50 -07005056 I915_WRITE(GEN7_UCGCTL4, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
5057
Ville Syrjäläe0d8d592013-06-12 22:11:18 +03005058 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005059
Daniel Vetter6b26c862012-04-24 14:04:12 +02005060 I915_WRITE(CACHE_MODE_1,
5061 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07005062
5063 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005064 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07005065 * Disable clock gating on th GCFG unit to prevent a delay
5066 * in the reporting of vblank events.
5067 */
Jesse Barnes4e8c84a2013-03-08 10:45:54 -08005068 I915_WRITE(VLV_GUNIT_CLOCK_GATE, 0xffffffff);
5069
5070 /* Conservative clock gating settings for now */
5071 I915_WRITE(0x9400, 0xffffffff);
5072 I915_WRITE(0x9404, 0xffffffff);
5073 I915_WRITE(0x9408, 0xffffffff);
5074 I915_WRITE(0x940c, 0xffffffff);
5075 I915_WRITE(0x9410, 0xffffffff);
5076 I915_WRITE(0x9414, 0xffffffff);
5077 I915_WRITE(0x9418, 0xffffffff);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005078}
5079
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005080static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005081{
5082 struct drm_i915_private *dev_priv = dev->dev_private;
5083 uint32_t dspclk_gate;
5084
5085 I915_WRITE(RENCLK_GATE_D1, 0);
5086 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5087 GS_UNIT_CLOCK_GATE_DISABLE |
5088 CL_UNIT_CLOCK_GATE_DISABLE);
5089 I915_WRITE(RAMCLK_GATE_D, 0);
5090 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5091 OVRUNIT_CLOCK_GATE_DISABLE |
5092 OVCUNIT_CLOCK_GATE_DISABLE;
5093 if (IS_GM45(dev))
5094 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5095 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02005096
5097 /* WaDisableRenderCachePipelinedFlush */
5098 I915_WRITE(CACHE_MODE_0,
5099 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03005100
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005101 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005102}
5103
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005104static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005105{
5106 struct drm_i915_private *dev_priv = dev->dev_private;
5107
5108 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5109 I915_WRITE(RENCLK_GATE_D2, 0);
5110 I915_WRITE(DSPCLK_GATE_D, 0);
5111 I915_WRITE(RAMCLK_GATE_D, 0);
5112 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005113 I915_WRITE(MI_ARB_STATE,
5114 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005115}
5116
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005117static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005118{
5119 struct drm_i915_private *dev_priv = dev->dev_private;
5120
5121 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5122 I965_RCC_CLOCK_GATE_DISABLE |
5123 I965_RCPB_CLOCK_GATE_DISABLE |
5124 I965_ISC_CLOCK_GATE_DISABLE |
5125 I965_FBC_CLOCK_GATE_DISABLE);
5126 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005127 I915_WRITE(MI_ARB_STATE,
5128 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005129}
5130
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005131static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005132{
5133 struct drm_i915_private *dev_priv = dev->dev_private;
5134 u32 dstate = I915_READ(D_STATE);
5135
5136 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5137 DSTATE_DOT_CLOCK_GATING;
5138 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01005139
5140 if (IS_PINEVIEW(dev))
5141 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02005142
5143 /* IIR "flip pending" means done if this bit is set */
5144 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005145}
5146
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005147static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005148{
5149 struct drm_i915_private *dev_priv = dev->dev_private;
5150
5151 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5152}
5153
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005154static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005155{
5156 struct drm_i915_private *dev_priv = dev->dev_private;
5157
5158 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5159}
5160
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005161void intel_init_clock_gating(struct drm_device *dev)
5162{
5163 struct drm_i915_private *dev_priv = dev->dev_private;
5164
5165 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005166}
5167
Imre Deak7d708ee2013-04-17 14:04:50 +03005168void intel_suspend_hw(struct drm_device *dev)
5169{
5170 if (HAS_PCH_LPT(dev))
5171 lpt_suspend_hw(dev);
5172}
5173
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005174/**
5175 * We should only use the power well if we explicitly asked the hardware to
5176 * enable it, so check if it's enabled and also check if we've requested it to
5177 * be enabled.
5178 */
Paulo Zanonib97186f2013-05-03 12:15:36 -03005179bool intel_display_power_enabled(struct drm_device *dev,
5180 enum intel_display_power_domain domain)
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005181{
5182 struct drm_i915_private *dev_priv = dev->dev_private;
5183
Paulo Zanonib97186f2013-05-03 12:15:36 -03005184 if (!HAS_POWER_WELL(dev))
5185 return true;
5186
5187 switch (domain) {
5188 case POWER_DOMAIN_PIPE_A:
5189 case POWER_DOMAIN_TRANSCODER_EDP:
5190 return true;
5191 case POWER_DOMAIN_PIPE_B:
5192 case POWER_DOMAIN_PIPE_C:
5193 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
5194 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
5195 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
5196 case POWER_DOMAIN_TRANSCODER_A:
5197 case POWER_DOMAIN_TRANSCODER_B:
5198 case POWER_DOMAIN_TRANSCODER_C:
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005199 return I915_READ(HSW_PWR_WELL_DRIVER) ==
5200 (HSW_PWR_WELL_ENABLE | HSW_PWR_WELL_STATE);
Paulo Zanonib97186f2013-05-03 12:15:36 -03005201 default:
5202 BUG();
5203 }
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005204}
5205
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005206static void __intel_set_power_well(struct drm_device *dev, bool enable)
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005207{
5208 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonifa42e232013-01-25 16:59:11 -02005209 bool is_enabled, enable_requested;
5210 uint32_t tmp;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005211
Paulo Zanonifa42e232013-01-25 16:59:11 -02005212 tmp = I915_READ(HSW_PWR_WELL_DRIVER);
5213 is_enabled = tmp & HSW_PWR_WELL_STATE;
5214 enable_requested = tmp & HSW_PWR_WELL_ENABLE;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005215
Paulo Zanonifa42e232013-01-25 16:59:11 -02005216 if (enable) {
5217 if (!enable_requested)
5218 I915_WRITE(HSW_PWR_WELL_DRIVER, HSW_PWR_WELL_ENABLE);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005219
Paulo Zanonifa42e232013-01-25 16:59:11 -02005220 if (!is_enabled) {
5221 DRM_DEBUG_KMS("Enabling power well\n");
5222 if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
5223 HSW_PWR_WELL_STATE), 20))
5224 DRM_ERROR("Timeout enabling power well\n");
5225 }
5226 } else {
5227 if (enable_requested) {
5228 I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
5229 DRM_DEBUG_KMS("Requesting to disable the power well\n");
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005230 }
5231 }
Paulo Zanonifa42e232013-01-25 16:59:11 -02005232}
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005233
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005234static struct i915_power_well *hsw_pwr;
5235
5236/* Display audio driver power well request */
5237void i915_request_power_well(void)
5238{
5239 if (WARN_ON(!hsw_pwr))
5240 return;
5241
5242 spin_lock_irq(&hsw_pwr->lock);
5243 if (!hsw_pwr->count++ &&
5244 !hsw_pwr->i915_request)
5245 __intel_set_power_well(hsw_pwr->device, true);
5246 spin_unlock_irq(&hsw_pwr->lock);
5247}
5248EXPORT_SYMBOL_GPL(i915_request_power_well);
5249
5250/* Display audio driver power well release */
5251void i915_release_power_well(void)
5252{
5253 if (WARN_ON(!hsw_pwr))
5254 return;
5255
5256 spin_lock_irq(&hsw_pwr->lock);
5257 WARN_ON(!hsw_pwr->count);
5258 if (!--hsw_pwr->count &&
5259 !hsw_pwr->i915_request)
5260 __intel_set_power_well(hsw_pwr->device, false);
5261 spin_unlock_irq(&hsw_pwr->lock);
5262}
5263EXPORT_SYMBOL_GPL(i915_release_power_well);
5264
5265int i915_init_power_well(struct drm_device *dev)
5266{
5267 struct drm_i915_private *dev_priv = dev->dev_private;
5268
5269 hsw_pwr = &dev_priv->power_well;
5270
5271 hsw_pwr->device = dev;
5272 spin_lock_init(&hsw_pwr->lock);
5273 hsw_pwr->count = 0;
5274
5275 return 0;
5276}
5277
5278void i915_remove_power_well(struct drm_device *dev)
5279{
5280 hsw_pwr = NULL;
5281}
5282
5283void intel_set_power_well(struct drm_device *dev, bool enable)
5284{
5285 struct drm_i915_private *dev_priv = dev->dev_private;
5286 struct i915_power_well *power_well = &dev_priv->power_well;
5287
5288 if (!HAS_POWER_WELL(dev))
5289 return;
5290
5291 if (!i915_disable_power_well && !enable)
5292 return;
5293
5294 spin_lock_irq(&power_well->lock);
5295 power_well->i915_request = enable;
5296
5297 /* only reject "disable" power well request */
5298 if (power_well->count && !enable) {
5299 spin_unlock_irq(&power_well->lock);
5300 return;
5301 }
5302
5303 __intel_set_power_well(dev, enable);
5304 spin_unlock_irq(&power_well->lock);
5305}
5306
Paulo Zanonifa42e232013-01-25 16:59:11 -02005307/*
5308 * Starting with Haswell, we have a "Power Down Well" that can be turned off
5309 * when not needed anymore. We have 4 registers that can request the power well
5310 * to be enabled, and it will only be disabled if none of the registers is
5311 * requesting it to be enabled.
5312 */
5313void intel_init_power_well(struct drm_device *dev)
5314{
5315 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005316
Paulo Zanoni86d52df2013-03-06 20:03:18 -03005317 if (!HAS_POWER_WELL(dev))
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005318 return;
5319
Paulo Zanonifa42e232013-01-25 16:59:11 -02005320 /* For now, we need the power well to be always enabled. */
5321 intel_set_power_well(dev, true);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005322
Paulo Zanonifa42e232013-01-25 16:59:11 -02005323 /* We're taking over the BIOS, so clear any requests made by it since
5324 * the driver is in charge now. */
5325 if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE)
5326 I915_WRITE(HSW_PWR_WELL_BIOS, 0);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005327}
5328
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005329/* Set up chip specific power management-related functions */
5330void intel_init_pm(struct drm_device *dev)
5331{
5332 struct drm_i915_private *dev_priv = dev->dev_private;
5333
5334 if (I915_HAS_FBC(dev)) {
5335 if (HAS_PCH_SPLIT(dev)) {
5336 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
Rodrigo Vivi891348b2013-05-06 19:37:36 -03005337 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Rodrigo Viviabe959c2013-05-06 19:37:33 -03005338 dev_priv->display.enable_fbc =
5339 gen7_enable_fbc;
5340 else
5341 dev_priv->display.enable_fbc =
5342 ironlake_enable_fbc;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005343 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5344 } else if (IS_GM45(dev)) {
5345 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5346 dev_priv->display.enable_fbc = g4x_enable_fbc;
5347 dev_priv->display.disable_fbc = g4x_disable_fbc;
5348 } else if (IS_CRESTLINE(dev)) {
5349 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5350 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5351 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5352 }
5353 /* 855GM needs testing */
5354 }
5355
Daniel Vetterc921aba2012-04-26 23:28:17 +02005356 /* For cxsr */
5357 if (IS_PINEVIEW(dev))
5358 i915_pineview_get_mem_freq(dev);
5359 else if (IS_GEN5(dev))
5360 i915_ironlake_get_mem_freq(dev);
5361
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005362 /* For FIFO watermark updates */
5363 if (HAS_PCH_SPLIT(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005364 intel_setup_wm_latency(dev);
5365
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005366 if (IS_GEN5(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005367 if (dev_priv->wm.pri_latency[1] &&
5368 dev_priv->wm.spr_latency[1] &&
5369 dev_priv->wm.cur_latency[1])
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005370 dev_priv->display.update_wm = ironlake_update_wm;
5371 else {
5372 DRM_DEBUG_KMS("Failed to get proper latency. "
5373 "Disable CxSR\n");
5374 dev_priv->display.update_wm = NULL;
5375 }
5376 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
5377 } else if (IS_GEN6(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005378 if (dev_priv->wm.pri_latency[0] &&
5379 dev_priv->wm.spr_latency[0] &&
5380 dev_priv->wm.cur_latency[0]) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005381 dev_priv->display.update_wm = sandybridge_update_wm;
5382 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5383 } else {
5384 DRM_DEBUG_KMS("Failed to read display plane latency. "
5385 "Disable CxSR\n");
5386 dev_priv->display.update_wm = NULL;
5387 }
5388 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
5389 } else if (IS_IVYBRIDGE(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005390 if (dev_priv->wm.pri_latency[0] &&
5391 dev_priv->wm.spr_latency[0] &&
5392 dev_priv->wm.cur_latency[0]) {
Chris Wilsonc43d0182012-12-11 12:01:42 +00005393 dev_priv->display.update_wm = ivybridge_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005394 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5395 } else {
5396 DRM_DEBUG_KMS("Failed to read display plane latency. "
5397 "Disable CxSR\n");
5398 dev_priv->display.update_wm = NULL;
5399 }
5400 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005401 } else if (IS_HASWELL(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005402 if (dev_priv->wm.pri_latency[0] &&
5403 dev_priv->wm.spr_latency[0] &&
5404 dev_priv->wm.cur_latency[0]) {
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005405 dev_priv->display.update_wm = haswell_update_wm;
Paulo Zanoni526682e2013-05-24 11:59:18 -03005406 dev_priv->display.update_sprite_wm =
5407 haswell_update_sprite_wm;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005408 } else {
5409 DRM_DEBUG_KMS("Failed to read display plane latency. "
5410 "Disable CxSR\n");
5411 dev_priv->display.update_wm = NULL;
5412 }
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005413 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005414 } else
5415 dev_priv->display.update_wm = NULL;
5416 } else if (IS_VALLEYVIEW(dev)) {
5417 dev_priv->display.update_wm = valleyview_update_wm;
5418 dev_priv->display.init_clock_gating =
5419 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005420 } else if (IS_PINEVIEW(dev)) {
5421 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
5422 dev_priv->is_ddr3,
5423 dev_priv->fsb_freq,
5424 dev_priv->mem_freq)) {
5425 DRM_INFO("failed to find known CxSR latency "
5426 "(found ddr%s fsb freq %d, mem freq %d), "
5427 "disabling CxSR\n",
5428 (dev_priv->is_ddr3 == 1) ? "3" : "2",
5429 dev_priv->fsb_freq, dev_priv->mem_freq);
5430 /* Disable CxSR and never update its watermark again */
5431 pineview_disable_cxsr(dev);
5432 dev_priv->display.update_wm = NULL;
5433 } else
5434 dev_priv->display.update_wm = pineview_update_wm;
5435 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5436 } else if (IS_G4X(dev)) {
5437 dev_priv->display.update_wm = g4x_update_wm;
5438 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
5439 } else if (IS_GEN4(dev)) {
5440 dev_priv->display.update_wm = i965_update_wm;
5441 if (IS_CRESTLINE(dev))
5442 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
5443 else if (IS_BROADWATER(dev))
5444 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
5445 } else if (IS_GEN3(dev)) {
5446 dev_priv->display.update_wm = i9xx_update_wm;
5447 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
5448 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5449 } else if (IS_I865G(dev)) {
5450 dev_priv->display.update_wm = i830_update_wm;
5451 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5452 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5453 } else if (IS_I85X(dev)) {
5454 dev_priv->display.update_wm = i9xx_update_wm;
5455 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
5456 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5457 } else {
5458 dev_priv->display.update_wm = i830_update_wm;
5459 dev_priv->display.init_clock_gating = i830_init_clock_gating;
5460 if (IS_845G(dev))
5461 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5462 else
5463 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5464 }
5465}
5466
Ben Widawsky42c05262012-09-26 10:34:00 -07005467int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val)
5468{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005469 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005470
5471 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5472 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
5473 return -EAGAIN;
5474 }
5475
5476 I915_WRITE(GEN6_PCODE_DATA, *val);
5477 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5478
5479 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5480 500)) {
5481 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
5482 return -ETIMEDOUT;
5483 }
5484
5485 *val = I915_READ(GEN6_PCODE_DATA);
5486 I915_WRITE(GEN6_PCODE_DATA, 0);
5487
5488 return 0;
5489}
5490
5491int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val)
5492{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005493 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005494
5495 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5496 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
5497 return -EAGAIN;
5498 }
5499
5500 I915_WRITE(GEN6_PCODE_DATA, val);
5501 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5502
5503 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5504 500)) {
5505 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
5506 return -ETIMEDOUT;
5507 }
5508
5509 I915_WRITE(GEN6_PCODE_DATA, 0);
5510
5511 return 0;
5512}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07005513
Jesse Barnes855ba3b2013-04-17 15:54:57 -07005514int vlv_gpu_freq(int ddr_freq, int val)
5515{
5516 int mult, base;
5517
5518 switch (ddr_freq) {
5519 case 800:
5520 mult = 20;
5521 base = 120;
5522 break;
5523 case 1066:
5524 mult = 22;
5525 base = 133;
5526 break;
5527 case 1333:
5528 mult = 21;
5529 base = 125;
5530 break;
5531 default:
5532 return -1;
5533 }
5534
5535 return ((val - 0xbd) * mult) + base;
5536}
5537
5538int vlv_freq_opcode(int ddr_freq, int val)
5539{
5540 int mult, base;
5541
5542 switch (ddr_freq) {
5543 case 800:
5544 mult = 20;
5545 base = 120;
5546 break;
5547 case 1066:
5548 mult = 22;
5549 base = 133;
5550 break;
5551 case 1333:
5552 mult = 21;
5553 base = 125;
5554 break;
5555 default:
5556 return -1;
5557 }
5558
5559 val /= mult;
5560 val -= base / mult;
5561 val += 0xbd;
5562
5563 if (val > 0xea)
5564 val = 0xea;
5565
5566 return val;
5567}
5568
Chris Wilson907b28c2013-07-19 20:36:52 +01005569void intel_pm_init(struct drm_device *dev)
5570{
5571 struct drm_i915_private *dev_priv = dev->dev_private;
5572
5573 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
5574 intel_gen6_powersave_work);
5575}
5576