blob: 865d524f1e85a5dfe90c050d0ba85e7194719aca [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
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001090static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001091{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001092 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001093 struct drm_i915_private *dev_priv = dev->dev_private;
1094 struct drm_crtc *crtc;
1095 const struct cxsr_latency *latency;
1096 u32 reg;
1097 unsigned long wm;
1098
1099 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
1100 dev_priv->fsb_freq, dev_priv->mem_freq);
1101 if (!latency) {
1102 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
1103 pineview_disable_cxsr(dev);
1104 return;
1105 }
1106
1107 crtc = single_enabled_crtc(dev);
1108 if (crtc) {
1109 int clock = crtc->mode.clock;
1110 int pixel_size = crtc->fb->bits_per_pixel / 8;
1111
1112 /* Display SR */
1113 wm = intel_calculate_wm(clock, &pineview_display_wm,
1114 pineview_display_wm.fifo_size,
1115 pixel_size, latency->display_sr);
1116 reg = I915_READ(DSPFW1);
1117 reg &= ~DSPFW_SR_MASK;
1118 reg |= wm << DSPFW_SR_SHIFT;
1119 I915_WRITE(DSPFW1, reg);
1120 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
1121
1122 /* cursor SR */
1123 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
1124 pineview_display_wm.fifo_size,
1125 pixel_size, latency->cursor_sr);
1126 reg = I915_READ(DSPFW3);
1127 reg &= ~DSPFW_CURSOR_SR_MASK;
1128 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
1129 I915_WRITE(DSPFW3, reg);
1130
1131 /* Display HPLL off SR */
1132 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
1133 pineview_display_hplloff_wm.fifo_size,
1134 pixel_size, latency->display_hpll_disable);
1135 reg = I915_READ(DSPFW3);
1136 reg &= ~DSPFW_HPLL_SR_MASK;
1137 reg |= wm & DSPFW_HPLL_SR_MASK;
1138 I915_WRITE(DSPFW3, reg);
1139
1140 /* cursor HPLL off SR */
1141 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
1142 pineview_display_hplloff_wm.fifo_size,
1143 pixel_size, latency->cursor_hpll_disable);
1144 reg = I915_READ(DSPFW3);
1145 reg &= ~DSPFW_HPLL_CURSOR_MASK;
1146 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
1147 I915_WRITE(DSPFW3, reg);
1148 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
1149
1150 /* activate cxsr */
1151 I915_WRITE(DSPFW3,
1152 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
1153 DRM_DEBUG_KMS("Self-refresh is enabled\n");
1154 } else {
1155 pineview_disable_cxsr(dev);
1156 DRM_DEBUG_KMS("Self-refresh is disabled\n");
1157 }
1158}
1159
1160static bool g4x_compute_wm0(struct drm_device *dev,
1161 int plane,
1162 const struct intel_watermark_params *display,
1163 int display_latency_ns,
1164 const struct intel_watermark_params *cursor,
1165 int cursor_latency_ns,
1166 int *plane_wm,
1167 int *cursor_wm)
1168{
1169 struct drm_crtc *crtc;
1170 int htotal, hdisplay, clock, pixel_size;
1171 int line_time_us, line_count;
1172 int entries, tlb_miss;
1173
1174 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001175 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001176 *cursor_wm = cursor->guard_size;
1177 *plane_wm = display->guard_size;
1178 return false;
1179 }
1180
1181 htotal = crtc->mode.htotal;
1182 hdisplay = crtc->mode.hdisplay;
1183 clock = crtc->mode.clock;
1184 pixel_size = crtc->fb->bits_per_pixel / 8;
1185
1186 /* Use the small buffer method to calculate plane watermark */
1187 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
1188 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
1189 if (tlb_miss > 0)
1190 entries += tlb_miss;
1191 entries = DIV_ROUND_UP(entries, display->cacheline_size);
1192 *plane_wm = entries + display->guard_size;
1193 if (*plane_wm > (int)display->max_wm)
1194 *plane_wm = display->max_wm;
1195
1196 /* Use the large buffer method to calculate cursor watermark */
1197 line_time_us = ((htotal * 1000) / clock);
1198 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
1199 entries = line_count * 64 * pixel_size;
1200 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1201 if (tlb_miss > 0)
1202 entries += tlb_miss;
1203 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1204 *cursor_wm = entries + cursor->guard_size;
1205 if (*cursor_wm > (int)cursor->max_wm)
1206 *cursor_wm = (int)cursor->max_wm;
1207
1208 return true;
1209}
1210
1211/*
1212 * Check the wm result.
1213 *
1214 * If any calculated watermark values is larger than the maximum value that
1215 * can be programmed into the associated watermark register, that watermark
1216 * must be disabled.
1217 */
1218static bool g4x_check_srwm(struct drm_device *dev,
1219 int display_wm, int cursor_wm,
1220 const struct intel_watermark_params *display,
1221 const struct intel_watermark_params *cursor)
1222{
1223 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
1224 display_wm, cursor_wm);
1225
1226 if (display_wm > display->max_wm) {
1227 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
1228 display_wm, display->max_wm);
1229 return false;
1230 }
1231
1232 if (cursor_wm > cursor->max_wm) {
1233 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
1234 cursor_wm, cursor->max_wm);
1235 return false;
1236 }
1237
1238 if (!(display_wm || cursor_wm)) {
1239 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
1240 return false;
1241 }
1242
1243 return true;
1244}
1245
1246static bool g4x_compute_srwm(struct drm_device *dev,
1247 int plane,
1248 int latency_ns,
1249 const struct intel_watermark_params *display,
1250 const struct intel_watermark_params *cursor,
1251 int *display_wm, int *cursor_wm)
1252{
1253 struct drm_crtc *crtc;
1254 int hdisplay, htotal, pixel_size, clock;
1255 unsigned long line_time_us;
1256 int line_count, line_size;
1257 int small, large;
1258 int entries;
1259
1260 if (!latency_ns) {
1261 *display_wm = *cursor_wm = 0;
1262 return false;
1263 }
1264
1265 crtc = intel_get_crtc_for_plane(dev, plane);
1266 hdisplay = crtc->mode.hdisplay;
1267 htotal = crtc->mode.htotal;
1268 clock = crtc->mode.clock;
1269 pixel_size = crtc->fb->bits_per_pixel / 8;
1270
1271 line_time_us = (htotal * 1000) / clock;
1272 line_count = (latency_ns / line_time_us + 1000) / 1000;
1273 line_size = hdisplay * pixel_size;
1274
1275 /* Use the minimum of the small and large buffer method for primary */
1276 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1277 large = line_count * line_size;
1278
1279 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1280 *display_wm = entries + display->guard_size;
1281
1282 /* calculate the self-refresh watermark for display cursor */
1283 entries = line_count * pixel_size * 64;
1284 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1285 *cursor_wm = entries + cursor->guard_size;
1286
1287 return g4x_check_srwm(dev,
1288 *display_wm, *cursor_wm,
1289 display, cursor);
1290}
1291
1292static bool vlv_compute_drain_latency(struct drm_device *dev,
1293 int plane,
1294 int *plane_prec_mult,
1295 int *plane_dl,
1296 int *cursor_prec_mult,
1297 int *cursor_dl)
1298{
1299 struct drm_crtc *crtc;
1300 int clock, pixel_size;
1301 int entries;
1302
1303 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001304 if (!intel_crtc_active(crtc))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001305 return false;
1306
1307 clock = crtc->mode.clock; /* VESA DOT Clock */
1308 pixel_size = crtc->fb->bits_per_pixel / 8; /* BPP */
1309
1310 entries = (clock / 1000) * pixel_size;
1311 *plane_prec_mult = (entries > 256) ?
1312 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1313 *plane_dl = (64 * (*plane_prec_mult) * 4) / ((clock / 1000) *
1314 pixel_size);
1315
1316 entries = (clock / 1000) * 4; /* BPP is always 4 for cursor */
1317 *cursor_prec_mult = (entries > 256) ?
1318 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1319 *cursor_dl = (64 * (*cursor_prec_mult) * 4) / ((clock / 1000) * 4);
1320
1321 return true;
1322}
1323
1324/*
1325 * Update drain latency registers of memory arbiter
1326 *
1327 * Valleyview SoC has a new memory arbiter and needs drain latency registers
1328 * to be programmed. Each plane has a drain latency multiplier and a drain
1329 * latency value.
1330 */
1331
1332static void vlv_update_drain_latency(struct drm_device *dev)
1333{
1334 struct drm_i915_private *dev_priv = dev->dev_private;
1335 int planea_prec, planea_dl, planeb_prec, planeb_dl;
1336 int cursora_prec, cursora_dl, cursorb_prec, cursorb_dl;
1337 int plane_prec_mult, cursor_prec_mult; /* Precision multiplier is
1338 either 16 or 32 */
1339
1340 /* For plane A, Cursor A */
1341 if (vlv_compute_drain_latency(dev, 0, &plane_prec_mult, &planea_dl,
1342 &cursor_prec_mult, &cursora_dl)) {
1343 cursora_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1344 DDL_CURSORA_PRECISION_32 : DDL_CURSORA_PRECISION_16;
1345 planea_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1346 DDL_PLANEA_PRECISION_32 : DDL_PLANEA_PRECISION_16;
1347
1348 I915_WRITE(VLV_DDL1, cursora_prec |
1349 (cursora_dl << DDL_CURSORA_SHIFT) |
1350 planea_prec | planea_dl);
1351 }
1352
1353 /* For plane B, Cursor B */
1354 if (vlv_compute_drain_latency(dev, 1, &plane_prec_mult, &planeb_dl,
1355 &cursor_prec_mult, &cursorb_dl)) {
1356 cursorb_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1357 DDL_CURSORB_PRECISION_32 : DDL_CURSORB_PRECISION_16;
1358 planeb_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1359 DDL_PLANEB_PRECISION_32 : DDL_PLANEB_PRECISION_16;
1360
1361 I915_WRITE(VLV_DDL2, cursorb_prec |
1362 (cursorb_dl << DDL_CURSORB_SHIFT) |
1363 planeb_prec | planeb_dl);
1364 }
1365}
1366
1367#define single_plane_enabled(mask) is_power_of_2(mask)
1368
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001369static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001370{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001371 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001372 static const int sr_latency_ns = 12000;
1373 struct drm_i915_private *dev_priv = dev->dev_private;
1374 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1375 int plane_sr, cursor_sr;
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001376 int ignore_plane_sr, ignore_cursor_sr;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001377 unsigned int enabled = 0;
1378
1379 vlv_update_drain_latency(dev);
1380
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001381 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001382 &valleyview_wm_info, latency_ns,
1383 &valleyview_cursor_wm_info, latency_ns,
1384 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001385 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001386
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001387 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001388 &valleyview_wm_info, latency_ns,
1389 &valleyview_cursor_wm_info, latency_ns,
1390 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001391 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001392
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001393 if (single_plane_enabled(enabled) &&
1394 g4x_compute_srwm(dev, ffs(enabled) - 1,
1395 sr_latency_ns,
1396 &valleyview_wm_info,
1397 &valleyview_cursor_wm_info,
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001398 &plane_sr, &ignore_cursor_sr) &&
1399 g4x_compute_srwm(dev, ffs(enabled) - 1,
1400 2*sr_latency_ns,
1401 &valleyview_wm_info,
1402 &valleyview_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001403 &ignore_plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001404 I915_WRITE(FW_BLC_SELF_VLV, FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001405 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001406 I915_WRITE(FW_BLC_SELF_VLV,
1407 I915_READ(FW_BLC_SELF_VLV) & ~FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001408 plane_sr = cursor_sr = 0;
1409 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001410
1411 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1412 planea_wm, cursora_wm,
1413 planeb_wm, cursorb_wm,
1414 plane_sr, cursor_sr);
1415
1416 I915_WRITE(DSPFW1,
1417 (plane_sr << DSPFW_SR_SHIFT) |
1418 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1419 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1420 planea_wm);
1421 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001422 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001423 (cursora_wm << DSPFW_CURSORA_SHIFT));
1424 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001425 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
1426 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001427}
1428
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001429static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001431 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432 static const int sr_latency_ns = 12000;
1433 struct drm_i915_private *dev_priv = dev->dev_private;
1434 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1435 int plane_sr, cursor_sr;
1436 unsigned int enabled = 0;
1437
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001438 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001439 &g4x_wm_info, latency_ns,
1440 &g4x_cursor_wm_info, latency_ns,
1441 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001442 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001443
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001444 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001445 &g4x_wm_info, latency_ns,
1446 &g4x_cursor_wm_info, latency_ns,
1447 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001448 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001449
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001450 if (single_plane_enabled(enabled) &&
1451 g4x_compute_srwm(dev, ffs(enabled) - 1,
1452 sr_latency_ns,
1453 &g4x_wm_info,
1454 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001455 &plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001456 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001457 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001458 I915_WRITE(FW_BLC_SELF,
1459 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001460 plane_sr = cursor_sr = 0;
1461 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001462
1463 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1464 planea_wm, cursora_wm,
1465 planeb_wm, cursorb_wm,
1466 plane_sr, cursor_sr);
1467
1468 I915_WRITE(DSPFW1,
1469 (plane_sr << DSPFW_SR_SHIFT) |
1470 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1471 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1472 planea_wm);
1473 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001474 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001475 (cursora_wm << DSPFW_CURSORA_SHIFT));
1476 /* HPLL off in SR has some issues on G4x... disable it */
1477 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001478 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1480}
1481
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001482static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001483{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001484 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001485 struct drm_i915_private *dev_priv = dev->dev_private;
1486 struct drm_crtc *crtc;
1487 int srwm = 1;
1488 int cursor_sr = 16;
1489
1490 /* Calc sr entries for one plane configs */
1491 crtc = single_enabled_crtc(dev);
1492 if (crtc) {
1493 /* self-refresh has much higher latency */
1494 static const int sr_latency_ns = 12000;
1495 int clock = crtc->mode.clock;
1496 int htotal = crtc->mode.htotal;
1497 int hdisplay = crtc->mode.hdisplay;
1498 int pixel_size = crtc->fb->bits_per_pixel / 8;
1499 unsigned long line_time_us;
1500 int entries;
1501
1502 line_time_us = ((htotal * 1000) / clock);
1503
1504 /* Use ns/us then divide to preserve precision */
1505 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1506 pixel_size * hdisplay;
1507 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1508 srwm = I965_FIFO_SIZE - entries;
1509 if (srwm < 0)
1510 srwm = 1;
1511 srwm &= 0x1ff;
1512 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1513 entries, srwm);
1514
1515 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1516 pixel_size * 64;
1517 entries = DIV_ROUND_UP(entries,
1518 i965_cursor_wm_info.cacheline_size);
1519 cursor_sr = i965_cursor_wm_info.fifo_size -
1520 (entries + i965_cursor_wm_info.guard_size);
1521
1522 if (cursor_sr > i965_cursor_wm_info.max_wm)
1523 cursor_sr = i965_cursor_wm_info.max_wm;
1524
1525 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1526 "cursor %d\n", srwm, cursor_sr);
1527
1528 if (IS_CRESTLINE(dev))
1529 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
1530 } else {
1531 /* Turn off self refresh if both pipes are enabled */
1532 if (IS_CRESTLINE(dev))
1533 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
1534 & ~FW_BLC_SELF_EN);
1535 }
1536
1537 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1538 srwm);
1539
1540 /* 965 has limitations... */
1541 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
1542 (8 << 16) | (8 << 8) | (8 << 0));
1543 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
1544 /* update cursor SR watermark */
1545 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1546}
1547
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001548static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001549{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001550 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001551 struct drm_i915_private *dev_priv = dev->dev_private;
1552 const struct intel_watermark_params *wm_info;
1553 uint32_t fwater_lo;
1554 uint32_t fwater_hi;
1555 int cwm, srwm = 1;
1556 int fifo_size;
1557 int planea_wm, planeb_wm;
1558 struct drm_crtc *crtc, *enabled = NULL;
1559
1560 if (IS_I945GM(dev))
1561 wm_info = &i945_wm_info;
1562 else if (!IS_GEN2(dev))
1563 wm_info = &i915_wm_info;
1564 else
1565 wm_info = &i855_wm_info;
1566
1567 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1568 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001569 if (intel_crtc_active(crtc)) {
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001570 int cpp = crtc->fb->bits_per_pixel / 8;
1571 if (IS_GEN2(dev))
1572 cpp = 4;
1573
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001574 planea_wm = intel_calculate_wm(crtc->mode.clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001575 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001576 latency_ns);
1577 enabled = crtc;
1578 } else
1579 planea_wm = fifo_size - wm_info->guard_size;
1580
1581 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1582 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001583 if (intel_crtc_active(crtc)) {
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001584 int cpp = crtc->fb->bits_per_pixel / 8;
1585 if (IS_GEN2(dev))
1586 cpp = 4;
1587
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001588 planeb_wm = intel_calculate_wm(crtc->mode.clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001589 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001590 latency_ns);
1591 if (enabled == NULL)
1592 enabled = crtc;
1593 else
1594 enabled = NULL;
1595 } else
1596 planeb_wm = fifo_size - wm_info->guard_size;
1597
1598 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1599
1600 /*
1601 * Overlay gets an aggressive default since video jitter is bad.
1602 */
1603 cwm = 2;
1604
1605 /* Play safe and disable self-refresh before adjusting watermarks. */
1606 if (IS_I945G(dev) || IS_I945GM(dev))
1607 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
1608 else if (IS_I915GM(dev))
1609 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
1610
1611 /* Calc sr entries for one plane configs */
1612 if (HAS_FW_BLC(dev) && enabled) {
1613 /* self-refresh has much higher latency */
1614 static const int sr_latency_ns = 6000;
1615 int clock = enabled->mode.clock;
1616 int htotal = enabled->mode.htotal;
1617 int hdisplay = enabled->mode.hdisplay;
1618 int pixel_size = enabled->fb->bits_per_pixel / 8;
1619 unsigned long line_time_us;
1620 int entries;
1621
1622 line_time_us = (htotal * 1000) / clock;
1623
1624 /* Use ns/us then divide to preserve precision */
1625 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1626 pixel_size * hdisplay;
1627 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1628 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1629 srwm = wm_info->fifo_size - entries;
1630 if (srwm < 0)
1631 srwm = 1;
1632
1633 if (IS_I945G(dev) || IS_I945GM(dev))
1634 I915_WRITE(FW_BLC_SELF,
1635 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1636 else if (IS_I915GM(dev))
1637 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1638 }
1639
1640 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1641 planea_wm, planeb_wm, cwm, srwm);
1642
1643 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1644 fwater_hi = (cwm & 0x1f);
1645
1646 /* Set request length to 8 cachelines per fetch */
1647 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1648 fwater_hi = fwater_hi | (1 << 8);
1649
1650 I915_WRITE(FW_BLC, fwater_lo);
1651 I915_WRITE(FW_BLC2, fwater_hi);
1652
1653 if (HAS_FW_BLC(dev)) {
1654 if (enabled) {
1655 if (IS_I945G(dev) || IS_I945GM(dev))
1656 I915_WRITE(FW_BLC_SELF,
1657 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
1658 else if (IS_I915GM(dev))
1659 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
1660 DRM_DEBUG_KMS("memory self refresh enabled\n");
1661 } else
1662 DRM_DEBUG_KMS("memory self refresh disabled\n");
1663 }
1664}
1665
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001666static void i830_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001667{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001668 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 struct drm_crtc *crtc;
1671 uint32_t fwater_lo;
1672 int planea_wm;
1673
1674 crtc = single_enabled_crtc(dev);
1675 if (crtc == NULL)
1676 return;
1677
1678 planea_wm = intel_calculate_wm(crtc->mode.clock, &i830_wm_info,
1679 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001680 4, latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001681 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1682 fwater_lo |= (3<<8) | planea_wm;
1683
1684 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1685
1686 I915_WRITE(FW_BLC, fwater_lo);
1687}
1688
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001689/*
1690 * Check the wm result.
1691 *
1692 * If any calculated watermark values is larger than the maximum value that
1693 * can be programmed into the associated watermark register, that watermark
1694 * must be disabled.
1695 */
1696static bool ironlake_check_srwm(struct drm_device *dev, int level,
1697 int fbc_wm, int display_wm, int cursor_wm,
1698 const struct intel_watermark_params *display,
1699 const struct intel_watermark_params *cursor)
1700{
1701 struct drm_i915_private *dev_priv = dev->dev_private;
1702
1703 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
1704 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
1705
1706 if (fbc_wm > SNB_FBC_MAX_SRWM) {
1707 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
1708 fbc_wm, SNB_FBC_MAX_SRWM, level);
1709
1710 /* fbc has it's own way to disable FBC WM */
1711 I915_WRITE(DISP_ARB_CTL,
1712 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
1713 return false;
Ville Syrjälä615aaa52013-04-24 21:09:10 +03001714 } else if (INTEL_INFO(dev)->gen >= 6) {
1715 /* enable FBC WM (except on ILK, where it must remain off) */
1716 I915_WRITE(DISP_ARB_CTL,
1717 I915_READ(DISP_ARB_CTL) & ~DISP_FBC_WM_DIS);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001718 }
1719
1720 if (display_wm > display->max_wm) {
1721 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
1722 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1723 return false;
1724 }
1725
1726 if (cursor_wm > cursor->max_wm) {
1727 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
1728 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1729 return false;
1730 }
1731
1732 if (!(fbc_wm || display_wm || cursor_wm)) {
1733 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
1734 return false;
1735 }
1736
1737 return true;
1738}
1739
1740/*
1741 * Compute watermark values of WM[1-3],
1742 */
1743static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
1744 int latency_ns,
1745 const struct intel_watermark_params *display,
1746 const struct intel_watermark_params *cursor,
1747 int *fbc_wm, int *display_wm, int *cursor_wm)
1748{
1749 struct drm_crtc *crtc;
1750 unsigned long line_time_us;
1751 int hdisplay, htotal, pixel_size, clock;
1752 int line_count, line_size;
1753 int small, large;
1754 int entries;
1755
1756 if (!latency_ns) {
1757 *fbc_wm = *display_wm = *cursor_wm = 0;
1758 return false;
1759 }
1760
1761 crtc = intel_get_crtc_for_plane(dev, plane);
1762 hdisplay = crtc->mode.hdisplay;
1763 htotal = crtc->mode.htotal;
1764 clock = crtc->mode.clock;
1765 pixel_size = crtc->fb->bits_per_pixel / 8;
1766
1767 line_time_us = (htotal * 1000) / clock;
1768 line_count = (latency_ns / line_time_us + 1000) / 1000;
1769 line_size = hdisplay * pixel_size;
1770
1771 /* Use the minimum of the small and large buffer method for primary */
1772 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1773 large = line_count * line_size;
1774
1775 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1776 *display_wm = entries + display->guard_size;
1777
1778 /*
1779 * Spec says:
1780 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
1781 */
1782 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
1783
1784 /* calculate the self-refresh watermark for display cursor */
1785 entries = line_count * pixel_size * 64;
1786 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1787 *cursor_wm = entries + cursor->guard_size;
1788
1789 return ironlake_check_srwm(dev, level,
1790 *fbc_wm, *display_wm, *cursor_wm,
1791 display, cursor);
1792}
1793
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001794static void ironlake_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001795{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001796 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001797 struct drm_i915_private *dev_priv = dev->dev_private;
1798 int fbc_wm, plane_wm, cursor_wm;
1799 unsigned int enabled;
1800
1801 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001802 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001803 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001804 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001805 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001806 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001807 &plane_wm, &cursor_wm)) {
1808 I915_WRITE(WM0_PIPEA_ILK,
1809 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1810 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1811 " plane %d, " "cursor: %d\n",
1812 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001813 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001814 }
1815
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001816 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001817 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001818 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001819 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001820 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001821 &plane_wm, &cursor_wm)) {
1822 I915_WRITE(WM0_PIPEB_ILK,
1823 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1824 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1825 " plane %d, cursor: %d\n",
1826 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001827 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001828 }
1829
1830 /*
1831 * Calculate and update the self-refresh watermark only when one
1832 * display plane is used.
1833 */
1834 I915_WRITE(WM3_LP_ILK, 0);
1835 I915_WRITE(WM2_LP_ILK, 0);
1836 I915_WRITE(WM1_LP_ILK, 0);
1837
1838 if (!single_plane_enabled(enabled))
1839 return;
1840 enabled = ffs(enabled) - 1;
1841
1842 /* WM1 */
1843 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001844 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001845 &ironlake_display_srwm_info,
1846 &ironlake_cursor_srwm_info,
1847 &fbc_wm, &plane_wm, &cursor_wm))
1848 return;
1849
1850 I915_WRITE(WM1_LP_ILK,
1851 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001852 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001853 (fbc_wm << WM1_LP_FBC_SHIFT) |
1854 (plane_wm << WM1_LP_SR_SHIFT) |
1855 cursor_wm);
1856
1857 /* WM2 */
1858 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001859 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001860 &ironlake_display_srwm_info,
1861 &ironlake_cursor_srwm_info,
1862 &fbc_wm, &plane_wm, &cursor_wm))
1863 return;
1864
1865 I915_WRITE(WM2_LP_ILK,
1866 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001867 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001868 (fbc_wm << WM1_LP_FBC_SHIFT) |
1869 (plane_wm << WM1_LP_SR_SHIFT) |
1870 cursor_wm);
1871
1872 /*
1873 * WM3 is unsupported on ILK, probably because we don't have latency
1874 * data for that power state
1875 */
1876}
1877
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001878static void sandybridge_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001879{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001880 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001881 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001882 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001883 u32 val;
1884 int fbc_wm, plane_wm, cursor_wm;
1885 unsigned int enabled;
1886
1887 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001888 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001889 &sandybridge_display_wm_info, latency,
1890 &sandybridge_cursor_wm_info, latency,
1891 &plane_wm, &cursor_wm)) {
1892 val = I915_READ(WM0_PIPEA_ILK);
1893 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1894 I915_WRITE(WM0_PIPEA_ILK, val |
1895 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1896 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1897 " plane %d, " "cursor: %d\n",
1898 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001899 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001900 }
1901
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001902 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001903 &sandybridge_display_wm_info, latency,
1904 &sandybridge_cursor_wm_info, latency,
1905 &plane_wm, &cursor_wm)) {
1906 val = I915_READ(WM0_PIPEB_ILK);
1907 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1908 I915_WRITE(WM0_PIPEB_ILK, val |
1909 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1910 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1911 " plane %d, cursor: %d\n",
1912 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001913 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001914 }
1915
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001916 /*
1917 * Calculate and update the self-refresh watermark only when one
1918 * display plane is used.
1919 *
1920 * SNB support 3 levels of watermark.
1921 *
1922 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
1923 * and disabled in the descending order
1924 *
1925 */
1926 I915_WRITE(WM3_LP_ILK, 0);
1927 I915_WRITE(WM2_LP_ILK, 0);
1928 I915_WRITE(WM1_LP_ILK, 0);
1929
1930 if (!single_plane_enabled(enabled) ||
1931 dev_priv->sprite_scaling_enabled)
1932 return;
1933 enabled = ffs(enabled) - 1;
1934
1935 /* WM1 */
1936 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001937 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001938 &sandybridge_display_srwm_info,
1939 &sandybridge_cursor_srwm_info,
1940 &fbc_wm, &plane_wm, &cursor_wm))
1941 return;
1942
1943 I915_WRITE(WM1_LP_ILK,
1944 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001945 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001946 (fbc_wm << WM1_LP_FBC_SHIFT) |
1947 (plane_wm << WM1_LP_SR_SHIFT) |
1948 cursor_wm);
1949
1950 /* WM2 */
1951 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001952 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001953 &sandybridge_display_srwm_info,
1954 &sandybridge_cursor_srwm_info,
1955 &fbc_wm, &plane_wm, &cursor_wm))
1956 return;
1957
1958 I915_WRITE(WM2_LP_ILK,
1959 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001960 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001961 (fbc_wm << WM1_LP_FBC_SHIFT) |
1962 (plane_wm << WM1_LP_SR_SHIFT) |
1963 cursor_wm);
1964
1965 /* WM3 */
1966 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001967 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001968 &sandybridge_display_srwm_info,
1969 &sandybridge_cursor_srwm_info,
1970 &fbc_wm, &plane_wm, &cursor_wm))
1971 return;
1972
1973 I915_WRITE(WM3_LP_ILK,
1974 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001975 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001976 (fbc_wm << WM1_LP_FBC_SHIFT) |
1977 (plane_wm << WM1_LP_SR_SHIFT) |
1978 cursor_wm);
1979}
1980
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001981static void ivybridge_update_wm(struct drm_crtc *crtc)
Chris Wilsonc43d0182012-12-11 12:01:42 +00001982{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001983 struct drm_device *dev = crtc->dev;
Chris Wilsonc43d0182012-12-11 12:01:42 +00001984 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001985 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Chris Wilsonc43d0182012-12-11 12:01:42 +00001986 u32 val;
1987 int fbc_wm, plane_wm, cursor_wm;
1988 int ignore_fbc_wm, ignore_plane_wm, ignore_cursor_wm;
1989 unsigned int enabled;
1990
1991 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001992 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilsonc43d0182012-12-11 12:01:42 +00001993 &sandybridge_display_wm_info, latency,
1994 &sandybridge_cursor_wm_info, latency,
1995 &plane_wm, &cursor_wm)) {
1996 val = I915_READ(WM0_PIPEA_ILK);
1997 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1998 I915_WRITE(WM0_PIPEA_ILK, val |
1999 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2000 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
2001 " plane %d, " "cursor: %d\n",
2002 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002003 enabled |= 1 << PIPE_A;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002004 }
2005
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002006 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002007 &sandybridge_display_wm_info, latency,
2008 &sandybridge_cursor_wm_info, latency,
2009 &plane_wm, &cursor_wm)) {
2010 val = I915_READ(WM0_PIPEB_ILK);
2011 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2012 I915_WRITE(WM0_PIPEB_ILK, val |
2013 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2014 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
2015 " plane %d, cursor: %d\n",
2016 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002017 enabled |= 1 << PIPE_B;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002018 }
2019
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002020 if (g4x_compute_wm0(dev, PIPE_C,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002021 &sandybridge_display_wm_info, latency,
2022 &sandybridge_cursor_wm_info, latency,
2023 &plane_wm, &cursor_wm)) {
2024 val = I915_READ(WM0_PIPEC_IVB);
2025 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2026 I915_WRITE(WM0_PIPEC_IVB, val |
2027 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2028 DRM_DEBUG_KMS("FIFO watermarks For pipe C -"
2029 " plane %d, cursor: %d\n",
2030 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002031 enabled |= 1 << PIPE_C;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002032 }
2033
2034 /*
2035 * Calculate and update the self-refresh watermark only when one
2036 * display plane is used.
2037 *
2038 * SNB support 3 levels of watermark.
2039 *
2040 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
2041 * and disabled in the descending order
2042 *
2043 */
2044 I915_WRITE(WM3_LP_ILK, 0);
2045 I915_WRITE(WM2_LP_ILK, 0);
2046 I915_WRITE(WM1_LP_ILK, 0);
2047
2048 if (!single_plane_enabled(enabled) ||
2049 dev_priv->sprite_scaling_enabled)
2050 return;
2051 enabled = ffs(enabled) - 1;
2052
2053 /* WM1 */
2054 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002055 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002056 &sandybridge_display_srwm_info,
2057 &sandybridge_cursor_srwm_info,
2058 &fbc_wm, &plane_wm, &cursor_wm))
2059 return;
2060
2061 I915_WRITE(WM1_LP_ILK,
2062 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002063 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002064 (fbc_wm << WM1_LP_FBC_SHIFT) |
2065 (plane_wm << WM1_LP_SR_SHIFT) |
2066 cursor_wm);
2067
2068 /* WM2 */
2069 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002070 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002071 &sandybridge_display_srwm_info,
2072 &sandybridge_cursor_srwm_info,
2073 &fbc_wm, &plane_wm, &cursor_wm))
2074 return;
2075
2076 I915_WRITE(WM2_LP_ILK,
2077 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002078 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002079 (fbc_wm << WM1_LP_FBC_SHIFT) |
2080 (plane_wm << WM1_LP_SR_SHIFT) |
2081 cursor_wm);
2082
Chris Wilsonc43d0182012-12-11 12:01:42 +00002083 /* WM3, note we have to correct the cursor latency */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002084 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002085 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002086 &sandybridge_display_srwm_info,
2087 &sandybridge_cursor_srwm_info,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002088 &fbc_wm, &plane_wm, &ignore_cursor_wm) ||
2089 !ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002090 dev_priv->wm.cur_latency[3] * 500,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002091 &sandybridge_display_srwm_info,
2092 &sandybridge_cursor_srwm_info,
2093 &ignore_fbc_wm, &ignore_plane_wm, &cursor_wm))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002094 return;
2095
2096 I915_WRITE(WM3_LP_ILK,
2097 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002098 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002099 (fbc_wm << WM1_LP_FBC_SHIFT) |
2100 (plane_wm << WM1_LP_SR_SHIFT) |
2101 cursor_wm);
2102}
2103
Ville Syrjälä36587292013-07-05 11:57:16 +03002104static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
2105 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002106{
2107 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2108 uint32_t pixel_rate, pfit_size;
2109
Daniel Vetterff9a6752013-06-01 17:16:21 +02002110 pixel_rate = intel_crtc->config.adjusted_mode.clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002111
2112 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
2113 * adjust the pixel_rate here. */
2114
2115 pfit_size = intel_crtc->config.pch_pfit.size;
2116 if (pfit_size) {
2117 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
2118
2119 pipe_w = intel_crtc->config.requested_mode.hdisplay;
2120 pipe_h = intel_crtc->config.requested_mode.vdisplay;
2121 pfit_w = (pfit_size >> 16) & 0xFFFF;
2122 pfit_h = pfit_size & 0xFFFF;
2123 if (pipe_w < pfit_w)
2124 pipe_w = pfit_w;
2125 if (pipe_h < pfit_h)
2126 pipe_h = pfit_h;
2127
2128 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
2129 pfit_w * pfit_h);
2130 }
2131
2132 return pixel_rate;
2133}
2134
Ville Syrjälä37126462013-08-01 16:18:55 +03002135/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002136static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002137 uint32_t latency)
2138{
2139 uint64_t ret;
2140
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002141 if (WARN(latency == 0, "Latency value missing\n"))
2142 return UINT_MAX;
2143
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002144 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
2145 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
2146
2147 return ret;
2148}
2149
Ville Syrjälä37126462013-08-01 16:18:55 +03002150/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002151static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002152 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2153 uint32_t latency)
2154{
2155 uint32_t ret;
2156
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002157 if (WARN(latency == 0, "Latency value missing\n"))
2158 return UINT_MAX;
2159
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002160 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
2161 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
2162 ret = DIV_ROUND_UP(ret, 64) + 2;
2163 return ret;
2164}
2165
Ville Syrjälä23297042013-07-05 11:57:17 +03002166static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002167 uint8_t bytes_per_pixel)
2168{
2169 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
2170}
2171
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002172struct hsw_pipe_wm_parameters {
2173 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002174 uint32_t pipe_htotal;
2175 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002176 struct intel_plane_wm_parameters pri;
2177 struct intel_plane_wm_parameters spr;
2178 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002179};
2180
Paulo Zanonicca32e92013-05-31 11:45:06 -03002181struct hsw_wm_maximums {
2182 uint16_t pri;
2183 uint16_t spr;
2184 uint16_t cur;
2185 uint16_t fbc;
2186};
2187
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002188struct hsw_wm_values {
2189 uint32_t wm_pipe[3];
2190 uint32_t wm_lp[3];
2191 uint32_t wm_lp_spr[3];
2192 uint32_t wm_linetime[3];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002193 bool enable_fbc_wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002194};
2195
Ville Syrjälä240264f2013-08-07 13:29:12 +03002196/* used in computing the new watermarks state */
2197struct intel_wm_config {
2198 unsigned int num_pipes_active;
2199 bool sprites_enabled;
2200 bool sprites_scaled;
2201 bool fbc_wm_enabled;
2202};
2203
Ville Syrjälä37126462013-08-01 16:18:55 +03002204/*
2205 * For both WM_PIPE and WM_LP.
2206 * mem_value must be in 0.1us units.
2207 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002208static uint32_t ilk_compute_pri_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002209 uint32_t mem_value,
2210 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002211{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002212 uint32_t method1, method2;
2213
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002214 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002215 return 0;
2216
Ville Syrjälä23297042013-07-05 11:57:17 +03002217 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002218 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002219 mem_value);
2220
2221 if (!is_lp)
2222 return method1;
2223
Ville Syrjälä23297042013-07-05 11:57:17 +03002224 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002225 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002226 params->pri.horiz_pixels,
2227 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002228 mem_value);
2229
2230 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002231}
2232
Ville Syrjälä37126462013-08-01 16:18:55 +03002233/*
2234 * For both WM_PIPE and WM_LP.
2235 * mem_value must be in 0.1us units.
2236 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002237static uint32_t ilk_compute_spr_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002238 uint32_t mem_value)
2239{
2240 uint32_t method1, method2;
2241
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002242 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002243 return 0;
2244
Ville Syrjälä23297042013-07-05 11:57:17 +03002245 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002246 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002247 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03002248 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002249 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002250 params->spr.horiz_pixels,
2251 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002252 mem_value);
2253 return min(method1, method2);
2254}
2255
Ville Syrjälä37126462013-08-01 16:18:55 +03002256/*
2257 * For both WM_PIPE and WM_LP.
2258 * mem_value must be in 0.1us units.
2259 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002260static uint32_t ilk_compute_cur_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002261 uint32_t mem_value)
2262{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002263 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002264 return 0;
2265
Ville Syrjälä23297042013-07-05 11:57:17 +03002266 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002267 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002268 params->cur.horiz_pixels,
2269 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002270 mem_value);
2271}
2272
Paulo Zanonicca32e92013-05-31 11:45:06 -03002273/* Only for WM_LP. */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002274static uint32_t ilk_compute_fbc_wm(const struct hsw_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002275 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002276{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002277 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002278 return 0;
2279
Ville Syrjälä23297042013-07-05 11:57:17 +03002280 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002281 params->pri.horiz_pixels,
2282 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002283}
2284
Ville Syrjälä158ae642013-08-07 13:28:19 +03002285static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
2286{
2287 if (INTEL_INFO(dev)->gen >= 7)
2288 return 768;
2289 else
2290 return 512;
2291}
2292
2293/* Calculate the maximum primary/sprite plane watermark */
2294static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2295 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002296 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002297 enum intel_ddb_partitioning ddb_partitioning,
2298 bool is_sprite)
2299{
2300 unsigned int fifo_size = ilk_display_fifo_size(dev);
2301 unsigned int max;
2302
2303 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002304 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002305 return 0;
2306
2307 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002308 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002309 fifo_size /= INTEL_INFO(dev)->num_pipes;
2310
2311 /*
2312 * For some reason the non self refresh
2313 * FIFO size is only half of the self
2314 * refresh FIFO size on ILK/SNB.
2315 */
2316 if (INTEL_INFO(dev)->gen <= 6)
2317 fifo_size /= 2;
2318 }
2319
Ville Syrjälä240264f2013-08-07 13:29:12 +03002320 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002321 /* level 0 is always calculated with 1:1 split */
2322 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2323 if (is_sprite)
2324 fifo_size *= 5;
2325 fifo_size /= 6;
2326 } else {
2327 fifo_size /= 2;
2328 }
2329 }
2330
2331 /* clamp to max that the registers can hold */
2332 if (INTEL_INFO(dev)->gen >= 7)
2333 /* IVB/HSW primary/sprite plane watermarks */
2334 max = level == 0 ? 127 : 1023;
2335 else if (!is_sprite)
2336 /* ILK/SNB primary plane watermarks */
2337 max = level == 0 ? 127 : 511;
2338 else
2339 /* ILK/SNB sprite plane watermarks */
2340 max = level == 0 ? 63 : 255;
2341
2342 return min(fifo_size, max);
2343}
2344
2345/* Calculate the maximum cursor plane watermark */
2346static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002347 int level,
2348 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002349{
2350 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002351 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002352 return 64;
2353
2354 /* otherwise just report max that registers can hold */
2355 if (INTEL_INFO(dev)->gen >= 7)
2356 return level == 0 ? 63 : 255;
2357 else
2358 return level == 0 ? 31 : 63;
2359}
2360
2361/* Calculate the maximum FBC watermark */
2362static unsigned int ilk_fbc_wm_max(void)
2363{
2364 /* max that registers can hold */
2365 return 15;
2366}
2367
2368static void ilk_wm_max(struct drm_device *dev,
2369 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002370 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002371 enum intel_ddb_partitioning ddb_partitioning,
2372 struct hsw_wm_maximums *max)
2373{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002374 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2375 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2376 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002377 max->fbc = ilk_fbc_wm_max();
2378}
2379
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002380static bool ilk_check_wm(int level,
2381 const struct hsw_wm_maximums *max,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002382 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002383{
2384 bool ret;
2385
2386 /* already determined to be invalid? */
2387 if (!result->enable)
2388 return false;
2389
2390 result->enable = result->pri_val <= max->pri &&
2391 result->spr_val <= max->spr &&
2392 result->cur_val <= max->cur;
2393
2394 ret = result->enable;
2395
2396 /*
2397 * HACK until we can pre-compute everything,
2398 * and thus fail gracefully if LP0 watermarks
2399 * are exceeded...
2400 */
2401 if (level == 0 && !result->enable) {
2402 if (result->pri_val > max->pri)
2403 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2404 level, result->pri_val, max->pri);
2405 if (result->spr_val > max->spr)
2406 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2407 level, result->spr_val, max->spr);
2408 if (result->cur_val > max->cur)
2409 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2410 level, result->cur_val, max->cur);
2411
2412 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2413 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2414 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2415 result->enable = true;
2416 }
2417
2418 DRM_DEBUG_KMS("WM%d: %sabled\n", level, result->enable ? "en" : "dis");
2419
2420 return ret;
2421}
2422
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002423static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
2424 int level,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002425 const struct hsw_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002426 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002427{
2428 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2429 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2430 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2431
2432 /* WM1+ latency values stored in 0.5us units */
2433 if (level > 0) {
2434 pri_latency *= 5;
2435 spr_latency *= 5;
2436 cur_latency *= 5;
2437 }
2438
2439 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2440 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2441 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2442 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2443 result->enable = true;
2444}
2445
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002446static bool hsw_compute_lp_wm(struct drm_i915_private *dev_priv,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002447 int level, const struct hsw_wm_maximums *max,
2448 const struct hsw_pipe_wm_parameters *params,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002449 struct intel_wm_level *result)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002450{
2451 enum pipe pipe;
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002452 struct intel_wm_level res[3];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002453
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002454 for (pipe = PIPE_A; pipe <= PIPE_C; pipe++)
2455 ilk_compute_wm_level(dev_priv, level, &params[pipe], &res[pipe]);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002456
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002457 result->pri_val = max3(res[0].pri_val, res[1].pri_val, res[2].pri_val);
2458 result->spr_val = max3(res[0].spr_val, res[1].spr_val, res[2].spr_val);
2459 result->cur_val = max3(res[0].cur_val, res[1].cur_val, res[2].cur_val);
2460 result->fbc_val = max3(res[0].fbc_val, res[1].fbc_val, res[2].fbc_val);
2461 result->enable = true;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002462
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002463 return ilk_check_wm(level, max, result);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002464}
2465
Ville Syrjälä8de123a2013-08-30 14:30:24 +03002466
2467static uint32_t hsw_compute_wm_pipe(struct drm_device *dev,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002468 const struct hsw_pipe_wm_parameters *params)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002469{
Ville Syrjälä8de123a2013-08-30 14:30:24 +03002470 struct drm_i915_private *dev_priv = dev->dev_private;
2471 struct intel_wm_config config = {
2472 .num_pipes_active = 1,
2473 .sprites_enabled = params->spr.enabled,
2474 .sprites_scaled = params->spr.scaled,
2475 };
2476 struct hsw_wm_maximums max;
2477 struct intel_wm_level res;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002478
Ville Syrjälä8de123a2013-08-30 14:30:24 +03002479 if (!params->active)
2480 return 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002481
Ville Syrjälä8de123a2013-08-30 14:30:24 +03002482 ilk_wm_max(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002483
Ville Syrjälä8de123a2013-08-30 14:30:24 +03002484 ilk_compute_wm_level(dev_priv, 0, params, &res);
2485
2486 ilk_check_wm(0, &max, &res);
2487
2488 return (res.pri_val << WM0_PIPE_PLANE_SHIFT) |
2489 (res.spr_val << WM0_PIPE_SPRITE_SHIFT) |
2490 res.cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002491}
2492
2493static uint32_t
2494hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002495{
2496 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002497 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002498 struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002499 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002500
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002501 if (!intel_crtc_active(crtc))
2502 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002503
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002504 /* The WM are computed with base on how long it takes to fill a single
2505 * row at the given clock rate, multiplied by 8.
2506 * */
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002507 linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8, mode->clock);
2508 ips_linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8,
2509 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002510
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002511 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2512 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002513}
2514
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002515static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[5])
2516{
2517 struct drm_i915_private *dev_priv = dev->dev_private;
2518
2519 if (IS_HASWELL(dev)) {
2520 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2521
2522 wm[0] = (sskpd >> 56) & 0xFF;
2523 if (wm[0] == 0)
2524 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002525 wm[1] = (sskpd >> 4) & 0xFF;
2526 wm[2] = (sskpd >> 12) & 0xFF;
2527 wm[3] = (sskpd >> 20) & 0x1FF;
2528 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002529 } else if (INTEL_INFO(dev)->gen >= 6) {
2530 uint32_t sskpd = I915_READ(MCH_SSKPD);
2531
2532 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2533 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2534 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2535 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002536 } else if (INTEL_INFO(dev)->gen >= 5) {
2537 uint32_t mltr = I915_READ(MLTR_ILK);
2538
2539 /* ILK primary LP0 latency is 700 ns */
2540 wm[0] = 7;
2541 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2542 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002543 }
2544}
2545
Ville Syrjälä53615a52013-08-01 16:18:50 +03002546static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2547{
2548 /* ILK sprite LP0 latency is 1300 ns */
2549 if (INTEL_INFO(dev)->gen == 5)
2550 wm[0] = 13;
2551}
2552
2553static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2554{
2555 /* ILK cursor LP0 latency is 1300 ns */
2556 if (INTEL_INFO(dev)->gen == 5)
2557 wm[0] = 13;
2558
2559 /* WaDoubleCursorLP3Latency:ivb */
2560 if (IS_IVYBRIDGE(dev))
2561 wm[3] *= 2;
2562}
2563
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002564static void intel_print_wm_latency(struct drm_device *dev,
2565 const char *name,
2566 const uint16_t wm[5])
2567{
2568 int level, max_level;
2569
2570 /* how many WM levels are we expecting */
2571 if (IS_HASWELL(dev))
2572 max_level = 4;
2573 else if (INTEL_INFO(dev)->gen >= 6)
2574 max_level = 3;
2575 else
2576 max_level = 2;
2577
2578 for (level = 0; level <= max_level; level++) {
2579 unsigned int latency = wm[level];
2580
2581 if (latency == 0) {
2582 DRM_ERROR("%s WM%d latency not provided\n",
2583 name, level);
2584 continue;
2585 }
2586
2587 /* WM1+ latency values in 0.5us units */
2588 if (level > 0)
2589 latency *= 5;
2590
2591 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2592 name, level, wm[level],
2593 latency / 10, latency % 10);
2594 }
2595}
2596
Ville Syrjälä53615a52013-08-01 16:18:50 +03002597static void intel_setup_wm_latency(struct drm_device *dev)
2598{
2599 struct drm_i915_private *dev_priv = dev->dev_private;
2600
2601 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2602
2603 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2604 sizeof(dev_priv->wm.pri_latency));
2605 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2606 sizeof(dev_priv->wm.pri_latency));
2607
2608 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2609 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002610
2611 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2612 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2613 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002614}
2615
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002616static void hsw_compute_wm_parameters(struct drm_device *dev,
2617 struct hsw_pipe_wm_parameters *params,
Paulo Zanoni861f3382013-05-31 10:19:21 -03002618 struct hsw_wm_maximums *lp_max_1_2,
2619 struct hsw_wm_maximums *lp_max_5_6)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002620{
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002621 struct drm_crtc *crtc;
2622 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002623 enum pipe pipe;
Ville Syrjälä240264f2013-08-07 13:29:12 +03002624 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002625
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002626 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2627 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2628 struct hsw_pipe_wm_parameters *p;
2629
2630 pipe = intel_crtc->pipe;
2631 p = &params[pipe];
2632
2633 p->active = intel_crtc_active(crtc);
2634 if (!p->active)
2635 continue;
2636
Ville Syrjälä240264f2013-08-07 13:29:12 +03002637 config.num_pipes_active++;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002638
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002639 p->pipe_htotal = intel_crtc->config.adjusted_mode.htotal;
Ville Syrjälä36587292013-07-05 11:57:16 +03002640 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002641 p->pri.bytes_per_pixel = crtc->fb->bits_per_pixel / 8;
2642 p->cur.bytes_per_pixel = 4;
2643 p->pri.horiz_pixels =
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002644 intel_crtc->config.requested_mode.hdisplay;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002645 p->cur.horiz_pixels = 64;
2646 /* TODO: for now, assume primary and cursor planes are always enabled. */
2647 p->pri.enabled = true;
2648 p->cur.enabled = true;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002649 }
2650
2651 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2652 struct intel_plane *intel_plane = to_intel_plane(plane);
2653 struct hsw_pipe_wm_parameters *p;
2654
2655 pipe = intel_plane->pipe;
2656 p = &params[pipe];
2657
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002658 p->spr = intel_plane->wm;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002659
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002660 config.sprites_enabled |= p->spr.enabled;
2661 config.sprites_scaled |= p->spr.scaled;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002662 }
Paulo Zanonicca32e92013-05-31 11:45:06 -03002663
Ville Syrjälä240264f2013-08-07 13:29:12 +03002664 ilk_wm_max(dev, 1, &config, INTEL_DDB_PART_1_2, lp_max_1_2);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002665
2666 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002667 if (INTEL_INFO(dev)->gen >= 7 && config.num_pipes_active <= 1)
2668 ilk_wm_max(dev, 1, &config, INTEL_DDB_PART_5_6, lp_max_5_6);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002669 else
2670 *lp_max_5_6 = *lp_max_1_2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002671}
2672
2673static void hsw_compute_wm_results(struct drm_device *dev,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002674 const struct hsw_pipe_wm_parameters *params,
2675 const struct hsw_wm_maximums *lp_maximums,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002676 struct hsw_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002677{
2678 struct drm_i915_private *dev_priv = dev->dev_private;
2679 struct drm_crtc *crtc;
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002680 struct intel_wm_level lp_results[4] = {};
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002681 enum pipe pipe;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002682 int level, max_level, wm_lp;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002683
Paulo Zanonicca32e92013-05-31 11:45:06 -03002684 for (level = 1; level <= 4; level++)
Ville Syrjälä5b77da32013-08-01 16:18:51 +03002685 if (!hsw_compute_lp_wm(dev_priv, level,
2686 lp_maximums, params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002687 &lp_results[level - 1]))
2688 break;
2689 max_level = level - 1;
2690
Ville Syrjälä5c536612013-08-09 18:02:09 +03002691 memset(results, 0, sizeof(*results));
2692
Paulo Zanonicca32e92013-05-31 11:45:06 -03002693 /* The spec says it is preferred to disable FBC WMs instead of disabling
2694 * a WM level. */
2695 results->enable_fbc_wm = true;
2696 for (level = 1; level <= max_level; level++) {
Dan Carpenter16e54062013-08-09 13:07:31 +03002697 if (lp_results[level - 1].fbc_val > lp_maximums->fbc) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002698 results->enable_fbc_wm = false;
Ville Syrjälä71fff202013-08-06 22:24:03 +03002699 lp_results[level - 1].fbc_val = 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002700 }
2701 }
2702
Paulo Zanonicca32e92013-05-31 11:45:06 -03002703 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002704 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002705
2706 level = (max_level == 4 && wm_lp > 1) ? wm_lp + 1 : wm_lp;
2707 if (level > max_level)
2708 break;
2709
2710 r = &lp_results[level - 1];
2711 results->wm_lp[wm_lp - 1] = HSW_WM_LP_VAL(level * 2,
2712 r->fbc_val,
2713 r->pri_val,
2714 r->cur_val);
2715 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
2716 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002717
2718 for_each_pipe(pipe)
Ville Syrjälä8de123a2013-08-30 14:30:24 +03002719 results->wm_pipe[pipe] = hsw_compute_wm_pipe(dev,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002720 &params[pipe]);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002721
2722 for_each_pipe(pipe) {
2723 crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002724 results->wm_linetime[pipe] = hsw_compute_linetime_wm(dev, crtc);
2725 }
2726}
2727
Paulo Zanoni861f3382013-05-31 10:19:21 -03002728/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2729 * case both are at the same level. Prefer r1 in case they're the same. */
Damien Lespiauf4db9322013-06-24 22:59:50 +01002730static struct hsw_wm_values *hsw_find_best_result(struct hsw_wm_values *r1,
2731 struct hsw_wm_values *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002732{
2733 int i, val_r1 = 0, val_r2 = 0;
2734
2735 for (i = 0; i < 3; i++) {
2736 if (r1->wm_lp[i] & WM3_LP_EN)
2737 val_r1 = r1->wm_lp[i] & WM1_LP_LATENCY_MASK;
2738 if (r2->wm_lp[i] & WM3_LP_EN)
2739 val_r2 = r2->wm_lp[i] & WM1_LP_LATENCY_MASK;
2740 }
2741
2742 if (val_r1 == val_r2) {
2743 if (r2->enable_fbc_wm && !r1->enable_fbc_wm)
2744 return r2;
2745 else
2746 return r1;
2747 } else if (val_r1 > val_r2) {
2748 return r1;
2749 } else {
2750 return r2;
2751 }
2752}
2753
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002754/*
2755 * The spec says we shouldn't write when we don't need, because every write
2756 * causes WMs to be re-evaluated, expending some power.
2757 */
2758static void hsw_write_wm_values(struct drm_i915_private *dev_priv,
2759 struct hsw_wm_values *results,
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002760 enum intel_ddb_partitioning partitioning)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002761{
2762 struct hsw_wm_values previous;
2763 uint32_t val;
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002764 enum intel_ddb_partitioning prev_partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002765 bool prev_enable_fbc_wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002766
2767 previous.wm_pipe[0] = I915_READ(WM0_PIPEA_ILK);
2768 previous.wm_pipe[1] = I915_READ(WM0_PIPEB_ILK);
2769 previous.wm_pipe[2] = I915_READ(WM0_PIPEC_IVB);
2770 previous.wm_lp[0] = I915_READ(WM1_LP_ILK);
2771 previous.wm_lp[1] = I915_READ(WM2_LP_ILK);
2772 previous.wm_lp[2] = I915_READ(WM3_LP_ILK);
2773 previous.wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
2774 previous.wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
2775 previous.wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
2776 previous.wm_linetime[0] = I915_READ(PIPE_WM_LINETIME(PIPE_A));
2777 previous.wm_linetime[1] = I915_READ(PIPE_WM_LINETIME(PIPE_B));
2778 previous.wm_linetime[2] = I915_READ(PIPE_WM_LINETIME(PIPE_C));
2779
2780 prev_partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002781 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002782
Paulo Zanonicca32e92013-05-31 11:45:06 -03002783 prev_enable_fbc_wm = !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
2784
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002785 if (memcmp(results->wm_pipe, previous.wm_pipe,
2786 sizeof(results->wm_pipe)) == 0 &&
2787 memcmp(results->wm_lp, previous.wm_lp,
2788 sizeof(results->wm_lp)) == 0 &&
2789 memcmp(results->wm_lp_spr, previous.wm_lp_spr,
2790 sizeof(results->wm_lp_spr)) == 0 &&
2791 memcmp(results->wm_linetime, previous.wm_linetime,
2792 sizeof(results->wm_linetime)) == 0 &&
Paulo Zanonicca32e92013-05-31 11:45:06 -03002793 partitioning == prev_partitioning &&
2794 results->enable_fbc_wm == prev_enable_fbc_wm)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002795 return;
2796
2797 if (previous.wm_lp[2] != 0)
2798 I915_WRITE(WM3_LP_ILK, 0);
2799 if (previous.wm_lp[1] != 0)
2800 I915_WRITE(WM2_LP_ILK, 0);
2801 if (previous.wm_lp[0] != 0)
2802 I915_WRITE(WM1_LP_ILK, 0);
2803
2804 if (previous.wm_pipe[0] != results->wm_pipe[0])
2805 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
2806 if (previous.wm_pipe[1] != results->wm_pipe[1])
2807 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
2808 if (previous.wm_pipe[2] != results->wm_pipe[2])
2809 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2810
2811 if (previous.wm_linetime[0] != results->wm_linetime[0])
2812 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
2813 if (previous.wm_linetime[1] != results->wm_linetime[1])
2814 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
2815 if (previous.wm_linetime[2] != results->wm_linetime[2])
2816 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2817
2818 if (prev_partitioning != partitioning) {
2819 val = I915_READ(WM_MISC);
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002820 if (partitioning == INTEL_DDB_PART_1_2)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002821 val &= ~WM_MISC_DATA_PARTITION_5_6;
2822 else
2823 val |= WM_MISC_DATA_PARTITION_5_6;
2824 I915_WRITE(WM_MISC, val);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002825 }
2826
Paulo Zanonicca32e92013-05-31 11:45:06 -03002827 if (prev_enable_fbc_wm != results->enable_fbc_wm) {
2828 val = I915_READ(DISP_ARB_CTL);
2829 if (results->enable_fbc_wm)
2830 val &= ~DISP_FBC_WM_DIS;
2831 else
2832 val |= DISP_FBC_WM_DIS;
2833 I915_WRITE(DISP_ARB_CTL, val);
2834 }
2835
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002836 if (previous.wm_lp_spr[0] != results->wm_lp_spr[0])
2837 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2838 if (previous.wm_lp_spr[1] != results->wm_lp_spr[1])
2839 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2840 if (previous.wm_lp_spr[2] != results->wm_lp_spr[2])
2841 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2842
2843 if (results->wm_lp[0] != 0)
2844 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
2845 if (results->wm_lp[1] != 0)
2846 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
2847 if (results->wm_lp[2] != 0)
2848 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
2849}
2850
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002851static void haswell_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002852{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002853 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002854 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002855 struct hsw_wm_maximums lp_max_1_2, lp_max_5_6;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002856 struct hsw_pipe_wm_parameters params[3];
Paulo Zanoni861f3382013-05-31 10:19:21 -03002857 struct hsw_wm_values results_1_2, results_5_6, *best_results;
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002858 enum intel_ddb_partitioning partitioning;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002859
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002860 hsw_compute_wm_parameters(dev, params, &lp_max_1_2, &lp_max_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002861
Ville Syrjälä53615a52013-08-01 16:18:50 +03002862 hsw_compute_wm_results(dev, params,
Ville Syrjälä53615a52013-08-01 16:18:50 +03002863 &lp_max_1_2, &results_1_2);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002864 if (lp_max_1_2.pri != lp_max_5_6.pri) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03002865 hsw_compute_wm_results(dev, params,
Ville Syrjälä53615a52013-08-01 16:18:50 +03002866 &lp_max_5_6, &results_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002867 best_results = hsw_find_best_result(&results_1_2, &results_5_6);
2868 } else {
2869 best_results = &results_1_2;
2870 }
2871
2872 partitioning = (best_results == &results_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002873 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002874
2875 hsw_write_wm_values(dev_priv, best_results, partitioning);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002876}
2877
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002878static void haswell_update_sprite_wm(struct drm_plane *plane,
2879 struct drm_crtc *crtc,
Paulo Zanoni526682e2013-05-24 11:59:18 -03002880 uint32_t sprite_width, int pixel_size,
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03002881 bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03002882{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002883 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03002884
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002885 intel_plane->wm.enabled = enabled;
2886 intel_plane->wm.scaled = scaled;
2887 intel_plane->wm.horiz_pixels = sprite_width;
2888 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03002889
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002890 haswell_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03002891}
2892
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002893static bool
2894sandybridge_compute_sprite_wm(struct drm_device *dev, int plane,
2895 uint32_t sprite_width, int pixel_size,
2896 const struct intel_watermark_params *display,
2897 int display_latency_ns, int *sprite_wm)
2898{
2899 struct drm_crtc *crtc;
2900 int clock;
2901 int entries, tlb_miss;
2902
2903 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00002904 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002905 *sprite_wm = display->guard_size;
2906 return false;
2907 }
2908
2909 clock = crtc->mode.clock;
2910
2911 /* Use the small buffer method to calculate the sprite watermark */
2912 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
2913 tlb_miss = display->fifo_size*display->cacheline_size -
2914 sprite_width * 8;
2915 if (tlb_miss > 0)
2916 entries += tlb_miss;
2917 entries = DIV_ROUND_UP(entries, display->cacheline_size);
2918 *sprite_wm = entries + display->guard_size;
2919 if (*sprite_wm > (int)display->max_wm)
2920 *sprite_wm = display->max_wm;
2921
2922 return true;
2923}
2924
2925static bool
2926sandybridge_compute_sprite_srwm(struct drm_device *dev, int plane,
2927 uint32_t sprite_width, int pixel_size,
2928 const struct intel_watermark_params *display,
2929 int latency_ns, int *sprite_wm)
2930{
2931 struct drm_crtc *crtc;
2932 unsigned long line_time_us;
2933 int clock;
2934 int line_count, line_size;
2935 int small, large;
2936 int entries;
2937
2938 if (!latency_ns) {
2939 *sprite_wm = 0;
2940 return false;
2941 }
2942
2943 crtc = intel_get_crtc_for_plane(dev, plane);
2944 clock = crtc->mode.clock;
2945 if (!clock) {
2946 *sprite_wm = 0;
2947 return false;
2948 }
2949
2950 line_time_us = (sprite_width * 1000) / clock;
2951 if (!line_time_us) {
2952 *sprite_wm = 0;
2953 return false;
2954 }
2955
2956 line_count = (latency_ns / line_time_us + 1000) / 1000;
2957 line_size = sprite_width * pixel_size;
2958
2959 /* Use the minimum of the small and large buffer method for primary */
2960 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
2961 large = line_count * line_size;
2962
2963 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
2964 *sprite_wm = entries + display->guard_size;
2965
2966 return *sprite_wm > 0x3ff ? false : true;
2967}
2968
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002969static void sandybridge_update_sprite_wm(struct drm_plane *plane,
2970 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002971 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03002972 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002973{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002974 struct drm_device *dev = plane->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002975 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002976 int pipe = to_intel_plane(plane)->pipe;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002977 int latency = dev_priv->wm.spr_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002978 u32 val;
2979 int sprite_wm, reg;
2980 int ret;
2981
Ville Syrjälä39db4a42013-08-06 22:24:00 +03002982 if (!enabled)
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002983 return;
2984
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002985 switch (pipe) {
2986 case 0:
2987 reg = WM0_PIPEA_ILK;
2988 break;
2989 case 1:
2990 reg = WM0_PIPEB_ILK;
2991 break;
2992 case 2:
2993 reg = WM0_PIPEC_IVB;
2994 break;
2995 default:
2996 return; /* bad pipe */
2997 }
2998
2999 ret = sandybridge_compute_sprite_wm(dev, pipe, sprite_width, pixel_size,
3000 &sandybridge_display_wm_info,
3001 latency, &sprite_wm);
3002 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003003 DRM_DEBUG_KMS("failed to compute sprite wm for pipe %c\n",
3004 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003005 return;
3006 }
3007
3008 val = I915_READ(reg);
3009 val &= ~WM0_PIPE_SPRITE_MASK;
3010 I915_WRITE(reg, val | (sprite_wm << WM0_PIPE_SPRITE_SHIFT));
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003011 DRM_DEBUG_KMS("sprite watermarks For pipe %c - %d\n", pipe_name(pipe), sprite_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003012
3013
3014 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3015 pixel_size,
3016 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003017 dev_priv->wm.spr_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003018 &sprite_wm);
3019 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003020 DRM_DEBUG_KMS("failed to compute sprite lp1 wm on pipe %c\n",
3021 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003022 return;
3023 }
3024 I915_WRITE(WM1S_LP_ILK, sprite_wm);
3025
3026 /* Only IVB has two more LP watermarks for sprite */
3027 if (!IS_IVYBRIDGE(dev))
3028 return;
3029
3030 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3031 pixel_size,
3032 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003033 dev_priv->wm.spr_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003034 &sprite_wm);
3035 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003036 DRM_DEBUG_KMS("failed to compute sprite lp2 wm on pipe %c\n",
3037 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003038 return;
3039 }
3040 I915_WRITE(WM2S_LP_IVB, sprite_wm);
3041
3042 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3043 pixel_size,
3044 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003045 dev_priv->wm.spr_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003046 &sprite_wm);
3047 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003048 DRM_DEBUG_KMS("failed to compute sprite lp3 wm on pipe %c\n",
3049 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003050 return;
3051 }
3052 I915_WRITE(WM3S_LP_IVB, sprite_wm);
3053}
3054
3055/**
3056 * intel_update_watermarks - update FIFO watermark values based on current modes
3057 *
3058 * Calculate watermark values for the various WM regs based on current mode
3059 * and plane configuration.
3060 *
3061 * There are several cases to deal with here:
3062 * - normal (i.e. non-self-refresh)
3063 * - self-refresh (SR) mode
3064 * - lines are large relative to FIFO size (buffer can hold up to 2)
3065 * - lines are small relative to FIFO size (buffer can hold more than 2
3066 * lines), so need to account for TLB latency
3067 *
3068 * The normal calculation is:
3069 * watermark = dotclock * bytes per pixel * latency
3070 * where latency is platform & configuration dependent (we assume pessimal
3071 * values here).
3072 *
3073 * The SR calculation is:
3074 * watermark = (trunc(latency/line time)+1) * surface width *
3075 * bytes per pixel
3076 * where
3077 * line time = htotal / dotclock
3078 * surface width = hdisplay for normal plane and 64 for cursor
3079 * and latency is assumed to be high, as above.
3080 *
3081 * The final value programmed to the register should always be rounded up,
3082 * and include an extra 2 entries to account for clock crossings.
3083 *
3084 * We don't use the sprite, so we can ignore that. And on Crestline we have
3085 * to set the non-SR watermarks to 8.
3086 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003087void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003088{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003089 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003090
3091 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003092 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003093}
3094
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003095void intel_update_sprite_watermarks(struct drm_plane *plane,
3096 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003097 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003098 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003099{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003100 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003101
3102 if (dev_priv->display.update_sprite_wm)
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003103 dev_priv->display.update_sprite_wm(plane, crtc, sprite_width,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003104 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003105}
3106
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003107static struct drm_i915_gem_object *
3108intel_alloc_context_page(struct drm_device *dev)
3109{
3110 struct drm_i915_gem_object *ctx;
3111 int ret;
3112
3113 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3114
3115 ctx = i915_gem_alloc_object(dev, 4096);
3116 if (!ctx) {
3117 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
3118 return NULL;
3119 }
3120
Ben Widawskyc37e2202013-07-31 16:59:58 -07003121 ret = i915_gem_obj_ggtt_pin(ctx, 4096, true, false);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003122 if (ret) {
3123 DRM_ERROR("failed to pin power context: %d\n", ret);
3124 goto err_unref;
3125 }
3126
3127 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
3128 if (ret) {
3129 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
3130 goto err_unpin;
3131 }
3132
3133 return ctx;
3134
3135err_unpin:
3136 i915_gem_object_unpin(ctx);
3137err_unref:
3138 drm_gem_object_unreference(&ctx->base);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003139 return NULL;
3140}
3141
Daniel Vetter92703882012-08-09 16:46:01 +02003142/**
3143 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003144 */
3145DEFINE_SPINLOCK(mchdev_lock);
3146
3147/* Global for IPS driver to get at the current i915 device. Protected by
3148 * mchdev_lock. */
3149static struct drm_i915_private *i915_mch_dev;
3150
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003151bool ironlake_set_drps(struct drm_device *dev, u8 val)
3152{
3153 struct drm_i915_private *dev_priv = dev->dev_private;
3154 u16 rgvswctl;
3155
Daniel Vetter92703882012-08-09 16:46:01 +02003156 assert_spin_locked(&mchdev_lock);
3157
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003158 rgvswctl = I915_READ16(MEMSWCTL);
3159 if (rgvswctl & MEMCTL_CMD_STS) {
3160 DRM_DEBUG("gpu busy, RCS change rejected\n");
3161 return false; /* still busy with another command */
3162 }
3163
3164 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3165 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3166 I915_WRITE16(MEMSWCTL, rgvswctl);
3167 POSTING_READ16(MEMSWCTL);
3168
3169 rgvswctl |= MEMCTL_CMD_STS;
3170 I915_WRITE16(MEMSWCTL, rgvswctl);
3171
3172 return true;
3173}
3174
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003175static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003176{
3177 struct drm_i915_private *dev_priv = dev->dev_private;
3178 u32 rgvmodectl = I915_READ(MEMMODECTL);
3179 u8 fmax, fmin, fstart, vstart;
3180
Daniel Vetter92703882012-08-09 16:46:01 +02003181 spin_lock_irq(&mchdev_lock);
3182
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003183 /* Enable temp reporting */
3184 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3185 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3186
3187 /* 100ms RC evaluation intervals */
3188 I915_WRITE(RCUPEI, 100000);
3189 I915_WRITE(RCDNEI, 100000);
3190
3191 /* Set max/min thresholds to 90ms and 80ms respectively */
3192 I915_WRITE(RCBMAXAVG, 90000);
3193 I915_WRITE(RCBMINAVG, 80000);
3194
3195 I915_WRITE(MEMIHYST, 1);
3196
3197 /* Set up min, max, and cur for interrupt handling */
3198 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3199 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3200 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3201 MEMMODE_FSTART_SHIFT;
3202
3203 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3204 PXVFREQ_PX_SHIFT;
3205
Daniel Vetter20e4d402012-08-08 23:35:39 +02003206 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3207 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003208
Daniel Vetter20e4d402012-08-08 23:35:39 +02003209 dev_priv->ips.max_delay = fstart;
3210 dev_priv->ips.min_delay = fmin;
3211 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003212
3213 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3214 fmax, fmin, fstart);
3215
3216 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3217
3218 /*
3219 * Interrupts will be enabled in ironlake_irq_postinstall
3220 */
3221
3222 I915_WRITE(VIDSTART, vstart);
3223 POSTING_READ(VIDSTART);
3224
3225 rgvmodectl |= MEMMODE_SWMODE_EN;
3226 I915_WRITE(MEMMODECTL, rgvmodectl);
3227
Daniel Vetter92703882012-08-09 16:46:01 +02003228 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003229 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003230 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003231
3232 ironlake_set_drps(dev, fstart);
3233
Daniel Vetter20e4d402012-08-08 23:35:39 +02003234 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003235 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003236 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3237 dev_priv->ips.last_count2 = I915_READ(0x112f4);
3238 getrawmonotonic(&dev_priv->ips.last_time2);
Daniel Vetter92703882012-08-09 16:46:01 +02003239
3240 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003241}
3242
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003243static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003244{
3245 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003246 u16 rgvswctl;
3247
3248 spin_lock_irq(&mchdev_lock);
3249
3250 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003251
3252 /* Ack interrupts, disable EFC interrupt */
3253 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3254 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3255 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3256 I915_WRITE(DEIIR, DE_PCU_EVENT);
3257 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3258
3259 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003260 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003261 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003262 rgvswctl |= MEMCTL_CMD_STS;
3263 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003264 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003265
Daniel Vetter92703882012-08-09 16:46:01 +02003266 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003267}
3268
Daniel Vetteracbe9472012-07-26 11:50:05 +02003269/* There's a funny hw issue where the hw returns all 0 when reading from
3270 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3271 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3272 * all limits and the gpu stuck at whatever frequency it is at atm).
3273 */
Daniel Vetter65bccb52012-08-08 17:42:52 +02003274static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 *val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003275{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003276 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003277
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003278 limits = 0;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003279
3280 if (*val >= dev_priv->rps.max_delay)
3281 *val = dev_priv->rps.max_delay;
3282 limits |= dev_priv->rps.max_delay << 24;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003283
Daniel Vetter20b46e52012-07-26 11:16:14 +02003284 /* Only set the down limit when we've reached the lowest level to avoid
3285 * getting more interrupts, otherwise leave this clear. This prevents a
3286 * race in the hw when coming out of rc6: There's a tiny window where
3287 * the hw runs at the minimal clock before selecting the desired
3288 * frequency, if the down threshold expires in that window we will not
3289 * receive a down interrupt. */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003290 if (*val <= dev_priv->rps.min_delay) {
3291 *val = dev_priv->rps.min_delay;
3292 limits |= dev_priv->rps.min_delay << 16;
Daniel Vetter20b46e52012-07-26 11:16:14 +02003293 }
3294
3295 return limits;
3296}
3297
3298void gen6_set_rps(struct drm_device *dev, u8 val)
3299{
3300 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter65bccb52012-08-08 17:42:52 +02003301 u32 limits = gen6_rps_limits(dev_priv, &val);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003302
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003303 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky79249632012-09-07 19:43:42 -07003304 WARN_ON(val > dev_priv->rps.max_delay);
3305 WARN_ON(val < dev_priv->rps.min_delay);
Daniel Vetter004777c2012-08-09 15:07:01 +02003306
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003307 if (val == dev_priv->rps.cur_delay)
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003308 return;
3309
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003310 if (IS_HASWELL(dev))
3311 I915_WRITE(GEN6_RPNSWREQ,
3312 HSW_FREQUENCY(val));
3313 else
3314 I915_WRITE(GEN6_RPNSWREQ,
3315 GEN6_FREQUENCY(val) |
3316 GEN6_OFFSET(0) |
3317 GEN6_AGGRESSIVE_TURBO);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003318
3319 /* Make sure we continue to get interrupts
3320 * until we hit the minimum or maximum frequencies.
3321 */
3322 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
3323
Ben Widawskyd5570a72012-09-07 19:43:41 -07003324 POSTING_READ(GEN6_RPNSWREQ);
3325
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003326 dev_priv->rps.cur_delay = val;
Daniel Vetterbe2cde9a2012-08-30 13:26:48 +02003327
3328 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003329}
3330
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003331/*
3332 * Wait until the previous freq change has completed,
3333 * or the timeout elapsed, and then update our notion
3334 * of the current GPU frequency.
3335 */
3336static void vlv_update_rps_cur_delay(struct drm_i915_private *dev_priv)
3337{
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003338 u32 pval;
3339
3340 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3341
Ville Syrjäläe8474402013-06-26 17:43:24 +03003342 if (wait_for(((pval = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS)) & GENFREQSTATUS) == 0, 10))
3343 DRM_DEBUG_DRIVER("timed out waiting for Punit\n");
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003344
3345 pval >>= 8;
3346
3347 if (pval != dev_priv->rps.cur_delay)
3348 DRM_DEBUG_DRIVER("Punit overrode GPU freq: %d MHz (%u) requested, but got %d Mhz (%u)\n",
3349 vlv_gpu_freq(dev_priv->mem_freq, dev_priv->rps.cur_delay),
3350 dev_priv->rps.cur_delay,
3351 vlv_gpu_freq(dev_priv->mem_freq, pval), pval);
3352
3353 dev_priv->rps.cur_delay = pval;
3354}
3355
Jesse Barnes0a073b82013-04-17 15:54:58 -07003356void valleyview_set_rps(struct drm_device *dev, u8 val)
3357{
3358 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7a670922013-06-25 19:21:06 +03003359
3360 gen6_rps_limits(dev_priv, &val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003361
3362 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3363 WARN_ON(val > dev_priv->rps.max_delay);
3364 WARN_ON(val < dev_priv->rps.min_delay);
3365
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003366 vlv_update_rps_cur_delay(dev_priv);
3367
Ville Syrjälä73008b92013-06-25 19:21:01 +03003368 DRM_DEBUG_DRIVER("GPU freq request from %d MHz (%u) to %d MHz (%u)\n",
Jesse Barnes0a073b82013-04-17 15:54:58 -07003369 vlv_gpu_freq(dev_priv->mem_freq,
3370 dev_priv->rps.cur_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03003371 dev_priv->rps.cur_delay,
3372 vlv_gpu_freq(dev_priv->mem_freq, val), val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003373
3374 if (val == dev_priv->rps.cur_delay)
3375 return;
3376
Jani Nikulaae992582013-05-22 15:36:19 +03003377 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003378
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003379 dev_priv->rps.cur_delay = val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003380
3381 trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv->mem_freq, val));
3382}
3383
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003384static void gen6_disable_rps_interrupts(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003385{
3386 struct drm_i915_private *dev_priv = dev->dev_private;
3387
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003388 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Ben Widawsky48484052013-05-28 19:22:27 -07003389 I915_WRITE(GEN6_PMIER, I915_READ(GEN6_PMIER) & ~GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003390 /* Complete PM interrupt masking here doesn't race with the rps work
3391 * item again unmasking PM interrupts because that is using a different
3392 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3393 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3394
Daniel Vetter59cdb632013-07-04 23:35:28 +02003395 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003396 dev_priv->rps.pm_iir = 0;
Daniel Vetter59cdb632013-07-04 23:35:28 +02003397 spin_unlock_irq(&dev_priv->irq_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003398
Ben Widawsky48484052013-05-28 19:22:27 -07003399 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003400}
3401
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003402static void gen6_disable_rps(struct drm_device *dev)
3403{
3404 struct drm_i915_private *dev_priv = dev->dev_private;
3405
3406 I915_WRITE(GEN6_RC_CONTROL, 0);
3407 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
3408
3409 gen6_disable_rps_interrupts(dev);
3410}
3411
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003412static void valleyview_disable_rps(struct drm_device *dev)
3413{
3414 struct drm_i915_private *dev_priv = dev->dev_private;
3415
3416 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003417
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003418 gen6_disable_rps_interrupts(dev);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003419
3420 if (dev_priv->vlv_pctx) {
3421 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
3422 dev_priv->vlv_pctx = NULL;
3423 }
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003424}
3425
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003426int intel_enable_rc6(const struct drm_device *dev)
3427{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01003428 /* No RC6 before Ironlake */
3429 if (INTEL_INFO(dev)->gen < 5)
3430 return 0;
3431
Daniel Vetter456470e2012-08-08 23:35:40 +02003432 /* Respect the kernel parameter if it is set */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003433 if (i915_enable_rc6 >= 0)
3434 return i915_enable_rc6;
3435
Chris Wilson6567d742012-11-10 10:00:06 +00003436 /* Disable RC6 on Ironlake */
3437 if (INTEL_INFO(dev)->gen == 5)
3438 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003439
Daniel Vetter456470e2012-08-08 23:35:40 +02003440 if (IS_HASWELL(dev)) {
3441 DRM_DEBUG_DRIVER("Haswell: only RC6 available\n");
3442 return INTEL_RC6_ENABLE;
3443 }
3444
3445 /* snb/ivb have more than one rc6 state. */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003446 if (INTEL_INFO(dev)->gen == 6) {
3447 DRM_DEBUG_DRIVER("Sandybridge: deep RC6 disabled\n");
3448 return INTEL_RC6_ENABLE;
3449 }
Daniel Vetter456470e2012-08-08 23:35:40 +02003450
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003451 DRM_DEBUG_DRIVER("RC6 and deep RC6 enabled\n");
3452 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
3453}
3454
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003455static void gen6_enable_rps_interrupts(struct drm_device *dev)
3456{
3457 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003458 u32 enabled_intrs;
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003459
3460 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vettera0b33352013-07-04 23:35:34 +02003461 WARN_ON(dev_priv->rps.pm_iir);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03003462 snb_enable_pm_irq(dev_priv, GEN6_PM_RPS_EVENTS);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003463 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
3464 spin_unlock_irq(&dev_priv->irq_lock);
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003465
Vinit Azadfd547d22013-08-14 13:34:33 -07003466 /* only unmask PM interrupts we need. Mask all others. */
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003467 enabled_intrs = GEN6_PM_RPS_EVENTS;
3468
3469 /* IVB and SNB hard hangs on looping batchbuffer
3470 * if GEN6_PM_UP_EI_EXPIRED is masked.
3471 */
3472 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
3473 enabled_intrs |= GEN6_PM_RP_UP_EI_EXPIRED;
3474
3475 I915_WRITE(GEN6_PMINTRMSK, ~enabled_intrs);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003476}
3477
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003478static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003479{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003480 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003481 struct intel_ring_buffer *ring;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003482 u32 rp_state_cap;
3483 u32 gt_perf_status;
Ben Widawsky31643d52012-09-26 10:34:01 -07003484 u32 rc6vids, pcu_mbox, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003485 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003486 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07003487 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003488
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003489 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003490
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003491 /* Here begins a magic sequence of register writes to enable
3492 * auto-downclocking.
3493 *
3494 * Perhaps there might be some value in exposing these to
3495 * userspace...
3496 */
3497 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003498
3499 /* Clear the DBG now so we don't confuse earlier errors */
3500 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3501 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3502 I915_WRITE(GTFIFODBG, gtfifodbg);
3503 }
3504
3505 gen6_gt_force_wake_get(dev_priv);
3506
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003507 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3508 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
3509
Ben Widawsky31c77382013-04-05 14:29:22 -07003510 /* In units of 50MHz */
3511 dev_priv->rps.hw_max = dev_priv->rps.max_delay = rp_state_cap & 0xff;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003512 dev_priv->rps.min_delay = (rp_state_cap & 0xff0000) >> 16;
3513 dev_priv->rps.cur_delay = 0;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003514
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003515 /* disable the counters and set deterministic thresholds */
3516 I915_WRITE(GEN6_RC_CONTROL, 0);
3517
3518 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
3519 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
3520 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
3521 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3522 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3523
Chris Wilsonb4519512012-05-11 14:29:30 +01003524 for_each_ring(ring, dev_priv, i)
3525 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003526
3527 I915_WRITE(GEN6_RC_SLEEP, 0);
3528 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Stéphane Marchesin351aa562013-08-13 11:55:17 -07003529 if (INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev))
3530 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
3531 else
3532 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08003533 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003534 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
3535
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003536 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003537 rc6_mode = intel_enable_rc6(dev_priv->dev);
3538 if (rc6_mode & INTEL_RC6_ENABLE)
3539 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
3540
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003541 /* We don't use those on Haswell */
3542 if (!IS_HASWELL(dev)) {
3543 if (rc6_mode & INTEL_RC6p_ENABLE)
3544 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003545
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003546 if (rc6_mode & INTEL_RC6pp_ENABLE)
3547 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
3548 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003549
3550 DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003551 (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3552 (rc6_mask & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3553 (rc6_mask & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003554
3555 I915_WRITE(GEN6_RC_CONTROL,
3556 rc6_mask |
3557 GEN6_RC_CTL_EI_MODE(1) |
3558 GEN6_RC_CTL_HW_ENABLE);
3559
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003560 if (IS_HASWELL(dev)) {
3561 I915_WRITE(GEN6_RPNSWREQ,
3562 HSW_FREQUENCY(10));
3563 I915_WRITE(GEN6_RC_VIDEO_FREQ,
3564 HSW_FREQUENCY(12));
3565 } else {
3566 I915_WRITE(GEN6_RPNSWREQ,
3567 GEN6_FREQUENCY(10) |
3568 GEN6_OFFSET(0) |
3569 GEN6_AGGRESSIVE_TURBO);
3570 I915_WRITE(GEN6_RC_VIDEO_FREQ,
3571 GEN6_FREQUENCY(12));
3572 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003573
3574 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
3575 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003576 dev_priv->rps.max_delay << 24 |
3577 dev_priv->rps.min_delay << 16);
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003578
Daniel Vetter1ee9ae32012-08-15 10:41:45 +02003579 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
3580 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
3581 I915_WRITE(GEN6_RP_UP_EI, 66000);
3582 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003583
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003584 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3585 I915_WRITE(GEN6_RP_CONTROL,
3586 GEN6_RP_MEDIA_TURBO |
Jesse Barnes89ba8292012-05-22 09:30:33 -07003587 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003588 GEN6_RP_MEDIA_IS_GFX |
3589 GEN6_RP_ENABLE |
3590 GEN6_RP_UP_BUSY_AVG |
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003591 (IS_HASWELL(dev) ? GEN7_RP_DOWN_IDLE_AVG : GEN6_RP_DOWN_IDLE_CONT));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003592
Ben Widawsky42c05262012-09-26 10:34:00 -07003593 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawsky988b36e2013-04-23 17:33:02 -07003594 if (!ret) {
Ben Widawsky42c05262012-09-26 10:34:00 -07003595 pcu_mbox = 0;
3596 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003597 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
Ben Widawsky10e08492013-04-05 14:29:23 -07003598 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003599 (dev_priv->rps.max_delay & 0xff) * 50,
3600 (pcu_mbox & 0xff) * 50);
Ben Widawsky31c77382013-04-05 14:29:22 -07003601 dev_priv->rps.hw_max = pcu_mbox & 0xff;
Ben Widawsky42c05262012-09-26 10:34:00 -07003602 }
3603 } else {
3604 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003605 }
3606
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003607 gen6_set_rps(dev_priv->dev, (gt_perf_status & 0xff00) >> 8);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003608
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003609 gen6_enable_rps_interrupts(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003610
Ben Widawsky31643d52012-09-26 10:34:01 -07003611 rc6vids = 0;
3612 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
3613 if (IS_GEN6(dev) && ret) {
3614 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
3615 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
3616 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
3617 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
3618 rc6vids &= 0xffff00;
3619 rc6vids |= GEN6_ENCODE_RC6_VID(450);
3620 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
3621 if (ret)
3622 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
3623 }
3624
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003625 gen6_gt_force_wake_put(dev_priv);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003626}
3627
Paulo Zanonic67a4702013-08-19 13:18:09 -03003628void gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003629{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003630 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003631 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003632 unsigned int gpu_freq;
3633 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003634 int scaling_factor = 180;
3635
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003636 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003637
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003638 max_ia_freq = cpufreq_quick_get_max(0);
3639 /*
3640 * Default to measured freq if none found, PCU will ensure we don't go
3641 * over
3642 */
3643 if (!max_ia_freq)
3644 max_ia_freq = tsc_khz;
3645
3646 /* Convert from kHz to MHz */
3647 max_ia_freq /= 1000;
3648
Chris Wilson3ebecd02013-04-12 19:10:13 +01003649 min_ring_freq = I915_READ(MCHBAR_MIRROR_BASE_SNB + DCLK);
3650 /* convert DDR frequency from units of 133.3MHz to bandwidth */
3651 min_ring_freq = (2 * 4 * min_ring_freq + 2) / 3;
3652
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003653 /*
3654 * For each potential GPU frequency, load a ring frequency we'd like
3655 * to use for memory access. We do this by specifying the IA frequency
3656 * the PCU should use as a reference to determine the ring frequency.
3657 */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003658 for (gpu_freq = dev_priv->rps.max_delay; gpu_freq >= dev_priv->rps.min_delay;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003659 gpu_freq--) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003660 int diff = dev_priv->rps.max_delay - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003661 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003662
Chris Wilson3ebecd02013-04-12 19:10:13 +01003663 if (IS_HASWELL(dev)) {
3664 ring_freq = (gpu_freq * 5 + 3) / 4;
3665 ring_freq = max(min_ring_freq, ring_freq);
3666 /* leave ia_freq as the default, chosen by cpufreq */
3667 } else {
3668 /* On older processors, there is no separate ring
3669 * clock domain, so in order to boost the bandwidth
3670 * of the ring, we need to upclock the CPU (ia_freq).
3671 *
3672 * For GPU frequencies less than 750MHz,
3673 * just use the lowest ring freq.
3674 */
3675 if (gpu_freq < min_freq)
3676 ia_freq = 800;
3677 else
3678 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
3679 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
3680 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003681
Ben Widawsky42c05262012-09-26 10:34:00 -07003682 sandybridge_pcode_write(dev_priv,
3683 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01003684 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
3685 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
3686 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003687 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003688}
3689
Jesse Barnes0a073b82013-04-17 15:54:58 -07003690int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
3691{
3692 u32 val, rp0;
3693
Jani Nikula64936252013-05-22 15:36:20 +03003694 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003695
3696 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
3697 /* Clamp to max */
3698 rp0 = min_t(u32, rp0, 0xea);
3699
3700 return rp0;
3701}
3702
3703static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
3704{
3705 u32 val, rpe;
3706
Jani Nikula64936252013-05-22 15:36:20 +03003707 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003708 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03003709 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003710 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
3711
3712 return rpe;
3713}
3714
3715int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
3716{
Jani Nikula64936252013-05-22 15:36:20 +03003717 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003718}
3719
Jesse Barnes52ceb902013-04-23 10:09:26 -07003720static void vlv_rps_timer_work(struct work_struct *work)
3721{
3722 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
3723 rps.vlv_work.work);
3724
3725 /*
3726 * Timer fired, we must be idle. Drop to min voltage state.
3727 * Note: we use RPe here since it should match the
3728 * Vmin we were shooting for. That should give us better
3729 * perf when we come back out of RC6 than if we used the
3730 * min freq available.
3731 */
3732 mutex_lock(&dev_priv->rps.hw_lock);
Ville Syrjälä6dc58482013-06-25 21:38:10 +03003733 if (dev_priv->rps.cur_delay > dev_priv->rps.rpe_delay)
3734 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes52ceb902013-04-23 10:09:26 -07003735 mutex_unlock(&dev_priv->rps.hw_lock);
3736}
3737
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003738static void valleyview_setup_pctx(struct drm_device *dev)
3739{
3740 struct drm_i915_private *dev_priv = dev->dev_private;
3741 struct drm_i915_gem_object *pctx;
3742 unsigned long pctx_paddr;
3743 u32 pcbr;
3744 int pctx_size = 24*1024;
3745
3746 pcbr = I915_READ(VLV_PCBR);
3747 if (pcbr) {
3748 /* BIOS set it up already, grab the pre-alloc'd space */
3749 int pcbr_offset;
3750
3751 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
3752 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
3753 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02003754 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003755 pctx_size);
3756 goto out;
3757 }
3758
3759 /*
3760 * From the Gunit register HAS:
3761 * The Gfx driver is expected to program this register and ensure
3762 * proper allocation within Gfx stolen memory. For example, this
3763 * register should be programmed such than the PCBR range does not
3764 * overlap with other ranges, such as the frame buffer, protected
3765 * memory, or any other relevant ranges.
3766 */
3767 pctx = i915_gem_object_create_stolen(dev, pctx_size);
3768 if (!pctx) {
3769 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
3770 return;
3771 }
3772
3773 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
3774 I915_WRITE(VLV_PCBR, pctx_paddr);
3775
3776out:
3777 dev_priv->vlv_pctx = pctx;
3778}
3779
Jesse Barnes0a073b82013-04-17 15:54:58 -07003780static void valleyview_enable_rps(struct drm_device *dev)
3781{
3782 struct drm_i915_private *dev_priv = dev->dev_private;
3783 struct intel_ring_buffer *ring;
Ville Syrjälä73008b92013-06-25 19:21:01 +03003784 u32 gtfifodbg, val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003785 int i;
3786
3787 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3788
3789 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3790 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3791 I915_WRITE(GTFIFODBG, gtfifodbg);
3792 }
3793
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003794 valleyview_setup_pctx(dev);
3795
Jesse Barnes0a073b82013-04-17 15:54:58 -07003796 gen6_gt_force_wake_get(dev_priv);
3797
3798 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
3799 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
3800 I915_WRITE(GEN6_RP_UP_EI, 66000);
3801 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
3802
3803 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3804
3805 I915_WRITE(GEN6_RP_CONTROL,
3806 GEN6_RP_MEDIA_TURBO |
3807 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3808 GEN6_RP_MEDIA_IS_GFX |
3809 GEN6_RP_ENABLE |
3810 GEN6_RP_UP_BUSY_AVG |
3811 GEN6_RP_DOWN_IDLE_CONT);
3812
3813 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
3814 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3815 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3816
3817 for_each_ring(ring, dev_priv, i)
3818 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
3819
3820 I915_WRITE(GEN6_RC6_THRESHOLD, 0xc350);
3821
3822 /* allows RC6 residency counter to work */
3823 I915_WRITE(0x138104, _MASKED_BIT_ENABLE(0x3));
3824 I915_WRITE(GEN6_RC_CONTROL,
3825 GEN7_RC_CTL_TO_MODE);
3826
Jani Nikula64936252013-05-22 15:36:20 +03003827 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes24459662013-05-02 10:48:08 -07003828 switch ((val >> 6) & 3) {
3829 case 0:
3830 case 1:
3831 dev_priv->mem_freq = 800;
3832 break;
3833 case 2:
3834 dev_priv->mem_freq = 1066;
3835 break;
3836 case 3:
3837 dev_priv->mem_freq = 1333;
3838 break;
3839 }
Jesse Barnes0a073b82013-04-17 15:54:58 -07003840 DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
3841
3842 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no");
3843 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
3844
Jesse Barnes0a073b82013-04-17 15:54:58 -07003845 dev_priv->rps.cur_delay = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03003846 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
3847 vlv_gpu_freq(dev_priv->mem_freq,
3848 dev_priv->rps.cur_delay),
3849 dev_priv->rps.cur_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003850
3851 dev_priv->rps.max_delay = valleyview_rps_max_freq(dev_priv);
3852 dev_priv->rps.hw_max = dev_priv->rps.max_delay;
Ville Syrjälä73008b92013-06-25 19:21:01 +03003853 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
3854 vlv_gpu_freq(dev_priv->mem_freq,
3855 dev_priv->rps.max_delay),
3856 dev_priv->rps.max_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003857
Ville Syrjälä73008b92013-06-25 19:21:01 +03003858 dev_priv->rps.rpe_delay = valleyview_rps_rpe_freq(dev_priv);
3859 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
3860 vlv_gpu_freq(dev_priv->mem_freq,
3861 dev_priv->rps.rpe_delay),
3862 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003863
Ville Syrjälä73008b92013-06-25 19:21:01 +03003864 dev_priv->rps.min_delay = valleyview_rps_min_freq(dev_priv);
3865 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
3866 vlv_gpu_freq(dev_priv->mem_freq,
3867 dev_priv->rps.min_delay),
3868 dev_priv->rps.min_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003869
Ville Syrjälä73008b92013-06-25 19:21:01 +03003870 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
3871 vlv_gpu_freq(dev_priv->mem_freq,
3872 dev_priv->rps.rpe_delay),
3873 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003874
Jesse Barnes52ceb902013-04-23 10:09:26 -07003875 INIT_DELAYED_WORK(&dev_priv->rps.vlv_work, vlv_rps_timer_work);
3876
Ville Syrjälä73008b92013-06-25 19:21:01 +03003877 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003878
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003879 gen6_enable_rps_interrupts(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003880
3881 gen6_gt_force_wake_put(dev_priv);
3882}
3883
Daniel Vetter930ebb42012-06-29 23:32:16 +02003884void ironlake_teardown_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003885{
3886 struct drm_i915_private *dev_priv = dev->dev_private;
3887
Daniel Vetter3e373942012-11-02 19:55:04 +01003888 if (dev_priv->ips.renderctx) {
3889 i915_gem_object_unpin(dev_priv->ips.renderctx);
3890 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
3891 dev_priv->ips.renderctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003892 }
3893
Daniel Vetter3e373942012-11-02 19:55:04 +01003894 if (dev_priv->ips.pwrctx) {
3895 i915_gem_object_unpin(dev_priv->ips.pwrctx);
3896 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
3897 dev_priv->ips.pwrctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003898 }
3899}
3900
Daniel Vetter930ebb42012-06-29 23:32:16 +02003901static void ironlake_disable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003902{
3903 struct drm_i915_private *dev_priv = dev->dev_private;
3904
3905 if (I915_READ(PWRCTXA)) {
3906 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
3907 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
3908 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
3909 50);
3910
3911 I915_WRITE(PWRCTXA, 0);
3912 POSTING_READ(PWRCTXA);
3913
3914 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
3915 POSTING_READ(RSTDBYCTL);
3916 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003917}
3918
3919static int ironlake_setup_rc6(struct drm_device *dev)
3920{
3921 struct drm_i915_private *dev_priv = dev->dev_private;
3922
Daniel Vetter3e373942012-11-02 19:55:04 +01003923 if (dev_priv->ips.renderctx == NULL)
3924 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
3925 if (!dev_priv->ips.renderctx)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003926 return -ENOMEM;
3927
Daniel Vetter3e373942012-11-02 19:55:04 +01003928 if (dev_priv->ips.pwrctx == NULL)
3929 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
3930 if (!dev_priv->ips.pwrctx) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003931 ironlake_teardown_rc6(dev);
3932 return -ENOMEM;
3933 }
3934
3935 return 0;
3936}
3937
Daniel Vetter930ebb42012-06-29 23:32:16 +02003938static void ironlake_enable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003939{
3940 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +02003941 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson3e960502012-11-27 16:22:54 +00003942 bool was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003943 int ret;
3944
3945 /* rc6 disabled by default due to repeated reports of hanging during
3946 * boot and resume.
3947 */
3948 if (!intel_enable_rc6(dev))
3949 return;
3950
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003951 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3952
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003953 ret = ironlake_setup_rc6(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003954 if (ret)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003955 return;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003956
Chris Wilson3e960502012-11-27 16:22:54 +00003957 was_interruptible = dev_priv->mm.interruptible;
3958 dev_priv->mm.interruptible = false;
3959
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003960 /*
3961 * GPU can automatically power down the render unit if given a page
3962 * to save state.
3963 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02003964 ret = intel_ring_begin(ring, 6);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003965 if (ret) {
3966 ironlake_teardown_rc6(dev);
Chris Wilson3e960502012-11-27 16:22:54 +00003967 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003968 return;
3969 }
3970
Daniel Vetter6d90c952012-04-26 23:28:05 +02003971 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
3972 intel_ring_emit(ring, MI_SET_CONTEXT);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003973 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) |
Daniel Vetter6d90c952012-04-26 23:28:05 +02003974 MI_MM_SPACE_GTT |
3975 MI_SAVE_EXT_STATE_EN |
3976 MI_RESTORE_EXT_STATE_EN |
3977 MI_RESTORE_INHIBIT);
3978 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
3979 intel_ring_emit(ring, MI_NOOP);
3980 intel_ring_emit(ring, MI_FLUSH);
3981 intel_ring_advance(ring);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003982
3983 /*
3984 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
3985 * does an implicit flush, combined with MI_FLUSH above, it should be
3986 * safe to assume that renderctx is valid
3987 */
Chris Wilson3e960502012-11-27 16:22:54 +00003988 ret = intel_ring_idle(ring);
3989 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003990 if (ret) {
Jani Nikuladef27a52013-03-12 10:49:19 +02003991 DRM_ERROR("failed to enable ironlake power savings\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003992 ironlake_teardown_rc6(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003993 return;
3994 }
3995
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003996 I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003997 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003998}
3999
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004000static unsigned long intel_pxfreq(u32 vidfreq)
4001{
4002 unsigned long freq;
4003 int div = (vidfreq & 0x3f0000) >> 16;
4004 int post = (vidfreq & 0x3000) >> 12;
4005 int pre = (vidfreq & 0x7);
4006
4007 if (!pre)
4008 return 0;
4009
4010 freq = ((div * 133333) / ((1<<post) * pre));
4011
4012 return freq;
4013}
4014
Daniel Vettereb48eb02012-04-26 23:28:12 +02004015static const struct cparams {
4016 u16 i;
4017 u16 t;
4018 u16 m;
4019 u16 c;
4020} cparams[] = {
4021 { 1, 1333, 301, 28664 },
4022 { 1, 1066, 294, 24460 },
4023 { 1, 800, 294, 25192 },
4024 { 0, 1333, 276, 27605 },
4025 { 0, 1066, 276, 27605 },
4026 { 0, 800, 231, 23784 },
4027};
4028
Chris Wilsonf531dcb22012-09-25 10:16:12 +01004029static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004030{
4031 u64 total_count, diff, ret;
4032 u32 count1, count2, count3, m = 0, c = 0;
4033 unsigned long now = jiffies_to_msecs(jiffies), diff1;
4034 int i;
4035
Daniel Vetter02d71952012-08-09 16:44:54 +02004036 assert_spin_locked(&mchdev_lock);
4037
Daniel Vetter20e4d402012-08-08 23:35:39 +02004038 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004039
4040 /* Prevent division-by-zero if we are asking too fast.
4041 * Also, we don't get interesting results if we are polling
4042 * faster than once in 10ms, so just return the saved value
4043 * in such cases.
4044 */
4045 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02004046 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004047
4048 count1 = I915_READ(DMIEC);
4049 count2 = I915_READ(DDREC);
4050 count3 = I915_READ(CSIEC);
4051
4052 total_count = count1 + count2 + count3;
4053
4054 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004055 if (total_count < dev_priv->ips.last_count1) {
4056 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004057 diff += total_count;
4058 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004059 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004060 }
4061
4062 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004063 if (cparams[i].i == dev_priv->ips.c_m &&
4064 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02004065 m = cparams[i].m;
4066 c = cparams[i].c;
4067 break;
4068 }
4069 }
4070
4071 diff = div_u64(diff, diff1);
4072 ret = ((m * diff) + c);
4073 ret = div_u64(ret, 10);
4074
Daniel Vetter20e4d402012-08-08 23:35:39 +02004075 dev_priv->ips.last_count1 = total_count;
4076 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004077
Daniel Vetter20e4d402012-08-08 23:35:39 +02004078 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004079
4080 return ret;
4081}
4082
Chris Wilsonf531dcb22012-09-25 10:16:12 +01004083unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
4084{
4085 unsigned long val;
4086
4087 if (dev_priv->info->gen != 5)
4088 return 0;
4089
4090 spin_lock_irq(&mchdev_lock);
4091
4092 val = __i915_chipset_val(dev_priv);
4093
4094 spin_unlock_irq(&mchdev_lock);
4095
4096 return val;
4097}
4098
Daniel Vettereb48eb02012-04-26 23:28:12 +02004099unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
4100{
4101 unsigned long m, x, b;
4102 u32 tsfs;
4103
4104 tsfs = I915_READ(TSFS);
4105
4106 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
4107 x = I915_READ8(TR1);
4108
4109 b = tsfs & TSFS_INTR_MASK;
4110
4111 return ((m * x) / 127) - b;
4112}
4113
4114static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
4115{
4116 static const struct v_table {
4117 u16 vd; /* in .1 mil */
4118 u16 vm; /* in .1 mil */
4119 } v_table[] = {
4120 { 0, 0, },
4121 { 375, 0, },
4122 { 500, 0, },
4123 { 625, 0, },
4124 { 750, 0, },
4125 { 875, 0, },
4126 { 1000, 0, },
4127 { 1125, 0, },
4128 { 4125, 3000, },
4129 { 4125, 3000, },
4130 { 4125, 3000, },
4131 { 4125, 3000, },
4132 { 4125, 3000, },
4133 { 4125, 3000, },
4134 { 4125, 3000, },
4135 { 4125, 3000, },
4136 { 4125, 3000, },
4137 { 4125, 3000, },
4138 { 4125, 3000, },
4139 { 4125, 3000, },
4140 { 4125, 3000, },
4141 { 4125, 3000, },
4142 { 4125, 3000, },
4143 { 4125, 3000, },
4144 { 4125, 3000, },
4145 { 4125, 3000, },
4146 { 4125, 3000, },
4147 { 4125, 3000, },
4148 { 4125, 3000, },
4149 { 4125, 3000, },
4150 { 4125, 3000, },
4151 { 4125, 3000, },
4152 { 4250, 3125, },
4153 { 4375, 3250, },
4154 { 4500, 3375, },
4155 { 4625, 3500, },
4156 { 4750, 3625, },
4157 { 4875, 3750, },
4158 { 5000, 3875, },
4159 { 5125, 4000, },
4160 { 5250, 4125, },
4161 { 5375, 4250, },
4162 { 5500, 4375, },
4163 { 5625, 4500, },
4164 { 5750, 4625, },
4165 { 5875, 4750, },
4166 { 6000, 4875, },
4167 { 6125, 5000, },
4168 { 6250, 5125, },
4169 { 6375, 5250, },
4170 { 6500, 5375, },
4171 { 6625, 5500, },
4172 { 6750, 5625, },
4173 { 6875, 5750, },
4174 { 7000, 5875, },
4175 { 7125, 6000, },
4176 { 7250, 6125, },
4177 { 7375, 6250, },
4178 { 7500, 6375, },
4179 { 7625, 6500, },
4180 { 7750, 6625, },
4181 { 7875, 6750, },
4182 { 8000, 6875, },
4183 { 8125, 7000, },
4184 { 8250, 7125, },
4185 { 8375, 7250, },
4186 { 8500, 7375, },
4187 { 8625, 7500, },
4188 { 8750, 7625, },
4189 { 8875, 7750, },
4190 { 9000, 7875, },
4191 { 9125, 8000, },
4192 { 9250, 8125, },
4193 { 9375, 8250, },
4194 { 9500, 8375, },
4195 { 9625, 8500, },
4196 { 9750, 8625, },
4197 { 9875, 8750, },
4198 { 10000, 8875, },
4199 { 10125, 9000, },
4200 { 10250, 9125, },
4201 { 10375, 9250, },
4202 { 10500, 9375, },
4203 { 10625, 9500, },
4204 { 10750, 9625, },
4205 { 10875, 9750, },
4206 { 11000, 9875, },
4207 { 11125, 10000, },
4208 { 11250, 10125, },
4209 { 11375, 10250, },
4210 { 11500, 10375, },
4211 { 11625, 10500, },
4212 { 11750, 10625, },
4213 { 11875, 10750, },
4214 { 12000, 10875, },
4215 { 12125, 11000, },
4216 { 12250, 11125, },
4217 { 12375, 11250, },
4218 { 12500, 11375, },
4219 { 12625, 11500, },
4220 { 12750, 11625, },
4221 { 12875, 11750, },
4222 { 13000, 11875, },
4223 { 13125, 12000, },
4224 { 13250, 12125, },
4225 { 13375, 12250, },
4226 { 13500, 12375, },
4227 { 13625, 12500, },
4228 { 13750, 12625, },
4229 { 13875, 12750, },
4230 { 14000, 12875, },
4231 { 14125, 13000, },
4232 { 14250, 13125, },
4233 { 14375, 13250, },
4234 { 14500, 13375, },
4235 { 14625, 13500, },
4236 { 14750, 13625, },
4237 { 14875, 13750, },
4238 { 15000, 13875, },
4239 { 15125, 14000, },
4240 { 15250, 14125, },
4241 { 15375, 14250, },
4242 { 15500, 14375, },
4243 { 15625, 14500, },
4244 { 15750, 14625, },
4245 { 15875, 14750, },
4246 { 16000, 14875, },
4247 { 16125, 15000, },
4248 };
4249 if (dev_priv->info->is_mobile)
4250 return v_table[pxvid].vm;
4251 else
4252 return v_table[pxvid].vd;
4253}
4254
Daniel Vetter02d71952012-08-09 16:44:54 +02004255static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004256{
4257 struct timespec now, diff1;
4258 u64 diff;
4259 unsigned long diffms;
4260 u32 count;
4261
Daniel Vetter02d71952012-08-09 16:44:54 +02004262 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004263
4264 getrawmonotonic(&now);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004265 diff1 = timespec_sub(now, dev_priv->ips.last_time2);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004266
4267 /* Don't divide by 0 */
4268 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
4269 if (!diffms)
4270 return;
4271
4272 count = I915_READ(GFXEC);
4273
Daniel Vetter20e4d402012-08-08 23:35:39 +02004274 if (count < dev_priv->ips.last_count2) {
4275 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004276 diff += count;
4277 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004278 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004279 }
4280
Daniel Vetter20e4d402012-08-08 23:35:39 +02004281 dev_priv->ips.last_count2 = count;
4282 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004283
4284 /* More magic constants... */
4285 diff = diff * 1181;
4286 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004287 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004288}
4289
Daniel Vetter02d71952012-08-09 16:44:54 +02004290void i915_update_gfx_val(struct drm_i915_private *dev_priv)
4291{
4292 if (dev_priv->info->gen != 5)
4293 return;
4294
Daniel Vetter92703882012-08-09 16:46:01 +02004295 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004296
4297 __i915_update_gfx_val(dev_priv);
4298
Daniel Vetter92703882012-08-09 16:46:01 +02004299 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004300}
4301
Chris Wilsonf531dcb22012-09-25 10:16:12 +01004302static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004303{
4304 unsigned long t, corr, state1, corr2, state2;
4305 u32 pxvid, ext_v;
4306
Daniel Vetter02d71952012-08-09 16:44:54 +02004307 assert_spin_locked(&mchdev_lock);
4308
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004309 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_delay * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02004310 pxvid = (pxvid >> 24) & 0x7f;
4311 ext_v = pvid_to_extvid(dev_priv, pxvid);
4312
4313 state1 = ext_v;
4314
4315 t = i915_mch_val(dev_priv);
4316
4317 /* Revel in the empirically derived constants */
4318
4319 /* Correction factor in 1/100000 units */
4320 if (t > 80)
4321 corr = ((t * 2349) + 135940);
4322 else if (t >= 50)
4323 corr = ((t * 964) + 29317);
4324 else /* < 50 */
4325 corr = ((t * 301) + 1004);
4326
4327 corr = corr * ((150142 * state1) / 10000 - 78642);
4328 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02004329 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004330
4331 state2 = (corr2 * state1) / 10000;
4332 state2 /= 100; /* convert to mW */
4333
Daniel Vetter02d71952012-08-09 16:44:54 +02004334 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004335
Daniel Vetter20e4d402012-08-08 23:35:39 +02004336 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004337}
4338
Chris Wilsonf531dcb22012-09-25 10:16:12 +01004339unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
4340{
4341 unsigned long val;
4342
4343 if (dev_priv->info->gen != 5)
4344 return 0;
4345
4346 spin_lock_irq(&mchdev_lock);
4347
4348 val = __i915_gfx_val(dev_priv);
4349
4350 spin_unlock_irq(&mchdev_lock);
4351
4352 return val;
4353}
4354
Daniel Vettereb48eb02012-04-26 23:28:12 +02004355/**
4356 * i915_read_mch_val - return value for IPS use
4357 *
4358 * Calculate and return a value for the IPS driver to use when deciding whether
4359 * we have thermal and power headroom to increase CPU or GPU power budget.
4360 */
4361unsigned long i915_read_mch_val(void)
4362{
4363 struct drm_i915_private *dev_priv;
4364 unsigned long chipset_val, graphics_val, ret = 0;
4365
Daniel Vetter92703882012-08-09 16:46:01 +02004366 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004367 if (!i915_mch_dev)
4368 goto out_unlock;
4369 dev_priv = i915_mch_dev;
4370
Chris Wilsonf531dcb22012-09-25 10:16:12 +01004371 chipset_val = __i915_chipset_val(dev_priv);
4372 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004373
4374 ret = chipset_val + graphics_val;
4375
4376out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004377 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004378
4379 return ret;
4380}
4381EXPORT_SYMBOL_GPL(i915_read_mch_val);
4382
4383/**
4384 * i915_gpu_raise - raise GPU frequency limit
4385 *
4386 * Raise the limit; IPS indicates we have thermal headroom.
4387 */
4388bool i915_gpu_raise(void)
4389{
4390 struct drm_i915_private *dev_priv;
4391 bool ret = true;
4392
Daniel Vetter92703882012-08-09 16:46:01 +02004393 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004394 if (!i915_mch_dev) {
4395 ret = false;
4396 goto out_unlock;
4397 }
4398 dev_priv = i915_mch_dev;
4399
Daniel Vetter20e4d402012-08-08 23:35:39 +02004400 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
4401 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004402
4403out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004404 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004405
4406 return ret;
4407}
4408EXPORT_SYMBOL_GPL(i915_gpu_raise);
4409
4410/**
4411 * i915_gpu_lower - lower GPU frequency limit
4412 *
4413 * IPS indicates we're close to a thermal limit, so throttle back the GPU
4414 * frequency maximum.
4415 */
4416bool i915_gpu_lower(void)
4417{
4418 struct drm_i915_private *dev_priv;
4419 bool ret = true;
4420
Daniel Vetter92703882012-08-09 16:46:01 +02004421 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004422 if (!i915_mch_dev) {
4423 ret = false;
4424 goto out_unlock;
4425 }
4426 dev_priv = i915_mch_dev;
4427
Daniel Vetter20e4d402012-08-08 23:35:39 +02004428 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
4429 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004430
4431out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004432 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004433
4434 return ret;
4435}
4436EXPORT_SYMBOL_GPL(i915_gpu_lower);
4437
4438/**
4439 * i915_gpu_busy - indicate GPU business to IPS
4440 *
4441 * Tell the IPS driver whether or not the GPU is busy.
4442 */
4443bool i915_gpu_busy(void)
4444{
4445 struct drm_i915_private *dev_priv;
Chris Wilsonf047e392012-07-21 12:31:41 +01004446 struct intel_ring_buffer *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004447 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01004448 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004449
Daniel Vetter92703882012-08-09 16:46:01 +02004450 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004451 if (!i915_mch_dev)
4452 goto out_unlock;
4453 dev_priv = i915_mch_dev;
4454
Chris Wilsonf047e392012-07-21 12:31:41 +01004455 for_each_ring(ring, dev_priv, i)
4456 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004457
4458out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004459 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004460
4461 return ret;
4462}
4463EXPORT_SYMBOL_GPL(i915_gpu_busy);
4464
4465/**
4466 * i915_gpu_turbo_disable - disable graphics turbo
4467 *
4468 * Disable graphics turbo by resetting the max frequency and setting the
4469 * current frequency to the default.
4470 */
4471bool i915_gpu_turbo_disable(void)
4472{
4473 struct drm_i915_private *dev_priv;
4474 bool ret = true;
4475
Daniel Vetter92703882012-08-09 16:46:01 +02004476 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004477 if (!i915_mch_dev) {
4478 ret = false;
4479 goto out_unlock;
4480 }
4481 dev_priv = i915_mch_dev;
4482
Daniel Vetter20e4d402012-08-08 23:35:39 +02004483 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004484
Daniel Vetter20e4d402012-08-08 23:35:39 +02004485 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02004486 ret = false;
4487
4488out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004489 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004490
4491 return ret;
4492}
4493EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
4494
4495/**
4496 * Tells the intel_ips driver that the i915 driver is now loaded, if
4497 * IPS got loaded first.
4498 *
4499 * This awkward dance is so that neither module has to depend on the
4500 * other in order for IPS to do the appropriate communication of
4501 * GPU turbo limits to i915.
4502 */
4503static void
4504ips_ping_for_i915_load(void)
4505{
4506 void (*link)(void);
4507
4508 link = symbol_get(ips_link_to_i915_driver);
4509 if (link) {
4510 link();
4511 symbol_put(ips_link_to_i915_driver);
4512 }
4513}
4514
4515void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
4516{
Daniel Vetter02d71952012-08-09 16:44:54 +02004517 /* We only register the i915 ips part with intel-ips once everything is
4518 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02004519 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004520 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02004521 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004522
4523 ips_ping_for_i915_load();
4524}
4525
4526void intel_gpu_ips_teardown(void)
4527{
Daniel Vetter92703882012-08-09 16:46:01 +02004528 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004529 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02004530 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004531}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004532static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004533{
4534 struct drm_i915_private *dev_priv = dev->dev_private;
4535 u32 lcfuse;
4536 u8 pxw[16];
4537 int i;
4538
4539 /* Disable to program */
4540 I915_WRITE(ECR, 0);
4541 POSTING_READ(ECR);
4542
4543 /* Program energy weights for various events */
4544 I915_WRITE(SDEW, 0x15040d00);
4545 I915_WRITE(CSIEW0, 0x007f0000);
4546 I915_WRITE(CSIEW1, 0x1e220004);
4547 I915_WRITE(CSIEW2, 0x04000004);
4548
4549 for (i = 0; i < 5; i++)
4550 I915_WRITE(PEW + (i * 4), 0);
4551 for (i = 0; i < 3; i++)
4552 I915_WRITE(DEW + (i * 4), 0);
4553
4554 /* Program P-state weights to account for frequency power adjustment */
4555 for (i = 0; i < 16; i++) {
4556 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
4557 unsigned long freq = intel_pxfreq(pxvidfreq);
4558 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
4559 PXVFREQ_PX_SHIFT;
4560 unsigned long val;
4561
4562 val = vid * vid;
4563 val *= (freq / 1000);
4564 val *= 255;
4565 val /= (127*127*900);
4566 if (val > 0xff)
4567 DRM_ERROR("bad pxval: %ld\n", val);
4568 pxw[i] = val;
4569 }
4570 /* Render standby states get 0 weight */
4571 pxw[14] = 0;
4572 pxw[15] = 0;
4573
4574 for (i = 0; i < 4; i++) {
4575 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
4576 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
4577 I915_WRITE(PXW + (i * 4), val);
4578 }
4579
4580 /* Adjust magic regs to magic values (more experimental results) */
4581 I915_WRITE(OGW0, 0);
4582 I915_WRITE(OGW1, 0);
4583 I915_WRITE(EG0, 0x00007f00);
4584 I915_WRITE(EG1, 0x0000000e);
4585 I915_WRITE(EG2, 0x000e0000);
4586 I915_WRITE(EG3, 0x68000300);
4587 I915_WRITE(EG4, 0x42000000);
4588 I915_WRITE(EG5, 0x00140031);
4589 I915_WRITE(EG6, 0);
4590 I915_WRITE(EG7, 0);
4591
4592 for (i = 0; i < 8; i++)
4593 I915_WRITE(PXWL + (i * 4), 0);
4594
4595 /* Enable PMON + select events */
4596 I915_WRITE(ECR, 0x80000019);
4597
4598 lcfuse = I915_READ(LCFUSE02);
4599
Daniel Vetter20e4d402012-08-08 23:35:39 +02004600 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004601}
4602
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004603void intel_disable_gt_powersave(struct drm_device *dev)
4604{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004605 struct drm_i915_private *dev_priv = dev->dev_private;
4606
Daniel Vetterfd0c0642013-04-24 11:13:35 +02004607 /* Interrupts should be disabled already to avoid re-arming. */
4608 WARN_ON(dev->irq_enabled);
4609
Daniel Vetter930ebb42012-06-29 23:32:16 +02004610 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004611 ironlake_disable_drps(dev);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004612 ironlake_disable_rc6(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004613 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004614 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
Jesse Barnes250848c2013-04-23 10:09:27 -07004615 cancel_work_sync(&dev_priv->rps.work);
Jesse Barnes52ceb902013-04-23 10:09:26 -07004616 if (IS_VALLEYVIEW(dev))
4617 cancel_delayed_work_sync(&dev_priv->rps.vlv_work);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004618 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004619 if (IS_VALLEYVIEW(dev))
4620 valleyview_disable_rps(dev);
4621 else
4622 gen6_disable_rps(dev);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004623 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004624 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004625}
4626
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004627static void intel_gen6_powersave_work(struct work_struct *work)
4628{
4629 struct drm_i915_private *dev_priv =
4630 container_of(work, struct drm_i915_private,
4631 rps.delayed_resume_work.work);
4632 struct drm_device *dev = dev_priv->dev;
4633
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004634 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004635
4636 if (IS_VALLEYVIEW(dev)) {
4637 valleyview_enable_rps(dev);
4638 } else {
4639 gen6_enable_rps(dev);
4640 gen6_update_ring_freq(dev);
4641 }
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004642 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004643}
4644
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004645void intel_enable_gt_powersave(struct drm_device *dev)
4646{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004647 struct drm_i915_private *dev_priv = dev->dev_private;
4648
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004649 if (IS_IRONLAKE_M(dev)) {
4650 ironlake_enable_drps(dev);
4651 ironlake_enable_rc6(dev);
4652 intel_init_emon(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004653 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004654 /*
4655 * PCU communication is slow and this doesn't need to be
4656 * done at any specific time, so do this out of our fast path
4657 * to make resume and init faster.
4658 */
4659 schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
4660 round_jiffies_up_relative(HZ));
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004661 }
4662}
4663
Daniel Vetter3107bd42012-10-31 22:52:31 +01004664static void ibx_init_clock_gating(struct drm_device *dev)
4665{
4666 struct drm_i915_private *dev_priv = dev->dev_private;
4667
4668 /*
4669 * On Ibex Peak and Cougar Point, we need to disable clock
4670 * gating for the panel power sequencer or it will fail to
4671 * start up when no ports are active.
4672 */
4673 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4674}
4675
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004676static void g4x_disable_trickle_feed(struct drm_device *dev)
4677{
4678 struct drm_i915_private *dev_priv = dev->dev_private;
4679 int pipe;
4680
4681 for_each_pipe(pipe) {
4682 I915_WRITE(DSPCNTR(pipe),
4683 I915_READ(DSPCNTR(pipe)) |
4684 DISPPLANE_TRICKLE_FEED_DISABLE);
4685 intel_flush_display_plane(dev_priv, pipe);
4686 }
4687}
4688
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004689static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004690{
4691 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004692 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004693
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01004694 /*
4695 * Required for FBC
4696 * WaFbcDisableDpfcClockGating:ilk
4697 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004698 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
4699 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
4700 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004701
4702 I915_WRITE(PCH_3DCGDIS0,
4703 MARIUNIT_CLOCK_GATE_DISABLE |
4704 SVSMUNIT_CLOCK_GATE_DISABLE);
4705 I915_WRITE(PCH_3DCGDIS1,
4706 VFMUNIT_CLOCK_GATE_DISABLE);
4707
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004708 /*
4709 * According to the spec the following bits should be set in
4710 * order to enable memory self-refresh
4711 * The bit 22/21 of 0x42004
4712 * The bit 5 of 0x42020
4713 * The bit 15 of 0x45000
4714 */
4715 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4716 (I915_READ(ILK_DISPLAY_CHICKEN2) |
4717 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004718 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004719 I915_WRITE(DISP_ARB_CTL,
4720 (I915_READ(DISP_ARB_CTL) |
4721 DISP_FBC_WM_DIS));
4722 I915_WRITE(WM3_LP_ILK, 0);
4723 I915_WRITE(WM2_LP_ILK, 0);
4724 I915_WRITE(WM1_LP_ILK, 0);
4725
4726 /*
4727 * Based on the document from hardware guys the following bits
4728 * should be set unconditionally in order to enable FBC.
4729 * The bit 22 of 0x42000
4730 * The bit 22 of 0x42004
4731 * The bit 7,8,9 of 0x42020.
4732 */
4733 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01004734 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004735 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4736 I915_READ(ILK_DISPLAY_CHICKEN1) |
4737 ILK_FBCQ_DIS);
4738 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4739 I915_READ(ILK_DISPLAY_CHICKEN2) |
4740 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004741 }
4742
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004743 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
4744
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004745 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4746 I915_READ(ILK_DISPLAY_CHICKEN2) |
4747 ILK_ELPIN_409_SELECT);
4748 I915_WRITE(_3D_CHICKEN2,
4749 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
4750 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02004751
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004752 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02004753 I915_WRITE(CACHE_MODE_0,
4754 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004755
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004756 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03004757
Daniel Vetter3107bd42012-10-31 22:52:31 +01004758 ibx_init_clock_gating(dev);
4759}
4760
4761static void cpt_init_clock_gating(struct drm_device *dev)
4762{
4763 struct drm_i915_private *dev_priv = dev->dev_private;
4764 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004765 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01004766
4767 /*
4768 * On Ibex Peak and Cougar Point, we need to disable clock
4769 * gating for the panel power sequencer or it will fail to
4770 * start up when no ports are active.
4771 */
4772 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4773 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
4774 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01004775 /* The below fixes the weird display corruption, a few pixels shifted
4776 * downward, on (only) LVDS of some HP laptops with IVY.
4777 */
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004778 for_each_pipe(pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03004779 val = I915_READ(TRANS_CHICKEN2(pipe));
4780 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
4781 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004782 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004783 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03004784 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
4785 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
4786 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004787 I915_WRITE(TRANS_CHICKEN2(pipe), val);
4788 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01004789 /* WADP0ClockGatingDisable */
4790 for_each_pipe(pipe) {
4791 I915_WRITE(TRANS_CHICKEN1(pipe),
4792 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
4793 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004794}
4795
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004796static void gen6_check_mch_setup(struct drm_device *dev)
4797{
4798 struct drm_i915_private *dev_priv = dev->dev_private;
4799 uint32_t tmp;
4800
4801 tmp = I915_READ(MCH_SSKPD);
4802 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) {
4803 DRM_INFO("Wrong MCH_SSKPD value: 0x%08x\n", tmp);
4804 DRM_INFO("This can cause pipe underruns and display issues.\n");
4805 DRM_INFO("Please upgrade your BIOS to fix this.\n");
4806 }
4807}
4808
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004809static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004810{
4811 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004812 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004813
Damien Lespiau231e54f2012-10-19 17:55:41 +01004814 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004815
4816 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4817 I915_READ(ILK_DISPLAY_CHICKEN2) |
4818 ILK_ELPIN_409_SELECT);
4819
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004820 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01004821 I915_WRITE(_3D_CHICKEN,
4822 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
4823
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004824 /* WaSetupGtModeTdRowDispatch:snb */
Daniel Vetter6547fbd2012-12-14 23:38:29 +01004825 if (IS_SNB_GT1(dev))
4826 I915_WRITE(GEN6_GT_MODE,
4827 _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE));
4828
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004829 I915_WRITE(WM3_LP_ILK, 0);
4830 I915_WRITE(WM2_LP_ILK, 0);
4831 I915_WRITE(WM1_LP_ILK, 0);
4832
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004833 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02004834 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004835
4836 I915_WRITE(GEN6_UCGCTL1,
4837 I915_READ(GEN6_UCGCTL1) |
4838 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
4839 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
4840
4841 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
4842 * gating disable must be set. Failure to set it results in
4843 * flickering pixels due to Z write ordering failures after
4844 * some amount of runtime in the Mesa "fire" demo, and Unigine
4845 * Sanctuary and Tropics, and apparently anything else with
4846 * alpha test or pixel discard.
4847 *
4848 * According to the spec, bit 11 (RCCUNIT) must also be set,
4849 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004850 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004851 * Also apply WaDisableVDSUnitClockGating:snb and
4852 * WaDisableRCPBUnitClockGating:snb.
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004853 */
4854 I915_WRITE(GEN6_UCGCTL2,
Jesse Barnes0f846f82012-06-14 11:04:47 -07004855 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004856 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
4857 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
4858
4859 /* Bspec says we need to always set all mask bits. */
Kenneth Graunke26b6e442012-10-07 08:51:07 -07004860 I915_WRITE(_3D_CHICKEN3, (0xFFFF << 16) |
4861 _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004862
4863 /*
4864 * According to the spec the following bits should be
4865 * set in order to enable memory self-refresh and fbc:
4866 * The bit21 and bit22 of 0x42000
4867 * The bit21 and bit22 of 0x42004
4868 * The bit5 and bit7 of 0x42020
4869 * The bit14 of 0x70180
4870 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01004871 *
4872 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004873 */
4874 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4875 I915_READ(ILK_DISPLAY_CHICKEN1) |
4876 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
4877 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4878 I915_READ(ILK_DISPLAY_CHICKEN2) |
4879 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01004880 I915_WRITE(ILK_DSPCLK_GATE_D,
4881 I915_READ(ILK_DSPCLK_GATE_D) |
4882 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
4883 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004884
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004885 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07004886
4887 /* The default value should be 0x200 according to docs, but the two
4888 * platforms I checked have a 0 for this. (Maybe BIOS overrides?) */
4889 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_DISABLE(0xffff));
4890 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_ENABLE(GEN6_GT_MODE_HI));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004891
4892 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004893
4894 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004895}
4896
4897static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
4898{
4899 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
4900
4901 reg &= ~GEN7_FF_SCHED_MASK;
4902 reg |= GEN7_FF_TS_SCHED_HW;
4903 reg |= GEN7_FF_VS_SCHED_HW;
4904 reg |= GEN7_FF_DS_SCHED_HW;
4905
Ben Widawsky41c0b3a2013-01-26 11:52:00 -08004906 if (IS_HASWELL(dev_priv->dev))
4907 reg &= ~GEN7_FF_VS_REF_CNT_FFME;
4908
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004909 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
4910}
4911
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004912static void lpt_init_clock_gating(struct drm_device *dev)
4913{
4914 struct drm_i915_private *dev_priv = dev->dev_private;
4915
4916 /*
4917 * TODO: this bit should only be enabled when really needed, then
4918 * disabled when not needed anymore in order to save power.
4919 */
4920 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
4921 I915_WRITE(SOUTH_DSPCLK_GATE_D,
4922 I915_READ(SOUTH_DSPCLK_GATE_D) |
4923 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03004924
4925 /* WADPOClockGatingDisable:hsw */
4926 I915_WRITE(_TRANSA_CHICKEN1,
4927 I915_READ(_TRANSA_CHICKEN1) |
4928 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004929}
4930
Imre Deak7d708ee2013-04-17 14:04:50 +03004931static void lpt_suspend_hw(struct drm_device *dev)
4932{
4933 struct drm_i915_private *dev_priv = dev->dev_private;
4934
4935 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
4936 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
4937
4938 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
4939 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
4940 }
4941}
4942
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004943static void haswell_init_clock_gating(struct drm_device *dev)
4944{
4945 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004946
4947 I915_WRITE(WM3_LP_ILK, 0);
4948 I915_WRITE(WM2_LP_ILK, 0);
4949 I915_WRITE(WM1_LP_ILK, 0);
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:hsw workaround.
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004953 */
4954 I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
4955
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004956 /* Apply the WaDisableRHWOOptimizationForRenderHang:hsw workaround. */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004957 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
4958 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
4959
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004960 /* WaApplyL3ControlAndL3ChickenMode:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004961 I915_WRITE(GEN7_L3CNTLREG1,
4962 GEN7_WA_FOR_GEN7_L3_CONTROL);
4963 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
4964 GEN7_WA_L3_CHICKEN_MODE);
4965
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004966 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004967 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
4968 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
4969 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
4970
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004971 /* WaVSRefCountFullforceMissDisable:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004972 gen7_setup_fixed_func_scheduler(dev_priv);
4973
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004974 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004975 I915_WRITE(CACHE_MODE_1,
4976 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03004977
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004978 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07004979 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
4980
Paulo Zanoni90a88642013-05-03 17:23:45 -03004981 /* WaRsPkgCStateDisplayPMReq:hsw */
4982 I915_WRITE(CHICKEN_PAR1_1,
4983 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03004984
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004985 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004986}
4987
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004988static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004989{
4990 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07004991 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004992
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004993 I915_WRITE(WM3_LP_ILK, 0);
4994 I915_WRITE(WM2_LP_ILK, 0);
4995 I915_WRITE(WM1_LP_ILK, 0);
4996
Damien Lespiau231e54f2012-10-19 17:55:41 +01004997 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004998
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004999 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05005000 I915_WRITE(_3D_CHICKEN3,
5001 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5002
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005003 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005004 I915_WRITE(IVB_CHICKEN3,
5005 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5006 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5007
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005008 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07005009 if (IS_IVB_GT1(dev))
5010 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
5011 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5012 else
5013 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1_GT2,
5014 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5015
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005016 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005017 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5018 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5019
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005020 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005021 I915_WRITE(GEN7_L3CNTLREG1,
5022 GEN7_WA_FOR_GEN7_L3_CONTROL);
5023 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07005024 GEN7_WA_L3_CHICKEN_MODE);
5025 if (IS_IVB_GT1(dev))
5026 I915_WRITE(GEN7_ROW_CHICKEN2,
5027 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5028 else
5029 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
5030 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5031
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005032
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005033 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05005034 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5035 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5036
Jesse Barnes0f846f82012-06-14 11:04:47 -07005037 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5038 * gating disable must be set. Failure to set it results in
5039 * flickering pixels due to Z write ordering failures after
5040 * some amount of runtime in the Mesa "fire" demo, and Unigine
5041 * Sanctuary and Tropics, and apparently anything else with
5042 * alpha test or pixel discard.
5043 *
5044 * According to the spec, bit 11 (RCCUNIT) must also be set,
5045 * but we didn't debug actual testcases to find it out.
5046 *
5047 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005048 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005049 */
5050 I915_WRITE(GEN6_UCGCTL2,
5051 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5052 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5053
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005054 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005055 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5056 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5057 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5058
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005059 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005060
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005061 /* WaVSRefCountFullforceMissDisable:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005062 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02005063
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005064 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02005065 I915_WRITE(CACHE_MODE_1,
5066 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07005067
5068 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
5069 snpcr &= ~GEN6_MBC_SNPCR_MASK;
5070 snpcr |= GEN6_MBC_SNPCR_MED;
5071 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005072
Ben Widawskyab5c6082013-04-05 13:12:41 -07005073 if (!HAS_PCH_NOP(dev))
5074 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005075
5076 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005077}
5078
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005079static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005080{
5081 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005082
Ville Syrjäläd7fe0cc2013-05-21 18:01:50 +03005083 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005084
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005085 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05005086 I915_WRITE(_3D_CHICKEN3,
5087 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5088
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005089 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005090 I915_WRITE(IVB_CHICKEN3,
5091 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5092 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5093
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005094 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07005095 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08005096 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
5097 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07005098
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005099 /* Apply the WaDisableRHWOOptimizationForRenderHang:vlv workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005100 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5101 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5102
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005103 /* WaApplyL3ControlAndL3ChickenMode:vlv */
Jesse Barnesd0cf5ea2012-10-25 12:15:41 -07005104 I915_WRITE(GEN7_L3CNTLREG1, I915_READ(GEN7_L3CNTLREG1) | GEN7_L3AGDIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005105 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, GEN7_WA_L3_CHICKEN_MODE);
5106
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005107 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05005108 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5109 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5110
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005111 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07005112 I915_WRITE(GEN7_ROW_CHICKEN2,
5113 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5114
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005115 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005116 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5117 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5118 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5119
Jesse Barnes0f846f82012-06-14 11:04:47 -07005120 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5121 * gating disable must be set. Failure to set it results in
5122 * flickering pixels due to Z write ordering failures after
5123 * some amount of runtime in the Mesa "fire" demo, and Unigine
5124 * Sanctuary and Tropics, and apparently anything else with
5125 * alpha test or pixel discard.
5126 *
5127 * According to the spec, bit 11 (RCCUNIT) must also be set,
5128 * but we didn't debug actual testcases to find it out.
5129 *
5130 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005131 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005132 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005133 * Also apply WaDisableVDSUnitClockGating:vlv and
5134 * WaDisableRCPBUnitClockGating:vlv.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005135 */
5136 I915_WRITE(GEN6_UCGCTL2,
5137 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes6edaa7f2012-06-14 11:04:49 -07005138 GEN7_TDLUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes0f846f82012-06-14 11:04:47 -07005139 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5140 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5141 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5142
Jesse Barnese3f33d42012-06-14 11:04:50 -07005143 I915_WRITE(GEN7_UCGCTL4, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
5144
Ville Syrjäläe0d8d592013-06-12 22:11:18 +03005145 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005146
Daniel Vetter6b26c862012-04-24 14:04:12 +02005147 I915_WRITE(CACHE_MODE_1,
5148 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07005149
5150 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005151 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07005152 * Disable clock gating on th GCFG unit to prevent a delay
5153 * in the reporting of vblank events.
5154 */
Jesse Barnes4e8c84a2013-03-08 10:45:54 -08005155 I915_WRITE(VLV_GUNIT_CLOCK_GATE, 0xffffffff);
5156
5157 /* Conservative clock gating settings for now */
5158 I915_WRITE(0x9400, 0xffffffff);
5159 I915_WRITE(0x9404, 0xffffffff);
5160 I915_WRITE(0x9408, 0xffffffff);
5161 I915_WRITE(0x940c, 0xffffffff);
5162 I915_WRITE(0x9410, 0xffffffff);
5163 I915_WRITE(0x9414, 0xffffffff);
5164 I915_WRITE(0x9418, 0xffffffff);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005165}
5166
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005167static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005168{
5169 struct drm_i915_private *dev_priv = dev->dev_private;
5170 uint32_t dspclk_gate;
5171
5172 I915_WRITE(RENCLK_GATE_D1, 0);
5173 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5174 GS_UNIT_CLOCK_GATE_DISABLE |
5175 CL_UNIT_CLOCK_GATE_DISABLE);
5176 I915_WRITE(RAMCLK_GATE_D, 0);
5177 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5178 OVRUNIT_CLOCK_GATE_DISABLE |
5179 OVCUNIT_CLOCK_GATE_DISABLE;
5180 if (IS_GM45(dev))
5181 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5182 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02005183
5184 /* WaDisableRenderCachePipelinedFlush */
5185 I915_WRITE(CACHE_MODE_0,
5186 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03005187
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005188 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005189}
5190
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005191static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005192{
5193 struct drm_i915_private *dev_priv = dev->dev_private;
5194
5195 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5196 I915_WRITE(RENCLK_GATE_D2, 0);
5197 I915_WRITE(DSPCLK_GATE_D, 0);
5198 I915_WRITE(RAMCLK_GATE_D, 0);
5199 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005200 I915_WRITE(MI_ARB_STATE,
5201 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005202}
5203
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005204static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005205{
5206 struct drm_i915_private *dev_priv = dev->dev_private;
5207
5208 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5209 I965_RCC_CLOCK_GATE_DISABLE |
5210 I965_RCPB_CLOCK_GATE_DISABLE |
5211 I965_ISC_CLOCK_GATE_DISABLE |
5212 I965_FBC_CLOCK_GATE_DISABLE);
5213 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005214 I915_WRITE(MI_ARB_STATE,
5215 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005216}
5217
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005218static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005219{
5220 struct drm_i915_private *dev_priv = dev->dev_private;
5221 u32 dstate = I915_READ(D_STATE);
5222
5223 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5224 DSTATE_DOT_CLOCK_GATING;
5225 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01005226
5227 if (IS_PINEVIEW(dev))
5228 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02005229
5230 /* IIR "flip pending" means done if this bit is set */
5231 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005232}
5233
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005234static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005235{
5236 struct drm_i915_private *dev_priv = dev->dev_private;
5237
5238 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5239}
5240
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005241static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005242{
5243 struct drm_i915_private *dev_priv = dev->dev_private;
5244
5245 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5246}
5247
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005248void intel_init_clock_gating(struct drm_device *dev)
5249{
5250 struct drm_i915_private *dev_priv = dev->dev_private;
5251
5252 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005253}
5254
Imre Deak7d708ee2013-04-17 14:04:50 +03005255void intel_suspend_hw(struct drm_device *dev)
5256{
5257 if (HAS_PCH_LPT(dev))
5258 lpt_suspend_hw(dev);
5259}
5260
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005261/**
5262 * We should only use the power well if we explicitly asked the hardware to
5263 * enable it, so check if it's enabled and also check if we've requested it to
5264 * be enabled.
5265 */
Paulo Zanonib97186f2013-05-03 12:15:36 -03005266bool intel_display_power_enabled(struct drm_device *dev,
5267 enum intel_display_power_domain domain)
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005268{
5269 struct drm_i915_private *dev_priv = dev->dev_private;
5270
Paulo Zanonib97186f2013-05-03 12:15:36 -03005271 if (!HAS_POWER_WELL(dev))
5272 return true;
5273
5274 switch (domain) {
5275 case POWER_DOMAIN_PIPE_A:
5276 case POWER_DOMAIN_TRANSCODER_EDP:
5277 return true;
5278 case POWER_DOMAIN_PIPE_B:
5279 case POWER_DOMAIN_PIPE_C:
5280 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
5281 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
5282 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
5283 case POWER_DOMAIN_TRANSCODER_A:
5284 case POWER_DOMAIN_TRANSCODER_B:
5285 case POWER_DOMAIN_TRANSCODER_C:
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005286 return I915_READ(HSW_PWR_WELL_DRIVER) ==
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005287 (HSW_PWR_WELL_ENABLE_REQUEST | HSW_PWR_WELL_STATE_ENABLED);
Paulo Zanonib97186f2013-05-03 12:15:36 -03005288 default:
5289 BUG();
5290 }
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005291}
5292
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005293static void __intel_set_power_well(struct drm_device *dev, bool enable)
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005294{
5295 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonifa42e232013-01-25 16:59:11 -02005296 bool is_enabled, enable_requested;
5297 uint32_t tmp;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005298
Paulo Zanonifa42e232013-01-25 16:59:11 -02005299 tmp = I915_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005300 is_enabled = tmp & HSW_PWR_WELL_STATE_ENABLED;
5301 enable_requested = tmp & HSW_PWR_WELL_ENABLE_REQUEST;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005302
Paulo Zanonifa42e232013-01-25 16:59:11 -02005303 if (enable) {
5304 if (!enable_requested)
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005305 I915_WRITE(HSW_PWR_WELL_DRIVER,
5306 HSW_PWR_WELL_ENABLE_REQUEST);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005307
Paulo Zanonifa42e232013-01-25 16:59:11 -02005308 if (!is_enabled) {
5309 DRM_DEBUG_KMS("Enabling power well\n");
5310 if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005311 HSW_PWR_WELL_STATE_ENABLED), 20))
Paulo Zanonifa42e232013-01-25 16:59:11 -02005312 DRM_ERROR("Timeout enabling power well\n");
5313 }
5314 } else {
5315 if (enable_requested) {
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005316 unsigned long irqflags;
5317 enum pipe p;
5318
Paulo Zanonifa42e232013-01-25 16:59:11 -02005319 I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005320 POSTING_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanonifa42e232013-01-25 16:59:11 -02005321 DRM_DEBUG_KMS("Requesting to disable the power well\n");
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005322
5323 /*
5324 * After this, the registers on the pipes that are part
5325 * of the power well will become zero, so we have to
5326 * adjust our counters according to that.
5327 *
5328 * FIXME: Should we do this in general in
5329 * drm_vblank_post_modeset?
5330 */
5331 spin_lock_irqsave(&dev->vbl_lock, irqflags);
5332 for_each_pipe(p)
5333 if (p != PIPE_A)
5334 dev->last_vblank[p] = 0;
5335 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005336 }
5337 }
Paulo Zanonifa42e232013-01-25 16:59:11 -02005338}
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005339
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005340static struct i915_power_well *hsw_pwr;
5341
5342/* Display audio driver power well request */
5343void i915_request_power_well(void)
5344{
5345 if (WARN_ON(!hsw_pwr))
5346 return;
5347
5348 spin_lock_irq(&hsw_pwr->lock);
5349 if (!hsw_pwr->count++ &&
5350 !hsw_pwr->i915_request)
5351 __intel_set_power_well(hsw_pwr->device, true);
5352 spin_unlock_irq(&hsw_pwr->lock);
5353}
5354EXPORT_SYMBOL_GPL(i915_request_power_well);
5355
5356/* Display audio driver power well release */
5357void i915_release_power_well(void)
5358{
5359 if (WARN_ON(!hsw_pwr))
5360 return;
5361
5362 spin_lock_irq(&hsw_pwr->lock);
5363 WARN_ON(!hsw_pwr->count);
5364 if (!--hsw_pwr->count &&
5365 !hsw_pwr->i915_request)
5366 __intel_set_power_well(hsw_pwr->device, false);
5367 spin_unlock_irq(&hsw_pwr->lock);
5368}
5369EXPORT_SYMBOL_GPL(i915_release_power_well);
5370
5371int i915_init_power_well(struct drm_device *dev)
5372{
5373 struct drm_i915_private *dev_priv = dev->dev_private;
5374
5375 hsw_pwr = &dev_priv->power_well;
5376
5377 hsw_pwr->device = dev;
5378 spin_lock_init(&hsw_pwr->lock);
5379 hsw_pwr->count = 0;
5380
5381 return 0;
5382}
5383
5384void i915_remove_power_well(struct drm_device *dev)
5385{
5386 hsw_pwr = NULL;
5387}
5388
5389void intel_set_power_well(struct drm_device *dev, bool enable)
5390{
5391 struct drm_i915_private *dev_priv = dev->dev_private;
5392 struct i915_power_well *power_well = &dev_priv->power_well;
5393
5394 if (!HAS_POWER_WELL(dev))
5395 return;
5396
5397 if (!i915_disable_power_well && !enable)
5398 return;
5399
5400 spin_lock_irq(&power_well->lock);
5401 power_well->i915_request = enable;
5402
5403 /* only reject "disable" power well request */
5404 if (power_well->count && !enable) {
5405 spin_unlock_irq(&power_well->lock);
5406 return;
5407 }
5408
5409 __intel_set_power_well(dev, enable);
5410 spin_unlock_irq(&power_well->lock);
5411}
5412
Paulo Zanonifa42e232013-01-25 16:59:11 -02005413/*
5414 * Starting with Haswell, we have a "Power Down Well" that can be turned off
5415 * when not needed anymore. We have 4 registers that can request the power well
5416 * to be enabled, and it will only be disabled if none of the registers is
5417 * requesting it to be enabled.
5418 */
5419void intel_init_power_well(struct drm_device *dev)
5420{
5421 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005422
Paulo Zanoni86d52df2013-03-06 20:03:18 -03005423 if (!HAS_POWER_WELL(dev))
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005424 return;
5425
Paulo Zanonifa42e232013-01-25 16:59:11 -02005426 /* For now, we need the power well to be always enabled. */
5427 intel_set_power_well(dev, true);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005428
Paulo Zanonifa42e232013-01-25 16:59:11 -02005429 /* We're taking over the BIOS, so clear any requests made by it since
5430 * the driver is in charge now. */
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005431 if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE_REQUEST)
Paulo Zanonifa42e232013-01-25 16:59:11 -02005432 I915_WRITE(HSW_PWR_WELL_BIOS, 0);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005433}
5434
Paulo Zanonic67a4702013-08-19 13:18:09 -03005435/* Disables PC8 so we can use the GMBUS and DP AUX interrupts. */
5436void intel_aux_display_runtime_get(struct drm_i915_private *dev_priv)
5437{
5438 hsw_disable_package_c8(dev_priv);
5439}
5440
5441void intel_aux_display_runtime_put(struct drm_i915_private *dev_priv)
5442{
5443 hsw_enable_package_c8(dev_priv);
5444}
5445
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005446/* Set up chip specific power management-related functions */
5447void intel_init_pm(struct drm_device *dev)
5448{
5449 struct drm_i915_private *dev_priv = dev->dev_private;
5450
5451 if (I915_HAS_FBC(dev)) {
5452 if (HAS_PCH_SPLIT(dev)) {
5453 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
Rodrigo Vivi891348b2013-05-06 19:37:36 -03005454 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Rodrigo Viviabe959c2013-05-06 19:37:33 -03005455 dev_priv->display.enable_fbc =
5456 gen7_enable_fbc;
5457 else
5458 dev_priv->display.enable_fbc =
5459 ironlake_enable_fbc;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005460 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5461 } else if (IS_GM45(dev)) {
5462 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5463 dev_priv->display.enable_fbc = g4x_enable_fbc;
5464 dev_priv->display.disable_fbc = g4x_disable_fbc;
5465 } else if (IS_CRESTLINE(dev)) {
5466 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5467 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5468 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5469 }
5470 /* 855GM needs testing */
5471 }
5472
Daniel Vetterc921aba2012-04-26 23:28:17 +02005473 /* For cxsr */
5474 if (IS_PINEVIEW(dev))
5475 i915_pineview_get_mem_freq(dev);
5476 else if (IS_GEN5(dev))
5477 i915_ironlake_get_mem_freq(dev);
5478
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005479 /* For FIFO watermark updates */
5480 if (HAS_PCH_SPLIT(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005481 intel_setup_wm_latency(dev);
5482
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005483 if (IS_GEN5(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005484 if (dev_priv->wm.pri_latency[1] &&
5485 dev_priv->wm.spr_latency[1] &&
5486 dev_priv->wm.cur_latency[1])
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005487 dev_priv->display.update_wm = ironlake_update_wm;
5488 else {
5489 DRM_DEBUG_KMS("Failed to get proper latency. "
5490 "Disable CxSR\n");
5491 dev_priv->display.update_wm = NULL;
5492 }
5493 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
5494 } else if (IS_GEN6(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005495 if (dev_priv->wm.pri_latency[0] &&
5496 dev_priv->wm.spr_latency[0] &&
5497 dev_priv->wm.cur_latency[0]) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005498 dev_priv->display.update_wm = sandybridge_update_wm;
5499 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5500 } else {
5501 DRM_DEBUG_KMS("Failed to read display plane latency. "
5502 "Disable CxSR\n");
5503 dev_priv->display.update_wm = NULL;
5504 }
5505 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
5506 } else if (IS_IVYBRIDGE(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005507 if (dev_priv->wm.pri_latency[0] &&
5508 dev_priv->wm.spr_latency[0] &&
5509 dev_priv->wm.cur_latency[0]) {
Chris Wilsonc43d0182012-12-11 12:01:42 +00005510 dev_priv->display.update_wm = ivybridge_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005511 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5512 } else {
5513 DRM_DEBUG_KMS("Failed to read display plane latency. "
5514 "Disable CxSR\n");
5515 dev_priv->display.update_wm = NULL;
5516 }
5517 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005518 } else if (IS_HASWELL(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005519 if (dev_priv->wm.pri_latency[0] &&
5520 dev_priv->wm.spr_latency[0] &&
5521 dev_priv->wm.cur_latency[0]) {
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005522 dev_priv->display.update_wm = haswell_update_wm;
Paulo Zanoni526682e2013-05-24 11:59:18 -03005523 dev_priv->display.update_sprite_wm =
5524 haswell_update_sprite_wm;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005525 } else {
5526 DRM_DEBUG_KMS("Failed to read display plane latency. "
5527 "Disable CxSR\n");
5528 dev_priv->display.update_wm = NULL;
5529 }
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005530 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005531 } else
5532 dev_priv->display.update_wm = NULL;
5533 } else if (IS_VALLEYVIEW(dev)) {
5534 dev_priv->display.update_wm = valleyview_update_wm;
5535 dev_priv->display.init_clock_gating =
5536 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005537 } else if (IS_PINEVIEW(dev)) {
5538 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
5539 dev_priv->is_ddr3,
5540 dev_priv->fsb_freq,
5541 dev_priv->mem_freq)) {
5542 DRM_INFO("failed to find known CxSR latency "
5543 "(found ddr%s fsb freq %d, mem freq %d), "
5544 "disabling CxSR\n",
5545 (dev_priv->is_ddr3 == 1) ? "3" : "2",
5546 dev_priv->fsb_freq, dev_priv->mem_freq);
5547 /* Disable CxSR and never update its watermark again */
5548 pineview_disable_cxsr(dev);
5549 dev_priv->display.update_wm = NULL;
5550 } else
5551 dev_priv->display.update_wm = pineview_update_wm;
5552 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5553 } else if (IS_G4X(dev)) {
5554 dev_priv->display.update_wm = g4x_update_wm;
5555 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
5556 } else if (IS_GEN4(dev)) {
5557 dev_priv->display.update_wm = i965_update_wm;
5558 if (IS_CRESTLINE(dev))
5559 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
5560 else if (IS_BROADWATER(dev))
5561 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
5562 } else if (IS_GEN3(dev)) {
5563 dev_priv->display.update_wm = i9xx_update_wm;
5564 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
5565 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5566 } else if (IS_I865G(dev)) {
5567 dev_priv->display.update_wm = i830_update_wm;
5568 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5569 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5570 } else if (IS_I85X(dev)) {
5571 dev_priv->display.update_wm = i9xx_update_wm;
5572 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
5573 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5574 } else {
5575 dev_priv->display.update_wm = i830_update_wm;
5576 dev_priv->display.init_clock_gating = i830_init_clock_gating;
5577 if (IS_845G(dev))
5578 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5579 else
5580 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5581 }
5582}
5583
Ben Widawsky42c05262012-09-26 10:34:00 -07005584int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val)
5585{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005586 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005587
5588 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5589 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
5590 return -EAGAIN;
5591 }
5592
5593 I915_WRITE(GEN6_PCODE_DATA, *val);
5594 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5595
5596 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5597 500)) {
5598 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
5599 return -ETIMEDOUT;
5600 }
5601
5602 *val = I915_READ(GEN6_PCODE_DATA);
5603 I915_WRITE(GEN6_PCODE_DATA, 0);
5604
5605 return 0;
5606}
5607
5608int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val)
5609{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005610 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005611
5612 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5613 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
5614 return -EAGAIN;
5615 }
5616
5617 I915_WRITE(GEN6_PCODE_DATA, val);
5618 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5619
5620 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5621 500)) {
5622 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
5623 return -ETIMEDOUT;
5624 }
5625
5626 I915_WRITE(GEN6_PCODE_DATA, 0);
5627
5628 return 0;
5629}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07005630
Jesse Barnes855ba3b2013-04-17 15:54:57 -07005631int vlv_gpu_freq(int ddr_freq, int val)
5632{
5633 int mult, base;
5634
5635 switch (ddr_freq) {
5636 case 800:
5637 mult = 20;
5638 base = 120;
5639 break;
5640 case 1066:
5641 mult = 22;
5642 base = 133;
5643 break;
5644 case 1333:
5645 mult = 21;
5646 base = 125;
5647 break;
5648 default:
5649 return -1;
5650 }
5651
5652 return ((val - 0xbd) * mult) + base;
5653}
5654
5655int vlv_freq_opcode(int ddr_freq, int val)
5656{
5657 int mult, base;
5658
5659 switch (ddr_freq) {
5660 case 800:
5661 mult = 20;
5662 base = 120;
5663 break;
5664 case 1066:
5665 mult = 22;
5666 base = 133;
5667 break;
5668 case 1333:
5669 mult = 21;
5670 base = 125;
5671 break;
5672 default:
5673 return -1;
5674 }
5675
5676 val /= mult;
5677 val -= base / mult;
5678 val += 0xbd;
5679
5680 if (val > 0xea)
5681 val = 0xea;
5682
5683 return val;
5684}
5685
Chris Wilson907b28c2013-07-19 20:36:52 +01005686void intel_pm_init(struct drm_device *dev)
5687{
5688 struct drm_i915_private *dev_priv = dev->dev_private;
5689
5690 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
5691 intel_gen6_powersave_work);
5692}
5693