blob: b676b578f70f43a6b07f38312b6e57f296a897f5 [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>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030033
Ben Widawsky057d3862012-09-01 22:59:49 -070034#define FORCEWAKE_ACK_TIMEOUT_MS 2
Ben Widawskyb67a4372012-09-01 22:59:47 -070035
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030036/* FBC, or Frame Buffer Compression, is a technique employed to compress the
37 * framebuffer contents in-memory, aiming at reducing the required bandwidth
38 * during in-memory transfers and, therefore, reduce the power packet.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030039 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030040 * The benefits of FBC are mostly visible with solid backgrounds and
41 * variation-less patterns.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030042 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030043 * FBC-related functionality can be enabled by the means of the
44 * i915.i915_enable_fbc parameter
Eugeni Dodonov85208be2012-04-16 22:20:34 -030045 */
46
Chris Wilson3490ea52013-01-07 10:11:40 +000047static bool intel_crtc_active(struct drm_crtc *crtc)
48{
49 /* Be paranoid as we can arrive here with only partial
50 * state retrieved from the hardware during setup.
51 */
52 return to_intel_crtc(crtc)->active && crtc->fb && crtc->mode.clock;
53}
54
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030055static void i8xx_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030056{
57 struct drm_i915_private *dev_priv = dev->dev_private;
58 u32 fbc_ctl;
59
60 /* Disable compression */
61 fbc_ctl = I915_READ(FBC_CONTROL);
62 if ((fbc_ctl & FBC_CTL_EN) == 0)
63 return;
64
65 fbc_ctl &= ~FBC_CTL_EN;
66 I915_WRITE(FBC_CONTROL, fbc_ctl);
67
68 /* Wait for compressing bit to clear */
69 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
70 DRM_DEBUG_KMS("FBC idle timed out\n");
71 return;
72 }
73
74 DRM_DEBUG_KMS("disabled FBC\n");
75}
76
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030077static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030078{
79 struct drm_device *dev = crtc->dev;
80 struct drm_i915_private *dev_priv = dev->dev_private;
81 struct drm_framebuffer *fb = crtc->fb;
82 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
83 struct drm_i915_gem_object *obj = intel_fb->obj;
84 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
85 int cfb_pitch;
86 int plane, i;
87 u32 fbc_ctl, fbc_ctl2;
88
89 cfb_pitch = dev_priv->cfb_size / FBC_LL_SIZE;
90 if (fb->pitches[0] < cfb_pitch)
91 cfb_pitch = fb->pitches[0];
92
93 /* FBC_CTL wants 64B units */
94 cfb_pitch = (cfb_pitch / 64) - 1;
95 plane = intel_crtc->plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
96
97 /* Clear old tags */
98 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
99 I915_WRITE(FBC_TAG + (i * 4), 0);
100
101 /* Set it up... */
102 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE;
103 fbc_ctl2 |= plane;
104 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
105 I915_WRITE(FBC_FENCE_OFF, crtc->y);
106
107 /* enable it... */
108 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
109 if (IS_I945GM(dev))
110 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
111 fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
112 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
113 fbc_ctl |= obj->fence_reg;
114 I915_WRITE(FBC_CONTROL, fbc_ctl);
115
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300116 DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c, ",
117 cfb_pitch, crtc->y, plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300118}
119
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300120static bool i8xx_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300121{
122 struct drm_i915_private *dev_priv = dev->dev_private;
123
124 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
125}
126
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300127static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300128{
129 struct drm_device *dev = crtc->dev;
130 struct drm_i915_private *dev_priv = dev->dev_private;
131 struct drm_framebuffer *fb = crtc->fb;
132 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
133 struct drm_i915_gem_object *obj = intel_fb->obj;
134 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
135 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
136 unsigned long stall_watermark = 200;
137 u32 dpfc_ctl;
138
139 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
140 dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg;
141 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
142
143 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
144 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
145 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
146 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
147
148 /* enable it... */
149 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
150
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300151 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300152}
153
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300154static void g4x_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300155{
156 struct drm_i915_private *dev_priv = dev->dev_private;
157 u32 dpfc_ctl;
158
159 /* Disable compression */
160 dpfc_ctl = I915_READ(DPFC_CONTROL);
161 if (dpfc_ctl & DPFC_CTL_EN) {
162 dpfc_ctl &= ~DPFC_CTL_EN;
163 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
164
165 DRM_DEBUG_KMS("disabled FBC\n");
166 }
167}
168
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300169static bool g4x_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300170{
171 struct drm_i915_private *dev_priv = dev->dev_private;
172
173 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
174}
175
176static void sandybridge_blit_fbc_update(struct drm_device *dev)
177{
178 struct drm_i915_private *dev_priv = dev->dev_private;
179 u32 blt_ecoskpd;
180
181 /* Make sure blitter notifies FBC of writes */
182 gen6_gt_force_wake_get(dev_priv);
183 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
184 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
185 GEN6_BLITTER_LOCK_SHIFT;
186 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
187 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
188 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
189 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
190 GEN6_BLITTER_LOCK_SHIFT);
191 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
192 POSTING_READ(GEN6_BLITTER_ECOSKPD);
193 gen6_gt_force_wake_put(dev_priv);
194}
195
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300196static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300197{
198 struct drm_device *dev = crtc->dev;
199 struct drm_i915_private *dev_priv = dev->dev_private;
200 struct drm_framebuffer *fb = crtc->fb;
201 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
202 struct drm_i915_gem_object *obj = intel_fb->obj;
203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
204 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
205 unsigned long stall_watermark = 200;
206 u32 dpfc_ctl;
207
208 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
209 dpfc_ctl &= DPFC_RESERVED;
210 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
211 /* Set persistent mode for front-buffer rendering, ala X. */
212 dpfc_ctl |= DPFC_CTL_PERSISTENT_MODE;
213 dpfc_ctl |= (DPFC_CTL_FENCE_EN | obj->fence_reg);
214 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
215
216 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
217 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
218 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
219 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
220 I915_WRITE(ILK_FBC_RT_BASE, obj->gtt_offset | ILK_FBC_RT_VALID);
221 /* enable it... */
222 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
223
224 if (IS_GEN6(dev)) {
225 I915_WRITE(SNB_DPFC_CTL_SA,
226 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
227 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
228 sandybridge_blit_fbc_update(dev);
229 }
230
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300231 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300232}
233
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300234static void ironlake_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300235{
236 struct drm_i915_private *dev_priv = dev->dev_private;
237 u32 dpfc_ctl;
238
239 /* Disable compression */
240 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
241 if (dpfc_ctl & DPFC_CTL_EN) {
242 dpfc_ctl &= ~DPFC_CTL_EN;
243 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
244
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300245 if (IS_IVYBRIDGE(dev))
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100246 /* WaFbcDisableDpfcClockGating:ivb */
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300247 I915_WRITE(ILK_DSPCLK_GATE_D,
248 I915_READ(ILK_DSPCLK_GATE_D) &
249 ~ILK_DPFCUNIT_CLOCK_GATE_DISABLE);
250
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300251 if (IS_HASWELL(dev))
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100252 /* WaFbcDisableDpfcClockGating:hsw */
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300253 I915_WRITE(HSW_CLKGATE_DISABLE_PART_1,
254 I915_READ(HSW_CLKGATE_DISABLE_PART_1) &
255 ~HSW_DPFC_GATING_DISABLE);
256
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300257 DRM_DEBUG_KMS("disabled FBC\n");
258 }
259}
260
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300261static bool ironlake_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300262{
263 struct drm_i915_private *dev_priv = dev->dev_private;
264
265 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
266}
267
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300268static void gen7_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
269{
270 struct drm_device *dev = crtc->dev;
271 struct drm_i915_private *dev_priv = dev->dev_private;
272 struct drm_framebuffer *fb = crtc->fb;
273 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
274 struct drm_i915_gem_object *obj = intel_fb->obj;
275 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
276
277 I915_WRITE(IVB_FBC_RT_BASE, obj->gtt_offset | ILK_FBC_RT_VALID);
278
279 I915_WRITE(ILK_DPFC_CONTROL, DPFC_CTL_EN | DPFC_CTL_LIMIT_1X |
280 IVB_DPFC_CTL_FENCE_EN |
281 intel_crtc->plane << IVB_DPFC_CTL_PLANE_SHIFT);
282
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300283 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100284 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300285 I915_WRITE(ILK_DISPLAY_CHICKEN1, ILK_FBCQ_DIS);
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100286 /* WaFbcDisableDpfcClockGating:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300287 I915_WRITE(ILK_DSPCLK_GATE_D,
288 I915_READ(ILK_DSPCLK_GATE_D) |
289 ILK_DPFCUNIT_CLOCK_GATE_DISABLE);
Rodrigo Vivi28554162013-05-06 19:37:37 -0300290 } else {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100291 /* WaFbcAsynchFlipDisableFbcQueue:hsw */
Rodrigo Vivi28554162013-05-06 19:37:37 -0300292 I915_WRITE(HSW_PIPE_SLICE_CHICKEN_1(intel_crtc->pipe),
293 HSW_BYPASS_FBC_QUEUE);
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100294 /* WaFbcDisableDpfcClockGating:hsw */
Rodrigo Vivid89f2072013-05-09 14:20:50 -0300295 I915_WRITE(HSW_CLKGATE_DISABLE_PART_1,
296 I915_READ(HSW_CLKGATE_DISABLE_PART_1) |
297 HSW_DPFC_GATING_DISABLE);
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300298 }
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300299
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300300 I915_WRITE(SNB_DPFC_CTL_SA,
301 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
302 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
303
304 sandybridge_blit_fbc_update(dev);
305
306 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
307}
308
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300309bool intel_fbc_enabled(struct drm_device *dev)
310{
311 struct drm_i915_private *dev_priv = dev->dev_private;
312
313 if (!dev_priv->display.fbc_enabled)
314 return false;
315
316 return dev_priv->display.fbc_enabled(dev);
317}
318
319static void intel_fbc_work_fn(struct work_struct *__work)
320{
321 struct intel_fbc_work *work =
322 container_of(to_delayed_work(__work),
323 struct intel_fbc_work, work);
324 struct drm_device *dev = work->crtc->dev;
325 struct drm_i915_private *dev_priv = dev->dev_private;
326
327 mutex_lock(&dev->struct_mutex);
328 if (work == dev_priv->fbc_work) {
329 /* Double check that we haven't switched fb without cancelling
330 * the prior work.
331 */
332 if (work->crtc->fb == work->fb) {
333 dev_priv->display.enable_fbc(work->crtc,
334 work->interval);
335
336 dev_priv->cfb_plane = to_intel_crtc(work->crtc)->plane;
337 dev_priv->cfb_fb = work->crtc->fb->base.id;
338 dev_priv->cfb_y = work->crtc->y;
339 }
340
341 dev_priv->fbc_work = NULL;
342 }
343 mutex_unlock(&dev->struct_mutex);
344
345 kfree(work);
346}
347
348static void intel_cancel_fbc_work(struct drm_i915_private *dev_priv)
349{
350 if (dev_priv->fbc_work == NULL)
351 return;
352
353 DRM_DEBUG_KMS("cancelling pending FBC enable\n");
354
355 /* Synchronisation is provided by struct_mutex and checking of
356 * dev_priv->fbc_work, so we can perform the cancellation
357 * entirely asynchronously.
358 */
359 if (cancel_delayed_work(&dev_priv->fbc_work->work))
360 /* tasklet was killed before being run, clean up */
361 kfree(dev_priv->fbc_work);
362
363 /* Mark the work as no longer wanted so that if it does
364 * wake-up (because the work was already running and waiting
365 * for our mutex), it will discover that is no longer
366 * necessary to run.
367 */
368 dev_priv->fbc_work = NULL;
369}
370
371void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
372{
373 struct intel_fbc_work *work;
374 struct drm_device *dev = crtc->dev;
375 struct drm_i915_private *dev_priv = dev->dev_private;
376
377 if (!dev_priv->display.enable_fbc)
378 return;
379
380 intel_cancel_fbc_work(dev_priv);
381
382 work = kzalloc(sizeof *work, GFP_KERNEL);
383 if (work == NULL) {
384 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
393 dev_priv->fbc_work = work;
394
395 DRM_DEBUG_KMS("scheduling delayed FBC enable\n");
396
397 /* Delay the actual enabling to let pageflipping cease and the
398 * display to settle before starting the compression. Note that
399 * this delay also serves a second purpose: it allows for a
400 * vblank to pass after disabling the FBC before we attempt
401 * to modify the control registers.
402 *
403 * A more complicated solution would involve tracking vblanks
404 * following the termination of the page-flipping sequence
405 * and indeed performing the enable as a co-routine and not
406 * waiting synchronously upon the vblank.
407 */
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);
421 dev_priv->cfb_plane = -1;
422}
423
424/**
425 * intel_update_fbc - enable/disable FBC as needed
426 * @dev: the drm_device
427 *
428 * Set up the framebuffer compression hardware at mode set time. We
429 * enable it if possible:
430 * - plane A only (on pre-965)
431 * - no pixel mulitply/line duplication
432 * - no alpha buffer discard
433 * - no dual wide
434 * - framebuffer <= 2048 in width, 1536 in height
435 *
436 * We can't assume that any compression will take place (worst case),
437 * so the compressed buffer has to be the same size as the uncompressed
438 * one. It also must reside (along with the line length buffer) in
439 * stolen memory.
440 *
441 * We need to enable/disable FBC on a global basis.
442 */
443void intel_update_fbc(struct drm_device *dev)
444{
445 struct drm_i915_private *dev_priv = dev->dev_private;
446 struct drm_crtc *crtc = NULL, *tmp_crtc;
447 struct intel_crtc *intel_crtc;
448 struct drm_framebuffer *fb;
449 struct intel_framebuffer *intel_fb;
450 struct drm_i915_gem_object *obj;
451 int enable_fbc;
452
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300453 if (!i915_powersave)
454 return;
455
456 if (!I915_HAS_FBC(dev))
457 return;
458
459 /*
460 * If FBC is already on, we just have to verify that we can
461 * keep it that way...
462 * Need to disable if:
463 * - more than one pipe is active
464 * - changing FBC params (stride, fence, mode)
465 * - new fb is too large to fit in compressed buffer
466 * - going to an unsupported config (interlace, pixel multiply, etc.)
467 */
468 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000469 if (intel_crtc_active(tmp_crtc) &&
470 !to_intel_crtc(tmp_crtc)->primary_disabled) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300471 if (crtc) {
472 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
473 dev_priv->no_fbc_reason = FBC_MULTIPLE_PIPES;
474 goto out_disable;
475 }
476 crtc = tmp_crtc;
477 }
478 }
479
480 if (!crtc || crtc->fb == NULL) {
481 DRM_DEBUG_KMS("no output, disabling\n");
482 dev_priv->no_fbc_reason = FBC_NO_OUTPUT;
483 goto out_disable;
484 }
485
486 intel_crtc = to_intel_crtc(crtc);
487 fb = crtc->fb;
488 intel_fb = to_intel_framebuffer(fb);
489 obj = intel_fb->obj;
490
491 enable_fbc = i915_enable_fbc;
492 if (enable_fbc < 0) {
493 DRM_DEBUG_KMS("fbc set to per-chip default\n");
494 enable_fbc = 1;
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300495 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300496 enable_fbc = 0;
497 }
498 if (!enable_fbc) {
499 DRM_DEBUG_KMS("fbc disabled per module param\n");
500 dev_priv->no_fbc_reason = FBC_MODULE_PARAM;
501 goto out_disable;
502 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300503 if ((crtc->mode.flags & DRM_MODE_FLAG_INTERLACE) ||
504 (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN)) {
505 DRM_DEBUG_KMS("mode incompatible with compression, "
506 "disabling\n");
507 dev_priv->no_fbc_reason = FBC_UNSUPPORTED_MODE;
508 goto out_disable;
509 }
510 if ((crtc->mode.hdisplay > 2048) ||
511 (crtc->mode.vdisplay > 1536)) {
512 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
513 dev_priv->no_fbc_reason = FBC_MODE_TOO_LARGE;
514 goto out_disable;
515 }
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300516 if ((IS_I915GM(dev) || IS_I945GM(dev) || IS_HASWELL(dev)) &&
517 intel_crtc->plane != 0) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300518 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
519 dev_priv->no_fbc_reason = FBC_BAD_PLANE;
520 goto out_disable;
521 }
522
523 /* The use of a CPU fence is mandatory in order to detect writes
524 * by the CPU to the scanout and trigger updates to the FBC.
525 */
526 if (obj->tiling_mode != I915_TILING_X ||
527 obj->fence_reg == I915_FENCE_REG_NONE) {
528 DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n");
529 dev_priv->no_fbc_reason = FBC_NOT_TILED;
530 goto out_disable;
531 }
532
533 /* If the kernel debugger is active, always disable compression */
534 if (in_dbg_master())
535 goto out_disable;
536
Chris Wilson11be49e2012-11-15 11:32:20 +0000537 if (i915_gem_stolen_setup_compression(dev, intel_fb->obj->base.size)) {
Chris Wilson11be49e2012-11-15 11:32:20 +0000538 DRM_DEBUG_KMS("framebuffer too large, disabling compression\n");
539 dev_priv->no_fbc_reason = FBC_STOLEN_TOO_SMALL;
540 goto out_disable;
541 }
542
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300543 /* If the scanout has not changed, don't modify the FBC settings.
544 * Note that we make the fundamental assumption that the fb->obj
545 * cannot be unpinned (and have its GTT offset and fence revoked)
546 * without first being decoupled from the scanout and FBC disabled.
547 */
548 if (dev_priv->cfb_plane == intel_crtc->plane &&
549 dev_priv->cfb_fb == fb->base.id &&
550 dev_priv->cfb_y == crtc->y)
551 return;
552
553 if (intel_fbc_enabled(dev)) {
554 /* We update FBC along two paths, after changing fb/crtc
555 * configuration (modeswitching) and after page-flipping
556 * finishes. For the latter, we know that not only did
557 * we disable the FBC at the start of the page-flip
558 * sequence, but also more than one vblank has passed.
559 *
560 * For the former case of modeswitching, it is possible
561 * to switch between two FBC valid configurations
562 * instantaneously so we do need to disable the FBC
563 * before we can modify its control registers. We also
564 * have to wait for the next vblank for that to take
565 * effect. However, since we delay enabling FBC we can
566 * assume that a vblank has passed since disabling and
567 * that we can safely alter the registers in the deferred
568 * callback.
569 *
570 * In the scenario that we go from a valid to invalid
571 * and then back to valid FBC configuration we have
572 * no strict enforcement that a vblank occurred since
573 * disabling the FBC. However, along all current pipe
574 * disabling paths we do need to wait for a vblank at
575 * some point. And we wait before enabling FBC anyway.
576 */
577 DRM_DEBUG_KMS("disabling active FBC for update\n");
578 intel_disable_fbc(dev);
579 }
580
581 intel_enable_fbc(crtc, 500);
582 return;
583
584out_disable:
585 /* Multiple disables should be harmless */
586 if (intel_fbc_enabled(dev)) {
587 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
588 intel_disable_fbc(dev);
589 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000590 i915_gem_stolen_cleanup_compression(dev);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300591}
592
Daniel Vetterc921aba2012-04-26 23:28:17 +0200593static void i915_pineview_get_mem_freq(struct drm_device *dev)
594{
595 drm_i915_private_t *dev_priv = dev->dev_private;
596 u32 tmp;
597
598 tmp = I915_READ(CLKCFG);
599
600 switch (tmp & CLKCFG_FSB_MASK) {
601 case CLKCFG_FSB_533:
602 dev_priv->fsb_freq = 533; /* 133*4 */
603 break;
604 case CLKCFG_FSB_800:
605 dev_priv->fsb_freq = 800; /* 200*4 */
606 break;
607 case CLKCFG_FSB_667:
608 dev_priv->fsb_freq = 667; /* 167*4 */
609 break;
610 case CLKCFG_FSB_400:
611 dev_priv->fsb_freq = 400; /* 100*4 */
612 break;
613 }
614
615 switch (tmp & CLKCFG_MEM_MASK) {
616 case CLKCFG_MEM_533:
617 dev_priv->mem_freq = 533;
618 break;
619 case CLKCFG_MEM_667:
620 dev_priv->mem_freq = 667;
621 break;
622 case CLKCFG_MEM_800:
623 dev_priv->mem_freq = 800;
624 break;
625 }
626
627 /* detect pineview DDR3 setting */
628 tmp = I915_READ(CSHRDDR3CTL);
629 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
630}
631
632static void i915_ironlake_get_mem_freq(struct drm_device *dev)
633{
634 drm_i915_private_t *dev_priv = dev->dev_private;
635 u16 ddrpll, csipll;
636
637 ddrpll = I915_READ16(DDRMPLL1);
638 csipll = I915_READ16(CSIPLL0);
639
640 switch (ddrpll & 0xff) {
641 case 0xc:
642 dev_priv->mem_freq = 800;
643 break;
644 case 0x10:
645 dev_priv->mem_freq = 1066;
646 break;
647 case 0x14:
648 dev_priv->mem_freq = 1333;
649 break;
650 case 0x18:
651 dev_priv->mem_freq = 1600;
652 break;
653 default:
654 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
655 ddrpll & 0xff);
656 dev_priv->mem_freq = 0;
657 break;
658 }
659
Daniel Vetter20e4d402012-08-08 23:35:39 +0200660 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200661
662 switch (csipll & 0x3ff) {
663 case 0x00c:
664 dev_priv->fsb_freq = 3200;
665 break;
666 case 0x00e:
667 dev_priv->fsb_freq = 3733;
668 break;
669 case 0x010:
670 dev_priv->fsb_freq = 4266;
671 break;
672 case 0x012:
673 dev_priv->fsb_freq = 4800;
674 break;
675 case 0x014:
676 dev_priv->fsb_freq = 5333;
677 break;
678 case 0x016:
679 dev_priv->fsb_freq = 5866;
680 break;
681 case 0x018:
682 dev_priv->fsb_freq = 6400;
683 break;
684 default:
685 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
686 csipll & 0x3ff);
687 dev_priv->fsb_freq = 0;
688 break;
689 }
690
691 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200692 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200693 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200694 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200695 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200696 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200697 }
698}
699
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300700static const struct cxsr_latency cxsr_latency_table[] = {
701 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
702 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
703 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
704 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
705 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
706
707 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
708 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
709 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
710 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
711 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
712
713 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
714 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
715 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
716 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
717 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
718
719 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
720 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
721 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
722 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
723 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
724
725 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
726 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
727 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
728 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
729 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
730
731 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
732 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
733 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
734 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
735 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
736};
737
Daniel Vetter63c62272012-04-21 23:17:55 +0200738static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 int is_ddr3,
740 int fsb,
741 int mem)
742{
743 const struct cxsr_latency *latency;
744 int i;
745
746 if (fsb == 0 || mem == 0)
747 return NULL;
748
749 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
750 latency = &cxsr_latency_table[i];
751 if (is_desktop == latency->is_desktop &&
752 is_ddr3 == latency->is_ddr3 &&
753 fsb == latency->fsb_freq && mem == latency->mem_freq)
754 return latency;
755 }
756
757 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
758
759 return NULL;
760}
761
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300762static void pineview_disable_cxsr(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300763{
764 struct drm_i915_private *dev_priv = dev->dev_private;
765
766 /* deactivate cxsr */
767 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
768}
769
770/*
771 * Latency for FIFO fetches is dependent on several factors:
772 * - memory configuration (speed, channels)
773 * - chipset
774 * - current MCH state
775 * It can be fairly high in some situations, so here we assume a fairly
776 * pessimal value. It's a tradeoff between extra memory fetches (if we
777 * set this value too high, the FIFO will fetch frequently to stay full)
778 * and power consumption (set it too low to save power and we might see
779 * FIFO underruns and display "flicker").
780 *
781 * A value of 5us seems to be a good balance; safe for very low end
782 * platforms but not overly aggressive on lower latency configs.
783 */
784static const int latency_ns = 5000;
785
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300786static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300787{
788 struct drm_i915_private *dev_priv = dev->dev_private;
789 uint32_t dsparb = I915_READ(DSPARB);
790 int size;
791
792 size = dsparb & 0x7f;
793 if (plane)
794 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
795
796 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
797 plane ? "B" : "A", size);
798
799 return size;
800}
801
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300802static int i85x_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300803{
804 struct drm_i915_private *dev_priv = dev->dev_private;
805 uint32_t dsparb = I915_READ(DSPARB);
806 int size;
807
808 size = dsparb & 0x1ff;
809 if (plane)
810 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
811 size >>= 1; /* Convert to cachelines */
812
813 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
814 plane ? "B" : "A", size);
815
816 return size;
817}
818
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300819static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300820{
821 struct drm_i915_private *dev_priv = dev->dev_private;
822 uint32_t dsparb = I915_READ(DSPARB);
823 int size;
824
825 size = dsparb & 0x7f;
826 size >>= 2; /* Convert to cachelines */
827
828 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
829 plane ? "B" : "A",
830 size);
831
832 return size;
833}
834
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300835static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300836{
837 struct drm_i915_private *dev_priv = dev->dev_private;
838 uint32_t dsparb = I915_READ(DSPARB);
839 int size;
840
841 size = dsparb & 0x7f;
842 size >>= 1; /* Convert to cachelines */
843
844 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
845 plane ? "B" : "A", size);
846
847 return size;
848}
849
850/* Pineview has different values for various configs */
851static const struct intel_watermark_params pineview_display_wm = {
852 PINEVIEW_DISPLAY_FIFO,
853 PINEVIEW_MAX_WM,
854 PINEVIEW_DFT_WM,
855 PINEVIEW_GUARD_WM,
856 PINEVIEW_FIFO_LINE_SIZE
857};
858static const struct intel_watermark_params pineview_display_hplloff_wm = {
859 PINEVIEW_DISPLAY_FIFO,
860 PINEVIEW_MAX_WM,
861 PINEVIEW_DFT_HPLLOFF_WM,
862 PINEVIEW_GUARD_WM,
863 PINEVIEW_FIFO_LINE_SIZE
864};
865static const struct intel_watermark_params pineview_cursor_wm = {
866 PINEVIEW_CURSOR_FIFO,
867 PINEVIEW_CURSOR_MAX_WM,
868 PINEVIEW_CURSOR_DFT_WM,
869 PINEVIEW_CURSOR_GUARD_WM,
870 PINEVIEW_FIFO_LINE_SIZE,
871};
872static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
873 PINEVIEW_CURSOR_FIFO,
874 PINEVIEW_CURSOR_MAX_WM,
875 PINEVIEW_CURSOR_DFT_WM,
876 PINEVIEW_CURSOR_GUARD_WM,
877 PINEVIEW_FIFO_LINE_SIZE
878};
879static const struct intel_watermark_params g4x_wm_info = {
880 G4X_FIFO_SIZE,
881 G4X_MAX_WM,
882 G4X_MAX_WM,
883 2,
884 G4X_FIFO_LINE_SIZE,
885};
886static const struct intel_watermark_params g4x_cursor_wm_info = {
887 I965_CURSOR_FIFO,
888 I965_CURSOR_MAX_WM,
889 I965_CURSOR_DFT_WM,
890 2,
891 G4X_FIFO_LINE_SIZE,
892};
893static const struct intel_watermark_params valleyview_wm_info = {
894 VALLEYVIEW_FIFO_SIZE,
895 VALLEYVIEW_MAX_WM,
896 VALLEYVIEW_MAX_WM,
897 2,
898 G4X_FIFO_LINE_SIZE,
899};
900static const struct intel_watermark_params valleyview_cursor_wm_info = {
901 I965_CURSOR_FIFO,
902 VALLEYVIEW_CURSOR_MAX_WM,
903 I965_CURSOR_DFT_WM,
904 2,
905 G4X_FIFO_LINE_SIZE,
906};
907static const struct intel_watermark_params i965_cursor_wm_info = {
908 I965_CURSOR_FIFO,
909 I965_CURSOR_MAX_WM,
910 I965_CURSOR_DFT_WM,
911 2,
912 I915_FIFO_LINE_SIZE,
913};
914static const struct intel_watermark_params i945_wm_info = {
915 I945_FIFO_SIZE,
916 I915_MAX_WM,
917 1,
918 2,
919 I915_FIFO_LINE_SIZE
920};
921static const struct intel_watermark_params i915_wm_info = {
922 I915_FIFO_SIZE,
923 I915_MAX_WM,
924 1,
925 2,
926 I915_FIFO_LINE_SIZE
927};
928static const struct intel_watermark_params i855_wm_info = {
929 I855GM_FIFO_SIZE,
930 I915_MAX_WM,
931 1,
932 2,
933 I830_FIFO_LINE_SIZE
934};
935static const struct intel_watermark_params i830_wm_info = {
936 I830_FIFO_SIZE,
937 I915_MAX_WM,
938 1,
939 2,
940 I830_FIFO_LINE_SIZE
941};
942
943static const struct intel_watermark_params ironlake_display_wm_info = {
944 ILK_DISPLAY_FIFO,
945 ILK_DISPLAY_MAXWM,
946 ILK_DISPLAY_DFTWM,
947 2,
948 ILK_FIFO_LINE_SIZE
949};
950static const struct intel_watermark_params ironlake_cursor_wm_info = {
951 ILK_CURSOR_FIFO,
952 ILK_CURSOR_MAXWM,
953 ILK_CURSOR_DFTWM,
954 2,
955 ILK_FIFO_LINE_SIZE
956};
957static const struct intel_watermark_params ironlake_display_srwm_info = {
958 ILK_DISPLAY_SR_FIFO,
959 ILK_DISPLAY_MAX_SRWM,
960 ILK_DISPLAY_DFT_SRWM,
961 2,
962 ILK_FIFO_LINE_SIZE
963};
964static const struct intel_watermark_params ironlake_cursor_srwm_info = {
965 ILK_CURSOR_SR_FIFO,
966 ILK_CURSOR_MAX_SRWM,
967 ILK_CURSOR_DFT_SRWM,
968 2,
969 ILK_FIFO_LINE_SIZE
970};
971
972static const struct intel_watermark_params sandybridge_display_wm_info = {
973 SNB_DISPLAY_FIFO,
974 SNB_DISPLAY_MAXWM,
975 SNB_DISPLAY_DFTWM,
976 2,
977 SNB_FIFO_LINE_SIZE
978};
979static const struct intel_watermark_params sandybridge_cursor_wm_info = {
980 SNB_CURSOR_FIFO,
981 SNB_CURSOR_MAXWM,
982 SNB_CURSOR_DFTWM,
983 2,
984 SNB_FIFO_LINE_SIZE
985};
986static const struct intel_watermark_params sandybridge_display_srwm_info = {
987 SNB_DISPLAY_SR_FIFO,
988 SNB_DISPLAY_MAX_SRWM,
989 SNB_DISPLAY_DFT_SRWM,
990 2,
991 SNB_FIFO_LINE_SIZE
992};
993static const struct intel_watermark_params sandybridge_cursor_srwm_info = {
994 SNB_CURSOR_SR_FIFO,
995 SNB_CURSOR_MAX_SRWM,
996 SNB_CURSOR_DFT_SRWM,
997 2,
998 SNB_FIFO_LINE_SIZE
999};
1000
1001
1002/**
1003 * intel_calculate_wm - calculate watermark level
1004 * @clock_in_khz: pixel clock
1005 * @wm: chip FIFO params
1006 * @pixel_size: display pixel size
1007 * @latency_ns: memory latency for the platform
1008 *
1009 * Calculate the watermark level (the level at which the display plane will
1010 * start fetching from memory again). Each chip has a different display
1011 * FIFO size and allocation, so the caller needs to figure that out and pass
1012 * in the correct intel_watermark_params structure.
1013 *
1014 * As the pixel clock runs, the FIFO will be drained at a rate that depends
1015 * on the pixel size. When it reaches the watermark level, it'll start
1016 * fetching FIFO line sized based chunks from memory until the FIFO fills
1017 * past the watermark point. If the FIFO drains completely, a FIFO underrun
1018 * will occur, and a display engine hang could result.
1019 */
1020static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
1021 const struct intel_watermark_params *wm,
1022 int fifo_size,
1023 int pixel_size,
1024 unsigned long latency_ns)
1025{
1026 long entries_required, wm_size;
1027
1028 /*
1029 * Note: we need to make sure we don't overflow for various clock &
1030 * latency values.
1031 * clocks go from a few thousand to several hundred thousand.
1032 * latency is usually a few thousand
1033 */
1034 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
1035 1000;
1036 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
1037
1038 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
1039
1040 wm_size = fifo_size - (entries_required + wm->guard_size);
1041
1042 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
1043
1044 /* Don't promote wm_size to unsigned... */
1045 if (wm_size > (long)wm->max_wm)
1046 wm_size = wm->max_wm;
1047 if (wm_size <= 0)
1048 wm_size = wm->default_wm;
1049 return wm_size;
1050}
1051
1052static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
1053{
1054 struct drm_crtc *crtc, *enabled = NULL;
1055
1056 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +00001057 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001058 if (enabled)
1059 return NULL;
1060 enabled = crtc;
1061 }
1062 }
1063
1064 return enabled;
1065}
1066
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001067static void pineview_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001068{
1069 struct drm_i915_private *dev_priv = dev->dev_private;
1070 struct drm_crtc *crtc;
1071 const struct cxsr_latency *latency;
1072 u32 reg;
1073 unsigned long wm;
1074
1075 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
1076 dev_priv->fsb_freq, dev_priv->mem_freq);
1077 if (!latency) {
1078 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
1079 pineview_disable_cxsr(dev);
1080 return;
1081 }
1082
1083 crtc = single_enabled_crtc(dev);
1084 if (crtc) {
1085 int clock = crtc->mode.clock;
1086 int pixel_size = crtc->fb->bits_per_pixel / 8;
1087
1088 /* Display SR */
1089 wm = intel_calculate_wm(clock, &pineview_display_wm,
1090 pineview_display_wm.fifo_size,
1091 pixel_size, latency->display_sr);
1092 reg = I915_READ(DSPFW1);
1093 reg &= ~DSPFW_SR_MASK;
1094 reg |= wm << DSPFW_SR_SHIFT;
1095 I915_WRITE(DSPFW1, reg);
1096 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
1097
1098 /* cursor SR */
1099 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
1100 pineview_display_wm.fifo_size,
1101 pixel_size, latency->cursor_sr);
1102 reg = I915_READ(DSPFW3);
1103 reg &= ~DSPFW_CURSOR_SR_MASK;
1104 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
1105 I915_WRITE(DSPFW3, reg);
1106
1107 /* Display HPLL off SR */
1108 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
1109 pineview_display_hplloff_wm.fifo_size,
1110 pixel_size, latency->display_hpll_disable);
1111 reg = I915_READ(DSPFW3);
1112 reg &= ~DSPFW_HPLL_SR_MASK;
1113 reg |= wm & DSPFW_HPLL_SR_MASK;
1114 I915_WRITE(DSPFW3, reg);
1115
1116 /* cursor HPLL off SR */
1117 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
1118 pineview_display_hplloff_wm.fifo_size,
1119 pixel_size, latency->cursor_hpll_disable);
1120 reg = I915_READ(DSPFW3);
1121 reg &= ~DSPFW_HPLL_CURSOR_MASK;
1122 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
1123 I915_WRITE(DSPFW3, reg);
1124 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
1125
1126 /* activate cxsr */
1127 I915_WRITE(DSPFW3,
1128 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
1129 DRM_DEBUG_KMS("Self-refresh is enabled\n");
1130 } else {
1131 pineview_disable_cxsr(dev);
1132 DRM_DEBUG_KMS("Self-refresh is disabled\n");
1133 }
1134}
1135
1136static bool g4x_compute_wm0(struct drm_device *dev,
1137 int plane,
1138 const struct intel_watermark_params *display,
1139 int display_latency_ns,
1140 const struct intel_watermark_params *cursor,
1141 int cursor_latency_ns,
1142 int *plane_wm,
1143 int *cursor_wm)
1144{
1145 struct drm_crtc *crtc;
1146 int htotal, hdisplay, clock, pixel_size;
1147 int line_time_us, line_count;
1148 int entries, tlb_miss;
1149
1150 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001151 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001152 *cursor_wm = cursor->guard_size;
1153 *plane_wm = display->guard_size;
1154 return false;
1155 }
1156
1157 htotal = crtc->mode.htotal;
1158 hdisplay = crtc->mode.hdisplay;
1159 clock = crtc->mode.clock;
1160 pixel_size = crtc->fb->bits_per_pixel / 8;
1161
1162 /* Use the small buffer method to calculate plane watermark */
1163 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
1164 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
1165 if (tlb_miss > 0)
1166 entries += tlb_miss;
1167 entries = DIV_ROUND_UP(entries, display->cacheline_size);
1168 *plane_wm = entries + display->guard_size;
1169 if (*plane_wm > (int)display->max_wm)
1170 *plane_wm = display->max_wm;
1171
1172 /* Use the large buffer method to calculate cursor watermark */
1173 line_time_us = ((htotal * 1000) / clock);
1174 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
1175 entries = line_count * 64 * pixel_size;
1176 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1177 if (tlb_miss > 0)
1178 entries += tlb_miss;
1179 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1180 *cursor_wm = entries + cursor->guard_size;
1181 if (*cursor_wm > (int)cursor->max_wm)
1182 *cursor_wm = (int)cursor->max_wm;
1183
1184 return true;
1185}
1186
1187/*
1188 * Check the wm result.
1189 *
1190 * If any calculated watermark values is larger than the maximum value that
1191 * can be programmed into the associated watermark register, that watermark
1192 * must be disabled.
1193 */
1194static bool g4x_check_srwm(struct drm_device *dev,
1195 int display_wm, int cursor_wm,
1196 const struct intel_watermark_params *display,
1197 const struct intel_watermark_params *cursor)
1198{
1199 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
1200 display_wm, cursor_wm);
1201
1202 if (display_wm > display->max_wm) {
1203 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
1204 display_wm, display->max_wm);
1205 return false;
1206 }
1207
1208 if (cursor_wm > cursor->max_wm) {
1209 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
1210 cursor_wm, cursor->max_wm);
1211 return false;
1212 }
1213
1214 if (!(display_wm || cursor_wm)) {
1215 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
1216 return false;
1217 }
1218
1219 return true;
1220}
1221
1222static bool g4x_compute_srwm(struct drm_device *dev,
1223 int plane,
1224 int latency_ns,
1225 const struct intel_watermark_params *display,
1226 const struct intel_watermark_params *cursor,
1227 int *display_wm, int *cursor_wm)
1228{
1229 struct drm_crtc *crtc;
1230 int hdisplay, htotal, pixel_size, clock;
1231 unsigned long line_time_us;
1232 int line_count, line_size;
1233 int small, large;
1234 int entries;
1235
1236 if (!latency_ns) {
1237 *display_wm = *cursor_wm = 0;
1238 return false;
1239 }
1240
1241 crtc = intel_get_crtc_for_plane(dev, plane);
1242 hdisplay = crtc->mode.hdisplay;
1243 htotal = crtc->mode.htotal;
1244 clock = crtc->mode.clock;
1245 pixel_size = crtc->fb->bits_per_pixel / 8;
1246
1247 line_time_us = (htotal * 1000) / clock;
1248 line_count = (latency_ns / line_time_us + 1000) / 1000;
1249 line_size = hdisplay * pixel_size;
1250
1251 /* Use the minimum of the small and large buffer method for primary */
1252 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1253 large = line_count * line_size;
1254
1255 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1256 *display_wm = entries + display->guard_size;
1257
1258 /* calculate the self-refresh watermark for display cursor */
1259 entries = line_count * pixel_size * 64;
1260 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1261 *cursor_wm = entries + cursor->guard_size;
1262
1263 return g4x_check_srwm(dev,
1264 *display_wm, *cursor_wm,
1265 display, cursor);
1266}
1267
1268static bool vlv_compute_drain_latency(struct drm_device *dev,
1269 int plane,
1270 int *plane_prec_mult,
1271 int *plane_dl,
1272 int *cursor_prec_mult,
1273 int *cursor_dl)
1274{
1275 struct drm_crtc *crtc;
1276 int clock, pixel_size;
1277 int entries;
1278
1279 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001280 if (!intel_crtc_active(crtc))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001281 return false;
1282
1283 clock = crtc->mode.clock; /* VESA DOT Clock */
1284 pixel_size = crtc->fb->bits_per_pixel / 8; /* BPP */
1285
1286 entries = (clock / 1000) * pixel_size;
1287 *plane_prec_mult = (entries > 256) ?
1288 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1289 *plane_dl = (64 * (*plane_prec_mult) * 4) / ((clock / 1000) *
1290 pixel_size);
1291
1292 entries = (clock / 1000) * 4; /* BPP is always 4 for cursor */
1293 *cursor_prec_mult = (entries > 256) ?
1294 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1295 *cursor_dl = (64 * (*cursor_prec_mult) * 4) / ((clock / 1000) * 4);
1296
1297 return true;
1298}
1299
1300/*
1301 * Update drain latency registers of memory arbiter
1302 *
1303 * Valleyview SoC has a new memory arbiter and needs drain latency registers
1304 * to be programmed. Each plane has a drain latency multiplier and a drain
1305 * latency value.
1306 */
1307
1308static void vlv_update_drain_latency(struct drm_device *dev)
1309{
1310 struct drm_i915_private *dev_priv = dev->dev_private;
1311 int planea_prec, planea_dl, planeb_prec, planeb_dl;
1312 int cursora_prec, cursora_dl, cursorb_prec, cursorb_dl;
1313 int plane_prec_mult, cursor_prec_mult; /* Precision multiplier is
1314 either 16 or 32 */
1315
1316 /* For plane A, Cursor A */
1317 if (vlv_compute_drain_latency(dev, 0, &plane_prec_mult, &planea_dl,
1318 &cursor_prec_mult, &cursora_dl)) {
1319 cursora_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1320 DDL_CURSORA_PRECISION_32 : DDL_CURSORA_PRECISION_16;
1321 planea_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1322 DDL_PLANEA_PRECISION_32 : DDL_PLANEA_PRECISION_16;
1323
1324 I915_WRITE(VLV_DDL1, cursora_prec |
1325 (cursora_dl << DDL_CURSORA_SHIFT) |
1326 planea_prec | planea_dl);
1327 }
1328
1329 /* For plane B, Cursor B */
1330 if (vlv_compute_drain_latency(dev, 1, &plane_prec_mult, &planeb_dl,
1331 &cursor_prec_mult, &cursorb_dl)) {
1332 cursorb_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1333 DDL_CURSORB_PRECISION_32 : DDL_CURSORB_PRECISION_16;
1334 planeb_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1335 DDL_PLANEB_PRECISION_32 : DDL_PLANEB_PRECISION_16;
1336
1337 I915_WRITE(VLV_DDL2, cursorb_prec |
1338 (cursorb_dl << DDL_CURSORB_SHIFT) |
1339 planeb_prec | planeb_dl);
1340 }
1341}
1342
1343#define single_plane_enabled(mask) is_power_of_2(mask)
1344
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001345static void valleyview_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001346{
1347 static const int sr_latency_ns = 12000;
1348 struct drm_i915_private *dev_priv = dev->dev_private;
1349 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1350 int plane_sr, cursor_sr;
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001351 int ignore_plane_sr, ignore_cursor_sr;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001352 unsigned int enabled = 0;
1353
1354 vlv_update_drain_latency(dev);
1355
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001356 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001357 &valleyview_wm_info, latency_ns,
1358 &valleyview_cursor_wm_info, latency_ns,
1359 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001360 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001361
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001362 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001363 &valleyview_wm_info, latency_ns,
1364 &valleyview_cursor_wm_info, latency_ns,
1365 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001366 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001367
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001368 if (single_plane_enabled(enabled) &&
1369 g4x_compute_srwm(dev, ffs(enabled) - 1,
1370 sr_latency_ns,
1371 &valleyview_wm_info,
1372 &valleyview_cursor_wm_info,
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001373 &plane_sr, &ignore_cursor_sr) &&
1374 g4x_compute_srwm(dev, ffs(enabled) - 1,
1375 2*sr_latency_ns,
1376 &valleyview_wm_info,
1377 &valleyview_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001378 &ignore_plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001379 I915_WRITE(FW_BLC_SELF_VLV, FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001380 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001381 I915_WRITE(FW_BLC_SELF_VLV,
1382 I915_READ(FW_BLC_SELF_VLV) & ~FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001383 plane_sr = cursor_sr = 0;
1384 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001385
1386 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1387 planea_wm, cursora_wm,
1388 planeb_wm, cursorb_wm,
1389 plane_sr, cursor_sr);
1390
1391 I915_WRITE(DSPFW1,
1392 (plane_sr << DSPFW_SR_SHIFT) |
1393 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1394 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1395 planea_wm);
1396 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001397 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001398 (cursora_wm << DSPFW_CURSORA_SHIFT));
1399 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001400 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
1401 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402}
1403
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001404static void g4x_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001405{
1406 static const int sr_latency_ns = 12000;
1407 struct drm_i915_private *dev_priv = dev->dev_private;
1408 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1409 int plane_sr, cursor_sr;
1410 unsigned int enabled = 0;
1411
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001412 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001413 &g4x_wm_info, latency_ns,
1414 &g4x_cursor_wm_info, latency_ns,
1415 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001416 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001417
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001418 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001419 &g4x_wm_info, latency_ns,
1420 &g4x_cursor_wm_info, latency_ns,
1421 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001422 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001423
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424 if (single_plane_enabled(enabled) &&
1425 g4x_compute_srwm(dev, ffs(enabled) - 1,
1426 sr_latency_ns,
1427 &g4x_wm_info,
1428 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001429 &plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001431 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432 I915_WRITE(FW_BLC_SELF,
1433 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001434 plane_sr = cursor_sr = 0;
1435 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001436
1437 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1438 planea_wm, cursora_wm,
1439 planeb_wm, cursorb_wm,
1440 plane_sr, cursor_sr);
1441
1442 I915_WRITE(DSPFW1,
1443 (plane_sr << DSPFW_SR_SHIFT) |
1444 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1445 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1446 planea_wm);
1447 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001448 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001449 (cursora_wm << DSPFW_CURSORA_SHIFT));
1450 /* HPLL off in SR has some issues on G4x... disable it */
1451 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001452 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001453 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1454}
1455
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001456static void i965_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001457{
1458 struct drm_i915_private *dev_priv = dev->dev_private;
1459 struct drm_crtc *crtc;
1460 int srwm = 1;
1461 int cursor_sr = 16;
1462
1463 /* Calc sr entries for one plane configs */
1464 crtc = single_enabled_crtc(dev);
1465 if (crtc) {
1466 /* self-refresh has much higher latency */
1467 static const int sr_latency_ns = 12000;
1468 int clock = crtc->mode.clock;
1469 int htotal = crtc->mode.htotal;
1470 int hdisplay = crtc->mode.hdisplay;
1471 int pixel_size = crtc->fb->bits_per_pixel / 8;
1472 unsigned long line_time_us;
1473 int entries;
1474
1475 line_time_us = ((htotal * 1000) / clock);
1476
1477 /* Use ns/us then divide to preserve precision */
1478 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1479 pixel_size * hdisplay;
1480 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1481 srwm = I965_FIFO_SIZE - entries;
1482 if (srwm < 0)
1483 srwm = 1;
1484 srwm &= 0x1ff;
1485 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1486 entries, srwm);
1487
1488 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1489 pixel_size * 64;
1490 entries = DIV_ROUND_UP(entries,
1491 i965_cursor_wm_info.cacheline_size);
1492 cursor_sr = i965_cursor_wm_info.fifo_size -
1493 (entries + i965_cursor_wm_info.guard_size);
1494
1495 if (cursor_sr > i965_cursor_wm_info.max_wm)
1496 cursor_sr = i965_cursor_wm_info.max_wm;
1497
1498 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1499 "cursor %d\n", srwm, cursor_sr);
1500
1501 if (IS_CRESTLINE(dev))
1502 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
1503 } else {
1504 /* Turn off self refresh if both pipes are enabled */
1505 if (IS_CRESTLINE(dev))
1506 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
1507 & ~FW_BLC_SELF_EN);
1508 }
1509
1510 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1511 srwm);
1512
1513 /* 965 has limitations... */
1514 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
1515 (8 << 16) | (8 << 8) | (8 << 0));
1516 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
1517 /* update cursor SR watermark */
1518 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1519}
1520
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001521static void i9xx_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001522{
1523 struct drm_i915_private *dev_priv = dev->dev_private;
1524 const struct intel_watermark_params *wm_info;
1525 uint32_t fwater_lo;
1526 uint32_t fwater_hi;
1527 int cwm, srwm = 1;
1528 int fifo_size;
1529 int planea_wm, planeb_wm;
1530 struct drm_crtc *crtc, *enabled = NULL;
1531
1532 if (IS_I945GM(dev))
1533 wm_info = &i945_wm_info;
1534 else if (!IS_GEN2(dev))
1535 wm_info = &i915_wm_info;
1536 else
1537 wm_info = &i855_wm_info;
1538
1539 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1540 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001541 if (intel_crtc_active(crtc)) {
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001542 int cpp = crtc->fb->bits_per_pixel / 8;
1543 if (IS_GEN2(dev))
1544 cpp = 4;
1545
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001546 planea_wm = intel_calculate_wm(crtc->mode.clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001547 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001548 latency_ns);
1549 enabled = crtc;
1550 } else
1551 planea_wm = fifo_size - wm_info->guard_size;
1552
1553 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1554 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001555 if (intel_crtc_active(crtc)) {
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001556 int cpp = crtc->fb->bits_per_pixel / 8;
1557 if (IS_GEN2(dev))
1558 cpp = 4;
1559
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001560 planeb_wm = intel_calculate_wm(crtc->mode.clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001561 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001562 latency_ns);
1563 if (enabled == NULL)
1564 enabled = crtc;
1565 else
1566 enabled = NULL;
1567 } else
1568 planeb_wm = fifo_size - wm_info->guard_size;
1569
1570 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1571
1572 /*
1573 * Overlay gets an aggressive default since video jitter is bad.
1574 */
1575 cwm = 2;
1576
1577 /* Play safe and disable self-refresh before adjusting watermarks. */
1578 if (IS_I945G(dev) || IS_I945GM(dev))
1579 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
1580 else if (IS_I915GM(dev))
1581 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
1582
1583 /* Calc sr entries for one plane configs */
1584 if (HAS_FW_BLC(dev) && enabled) {
1585 /* self-refresh has much higher latency */
1586 static const int sr_latency_ns = 6000;
1587 int clock = enabled->mode.clock;
1588 int htotal = enabled->mode.htotal;
1589 int hdisplay = enabled->mode.hdisplay;
1590 int pixel_size = enabled->fb->bits_per_pixel / 8;
1591 unsigned long line_time_us;
1592 int entries;
1593
1594 line_time_us = (htotal * 1000) / clock;
1595
1596 /* Use ns/us then divide to preserve precision */
1597 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1598 pixel_size * hdisplay;
1599 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1600 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1601 srwm = wm_info->fifo_size - entries;
1602 if (srwm < 0)
1603 srwm = 1;
1604
1605 if (IS_I945G(dev) || IS_I945GM(dev))
1606 I915_WRITE(FW_BLC_SELF,
1607 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1608 else if (IS_I915GM(dev))
1609 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1610 }
1611
1612 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1613 planea_wm, planeb_wm, cwm, srwm);
1614
1615 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1616 fwater_hi = (cwm & 0x1f);
1617
1618 /* Set request length to 8 cachelines per fetch */
1619 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1620 fwater_hi = fwater_hi | (1 << 8);
1621
1622 I915_WRITE(FW_BLC, fwater_lo);
1623 I915_WRITE(FW_BLC2, fwater_hi);
1624
1625 if (HAS_FW_BLC(dev)) {
1626 if (enabled) {
1627 if (IS_I945G(dev) || IS_I945GM(dev))
1628 I915_WRITE(FW_BLC_SELF,
1629 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
1630 else if (IS_I915GM(dev))
1631 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
1632 DRM_DEBUG_KMS("memory self refresh enabled\n");
1633 } else
1634 DRM_DEBUG_KMS("memory self refresh disabled\n");
1635 }
1636}
1637
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001638static void i830_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001639{
1640 struct drm_i915_private *dev_priv = dev->dev_private;
1641 struct drm_crtc *crtc;
1642 uint32_t fwater_lo;
1643 int planea_wm;
1644
1645 crtc = single_enabled_crtc(dev);
1646 if (crtc == NULL)
1647 return;
1648
1649 planea_wm = intel_calculate_wm(crtc->mode.clock, &i830_wm_info,
1650 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001651 4, latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001652 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1653 fwater_lo |= (3<<8) | planea_wm;
1654
1655 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1656
1657 I915_WRITE(FW_BLC, fwater_lo);
1658}
1659
1660#define ILK_LP0_PLANE_LATENCY 700
1661#define ILK_LP0_CURSOR_LATENCY 1300
1662
1663/*
1664 * Check the wm result.
1665 *
1666 * If any calculated watermark values is larger than the maximum value that
1667 * can be programmed into the associated watermark register, that watermark
1668 * must be disabled.
1669 */
1670static bool ironlake_check_srwm(struct drm_device *dev, int level,
1671 int fbc_wm, int display_wm, int cursor_wm,
1672 const struct intel_watermark_params *display,
1673 const struct intel_watermark_params *cursor)
1674{
1675 struct drm_i915_private *dev_priv = dev->dev_private;
1676
1677 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
1678 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
1679
1680 if (fbc_wm > SNB_FBC_MAX_SRWM) {
1681 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
1682 fbc_wm, SNB_FBC_MAX_SRWM, level);
1683
1684 /* fbc has it's own way to disable FBC WM */
1685 I915_WRITE(DISP_ARB_CTL,
1686 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
1687 return false;
Ville Syrjälä615aaa52013-04-24 21:09:10 +03001688 } else if (INTEL_INFO(dev)->gen >= 6) {
1689 /* enable FBC WM (except on ILK, where it must remain off) */
1690 I915_WRITE(DISP_ARB_CTL,
1691 I915_READ(DISP_ARB_CTL) & ~DISP_FBC_WM_DIS);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001692 }
1693
1694 if (display_wm > display->max_wm) {
1695 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
1696 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1697 return false;
1698 }
1699
1700 if (cursor_wm > cursor->max_wm) {
1701 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
1702 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1703 return false;
1704 }
1705
1706 if (!(fbc_wm || display_wm || cursor_wm)) {
1707 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
1708 return false;
1709 }
1710
1711 return true;
1712}
1713
1714/*
1715 * Compute watermark values of WM[1-3],
1716 */
1717static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
1718 int latency_ns,
1719 const struct intel_watermark_params *display,
1720 const struct intel_watermark_params *cursor,
1721 int *fbc_wm, int *display_wm, int *cursor_wm)
1722{
1723 struct drm_crtc *crtc;
1724 unsigned long line_time_us;
1725 int hdisplay, htotal, pixel_size, clock;
1726 int line_count, line_size;
1727 int small, large;
1728 int entries;
1729
1730 if (!latency_ns) {
1731 *fbc_wm = *display_wm = *cursor_wm = 0;
1732 return false;
1733 }
1734
1735 crtc = intel_get_crtc_for_plane(dev, plane);
1736 hdisplay = crtc->mode.hdisplay;
1737 htotal = crtc->mode.htotal;
1738 clock = crtc->mode.clock;
1739 pixel_size = crtc->fb->bits_per_pixel / 8;
1740
1741 line_time_us = (htotal * 1000) / clock;
1742 line_count = (latency_ns / line_time_us + 1000) / 1000;
1743 line_size = hdisplay * pixel_size;
1744
1745 /* Use the minimum of the small and large buffer method for primary */
1746 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1747 large = line_count * line_size;
1748
1749 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1750 *display_wm = entries + display->guard_size;
1751
1752 /*
1753 * Spec says:
1754 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
1755 */
1756 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
1757
1758 /* calculate the self-refresh watermark for display cursor */
1759 entries = line_count * pixel_size * 64;
1760 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1761 *cursor_wm = entries + cursor->guard_size;
1762
1763 return ironlake_check_srwm(dev, level,
1764 *fbc_wm, *display_wm, *cursor_wm,
1765 display, cursor);
1766}
1767
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001768static void ironlake_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001769{
1770 struct drm_i915_private *dev_priv = dev->dev_private;
1771 int fbc_wm, plane_wm, cursor_wm;
1772 unsigned int enabled;
1773
1774 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001775 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001776 &ironlake_display_wm_info,
1777 ILK_LP0_PLANE_LATENCY,
1778 &ironlake_cursor_wm_info,
1779 ILK_LP0_CURSOR_LATENCY,
1780 &plane_wm, &cursor_wm)) {
1781 I915_WRITE(WM0_PIPEA_ILK,
1782 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1783 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1784 " plane %d, " "cursor: %d\n",
1785 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001786 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001787 }
1788
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001789 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001790 &ironlake_display_wm_info,
1791 ILK_LP0_PLANE_LATENCY,
1792 &ironlake_cursor_wm_info,
1793 ILK_LP0_CURSOR_LATENCY,
1794 &plane_wm, &cursor_wm)) {
1795 I915_WRITE(WM0_PIPEB_ILK,
1796 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1797 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1798 " plane %d, cursor: %d\n",
1799 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001800 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001801 }
1802
1803 /*
1804 * Calculate and update the self-refresh watermark only when one
1805 * display plane is used.
1806 */
1807 I915_WRITE(WM3_LP_ILK, 0);
1808 I915_WRITE(WM2_LP_ILK, 0);
1809 I915_WRITE(WM1_LP_ILK, 0);
1810
1811 if (!single_plane_enabled(enabled))
1812 return;
1813 enabled = ffs(enabled) - 1;
1814
1815 /* WM1 */
1816 if (!ironlake_compute_srwm(dev, 1, enabled,
1817 ILK_READ_WM1_LATENCY() * 500,
1818 &ironlake_display_srwm_info,
1819 &ironlake_cursor_srwm_info,
1820 &fbc_wm, &plane_wm, &cursor_wm))
1821 return;
1822
1823 I915_WRITE(WM1_LP_ILK,
1824 WM1_LP_SR_EN |
1825 (ILK_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
1826 (fbc_wm << WM1_LP_FBC_SHIFT) |
1827 (plane_wm << WM1_LP_SR_SHIFT) |
1828 cursor_wm);
1829
1830 /* WM2 */
1831 if (!ironlake_compute_srwm(dev, 2, enabled,
1832 ILK_READ_WM2_LATENCY() * 500,
1833 &ironlake_display_srwm_info,
1834 &ironlake_cursor_srwm_info,
1835 &fbc_wm, &plane_wm, &cursor_wm))
1836 return;
1837
1838 I915_WRITE(WM2_LP_ILK,
1839 WM2_LP_EN |
1840 (ILK_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
1841 (fbc_wm << WM1_LP_FBC_SHIFT) |
1842 (plane_wm << WM1_LP_SR_SHIFT) |
1843 cursor_wm);
1844
1845 /*
1846 * WM3 is unsupported on ILK, probably because we don't have latency
1847 * data for that power state
1848 */
1849}
1850
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03001851static void sandybridge_update_wm(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001852{
1853 struct drm_i915_private *dev_priv = dev->dev_private;
1854 int latency = SNB_READ_WM0_LATENCY() * 100; /* In unit 0.1us */
1855 u32 val;
1856 int fbc_wm, plane_wm, cursor_wm;
1857 unsigned int enabled;
1858
1859 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001860 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001861 &sandybridge_display_wm_info, latency,
1862 &sandybridge_cursor_wm_info, latency,
1863 &plane_wm, &cursor_wm)) {
1864 val = I915_READ(WM0_PIPEA_ILK);
1865 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1866 I915_WRITE(WM0_PIPEA_ILK, val |
1867 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1868 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1869 " plane %d, " "cursor: %d\n",
1870 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001871 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001872 }
1873
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001874 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001875 &sandybridge_display_wm_info, latency,
1876 &sandybridge_cursor_wm_info, latency,
1877 &plane_wm, &cursor_wm)) {
1878 val = I915_READ(WM0_PIPEB_ILK);
1879 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1880 I915_WRITE(WM0_PIPEB_ILK, val |
1881 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1882 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1883 " plane %d, cursor: %d\n",
1884 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001885 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001886 }
1887
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001888 /*
1889 * Calculate and update the self-refresh watermark only when one
1890 * display plane is used.
1891 *
1892 * SNB support 3 levels of watermark.
1893 *
1894 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
1895 * and disabled in the descending order
1896 *
1897 */
1898 I915_WRITE(WM3_LP_ILK, 0);
1899 I915_WRITE(WM2_LP_ILK, 0);
1900 I915_WRITE(WM1_LP_ILK, 0);
1901
1902 if (!single_plane_enabled(enabled) ||
1903 dev_priv->sprite_scaling_enabled)
1904 return;
1905 enabled = ffs(enabled) - 1;
1906
1907 /* WM1 */
1908 if (!ironlake_compute_srwm(dev, 1, enabled,
1909 SNB_READ_WM1_LATENCY() * 500,
1910 &sandybridge_display_srwm_info,
1911 &sandybridge_cursor_srwm_info,
1912 &fbc_wm, &plane_wm, &cursor_wm))
1913 return;
1914
1915 I915_WRITE(WM1_LP_ILK,
1916 WM1_LP_SR_EN |
1917 (SNB_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
1918 (fbc_wm << WM1_LP_FBC_SHIFT) |
1919 (plane_wm << WM1_LP_SR_SHIFT) |
1920 cursor_wm);
1921
1922 /* WM2 */
1923 if (!ironlake_compute_srwm(dev, 2, enabled,
1924 SNB_READ_WM2_LATENCY() * 500,
1925 &sandybridge_display_srwm_info,
1926 &sandybridge_cursor_srwm_info,
1927 &fbc_wm, &plane_wm, &cursor_wm))
1928 return;
1929
1930 I915_WRITE(WM2_LP_ILK,
1931 WM2_LP_EN |
1932 (SNB_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
1933 (fbc_wm << WM1_LP_FBC_SHIFT) |
1934 (plane_wm << WM1_LP_SR_SHIFT) |
1935 cursor_wm);
1936
1937 /* WM3 */
1938 if (!ironlake_compute_srwm(dev, 3, enabled,
1939 SNB_READ_WM3_LATENCY() * 500,
1940 &sandybridge_display_srwm_info,
1941 &sandybridge_cursor_srwm_info,
1942 &fbc_wm, &plane_wm, &cursor_wm))
1943 return;
1944
1945 I915_WRITE(WM3_LP_ILK,
1946 WM3_LP_EN |
1947 (SNB_READ_WM3_LATENCY() << WM1_LP_LATENCY_SHIFT) |
1948 (fbc_wm << WM1_LP_FBC_SHIFT) |
1949 (plane_wm << WM1_LP_SR_SHIFT) |
1950 cursor_wm);
1951}
1952
Chris Wilsonc43d0182012-12-11 12:01:42 +00001953static void ivybridge_update_wm(struct drm_device *dev)
1954{
1955 struct drm_i915_private *dev_priv = dev->dev_private;
1956 int latency = SNB_READ_WM0_LATENCY() * 100; /* In unit 0.1us */
1957 u32 val;
1958 int fbc_wm, plane_wm, cursor_wm;
1959 int ignore_fbc_wm, ignore_plane_wm, ignore_cursor_wm;
1960 unsigned int enabled;
1961
1962 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001963 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilsonc43d0182012-12-11 12:01:42 +00001964 &sandybridge_display_wm_info, latency,
1965 &sandybridge_cursor_wm_info, latency,
1966 &plane_wm, &cursor_wm)) {
1967 val = I915_READ(WM0_PIPEA_ILK);
1968 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1969 I915_WRITE(WM0_PIPEA_ILK, val |
1970 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1971 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1972 " plane %d, " "cursor: %d\n",
1973 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001974 enabled |= 1 << PIPE_A;
Chris Wilsonc43d0182012-12-11 12:01:42 +00001975 }
1976
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001977 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilsonc43d0182012-12-11 12:01:42 +00001978 &sandybridge_display_wm_info, latency,
1979 &sandybridge_cursor_wm_info, latency,
1980 &plane_wm, &cursor_wm)) {
1981 val = I915_READ(WM0_PIPEB_ILK);
1982 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1983 I915_WRITE(WM0_PIPEB_ILK, val |
1984 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1985 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1986 " plane %d, cursor: %d\n",
1987 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001988 enabled |= 1 << PIPE_B;
Chris Wilsonc43d0182012-12-11 12:01:42 +00001989 }
1990
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001991 if (g4x_compute_wm0(dev, PIPE_C,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001992 &sandybridge_display_wm_info, latency,
1993 &sandybridge_cursor_wm_info, latency,
1994 &plane_wm, &cursor_wm)) {
1995 val = I915_READ(WM0_PIPEC_IVB);
1996 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1997 I915_WRITE(WM0_PIPEC_IVB, val |
1998 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1999 DRM_DEBUG_KMS("FIFO watermarks For pipe C -"
2000 " plane %d, cursor: %d\n",
2001 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002002 enabled |= 1 << PIPE_C;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002003 }
2004
2005 /*
2006 * Calculate and update the self-refresh watermark only when one
2007 * display plane is used.
2008 *
2009 * SNB support 3 levels of watermark.
2010 *
2011 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
2012 * and disabled in the descending order
2013 *
2014 */
2015 I915_WRITE(WM3_LP_ILK, 0);
2016 I915_WRITE(WM2_LP_ILK, 0);
2017 I915_WRITE(WM1_LP_ILK, 0);
2018
2019 if (!single_plane_enabled(enabled) ||
2020 dev_priv->sprite_scaling_enabled)
2021 return;
2022 enabled = ffs(enabled) - 1;
2023
2024 /* WM1 */
2025 if (!ironlake_compute_srwm(dev, 1, enabled,
2026 SNB_READ_WM1_LATENCY() * 500,
2027 &sandybridge_display_srwm_info,
2028 &sandybridge_cursor_srwm_info,
2029 &fbc_wm, &plane_wm, &cursor_wm))
2030 return;
2031
2032 I915_WRITE(WM1_LP_ILK,
2033 WM1_LP_SR_EN |
2034 (SNB_READ_WM1_LATENCY() << WM1_LP_LATENCY_SHIFT) |
2035 (fbc_wm << WM1_LP_FBC_SHIFT) |
2036 (plane_wm << WM1_LP_SR_SHIFT) |
2037 cursor_wm);
2038
2039 /* WM2 */
2040 if (!ironlake_compute_srwm(dev, 2, enabled,
2041 SNB_READ_WM2_LATENCY() * 500,
2042 &sandybridge_display_srwm_info,
2043 &sandybridge_cursor_srwm_info,
2044 &fbc_wm, &plane_wm, &cursor_wm))
2045 return;
2046
2047 I915_WRITE(WM2_LP_ILK,
2048 WM2_LP_EN |
2049 (SNB_READ_WM2_LATENCY() << WM1_LP_LATENCY_SHIFT) |
2050 (fbc_wm << WM1_LP_FBC_SHIFT) |
2051 (plane_wm << WM1_LP_SR_SHIFT) |
2052 cursor_wm);
2053
Chris Wilsonc43d0182012-12-11 12:01:42 +00002054 /* WM3, note we have to correct the cursor latency */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002055 if (!ironlake_compute_srwm(dev, 3, enabled,
2056 SNB_READ_WM3_LATENCY() * 500,
2057 &sandybridge_display_srwm_info,
2058 &sandybridge_cursor_srwm_info,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002059 &fbc_wm, &plane_wm, &ignore_cursor_wm) ||
2060 !ironlake_compute_srwm(dev, 3, enabled,
2061 2 * SNB_READ_WM3_LATENCY() * 500,
2062 &sandybridge_display_srwm_info,
2063 &sandybridge_cursor_srwm_info,
2064 &ignore_fbc_wm, &ignore_plane_wm, &cursor_wm))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002065 return;
2066
2067 I915_WRITE(WM3_LP_ILK,
2068 WM3_LP_EN |
2069 (SNB_READ_WM3_LATENCY() << WM1_LP_LATENCY_SHIFT) |
2070 (fbc_wm << WM1_LP_FBC_SHIFT) |
2071 (plane_wm << WM1_LP_SR_SHIFT) |
2072 cursor_wm);
2073}
2074
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002075static uint32_t hsw_wm_get_pixel_rate(struct drm_device *dev,
2076 struct drm_crtc *crtc)
2077{
2078 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2079 uint32_t pixel_rate, pfit_size;
2080
2081 if (intel_crtc->config.pixel_target_clock)
2082 pixel_rate = intel_crtc->config.pixel_target_clock;
2083 else
2084 pixel_rate = intel_crtc->config.adjusted_mode.clock;
2085
2086 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
2087 * adjust the pixel_rate here. */
2088
2089 pfit_size = intel_crtc->config.pch_pfit.size;
2090 if (pfit_size) {
2091 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
2092
2093 pipe_w = intel_crtc->config.requested_mode.hdisplay;
2094 pipe_h = intel_crtc->config.requested_mode.vdisplay;
2095 pfit_w = (pfit_size >> 16) & 0xFFFF;
2096 pfit_h = pfit_size & 0xFFFF;
2097 if (pipe_w < pfit_w)
2098 pipe_w = pfit_w;
2099 if (pipe_h < pfit_h)
2100 pipe_h = pfit_h;
2101
2102 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
2103 pfit_w * pfit_h);
2104 }
2105
2106 return pixel_rate;
2107}
2108
2109static uint32_t hsw_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
2110 uint32_t latency)
2111{
2112 uint64_t ret;
2113
2114 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
2115 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
2116
2117 return ret;
2118}
2119
2120static uint32_t hsw_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
2121 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2122 uint32_t latency)
2123{
2124 uint32_t ret;
2125
2126 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
2127 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
2128 ret = DIV_ROUND_UP(ret, 64) + 2;
2129 return ret;
2130}
2131
Paulo Zanonicca32e92013-05-31 11:45:06 -03002132static uint32_t hsw_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
2133 uint8_t bytes_per_pixel)
2134{
2135 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
2136}
2137
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002138struct hsw_pipe_wm_parameters {
2139 bool active;
2140 bool sprite_enabled;
2141 uint8_t pri_bytes_per_pixel;
2142 uint8_t spr_bytes_per_pixel;
2143 uint8_t cur_bytes_per_pixel;
2144 uint32_t pri_horiz_pixels;
2145 uint32_t spr_horiz_pixels;
2146 uint32_t cur_horiz_pixels;
2147 uint32_t pipe_htotal;
2148 uint32_t pixel_rate;
2149};
2150
Paulo Zanonicca32e92013-05-31 11:45:06 -03002151struct hsw_wm_maximums {
2152 uint16_t pri;
2153 uint16_t spr;
2154 uint16_t cur;
2155 uint16_t fbc;
2156};
2157
2158struct hsw_lp_wm_result {
2159 bool enable;
2160 bool fbc_enable;
2161 uint32_t pri_val;
2162 uint32_t spr_val;
2163 uint32_t cur_val;
2164 uint32_t fbc_val;
2165};
2166
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002167struct hsw_wm_values {
2168 uint32_t wm_pipe[3];
2169 uint32_t wm_lp[3];
2170 uint32_t wm_lp_spr[3];
2171 uint32_t wm_linetime[3];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002172 bool enable_fbc_wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002173};
2174
2175enum hsw_data_buf_partitioning {
2176 HSW_DATA_BUF_PART_1_2,
2177 HSW_DATA_BUF_PART_5_6,
2178};
2179
Paulo Zanonicca32e92013-05-31 11:45:06 -03002180/* For both WM_PIPE and WM_LP. */
2181static uint32_t hsw_compute_pri_wm(struct hsw_pipe_wm_parameters *params,
2182 uint32_t mem_value,
2183 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002184{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002185 uint32_t method1, method2;
2186
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002187 /* TODO: for now, assume the primary plane is always enabled. */
2188 if (!params->active)
2189 return 0;
2190
Paulo Zanonicca32e92013-05-31 11:45:06 -03002191 method1 = hsw_wm_method1(params->pixel_rate,
2192 params->pri_bytes_per_pixel,
2193 mem_value);
2194
2195 if (!is_lp)
2196 return method1;
2197
2198 method2 = hsw_wm_method2(params->pixel_rate,
2199 params->pipe_htotal,
2200 params->pri_horiz_pixels,
2201 params->pri_bytes_per_pixel,
2202 mem_value);
2203
2204 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002205}
2206
2207/* For both WM_PIPE and WM_LP. */
2208static uint32_t hsw_compute_spr_wm(struct hsw_pipe_wm_parameters *params,
2209 uint32_t mem_value)
2210{
2211 uint32_t method1, method2;
2212
2213 if (!params->active || !params->sprite_enabled)
2214 return 0;
2215
2216 method1 = hsw_wm_method1(params->pixel_rate,
2217 params->spr_bytes_per_pixel,
2218 mem_value);
2219 method2 = hsw_wm_method2(params->pixel_rate,
2220 params->pipe_htotal,
2221 params->spr_horiz_pixels,
2222 params->spr_bytes_per_pixel,
2223 mem_value);
2224 return min(method1, method2);
2225}
2226
2227/* For both WM_PIPE and WM_LP. */
2228static uint32_t hsw_compute_cur_wm(struct hsw_pipe_wm_parameters *params,
2229 uint32_t mem_value)
2230{
2231 if (!params->active)
2232 return 0;
2233
2234 return hsw_wm_method2(params->pixel_rate,
2235 params->pipe_htotal,
2236 params->cur_horiz_pixels,
2237 params->cur_bytes_per_pixel,
2238 mem_value);
2239}
2240
Paulo Zanonicca32e92013-05-31 11:45:06 -03002241/* Only for WM_LP. */
2242static uint32_t hsw_compute_fbc_wm(struct hsw_pipe_wm_parameters *params,
2243 uint32_t pri_val,
2244 uint32_t mem_value)
2245{
2246 if (!params->active)
2247 return 0;
2248
2249 return hsw_wm_fbc(pri_val,
2250 params->pri_horiz_pixels,
2251 params->pri_bytes_per_pixel);
2252}
2253
2254static bool hsw_compute_lp_wm(uint32_t mem_value, struct hsw_wm_maximums *max,
2255 struct hsw_pipe_wm_parameters *params,
2256 struct hsw_lp_wm_result *result)
2257{
2258 enum pipe pipe;
2259 uint32_t pri_val[3], spr_val[3], cur_val[3], fbc_val[3];
2260
2261 for (pipe = PIPE_A; pipe <= PIPE_C; pipe++) {
2262 struct hsw_pipe_wm_parameters *p = &params[pipe];
2263
2264 pri_val[pipe] = hsw_compute_pri_wm(p, mem_value, true);
2265 spr_val[pipe] = hsw_compute_spr_wm(p, mem_value);
2266 cur_val[pipe] = hsw_compute_cur_wm(p, mem_value);
2267 fbc_val[pipe] = hsw_compute_fbc_wm(p, pri_val[pipe], mem_value);
2268 }
2269
2270 result->pri_val = max3(pri_val[0], pri_val[1], pri_val[2]);
2271 result->spr_val = max3(spr_val[0], spr_val[1], spr_val[2]);
2272 result->cur_val = max3(cur_val[0], cur_val[1], cur_val[2]);
2273 result->fbc_val = max3(fbc_val[0], fbc_val[1], fbc_val[2]);
2274
2275 if (result->fbc_val > max->fbc) {
2276 result->fbc_enable = false;
2277 result->fbc_val = 0;
2278 } else {
2279 result->fbc_enable = true;
2280 }
2281
2282 result->enable = result->pri_val <= max->pri &&
2283 result->spr_val <= max->spr &&
2284 result->cur_val <= max->cur;
2285 return result->enable;
2286}
2287
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002288static uint32_t hsw_compute_wm_pipe(struct drm_i915_private *dev_priv,
2289 uint32_t mem_value, enum pipe pipe,
2290 struct hsw_pipe_wm_parameters *params)
2291{
2292 uint32_t pri_val, cur_val, spr_val;
2293
Paulo Zanonicca32e92013-05-31 11:45:06 -03002294 pri_val = hsw_compute_pri_wm(params, mem_value, false);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002295 spr_val = hsw_compute_spr_wm(params, mem_value);
2296 cur_val = hsw_compute_cur_wm(params, mem_value);
2297
2298 WARN(pri_val > 127,
2299 "Primary WM error, mode not supported for pipe %c\n",
2300 pipe_name(pipe));
2301 WARN(spr_val > 127,
2302 "Sprite WM error, mode not supported for pipe %c\n",
2303 pipe_name(pipe));
2304 WARN(cur_val > 63,
2305 "Cursor WM error, mode not supported for pipe %c\n",
2306 pipe_name(pipe));
2307
2308 return (pri_val << WM0_PIPE_PLANE_SHIFT) |
2309 (spr_val << WM0_PIPE_SPRITE_SHIFT) |
2310 cur_val;
2311}
2312
2313static uint32_t
2314hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002315{
2316 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002317 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002318 struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002319 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002320
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002321 if (!intel_crtc_active(crtc))
2322 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002323
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002324 /* The WM are computed with base on how long it takes to fill a single
2325 * row at the given clock rate, multiplied by 8.
2326 * */
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002327 linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8, mode->clock);
2328 ips_linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8,
2329 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002330
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002331 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2332 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002333}
2334
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002335static void hsw_compute_wm_parameters(struct drm_device *dev,
2336 struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002337 uint32_t *wm,
Paulo Zanoni861f3382013-05-31 10:19:21 -03002338 struct hsw_wm_maximums *lp_max_1_2,
2339 struct hsw_wm_maximums *lp_max_5_6)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002340{
2341 struct drm_i915_private *dev_priv = dev->dev_private;
2342 struct drm_crtc *crtc;
2343 struct drm_plane *plane;
2344 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2345 enum pipe pipe;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002346 int pipes_active = 0, sprites_enabled = 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002347
2348 if ((sskpd >> 56) & 0xFF)
2349 wm[0] = (sskpd >> 56) & 0xFF;
2350 else
2351 wm[0] = sskpd & 0xF;
2352 wm[1] = ((sskpd >> 4) & 0xFF) * 5;
2353 wm[2] = ((sskpd >> 12) & 0xFF) * 5;
2354 wm[3] = ((sskpd >> 20) & 0x1FF) * 5;
2355 wm[4] = ((sskpd >> 32) & 0x1FF) * 5;
2356
2357 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2358 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2359 struct hsw_pipe_wm_parameters *p;
2360
2361 pipe = intel_crtc->pipe;
2362 p = &params[pipe];
2363
2364 p->active = intel_crtc_active(crtc);
2365 if (!p->active)
2366 continue;
2367
Paulo Zanonicca32e92013-05-31 11:45:06 -03002368 pipes_active++;
2369
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002370 p->pipe_htotal = intel_crtc->config.adjusted_mode.htotal;
2371 p->pixel_rate = hsw_wm_get_pixel_rate(dev, crtc);
2372 p->pri_bytes_per_pixel = crtc->fb->bits_per_pixel / 8;
2373 p->cur_bytes_per_pixel = 4;
2374 p->pri_horiz_pixels =
2375 intel_crtc->config.requested_mode.hdisplay;
2376 p->cur_horiz_pixels = 64;
2377 }
2378
2379 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2380 struct intel_plane *intel_plane = to_intel_plane(plane);
2381 struct hsw_pipe_wm_parameters *p;
2382
2383 pipe = intel_plane->pipe;
2384 p = &params[pipe];
2385
2386 p->sprite_enabled = intel_plane->wm.enable;
2387 p->spr_bytes_per_pixel = intel_plane->wm.bytes_per_pixel;
2388 p->spr_horiz_pixels = intel_plane->wm.horiz_pixels;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002389
2390 if (p->sprite_enabled)
2391 sprites_enabled++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002392 }
Paulo Zanonicca32e92013-05-31 11:45:06 -03002393
2394 if (pipes_active > 1) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002395 lp_max_1_2->pri = lp_max_5_6->pri = sprites_enabled ? 128 : 256;
2396 lp_max_1_2->spr = lp_max_5_6->spr = 128;
2397 lp_max_1_2->cur = lp_max_5_6->cur = 64;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002398 } else {
2399 lp_max_1_2->pri = sprites_enabled ? 384 : 768;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002400 lp_max_5_6->pri = sprites_enabled ? 128 : 768;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002401 lp_max_1_2->spr = 384;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002402 lp_max_5_6->spr = 640;
2403 lp_max_1_2->cur = lp_max_5_6->cur = 255;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002404 }
Paulo Zanoni861f3382013-05-31 10:19:21 -03002405 lp_max_1_2->fbc = lp_max_5_6->fbc = 15;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002406}
2407
2408static void hsw_compute_wm_results(struct drm_device *dev,
2409 struct hsw_pipe_wm_parameters *params,
2410 uint32_t *wm,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002411 struct hsw_wm_maximums *lp_maximums,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002412 struct hsw_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002413{
2414 struct drm_i915_private *dev_priv = dev->dev_private;
2415 struct drm_crtc *crtc;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002416 struct hsw_lp_wm_result lp_results[4] = {};
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002417 enum pipe pipe;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002418 int level, max_level, wm_lp;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002419
Paulo Zanonicca32e92013-05-31 11:45:06 -03002420 for (level = 1; level <= 4; level++)
2421 if (!hsw_compute_lp_wm(wm[level], lp_maximums, params,
2422 &lp_results[level - 1]))
2423 break;
2424 max_level = level - 1;
2425
2426 /* The spec says it is preferred to disable FBC WMs instead of disabling
2427 * a WM level. */
2428 results->enable_fbc_wm = true;
2429 for (level = 1; level <= max_level; level++) {
2430 if (!lp_results[level - 1].fbc_enable) {
2431 results->enable_fbc_wm = false;
2432 break;
2433 }
2434 }
2435
2436 memset(results, 0, sizeof(*results));
2437 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2438 const struct hsw_lp_wm_result *r;
2439
2440 level = (max_level == 4 && wm_lp > 1) ? wm_lp + 1 : wm_lp;
2441 if (level > max_level)
2442 break;
2443
2444 r = &lp_results[level - 1];
2445 results->wm_lp[wm_lp - 1] = HSW_WM_LP_VAL(level * 2,
2446 r->fbc_val,
2447 r->pri_val,
2448 r->cur_val);
2449 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
2450 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002451
2452 for_each_pipe(pipe)
2453 results->wm_pipe[pipe] = hsw_compute_wm_pipe(dev_priv, wm[0],
2454 pipe,
2455 &params[pipe]);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002456
2457 for_each_pipe(pipe) {
2458 crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002459 results->wm_linetime[pipe] = hsw_compute_linetime_wm(dev, crtc);
2460 }
2461}
2462
Paulo Zanoni861f3382013-05-31 10:19:21 -03002463/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2464 * case both are at the same level. Prefer r1 in case they're the same. */
2465struct hsw_wm_values *hsw_find_best_result(struct hsw_wm_values *r1,
2466 struct hsw_wm_values *r2)
2467{
2468 int i, val_r1 = 0, val_r2 = 0;
2469
2470 for (i = 0; i < 3; i++) {
2471 if (r1->wm_lp[i] & WM3_LP_EN)
2472 val_r1 = r1->wm_lp[i] & WM1_LP_LATENCY_MASK;
2473 if (r2->wm_lp[i] & WM3_LP_EN)
2474 val_r2 = r2->wm_lp[i] & WM1_LP_LATENCY_MASK;
2475 }
2476
2477 if (val_r1 == val_r2) {
2478 if (r2->enable_fbc_wm && !r1->enable_fbc_wm)
2479 return r2;
2480 else
2481 return r1;
2482 } else if (val_r1 > val_r2) {
2483 return r1;
2484 } else {
2485 return r2;
2486 }
2487}
2488
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002489/*
2490 * The spec says we shouldn't write when we don't need, because every write
2491 * causes WMs to be re-evaluated, expending some power.
2492 */
2493static void hsw_write_wm_values(struct drm_i915_private *dev_priv,
2494 struct hsw_wm_values *results,
2495 enum hsw_data_buf_partitioning partitioning)
2496{
2497 struct hsw_wm_values previous;
2498 uint32_t val;
2499 enum hsw_data_buf_partitioning prev_partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002500 bool prev_enable_fbc_wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002501
2502 previous.wm_pipe[0] = I915_READ(WM0_PIPEA_ILK);
2503 previous.wm_pipe[1] = I915_READ(WM0_PIPEB_ILK);
2504 previous.wm_pipe[2] = I915_READ(WM0_PIPEC_IVB);
2505 previous.wm_lp[0] = I915_READ(WM1_LP_ILK);
2506 previous.wm_lp[1] = I915_READ(WM2_LP_ILK);
2507 previous.wm_lp[2] = I915_READ(WM3_LP_ILK);
2508 previous.wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
2509 previous.wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
2510 previous.wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
2511 previous.wm_linetime[0] = I915_READ(PIPE_WM_LINETIME(PIPE_A));
2512 previous.wm_linetime[1] = I915_READ(PIPE_WM_LINETIME(PIPE_B));
2513 previous.wm_linetime[2] = I915_READ(PIPE_WM_LINETIME(PIPE_C));
2514
2515 prev_partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
2516 HSW_DATA_BUF_PART_5_6 : HSW_DATA_BUF_PART_1_2;
2517
Paulo Zanonicca32e92013-05-31 11:45:06 -03002518 prev_enable_fbc_wm = !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
2519
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002520 if (memcmp(results->wm_pipe, previous.wm_pipe,
2521 sizeof(results->wm_pipe)) == 0 &&
2522 memcmp(results->wm_lp, previous.wm_lp,
2523 sizeof(results->wm_lp)) == 0 &&
2524 memcmp(results->wm_lp_spr, previous.wm_lp_spr,
2525 sizeof(results->wm_lp_spr)) == 0 &&
2526 memcmp(results->wm_linetime, previous.wm_linetime,
2527 sizeof(results->wm_linetime)) == 0 &&
Paulo Zanonicca32e92013-05-31 11:45:06 -03002528 partitioning == prev_partitioning &&
2529 results->enable_fbc_wm == prev_enable_fbc_wm)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002530 return;
2531
2532 if (previous.wm_lp[2] != 0)
2533 I915_WRITE(WM3_LP_ILK, 0);
2534 if (previous.wm_lp[1] != 0)
2535 I915_WRITE(WM2_LP_ILK, 0);
2536 if (previous.wm_lp[0] != 0)
2537 I915_WRITE(WM1_LP_ILK, 0);
2538
2539 if (previous.wm_pipe[0] != results->wm_pipe[0])
2540 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
2541 if (previous.wm_pipe[1] != results->wm_pipe[1])
2542 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
2543 if (previous.wm_pipe[2] != results->wm_pipe[2])
2544 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2545
2546 if (previous.wm_linetime[0] != results->wm_linetime[0])
2547 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
2548 if (previous.wm_linetime[1] != results->wm_linetime[1])
2549 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
2550 if (previous.wm_linetime[2] != results->wm_linetime[2])
2551 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2552
2553 if (prev_partitioning != partitioning) {
2554 val = I915_READ(WM_MISC);
2555 if (partitioning == HSW_DATA_BUF_PART_1_2)
2556 val &= ~WM_MISC_DATA_PARTITION_5_6;
2557 else
2558 val |= WM_MISC_DATA_PARTITION_5_6;
2559 I915_WRITE(WM_MISC, val);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002560 }
2561
Paulo Zanonicca32e92013-05-31 11:45:06 -03002562 if (prev_enable_fbc_wm != results->enable_fbc_wm) {
2563 val = I915_READ(DISP_ARB_CTL);
2564 if (results->enable_fbc_wm)
2565 val &= ~DISP_FBC_WM_DIS;
2566 else
2567 val |= DISP_FBC_WM_DIS;
2568 I915_WRITE(DISP_ARB_CTL, val);
2569 }
2570
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002571 if (previous.wm_lp_spr[0] != results->wm_lp_spr[0])
2572 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2573 if (previous.wm_lp_spr[1] != results->wm_lp_spr[1])
2574 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2575 if (previous.wm_lp_spr[2] != results->wm_lp_spr[2])
2576 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2577
2578 if (results->wm_lp[0] != 0)
2579 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
2580 if (results->wm_lp[1] != 0)
2581 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
2582 if (results->wm_lp[2] != 0)
2583 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
2584}
2585
2586static void haswell_update_wm(struct drm_device *dev)
2587{
2588 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002589 struct hsw_wm_maximums lp_max_1_2, lp_max_5_6;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002590 struct hsw_pipe_wm_parameters params[3];
Paulo Zanoni861f3382013-05-31 10:19:21 -03002591 struct hsw_wm_values results_1_2, results_5_6, *best_results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002592 uint32_t wm[5];
Paulo Zanoni861f3382013-05-31 10:19:21 -03002593 enum hsw_data_buf_partitioning partitioning;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002594
Paulo Zanoni861f3382013-05-31 10:19:21 -03002595 hsw_compute_wm_parameters(dev, params, wm, &lp_max_1_2, &lp_max_5_6);
2596
2597 hsw_compute_wm_results(dev, params, wm, &lp_max_1_2, &results_1_2);
2598 if (lp_max_1_2.pri != lp_max_5_6.pri) {
2599 hsw_compute_wm_results(dev, params, wm, &lp_max_5_6,
2600 &results_5_6);
2601 best_results = hsw_find_best_result(&results_1_2, &results_5_6);
2602 } else {
2603 best_results = &results_1_2;
2604 }
2605
2606 partitioning = (best_results == &results_1_2) ?
2607 HSW_DATA_BUF_PART_1_2 : HSW_DATA_BUF_PART_5_6;
2608
2609 hsw_write_wm_values(dev_priv, best_results, partitioning);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002610}
2611
Paulo Zanoni526682e2013-05-24 11:59:18 -03002612static void haswell_update_sprite_wm(struct drm_device *dev, int pipe,
2613 uint32_t sprite_width, int pixel_size,
2614 bool enable)
2615{
2616 struct drm_plane *plane;
2617
2618 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2619 struct intel_plane *intel_plane = to_intel_plane(plane);
2620
2621 if (intel_plane->pipe == pipe) {
2622 intel_plane->wm.enable = enable;
2623 intel_plane->wm.horiz_pixels = sprite_width + 1;
2624 intel_plane->wm.bytes_per_pixel = pixel_size;
2625 break;
2626 }
2627 }
2628
2629 haswell_update_wm(dev);
2630}
2631
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002632static bool
2633sandybridge_compute_sprite_wm(struct drm_device *dev, int plane,
2634 uint32_t sprite_width, int pixel_size,
2635 const struct intel_watermark_params *display,
2636 int display_latency_ns, int *sprite_wm)
2637{
2638 struct drm_crtc *crtc;
2639 int clock;
2640 int entries, tlb_miss;
2641
2642 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00002643 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002644 *sprite_wm = display->guard_size;
2645 return false;
2646 }
2647
2648 clock = crtc->mode.clock;
2649
2650 /* Use the small buffer method to calculate the sprite watermark */
2651 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
2652 tlb_miss = display->fifo_size*display->cacheline_size -
2653 sprite_width * 8;
2654 if (tlb_miss > 0)
2655 entries += tlb_miss;
2656 entries = DIV_ROUND_UP(entries, display->cacheline_size);
2657 *sprite_wm = entries + display->guard_size;
2658 if (*sprite_wm > (int)display->max_wm)
2659 *sprite_wm = display->max_wm;
2660
2661 return true;
2662}
2663
2664static bool
2665sandybridge_compute_sprite_srwm(struct drm_device *dev, int plane,
2666 uint32_t sprite_width, int pixel_size,
2667 const struct intel_watermark_params *display,
2668 int latency_ns, int *sprite_wm)
2669{
2670 struct drm_crtc *crtc;
2671 unsigned long line_time_us;
2672 int clock;
2673 int line_count, line_size;
2674 int small, large;
2675 int entries;
2676
2677 if (!latency_ns) {
2678 *sprite_wm = 0;
2679 return false;
2680 }
2681
2682 crtc = intel_get_crtc_for_plane(dev, plane);
2683 clock = crtc->mode.clock;
2684 if (!clock) {
2685 *sprite_wm = 0;
2686 return false;
2687 }
2688
2689 line_time_us = (sprite_width * 1000) / clock;
2690 if (!line_time_us) {
2691 *sprite_wm = 0;
2692 return false;
2693 }
2694
2695 line_count = (latency_ns / line_time_us + 1000) / 1000;
2696 line_size = sprite_width * pixel_size;
2697
2698 /* Use the minimum of the small and large buffer method for primary */
2699 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
2700 large = line_count * line_size;
2701
2702 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
2703 *sprite_wm = entries + display->guard_size;
2704
2705 return *sprite_wm > 0x3ff ? false : true;
2706}
2707
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03002708static void sandybridge_update_sprite_wm(struct drm_device *dev, int pipe,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002709 uint32_t sprite_width, int pixel_size,
2710 bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002711{
2712 struct drm_i915_private *dev_priv = dev->dev_private;
2713 int latency = SNB_READ_WM0_LATENCY() * 100; /* In unit 0.1us */
2714 u32 val;
2715 int sprite_wm, reg;
2716 int ret;
2717
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002718 if (!enable)
2719 return;
2720
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002721 switch (pipe) {
2722 case 0:
2723 reg = WM0_PIPEA_ILK;
2724 break;
2725 case 1:
2726 reg = WM0_PIPEB_ILK;
2727 break;
2728 case 2:
2729 reg = WM0_PIPEC_IVB;
2730 break;
2731 default:
2732 return; /* bad pipe */
2733 }
2734
2735 ret = sandybridge_compute_sprite_wm(dev, pipe, sprite_width, pixel_size,
2736 &sandybridge_display_wm_info,
2737 latency, &sprite_wm);
2738 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002739 DRM_DEBUG_KMS("failed to compute sprite wm for pipe %c\n",
2740 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002741 return;
2742 }
2743
2744 val = I915_READ(reg);
2745 val &= ~WM0_PIPE_SPRITE_MASK;
2746 I915_WRITE(reg, val | (sprite_wm << WM0_PIPE_SPRITE_SHIFT));
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002747 DRM_DEBUG_KMS("sprite watermarks For pipe %c - %d\n", pipe_name(pipe), sprite_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002748
2749
2750 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
2751 pixel_size,
2752 &sandybridge_display_srwm_info,
2753 SNB_READ_WM1_LATENCY() * 500,
2754 &sprite_wm);
2755 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002756 DRM_DEBUG_KMS("failed to compute sprite lp1 wm on pipe %c\n",
2757 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002758 return;
2759 }
2760 I915_WRITE(WM1S_LP_ILK, sprite_wm);
2761
2762 /* Only IVB has two more LP watermarks for sprite */
2763 if (!IS_IVYBRIDGE(dev))
2764 return;
2765
2766 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
2767 pixel_size,
2768 &sandybridge_display_srwm_info,
2769 SNB_READ_WM2_LATENCY() * 500,
2770 &sprite_wm);
2771 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002772 DRM_DEBUG_KMS("failed to compute sprite lp2 wm on pipe %c\n",
2773 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002774 return;
2775 }
2776 I915_WRITE(WM2S_LP_IVB, sprite_wm);
2777
2778 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
2779 pixel_size,
2780 &sandybridge_display_srwm_info,
2781 SNB_READ_WM3_LATENCY() * 500,
2782 &sprite_wm);
2783 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002784 DRM_DEBUG_KMS("failed to compute sprite lp3 wm on pipe %c\n",
2785 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002786 return;
2787 }
2788 I915_WRITE(WM3S_LP_IVB, sprite_wm);
2789}
2790
2791/**
2792 * intel_update_watermarks - update FIFO watermark values based on current modes
2793 *
2794 * Calculate watermark values for the various WM regs based on current mode
2795 * and plane configuration.
2796 *
2797 * There are several cases to deal with here:
2798 * - normal (i.e. non-self-refresh)
2799 * - self-refresh (SR) mode
2800 * - lines are large relative to FIFO size (buffer can hold up to 2)
2801 * - lines are small relative to FIFO size (buffer can hold more than 2
2802 * lines), so need to account for TLB latency
2803 *
2804 * The normal calculation is:
2805 * watermark = dotclock * bytes per pixel * latency
2806 * where latency is platform & configuration dependent (we assume pessimal
2807 * values here).
2808 *
2809 * The SR calculation is:
2810 * watermark = (trunc(latency/line time)+1) * surface width *
2811 * bytes per pixel
2812 * where
2813 * line time = htotal / dotclock
2814 * surface width = hdisplay for normal plane and 64 for cursor
2815 * and latency is assumed to be high, as above.
2816 *
2817 * The final value programmed to the register should always be rounded up,
2818 * and include an extra 2 entries to account for clock crossings.
2819 *
2820 * We don't use the sprite, so we can ignore that. And on Crestline we have
2821 * to set the non-SR watermarks to 8.
2822 */
2823void intel_update_watermarks(struct drm_device *dev)
2824{
2825 struct drm_i915_private *dev_priv = dev->dev_private;
2826
2827 if (dev_priv->display.update_wm)
2828 dev_priv->display.update_wm(dev);
2829}
2830
2831void intel_update_sprite_watermarks(struct drm_device *dev, int pipe,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002832 uint32_t sprite_width, int pixel_size,
2833 bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002834{
2835 struct drm_i915_private *dev_priv = dev->dev_private;
2836
2837 if (dev_priv->display.update_sprite_wm)
2838 dev_priv->display.update_sprite_wm(dev, pipe, sprite_width,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03002839 pixel_size, enable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002840}
2841
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002842static struct drm_i915_gem_object *
2843intel_alloc_context_page(struct drm_device *dev)
2844{
2845 struct drm_i915_gem_object *ctx;
2846 int ret;
2847
2848 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2849
2850 ctx = i915_gem_alloc_object(dev, 4096);
2851 if (!ctx) {
2852 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
2853 return NULL;
2854 }
2855
Chris Wilson86a1ee22012-08-11 15:41:04 +01002856 ret = i915_gem_object_pin(ctx, 4096, true, false);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002857 if (ret) {
2858 DRM_ERROR("failed to pin power context: %d\n", ret);
2859 goto err_unref;
2860 }
2861
2862 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
2863 if (ret) {
2864 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
2865 goto err_unpin;
2866 }
2867
2868 return ctx;
2869
2870err_unpin:
2871 i915_gem_object_unpin(ctx);
2872err_unref:
2873 drm_gem_object_unreference(&ctx->base);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002874 return NULL;
2875}
2876
Daniel Vetter92703882012-08-09 16:46:01 +02002877/**
2878 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02002879 */
2880DEFINE_SPINLOCK(mchdev_lock);
2881
2882/* Global for IPS driver to get at the current i915 device. Protected by
2883 * mchdev_lock. */
2884static struct drm_i915_private *i915_mch_dev;
2885
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002886bool ironlake_set_drps(struct drm_device *dev, u8 val)
2887{
2888 struct drm_i915_private *dev_priv = dev->dev_private;
2889 u16 rgvswctl;
2890
Daniel Vetter92703882012-08-09 16:46:01 +02002891 assert_spin_locked(&mchdev_lock);
2892
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002893 rgvswctl = I915_READ16(MEMSWCTL);
2894 if (rgvswctl & MEMCTL_CMD_STS) {
2895 DRM_DEBUG("gpu busy, RCS change rejected\n");
2896 return false; /* still busy with another command */
2897 }
2898
2899 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
2900 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
2901 I915_WRITE16(MEMSWCTL, rgvswctl);
2902 POSTING_READ16(MEMSWCTL);
2903
2904 rgvswctl |= MEMCTL_CMD_STS;
2905 I915_WRITE16(MEMSWCTL, rgvswctl);
2906
2907 return true;
2908}
2909
Daniel Vetter8090c6b2012-06-24 16:42:32 +02002910static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002911{
2912 struct drm_i915_private *dev_priv = dev->dev_private;
2913 u32 rgvmodectl = I915_READ(MEMMODECTL);
2914 u8 fmax, fmin, fstart, vstart;
2915
Daniel Vetter92703882012-08-09 16:46:01 +02002916 spin_lock_irq(&mchdev_lock);
2917
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002918 /* Enable temp reporting */
2919 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
2920 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
2921
2922 /* 100ms RC evaluation intervals */
2923 I915_WRITE(RCUPEI, 100000);
2924 I915_WRITE(RCDNEI, 100000);
2925
2926 /* Set max/min thresholds to 90ms and 80ms respectively */
2927 I915_WRITE(RCBMAXAVG, 90000);
2928 I915_WRITE(RCBMINAVG, 80000);
2929
2930 I915_WRITE(MEMIHYST, 1);
2931
2932 /* Set up min, max, and cur for interrupt handling */
2933 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
2934 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
2935 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
2936 MEMMODE_FSTART_SHIFT;
2937
2938 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
2939 PXVFREQ_PX_SHIFT;
2940
Daniel Vetter20e4d402012-08-08 23:35:39 +02002941 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
2942 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002943
Daniel Vetter20e4d402012-08-08 23:35:39 +02002944 dev_priv->ips.max_delay = fstart;
2945 dev_priv->ips.min_delay = fmin;
2946 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002947
2948 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
2949 fmax, fmin, fstart);
2950
2951 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
2952
2953 /*
2954 * Interrupts will be enabled in ironlake_irq_postinstall
2955 */
2956
2957 I915_WRITE(VIDSTART, vstart);
2958 POSTING_READ(VIDSTART);
2959
2960 rgvmodectl |= MEMMODE_SWMODE_EN;
2961 I915_WRITE(MEMMODECTL, rgvmodectl);
2962
Daniel Vetter92703882012-08-09 16:46:01 +02002963 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002964 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02002965 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002966
2967 ironlake_set_drps(dev, fstart);
2968
Daniel Vetter20e4d402012-08-08 23:35:39 +02002969 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002970 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02002971 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
2972 dev_priv->ips.last_count2 = I915_READ(0x112f4);
2973 getrawmonotonic(&dev_priv->ips.last_time2);
Daniel Vetter92703882012-08-09 16:46:01 +02002974
2975 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002976}
2977
Daniel Vetter8090c6b2012-06-24 16:42:32 +02002978static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002979{
2980 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02002981 u16 rgvswctl;
2982
2983 spin_lock_irq(&mchdev_lock);
2984
2985 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002986
2987 /* Ack interrupts, disable EFC interrupt */
2988 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
2989 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
2990 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
2991 I915_WRITE(DEIIR, DE_PCU_EVENT);
2992 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
2993
2994 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02002995 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02002996 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03002997 rgvswctl |= MEMCTL_CMD_STS;
2998 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02002999 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003000
Daniel Vetter92703882012-08-09 16:46:01 +02003001 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003002}
3003
Daniel Vetteracbe9472012-07-26 11:50:05 +02003004/* There's a funny hw issue where the hw returns all 0 when reading from
3005 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3006 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3007 * all limits and the gpu stuck at whatever frequency it is at atm).
3008 */
Daniel Vetter65bccb52012-08-08 17:42:52 +02003009static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 *val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003010{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003011 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003012
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003013 limits = 0;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003014
3015 if (*val >= dev_priv->rps.max_delay)
3016 *val = dev_priv->rps.max_delay;
3017 limits |= dev_priv->rps.max_delay << 24;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003018
Daniel Vetter20b46e52012-07-26 11:16:14 +02003019 /* Only set the down limit when we've reached the lowest level to avoid
3020 * getting more interrupts, otherwise leave this clear. This prevents a
3021 * race in the hw when coming out of rc6: There's a tiny window where
3022 * the hw runs at the minimal clock before selecting the desired
3023 * frequency, if the down threshold expires in that window we will not
3024 * receive a down interrupt. */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003025 if (*val <= dev_priv->rps.min_delay) {
3026 *val = dev_priv->rps.min_delay;
3027 limits |= dev_priv->rps.min_delay << 16;
Daniel Vetter20b46e52012-07-26 11:16:14 +02003028 }
3029
3030 return limits;
3031}
3032
3033void gen6_set_rps(struct drm_device *dev, u8 val)
3034{
3035 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter65bccb52012-08-08 17:42:52 +02003036 u32 limits = gen6_rps_limits(dev_priv, &val);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003037
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003038 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky79249632012-09-07 19:43:42 -07003039 WARN_ON(val > dev_priv->rps.max_delay);
3040 WARN_ON(val < dev_priv->rps.min_delay);
Daniel Vetter004777c2012-08-09 15:07:01 +02003041
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003042 if (val == dev_priv->rps.cur_delay)
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003043 return;
3044
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003045 if (IS_HASWELL(dev))
3046 I915_WRITE(GEN6_RPNSWREQ,
3047 HSW_FREQUENCY(val));
3048 else
3049 I915_WRITE(GEN6_RPNSWREQ,
3050 GEN6_FREQUENCY(val) |
3051 GEN6_OFFSET(0) |
3052 GEN6_AGGRESSIVE_TURBO);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003053
3054 /* Make sure we continue to get interrupts
3055 * until we hit the minimum or maximum frequencies.
3056 */
3057 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
3058
Ben Widawskyd5570a72012-09-07 19:43:41 -07003059 POSTING_READ(GEN6_RPNSWREQ);
3060
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003061 dev_priv->rps.cur_delay = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02003062
3063 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003064}
3065
Jesse Barnes0a073b82013-04-17 15:54:58 -07003066void valleyview_set_rps(struct drm_device *dev, u8 val)
3067{
3068 struct drm_i915_private *dev_priv = dev->dev_private;
3069 unsigned long timeout = jiffies + msecs_to_jiffies(10);
3070 u32 limits = gen6_rps_limits(dev_priv, &val);
3071 u32 pval;
3072
3073 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3074 WARN_ON(val > dev_priv->rps.max_delay);
3075 WARN_ON(val < dev_priv->rps.min_delay);
3076
3077 DRM_DEBUG_DRIVER("gpu freq request from %d to %d\n",
3078 vlv_gpu_freq(dev_priv->mem_freq,
3079 dev_priv->rps.cur_delay),
3080 vlv_gpu_freq(dev_priv->mem_freq, val));
3081
3082 if (val == dev_priv->rps.cur_delay)
3083 return;
3084
Jani Nikulaae992582013-05-22 15:36:19 +03003085 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003086
3087 do {
Jani Nikula64936252013-05-22 15:36:20 +03003088 pval = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003089 if (time_after(jiffies, timeout)) {
3090 DRM_DEBUG_DRIVER("timed out waiting for Punit\n");
3091 break;
3092 }
3093 udelay(10);
3094 } while (pval & 1);
3095
Jani Nikula64936252013-05-22 15:36:20 +03003096 pval = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003097 if ((pval >> 8) != val)
3098 DRM_DEBUG_DRIVER("punit overrode freq: %d requested, but got %d\n",
3099 val, pval >> 8);
3100
3101 /* Make sure we continue to get interrupts
3102 * until we hit the minimum or maximum frequencies.
3103 */
3104 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
3105
3106 dev_priv->rps.cur_delay = pval >> 8;
3107
3108 trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv->mem_freq, val));
3109}
3110
3111
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003112static void gen6_disable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003113{
3114 struct drm_i915_private *dev_priv = dev->dev_private;
3115
Eugeni Dodonov88509482012-07-02 11:51:08 -03003116 I915_WRITE(GEN6_RC_CONTROL, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003117 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
3118 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
3119 I915_WRITE(GEN6_PMIER, 0);
3120 /* Complete PM interrupt masking here doesn't race with the rps work
3121 * item again unmasking PM interrupts because that is using a different
3122 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3123 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3124
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003125 spin_lock_irq(&dev_priv->rps.lock);
3126 dev_priv->rps.pm_iir = 0;
3127 spin_unlock_irq(&dev_priv->rps.lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003128
3129 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
3130}
3131
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003132static void valleyview_disable_rps(struct drm_device *dev)
3133{
3134 struct drm_i915_private *dev_priv = dev->dev_private;
3135
3136 I915_WRITE(GEN6_RC_CONTROL, 0);
3137 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
3138 I915_WRITE(GEN6_PMIER, 0);
3139 /* Complete PM interrupt masking here doesn't race with the rps work
3140 * item again unmasking PM interrupts because that is using a different
3141 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3142 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3143
3144 spin_lock_irq(&dev_priv->rps.lock);
3145 dev_priv->rps.pm_iir = 0;
3146 spin_unlock_irq(&dev_priv->rps.lock);
3147
3148 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003149
3150 if (dev_priv->vlv_pctx) {
3151 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
3152 dev_priv->vlv_pctx = NULL;
3153 }
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003154}
3155
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003156int intel_enable_rc6(const struct drm_device *dev)
3157{
Daniel Vetter456470e2012-08-08 23:35:40 +02003158 /* Respect the kernel parameter if it is set */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003159 if (i915_enable_rc6 >= 0)
3160 return i915_enable_rc6;
3161
Chris Wilson6567d742012-11-10 10:00:06 +00003162 /* Disable RC6 on Ironlake */
3163 if (INTEL_INFO(dev)->gen == 5)
3164 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003165
Daniel Vetter456470e2012-08-08 23:35:40 +02003166 if (IS_HASWELL(dev)) {
3167 DRM_DEBUG_DRIVER("Haswell: only RC6 available\n");
3168 return INTEL_RC6_ENABLE;
3169 }
3170
3171 /* snb/ivb have more than one rc6 state. */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003172 if (INTEL_INFO(dev)->gen == 6) {
3173 DRM_DEBUG_DRIVER("Sandybridge: deep RC6 disabled\n");
3174 return INTEL_RC6_ENABLE;
3175 }
Daniel Vetter456470e2012-08-08 23:35:40 +02003176
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003177 DRM_DEBUG_DRIVER("RC6 and deep RC6 enabled\n");
3178 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
3179}
3180
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003181static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003182{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003183 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003184 struct intel_ring_buffer *ring;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003185 u32 rp_state_cap;
3186 u32 gt_perf_status;
Ben Widawsky31643d52012-09-26 10:34:01 -07003187 u32 rc6vids, pcu_mbox, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003188 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003189 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07003190 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003191
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003192 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003193
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003194 /* Here begins a magic sequence of register writes to enable
3195 * auto-downclocking.
3196 *
3197 * Perhaps there might be some value in exposing these to
3198 * userspace...
3199 */
3200 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003201
3202 /* Clear the DBG now so we don't confuse earlier errors */
3203 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3204 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3205 I915_WRITE(GTFIFODBG, gtfifodbg);
3206 }
3207
3208 gen6_gt_force_wake_get(dev_priv);
3209
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003210 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3211 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
3212
Ben Widawsky31c77382013-04-05 14:29:22 -07003213 /* In units of 50MHz */
3214 dev_priv->rps.hw_max = dev_priv->rps.max_delay = rp_state_cap & 0xff;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003215 dev_priv->rps.min_delay = (rp_state_cap & 0xff0000) >> 16;
3216 dev_priv->rps.cur_delay = 0;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003217
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003218 /* disable the counters and set deterministic thresholds */
3219 I915_WRITE(GEN6_RC_CONTROL, 0);
3220
3221 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
3222 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
3223 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
3224 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3225 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3226
Chris Wilsonb4519512012-05-11 14:29:30 +01003227 for_each_ring(ring, dev_priv, i)
3228 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003229
3230 I915_WRITE(GEN6_RC_SLEEP, 0);
3231 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
3232 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08003233 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003234 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
3235
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003236 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003237 rc6_mode = intel_enable_rc6(dev_priv->dev);
3238 if (rc6_mode & INTEL_RC6_ENABLE)
3239 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
3240
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003241 /* We don't use those on Haswell */
3242 if (!IS_HASWELL(dev)) {
3243 if (rc6_mode & INTEL_RC6p_ENABLE)
3244 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003245
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003246 if (rc6_mode & INTEL_RC6pp_ENABLE)
3247 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
3248 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003249
3250 DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003251 (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3252 (rc6_mask & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3253 (rc6_mask & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003254
3255 I915_WRITE(GEN6_RC_CONTROL,
3256 rc6_mask |
3257 GEN6_RC_CTL_EI_MODE(1) |
3258 GEN6_RC_CTL_HW_ENABLE);
3259
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003260 if (IS_HASWELL(dev)) {
3261 I915_WRITE(GEN6_RPNSWREQ,
3262 HSW_FREQUENCY(10));
3263 I915_WRITE(GEN6_RC_VIDEO_FREQ,
3264 HSW_FREQUENCY(12));
3265 } else {
3266 I915_WRITE(GEN6_RPNSWREQ,
3267 GEN6_FREQUENCY(10) |
3268 GEN6_OFFSET(0) |
3269 GEN6_AGGRESSIVE_TURBO);
3270 I915_WRITE(GEN6_RC_VIDEO_FREQ,
3271 GEN6_FREQUENCY(12));
3272 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003273
3274 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
3275 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003276 dev_priv->rps.max_delay << 24 |
3277 dev_priv->rps.min_delay << 16);
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003278
Daniel Vetter1ee9ae32012-08-15 10:41:45 +02003279 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
3280 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
3281 I915_WRITE(GEN6_RP_UP_EI, 66000);
3282 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003283
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003284 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3285 I915_WRITE(GEN6_RP_CONTROL,
3286 GEN6_RP_MEDIA_TURBO |
Jesse Barnes89ba8292012-05-22 09:30:33 -07003287 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003288 GEN6_RP_MEDIA_IS_GFX |
3289 GEN6_RP_ENABLE |
3290 GEN6_RP_UP_BUSY_AVG |
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003291 (IS_HASWELL(dev) ? GEN7_RP_DOWN_IDLE_AVG : GEN6_RP_DOWN_IDLE_CONT));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003292
Ben Widawsky42c05262012-09-26 10:34:00 -07003293 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawsky988b36e2013-04-23 17:33:02 -07003294 if (!ret) {
Ben Widawsky42c05262012-09-26 10:34:00 -07003295 pcu_mbox = 0;
3296 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003297 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
Ben Widawsky10e08492013-04-05 14:29:23 -07003298 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003299 (dev_priv->rps.max_delay & 0xff) * 50,
3300 (pcu_mbox & 0xff) * 50);
Ben Widawsky31c77382013-04-05 14:29:22 -07003301 dev_priv->rps.hw_max = pcu_mbox & 0xff;
Ben Widawsky42c05262012-09-26 10:34:00 -07003302 }
3303 } else {
3304 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003305 }
3306
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003307 gen6_set_rps(dev_priv->dev, (gt_perf_status & 0xff00) >> 8);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003308
3309 /* requires MSI enabled */
Chris Wilsonff928262012-07-05 15:02:17 +01003310 I915_WRITE(GEN6_PMIER, GEN6_PM_DEFERRED_EVENTS);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003311 spin_lock_irq(&dev_priv->rps.lock);
3312 WARN_ON(dev_priv->rps.pm_iir != 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003313 I915_WRITE(GEN6_PMIMR, 0);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003314 spin_unlock_irq(&dev_priv->rps.lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003315 /* enable all PM interrupts */
3316 I915_WRITE(GEN6_PMINTRMSK, 0);
3317
Ben Widawsky31643d52012-09-26 10:34:01 -07003318 rc6vids = 0;
3319 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
3320 if (IS_GEN6(dev) && ret) {
3321 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
3322 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
3323 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
3324 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
3325 rc6vids &= 0xffff00;
3326 rc6vids |= GEN6_ENCODE_RC6_VID(450);
3327 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
3328 if (ret)
3329 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
3330 }
3331
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003332 gen6_gt_force_wake_put(dev_priv);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003333}
3334
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003335static void gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003336{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003337 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003338 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003339 unsigned int gpu_freq;
3340 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003341 int scaling_factor = 180;
3342
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003343 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003344
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003345 max_ia_freq = cpufreq_quick_get_max(0);
3346 /*
3347 * Default to measured freq if none found, PCU will ensure we don't go
3348 * over
3349 */
3350 if (!max_ia_freq)
3351 max_ia_freq = tsc_khz;
3352
3353 /* Convert from kHz to MHz */
3354 max_ia_freq /= 1000;
3355
Chris Wilson3ebecd02013-04-12 19:10:13 +01003356 min_ring_freq = I915_READ(MCHBAR_MIRROR_BASE_SNB + DCLK);
3357 /* convert DDR frequency from units of 133.3MHz to bandwidth */
3358 min_ring_freq = (2 * 4 * min_ring_freq + 2) / 3;
3359
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003360 /*
3361 * For each potential GPU frequency, load a ring frequency we'd like
3362 * to use for memory access. We do this by specifying the IA frequency
3363 * the PCU should use as a reference to determine the ring frequency.
3364 */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003365 for (gpu_freq = dev_priv->rps.max_delay; gpu_freq >= dev_priv->rps.min_delay;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003366 gpu_freq--) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003367 int diff = dev_priv->rps.max_delay - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003368 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003369
Chris Wilson3ebecd02013-04-12 19:10:13 +01003370 if (IS_HASWELL(dev)) {
3371 ring_freq = (gpu_freq * 5 + 3) / 4;
3372 ring_freq = max(min_ring_freq, ring_freq);
3373 /* leave ia_freq as the default, chosen by cpufreq */
3374 } else {
3375 /* On older processors, there is no separate ring
3376 * clock domain, so in order to boost the bandwidth
3377 * of the ring, we need to upclock the CPU (ia_freq).
3378 *
3379 * For GPU frequencies less than 750MHz,
3380 * just use the lowest ring freq.
3381 */
3382 if (gpu_freq < min_freq)
3383 ia_freq = 800;
3384 else
3385 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
3386 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
3387 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003388
Ben Widawsky42c05262012-09-26 10:34:00 -07003389 sandybridge_pcode_write(dev_priv,
3390 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01003391 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
3392 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
3393 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003394 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003395}
3396
Jesse Barnes0a073b82013-04-17 15:54:58 -07003397int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
3398{
3399 u32 val, rp0;
3400
Jani Nikula64936252013-05-22 15:36:20 +03003401 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003402
3403 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
3404 /* Clamp to max */
3405 rp0 = min_t(u32, rp0, 0xea);
3406
3407 return rp0;
3408}
3409
3410static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
3411{
3412 u32 val, rpe;
3413
Jani Nikula64936252013-05-22 15:36:20 +03003414 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003415 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03003416 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003417 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
3418
3419 return rpe;
3420}
3421
3422int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
3423{
Jani Nikula64936252013-05-22 15:36:20 +03003424 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003425}
3426
Jesse Barnes52ceb902013-04-23 10:09:26 -07003427static void vlv_rps_timer_work(struct work_struct *work)
3428{
3429 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
3430 rps.vlv_work.work);
3431
3432 /*
3433 * Timer fired, we must be idle. Drop to min voltage state.
3434 * Note: we use RPe here since it should match the
3435 * Vmin we were shooting for. That should give us better
3436 * perf when we come back out of RC6 than if we used the
3437 * min freq available.
3438 */
3439 mutex_lock(&dev_priv->rps.hw_lock);
3440 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
3441 mutex_unlock(&dev_priv->rps.hw_lock);
3442}
3443
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003444static void valleyview_setup_pctx(struct drm_device *dev)
3445{
3446 struct drm_i915_private *dev_priv = dev->dev_private;
3447 struct drm_i915_gem_object *pctx;
3448 unsigned long pctx_paddr;
3449 u32 pcbr;
3450 int pctx_size = 24*1024;
3451
3452 pcbr = I915_READ(VLV_PCBR);
3453 if (pcbr) {
3454 /* BIOS set it up already, grab the pre-alloc'd space */
3455 int pcbr_offset;
3456
3457 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
3458 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
3459 pcbr_offset,
Jesse Barnes3727d552013-05-08 10:45:14 -07003460 -1,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003461 pctx_size);
3462 goto out;
3463 }
3464
3465 /*
3466 * From the Gunit register HAS:
3467 * The Gfx driver is expected to program this register and ensure
3468 * proper allocation within Gfx stolen memory. For example, this
3469 * register should be programmed such than the PCBR range does not
3470 * overlap with other ranges, such as the frame buffer, protected
3471 * memory, or any other relevant ranges.
3472 */
3473 pctx = i915_gem_object_create_stolen(dev, pctx_size);
3474 if (!pctx) {
3475 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
3476 return;
3477 }
3478
3479 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
3480 I915_WRITE(VLV_PCBR, pctx_paddr);
3481
3482out:
3483 dev_priv->vlv_pctx = pctx;
3484}
3485
Jesse Barnes0a073b82013-04-17 15:54:58 -07003486static void valleyview_enable_rps(struct drm_device *dev)
3487{
3488 struct drm_i915_private *dev_priv = dev->dev_private;
3489 struct intel_ring_buffer *ring;
3490 u32 gtfifodbg, val, rpe;
3491 int i;
3492
3493 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3494
3495 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3496 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3497 I915_WRITE(GTFIFODBG, gtfifodbg);
3498 }
3499
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003500 valleyview_setup_pctx(dev);
3501
Jesse Barnes0a073b82013-04-17 15:54:58 -07003502 gen6_gt_force_wake_get(dev_priv);
3503
3504 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
3505 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
3506 I915_WRITE(GEN6_RP_UP_EI, 66000);
3507 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
3508
3509 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3510
3511 I915_WRITE(GEN6_RP_CONTROL,
3512 GEN6_RP_MEDIA_TURBO |
3513 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3514 GEN6_RP_MEDIA_IS_GFX |
3515 GEN6_RP_ENABLE |
3516 GEN6_RP_UP_BUSY_AVG |
3517 GEN6_RP_DOWN_IDLE_CONT);
3518
3519 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
3520 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3521 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3522
3523 for_each_ring(ring, dev_priv, i)
3524 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
3525
3526 I915_WRITE(GEN6_RC6_THRESHOLD, 0xc350);
3527
3528 /* allows RC6 residency counter to work */
3529 I915_WRITE(0x138104, _MASKED_BIT_ENABLE(0x3));
3530 I915_WRITE(GEN6_RC_CONTROL,
3531 GEN7_RC_CTL_TO_MODE);
3532
Jani Nikula64936252013-05-22 15:36:20 +03003533 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes24459662013-05-02 10:48:08 -07003534 switch ((val >> 6) & 3) {
3535 case 0:
3536 case 1:
3537 dev_priv->mem_freq = 800;
3538 break;
3539 case 2:
3540 dev_priv->mem_freq = 1066;
3541 break;
3542 case 3:
3543 dev_priv->mem_freq = 1333;
3544 break;
3545 }
Jesse Barnes0a073b82013-04-17 15:54:58 -07003546 DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
3547
3548 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no");
3549 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
3550
3551 DRM_DEBUG_DRIVER("current GPU freq: %d\n",
3552 vlv_gpu_freq(dev_priv->mem_freq, (val >> 8) & 0xff));
3553 dev_priv->rps.cur_delay = (val >> 8) & 0xff;
3554
3555 dev_priv->rps.max_delay = valleyview_rps_max_freq(dev_priv);
3556 dev_priv->rps.hw_max = dev_priv->rps.max_delay;
3557 DRM_DEBUG_DRIVER("max GPU freq: %d\n", vlv_gpu_freq(dev_priv->mem_freq,
3558 dev_priv->rps.max_delay));
3559
3560 rpe = valleyview_rps_rpe_freq(dev_priv);
3561 DRM_DEBUG_DRIVER("RPe GPU freq: %d\n",
3562 vlv_gpu_freq(dev_priv->mem_freq, rpe));
Jesse Barnes52ceb902013-04-23 10:09:26 -07003563 dev_priv->rps.rpe_delay = rpe;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003564
3565 val = valleyview_rps_min_freq(dev_priv);
3566 DRM_DEBUG_DRIVER("min GPU freq: %d\n", vlv_gpu_freq(dev_priv->mem_freq,
3567 val));
3568 dev_priv->rps.min_delay = val;
3569
3570 DRM_DEBUG_DRIVER("setting GPU freq to %d\n",
3571 vlv_gpu_freq(dev_priv->mem_freq, rpe));
3572
Jesse Barnes52ceb902013-04-23 10:09:26 -07003573 INIT_DELAYED_WORK(&dev_priv->rps.vlv_work, vlv_rps_timer_work);
3574
Jesse Barnes0a073b82013-04-17 15:54:58 -07003575 valleyview_set_rps(dev_priv->dev, rpe);
3576
3577 /* requires MSI enabled */
3578 I915_WRITE(GEN6_PMIER, GEN6_PM_DEFERRED_EVENTS);
3579 spin_lock_irq(&dev_priv->rps.lock);
3580 WARN_ON(dev_priv->rps.pm_iir != 0);
3581 I915_WRITE(GEN6_PMIMR, 0);
3582 spin_unlock_irq(&dev_priv->rps.lock);
3583 /* enable all PM interrupts */
3584 I915_WRITE(GEN6_PMINTRMSK, 0);
3585
3586 gen6_gt_force_wake_put(dev_priv);
3587}
3588
Daniel Vetter930ebb42012-06-29 23:32:16 +02003589void ironlake_teardown_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003590{
3591 struct drm_i915_private *dev_priv = dev->dev_private;
3592
Daniel Vetter3e373942012-11-02 19:55:04 +01003593 if (dev_priv->ips.renderctx) {
3594 i915_gem_object_unpin(dev_priv->ips.renderctx);
3595 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
3596 dev_priv->ips.renderctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003597 }
3598
Daniel Vetter3e373942012-11-02 19:55:04 +01003599 if (dev_priv->ips.pwrctx) {
3600 i915_gem_object_unpin(dev_priv->ips.pwrctx);
3601 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
3602 dev_priv->ips.pwrctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003603 }
3604}
3605
Daniel Vetter930ebb42012-06-29 23:32:16 +02003606static void ironlake_disable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003607{
3608 struct drm_i915_private *dev_priv = dev->dev_private;
3609
3610 if (I915_READ(PWRCTXA)) {
3611 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
3612 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
3613 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
3614 50);
3615
3616 I915_WRITE(PWRCTXA, 0);
3617 POSTING_READ(PWRCTXA);
3618
3619 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
3620 POSTING_READ(RSTDBYCTL);
3621 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003622}
3623
3624static int ironlake_setup_rc6(struct drm_device *dev)
3625{
3626 struct drm_i915_private *dev_priv = dev->dev_private;
3627
Daniel Vetter3e373942012-11-02 19:55:04 +01003628 if (dev_priv->ips.renderctx == NULL)
3629 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
3630 if (!dev_priv->ips.renderctx)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003631 return -ENOMEM;
3632
Daniel Vetter3e373942012-11-02 19:55:04 +01003633 if (dev_priv->ips.pwrctx == NULL)
3634 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
3635 if (!dev_priv->ips.pwrctx) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003636 ironlake_teardown_rc6(dev);
3637 return -ENOMEM;
3638 }
3639
3640 return 0;
3641}
3642
Daniel Vetter930ebb42012-06-29 23:32:16 +02003643static void ironlake_enable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003644{
3645 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +02003646 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson3e960502012-11-27 16:22:54 +00003647 bool was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003648 int ret;
3649
3650 /* rc6 disabled by default due to repeated reports of hanging during
3651 * boot and resume.
3652 */
3653 if (!intel_enable_rc6(dev))
3654 return;
3655
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003656 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3657
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003658 ret = ironlake_setup_rc6(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003659 if (ret)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003660 return;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003661
Chris Wilson3e960502012-11-27 16:22:54 +00003662 was_interruptible = dev_priv->mm.interruptible;
3663 dev_priv->mm.interruptible = false;
3664
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003665 /*
3666 * GPU can automatically power down the render unit if given a page
3667 * to save state.
3668 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02003669 ret = intel_ring_begin(ring, 6);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003670 if (ret) {
3671 ironlake_teardown_rc6(dev);
Chris Wilson3e960502012-11-27 16:22:54 +00003672 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003673 return;
3674 }
3675
Daniel Vetter6d90c952012-04-26 23:28:05 +02003676 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
3677 intel_ring_emit(ring, MI_SET_CONTEXT);
Daniel Vetter3e373942012-11-02 19:55:04 +01003678 intel_ring_emit(ring, dev_priv->ips.renderctx->gtt_offset |
Daniel Vetter6d90c952012-04-26 23:28:05 +02003679 MI_MM_SPACE_GTT |
3680 MI_SAVE_EXT_STATE_EN |
3681 MI_RESTORE_EXT_STATE_EN |
3682 MI_RESTORE_INHIBIT);
3683 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
3684 intel_ring_emit(ring, MI_NOOP);
3685 intel_ring_emit(ring, MI_FLUSH);
3686 intel_ring_advance(ring);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003687
3688 /*
3689 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
3690 * does an implicit flush, combined with MI_FLUSH above, it should be
3691 * safe to assume that renderctx is valid
3692 */
Chris Wilson3e960502012-11-27 16:22:54 +00003693 ret = intel_ring_idle(ring);
3694 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003695 if (ret) {
Jani Nikuladef27a52013-03-12 10:49:19 +02003696 DRM_ERROR("failed to enable ironlake power savings\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003697 ironlake_teardown_rc6(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003698 return;
3699 }
3700
Daniel Vetter3e373942012-11-02 19:55:04 +01003701 I915_WRITE(PWRCTXA, dev_priv->ips.pwrctx->gtt_offset | PWRCTX_EN);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003702 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003703}
3704
Eugeni Dodonovdde18882012-04-18 15:29:24 -03003705static unsigned long intel_pxfreq(u32 vidfreq)
3706{
3707 unsigned long freq;
3708 int div = (vidfreq & 0x3f0000) >> 16;
3709 int post = (vidfreq & 0x3000) >> 12;
3710 int pre = (vidfreq & 0x7);
3711
3712 if (!pre)
3713 return 0;
3714
3715 freq = ((div * 133333) / ((1<<post) * pre));
3716
3717 return freq;
3718}
3719
Daniel Vettereb48eb02012-04-26 23:28:12 +02003720static const struct cparams {
3721 u16 i;
3722 u16 t;
3723 u16 m;
3724 u16 c;
3725} cparams[] = {
3726 { 1, 1333, 301, 28664 },
3727 { 1, 1066, 294, 24460 },
3728 { 1, 800, 294, 25192 },
3729 { 0, 1333, 276, 27605 },
3730 { 0, 1066, 276, 27605 },
3731 { 0, 800, 231, 23784 },
3732};
3733
Chris Wilsonf531dcb2012-09-25 10:16:12 +01003734static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02003735{
3736 u64 total_count, diff, ret;
3737 u32 count1, count2, count3, m = 0, c = 0;
3738 unsigned long now = jiffies_to_msecs(jiffies), diff1;
3739 int i;
3740
Daniel Vetter02d71952012-08-09 16:44:54 +02003741 assert_spin_locked(&mchdev_lock);
3742
Daniel Vetter20e4d402012-08-08 23:35:39 +02003743 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003744
3745 /* Prevent division-by-zero if we are asking too fast.
3746 * Also, we don't get interesting results if we are polling
3747 * faster than once in 10ms, so just return the saved value
3748 * in such cases.
3749 */
3750 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02003751 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003752
3753 count1 = I915_READ(DMIEC);
3754 count2 = I915_READ(DDREC);
3755 count3 = I915_READ(CSIEC);
3756
3757 total_count = count1 + count2 + count3;
3758
3759 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003760 if (total_count < dev_priv->ips.last_count1) {
3761 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003762 diff += total_count;
3763 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02003764 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003765 }
3766
3767 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02003768 if (cparams[i].i == dev_priv->ips.c_m &&
3769 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02003770 m = cparams[i].m;
3771 c = cparams[i].c;
3772 break;
3773 }
3774 }
3775
3776 diff = div_u64(diff, diff1);
3777 ret = ((m * diff) + c);
3778 ret = div_u64(ret, 10);
3779
Daniel Vetter20e4d402012-08-08 23:35:39 +02003780 dev_priv->ips.last_count1 = total_count;
3781 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003782
Daniel Vetter20e4d402012-08-08 23:35:39 +02003783 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003784
3785 return ret;
3786}
3787
Chris Wilsonf531dcb2012-09-25 10:16:12 +01003788unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
3789{
3790 unsigned long val;
3791
3792 if (dev_priv->info->gen != 5)
3793 return 0;
3794
3795 spin_lock_irq(&mchdev_lock);
3796
3797 val = __i915_chipset_val(dev_priv);
3798
3799 spin_unlock_irq(&mchdev_lock);
3800
3801 return val;
3802}
3803
Daniel Vettereb48eb02012-04-26 23:28:12 +02003804unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
3805{
3806 unsigned long m, x, b;
3807 u32 tsfs;
3808
3809 tsfs = I915_READ(TSFS);
3810
3811 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
3812 x = I915_READ8(TR1);
3813
3814 b = tsfs & TSFS_INTR_MASK;
3815
3816 return ((m * x) / 127) - b;
3817}
3818
3819static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
3820{
3821 static const struct v_table {
3822 u16 vd; /* in .1 mil */
3823 u16 vm; /* in .1 mil */
3824 } v_table[] = {
3825 { 0, 0, },
3826 { 375, 0, },
3827 { 500, 0, },
3828 { 625, 0, },
3829 { 750, 0, },
3830 { 875, 0, },
3831 { 1000, 0, },
3832 { 1125, 0, },
3833 { 4125, 3000, },
3834 { 4125, 3000, },
3835 { 4125, 3000, },
3836 { 4125, 3000, },
3837 { 4125, 3000, },
3838 { 4125, 3000, },
3839 { 4125, 3000, },
3840 { 4125, 3000, },
3841 { 4125, 3000, },
3842 { 4125, 3000, },
3843 { 4125, 3000, },
3844 { 4125, 3000, },
3845 { 4125, 3000, },
3846 { 4125, 3000, },
3847 { 4125, 3000, },
3848 { 4125, 3000, },
3849 { 4125, 3000, },
3850 { 4125, 3000, },
3851 { 4125, 3000, },
3852 { 4125, 3000, },
3853 { 4125, 3000, },
3854 { 4125, 3000, },
3855 { 4125, 3000, },
3856 { 4125, 3000, },
3857 { 4250, 3125, },
3858 { 4375, 3250, },
3859 { 4500, 3375, },
3860 { 4625, 3500, },
3861 { 4750, 3625, },
3862 { 4875, 3750, },
3863 { 5000, 3875, },
3864 { 5125, 4000, },
3865 { 5250, 4125, },
3866 { 5375, 4250, },
3867 { 5500, 4375, },
3868 { 5625, 4500, },
3869 { 5750, 4625, },
3870 { 5875, 4750, },
3871 { 6000, 4875, },
3872 { 6125, 5000, },
3873 { 6250, 5125, },
3874 { 6375, 5250, },
3875 { 6500, 5375, },
3876 { 6625, 5500, },
3877 { 6750, 5625, },
3878 { 6875, 5750, },
3879 { 7000, 5875, },
3880 { 7125, 6000, },
3881 { 7250, 6125, },
3882 { 7375, 6250, },
3883 { 7500, 6375, },
3884 { 7625, 6500, },
3885 { 7750, 6625, },
3886 { 7875, 6750, },
3887 { 8000, 6875, },
3888 { 8125, 7000, },
3889 { 8250, 7125, },
3890 { 8375, 7250, },
3891 { 8500, 7375, },
3892 { 8625, 7500, },
3893 { 8750, 7625, },
3894 { 8875, 7750, },
3895 { 9000, 7875, },
3896 { 9125, 8000, },
3897 { 9250, 8125, },
3898 { 9375, 8250, },
3899 { 9500, 8375, },
3900 { 9625, 8500, },
3901 { 9750, 8625, },
3902 { 9875, 8750, },
3903 { 10000, 8875, },
3904 { 10125, 9000, },
3905 { 10250, 9125, },
3906 { 10375, 9250, },
3907 { 10500, 9375, },
3908 { 10625, 9500, },
3909 { 10750, 9625, },
3910 { 10875, 9750, },
3911 { 11000, 9875, },
3912 { 11125, 10000, },
3913 { 11250, 10125, },
3914 { 11375, 10250, },
3915 { 11500, 10375, },
3916 { 11625, 10500, },
3917 { 11750, 10625, },
3918 { 11875, 10750, },
3919 { 12000, 10875, },
3920 { 12125, 11000, },
3921 { 12250, 11125, },
3922 { 12375, 11250, },
3923 { 12500, 11375, },
3924 { 12625, 11500, },
3925 { 12750, 11625, },
3926 { 12875, 11750, },
3927 { 13000, 11875, },
3928 { 13125, 12000, },
3929 { 13250, 12125, },
3930 { 13375, 12250, },
3931 { 13500, 12375, },
3932 { 13625, 12500, },
3933 { 13750, 12625, },
3934 { 13875, 12750, },
3935 { 14000, 12875, },
3936 { 14125, 13000, },
3937 { 14250, 13125, },
3938 { 14375, 13250, },
3939 { 14500, 13375, },
3940 { 14625, 13500, },
3941 { 14750, 13625, },
3942 { 14875, 13750, },
3943 { 15000, 13875, },
3944 { 15125, 14000, },
3945 { 15250, 14125, },
3946 { 15375, 14250, },
3947 { 15500, 14375, },
3948 { 15625, 14500, },
3949 { 15750, 14625, },
3950 { 15875, 14750, },
3951 { 16000, 14875, },
3952 { 16125, 15000, },
3953 };
3954 if (dev_priv->info->is_mobile)
3955 return v_table[pxvid].vm;
3956 else
3957 return v_table[pxvid].vd;
3958}
3959
Daniel Vetter02d71952012-08-09 16:44:54 +02003960static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02003961{
3962 struct timespec now, diff1;
3963 u64 diff;
3964 unsigned long diffms;
3965 u32 count;
3966
Daniel Vetter02d71952012-08-09 16:44:54 +02003967 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02003968
3969 getrawmonotonic(&now);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003970 diff1 = timespec_sub(now, dev_priv->ips.last_time2);
Daniel Vettereb48eb02012-04-26 23:28:12 +02003971
3972 /* Don't divide by 0 */
3973 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
3974 if (!diffms)
3975 return;
3976
3977 count = I915_READ(GFXEC);
3978
Daniel Vetter20e4d402012-08-08 23:35:39 +02003979 if (count < dev_priv->ips.last_count2) {
3980 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003981 diff += count;
3982 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02003983 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003984 }
3985
Daniel Vetter20e4d402012-08-08 23:35:39 +02003986 dev_priv->ips.last_count2 = count;
3987 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003988
3989 /* More magic constants... */
3990 diff = diff * 1181;
3991 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003992 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02003993}
3994
Daniel Vetter02d71952012-08-09 16:44:54 +02003995void i915_update_gfx_val(struct drm_i915_private *dev_priv)
3996{
3997 if (dev_priv->info->gen != 5)
3998 return;
3999
Daniel Vetter92703882012-08-09 16:46:01 +02004000 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004001
4002 __i915_update_gfx_val(dev_priv);
4003
Daniel Vetter92703882012-08-09 16:46:01 +02004004 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004005}
4006
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004007static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004008{
4009 unsigned long t, corr, state1, corr2, state2;
4010 u32 pxvid, ext_v;
4011
Daniel Vetter02d71952012-08-09 16:44:54 +02004012 assert_spin_locked(&mchdev_lock);
4013
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004014 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_delay * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02004015 pxvid = (pxvid >> 24) & 0x7f;
4016 ext_v = pvid_to_extvid(dev_priv, pxvid);
4017
4018 state1 = ext_v;
4019
4020 t = i915_mch_val(dev_priv);
4021
4022 /* Revel in the empirically derived constants */
4023
4024 /* Correction factor in 1/100000 units */
4025 if (t > 80)
4026 corr = ((t * 2349) + 135940);
4027 else if (t >= 50)
4028 corr = ((t * 964) + 29317);
4029 else /* < 50 */
4030 corr = ((t * 301) + 1004);
4031
4032 corr = corr * ((150142 * state1) / 10000 - 78642);
4033 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02004034 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004035
4036 state2 = (corr2 * state1) / 10000;
4037 state2 /= 100; /* convert to mW */
4038
Daniel Vetter02d71952012-08-09 16:44:54 +02004039 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004040
Daniel Vetter20e4d402012-08-08 23:35:39 +02004041 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004042}
4043
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004044unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
4045{
4046 unsigned long val;
4047
4048 if (dev_priv->info->gen != 5)
4049 return 0;
4050
4051 spin_lock_irq(&mchdev_lock);
4052
4053 val = __i915_gfx_val(dev_priv);
4054
4055 spin_unlock_irq(&mchdev_lock);
4056
4057 return val;
4058}
4059
Daniel Vettereb48eb02012-04-26 23:28:12 +02004060/**
4061 * i915_read_mch_val - return value for IPS use
4062 *
4063 * Calculate and return a value for the IPS driver to use when deciding whether
4064 * we have thermal and power headroom to increase CPU or GPU power budget.
4065 */
4066unsigned long i915_read_mch_val(void)
4067{
4068 struct drm_i915_private *dev_priv;
4069 unsigned long chipset_val, graphics_val, ret = 0;
4070
Daniel Vetter92703882012-08-09 16:46:01 +02004071 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004072 if (!i915_mch_dev)
4073 goto out_unlock;
4074 dev_priv = i915_mch_dev;
4075
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004076 chipset_val = __i915_chipset_val(dev_priv);
4077 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004078
4079 ret = chipset_val + graphics_val;
4080
4081out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004082 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004083
4084 return ret;
4085}
4086EXPORT_SYMBOL_GPL(i915_read_mch_val);
4087
4088/**
4089 * i915_gpu_raise - raise GPU frequency limit
4090 *
4091 * Raise the limit; IPS indicates we have thermal headroom.
4092 */
4093bool i915_gpu_raise(void)
4094{
4095 struct drm_i915_private *dev_priv;
4096 bool ret = true;
4097
Daniel Vetter92703882012-08-09 16:46:01 +02004098 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004099 if (!i915_mch_dev) {
4100 ret = false;
4101 goto out_unlock;
4102 }
4103 dev_priv = i915_mch_dev;
4104
Daniel Vetter20e4d402012-08-08 23:35:39 +02004105 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
4106 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004107
4108out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004109 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004110
4111 return ret;
4112}
4113EXPORT_SYMBOL_GPL(i915_gpu_raise);
4114
4115/**
4116 * i915_gpu_lower - lower GPU frequency limit
4117 *
4118 * IPS indicates we're close to a thermal limit, so throttle back the GPU
4119 * frequency maximum.
4120 */
4121bool i915_gpu_lower(void)
4122{
4123 struct drm_i915_private *dev_priv;
4124 bool ret = true;
4125
Daniel Vetter92703882012-08-09 16:46:01 +02004126 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004127 if (!i915_mch_dev) {
4128 ret = false;
4129 goto out_unlock;
4130 }
4131 dev_priv = i915_mch_dev;
4132
Daniel Vetter20e4d402012-08-08 23:35:39 +02004133 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
4134 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004135
4136out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004137 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004138
4139 return ret;
4140}
4141EXPORT_SYMBOL_GPL(i915_gpu_lower);
4142
4143/**
4144 * i915_gpu_busy - indicate GPU business to IPS
4145 *
4146 * Tell the IPS driver whether or not the GPU is busy.
4147 */
4148bool i915_gpu_busy(void)
4149{
4150 struct drm_i915_private *dev_priv;
Chris Wilsonf047e392012-07-21 12:31:41 +01004151 struct intel_ring_buffer *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004152 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01004153 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004154
Daniel Vetter92703882012-08-09 16:46:01 +02004155 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004156 if (!i915_mch_dev)
4157 goto out_unlock;
4158 dev_priv = i915_mch_dev;
4159
Chris Wilsonf047e392012-07-21 12:31:41 +01004160 for_each_ring(ring, dev_priv, i)
4161 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004162
4163out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004164 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004165
4166 return ret;
4167}
4168EXPORT_SYMBOL_GPL(i915_gpu_busy);
4169
4170/**
4171 * i915_gpu_turbo_disable - disable graphics turbo
4172 *
4173 * Disable graphics turbo by resetting the max frequency and setting the
4174 * current frequency to the default.
4175 */
4176bool i915_gpu_turbo_disable(void)
4177{
4178 struct drm_i915_private *dev_priv;
4179 bool ret = true;
4180
Daniel Vetter92703882012-08-09 16:46:01 +02004181 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004182 if (!i915_mch_dev) {
4183 ret = false;
4184 goto out_unlock;
4185 }
4186 dev_priv = i915_mch_dev;
4187
Daniel Vetter20e4d402012-08-08 23:35:39 +02004188 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004189
Daniel Vetter20e4d402012-08-08 23:35:39 +02004190 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02004191 ret = false;
4192
4193out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004194 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004195
4196 return ret;
4197}
4198EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
4199
4200/**
4201 * Tells the intel_ips driver that the i915 driver is now loaded, if
4202 * IPS got loaded first.
4203 *
4204 * This awkward dance is so that neither module has to depend on the
4205 * other in order for IPS to do the appropriate communication of
4206 * GPU turbo limits to i915.
4207 */
4208static void
4209ips_ping_for_i915_load(void)
4210{
4211 void (*link)(void);
4212
4213 link = symbol_get(ips_link_to_i915_driver);
4214 if (link) {
4215 link();
4216 symbol_put(ips_link_to_i915_driver);
4217 }
4218}
4219
4220void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
4221{
Daniel Vetter02d71952012-08-09 16:44:54 +02004222 /* We only register the i915 ips part with intel-ips once everything is
4223 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02004224 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004225 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02004226 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004227
4228 ips_ping_for_i915_load();
4229}
4230
4231void intel_gpu_ips_teardown(void)
4232{
Daniel Vetter92703882012-08-09 16:46:01 +02004233 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004234 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02004235 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004236}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004237static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004238{
4239 struct drm_i915_private *dev_priv = dev->dev_private;
4240 u32 lcfuse;
4241 u8 pxw[16];
4242 int i;
4243
4244 /* Disable to program */
4245 I915_WRITE(ECR, 0);
4246 POSTING_READ(ECR);
4247
4248 /* Program energy weights for various events */
4249 I915_WRITE(SDEW, 0x15040d00);
4250 I915_WRITE(CSIEW0, 0x007f0000);
4251 I915_WRITE(CSIEW1, 0x1e220004);
4252 I915_WRITE(CSIEW2, 0x04000004);
4253
4254 for (i = 0; i < 5; i++)
4255 I915_WRITE(PEW + (i * 4), 0);
4256 for (i = 0; i < 3; i++)
4257 I915_WRITE(DEW + (i * 4), 0);
4258
4259 /* Program P-state weights to account for frequency power adjustment */
4260 for (i = 0; i < 16; i++) {
4261 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
4262 unsigned long freq = intel_pxfreq(pxvidfreq);
4263 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
4264 PXVFREQ_PX_SHIFT;
4265 unsigned long val;
4266
4267 val = vid * vid;
4268 val *= (freq / 1000);
4269 val *= 255;
4270 val /= (127*127*900);
4271 if (val > 0xff)
4272 DRM_ERROR("bad pxval: %ld\n", val);
4273 pxw[i] = val;
4274 }
4275 /* Render standby states get 0 weight */
4276 pxw[14] = 0;
4277 pxw[15] = 0;
4278
4279 for (i = 0; i < 4; i++) {
4280 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
4281 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
4282 I915_WRITE(PXW + (i * 4), val);
4283 }
4284
4285 /* Adjust magic regs to magic values (more experimental results) */
4286 I915_WRITE(OGW0, 0);
4287 I915_WRITE(OGW1, 0);
4288 I915_WRITE(EG0, 0x00007f00);
4289 I915_WRITE(EG1, 0x0000000e);
4290 I915_WRITE(EG2, 0x000e0000);
4291 I915_WRITE(EG3, 0x68000300);
4292 I915_WRITE(EG4, 0x42000000);
4293 I915_WRITE(EG5, 0x00140031);
4294 I915_WRITE(EG6, 0);
4295 I915_WRITE(EG7, 0);
4296
4297 for (i = 0; i < 8; i++)
4298 I915_WRITE(PXWL + (i * 4), 0);
4299
4300 /* Enable PMON + select events */
4301 I915_WRITE(ECR, 0x80000019);
4302
4303 lcfuse = I915_READ(LCFUSE02);
4304
Daniel Vetter20e4d402012-08-08 23:35:39 +02004305 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004306}
4307
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004308void intel_disable_gt_powersave(struct drm_device *dev)
4309{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004310 struct drm_i915_private *dev_priv = dev->dev_private;
4311
Daniel Vetterfd0c0642013-04-24 11:13:35 +02004312 /* Interrupts should be disabled already to avoid re-arming. */
4313 WARN_ON(dev->irq_enabled);
4314
Daniel Vetter930ebb42012-06-29 23:32:16 +02004315 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004316 ironlake_disable_drps(dev);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004317 ironlake_disable_rc6(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004318 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004319 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
Jesse Barnes250848c2013-04-23 10:09:27 -07004320 cancel_work_sync(&dev_priv->rps.work);
Jesse Barnes52ceb902013-04-23 10:09:26 -07004321 if (IS_VALLEYVIEW(dev))
4322 cancel_delayed_work_sync(&dev_priv->rps.vlv_work);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004323 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004324 if (IS_VALLEYVIEW(dev))
4325 valleyview_disable_rps(dev);
4326 else
4327 gen6_disable_rps(dev);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004328 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004329 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004330}
4331
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004332static void intel_gen6_powersave_work(struct work_struct *work)
4333{
4334 struct drm_i915_private *dev_priv =
4335 container_of(work, struct drm_i915_private,
4336 rps.delayed_resume_work.work);
4337 struct drm_device *dev = dev_priv->dev;
4338
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004339 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004340
4341 if (IS_VALLEYVIEW(dev)) {
4342 valleyview_enable_rps(dev);
4343 } else {
4344 gen6_enable_rps(dev);
4345 gen6_update_ring_freq(dev);
4346 }
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004347 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004348}
4349
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004350void intel_enable_gt_powersave(struct drm_device *dev)
4351{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004352 struct drm_i915_private *dev_priv = dev->dev_private;
4353
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004354 if (IS_IRONLAKE_M(dev)) {
4355 ironlake_enable_drps(dev);
4356 ironlake_enable_rc6(dev);
4357 intel_init_emon(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004358 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004359 /*
4360 * PCU communication is slow and this doesn't need to be
4361 * done at any specific time, so do this out of our fast path
4362 * to make resume and init faster.
4363 */
4364 schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
4365 round_jiffies_up_relative(HZ));
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004366 }
4367}
4368
Daniel Vetter3107bd42012-10-31 22:52:31 +01004369static void ibx_init_clock_gating(struct drm_device *dev)
4370{
4371 struct drm_i915_private *dev_priv = dev->dev_private;
4372
4373 /*
4374 * On Ibex Peak and Cougar Point, we need to disable clock
4375 * gating for the panel power sequencer or it will fail to
4376 * start up when no ports are active.
4377 */
4378 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4379}
4380
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004381static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004382{
4383 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004384 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004385
4386 /* Required for FBC */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004387 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
4388 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
4389 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004390
4391 I915_WRITE(PCH_3DCGDIS0,
4392 MARIUNIT_CLOCK_GATE_DISABLE |
4393 SVSMUNIT_CLOCK_GATE_DISABLE);
4394 I915_WRITE(PCH_3DCGDIS1,
4395 VFMUNIT_CLOCK_GATE_DISABLE);
4396
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004397 /*
4398 * According to the spec the following bits should be set in
4399 * order to enable memory self-refresh
4400 * The bit 22/21 of 0x42004
4401 * The bit 5 of 0x42020
4402 * The bit 15 of 0x45000
4403 */
4404 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4405 (I915_READ(ILK_DISPLAY_CHICKEN2) |
4406 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004407 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004408 I915_WRITE(DISP_ARB_CTL,
4409 (I915_READ(DISP_ARB_CTL) |
4410 DISP_FBC_WM_DIS));
4411 I915_WRITE(WM3_LP_ILK, 0);
4412 I915_WRITE(WM2_LP_ILK, 0);
4413 I915_WRITE(WM1_LP_ILK, 0);
4414
4415 /*
4416 * Based on the document from hardware guys the following bits
4417 * should be set unconditionally in order to enable FBC.
4418 * The bit 22 of 0x42000
4419 * The bit 22 of 0x42004
4420 * The bit 7,8,9 of 0x42020.
4421 */
4422 if (IS_IRONLAKE_M(dev)) {
4423 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4424 I915_READ(ILK_DISPLAY_CHICKEN1) |
4425 ILK_FBCQ_DIS);
4426 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4427 I915_READ(ILK_DISPLAY_CHICKEN2) |
4428 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004429 }
4430
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004431 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
4432
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004433 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4434 I915_READ(ILK_DISPLAY_CHICKEN2) |
4435 ILK_ELPIN_409_SELECT);
4436 I915_WRITE(_3D_CHICKEN2,
4437 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
4438 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02004439
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004440 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02004441 I915_WRITE(CACHE_MODE_0,
4442 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004443
4444 ibx_init_clock_gating(dev);
4445}
4446
4447static void cpt_init_clock_gating(struct drm_device *dev)
4448{
4449 struct drm_i915_private *dev_priv = dev->dev_private;
4450 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004451 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01004452
4453 /*
4454 * On Ibex Peak and Cougar Point, we need to disable clock
4455 * gating for the panel power sequencer or it will fail to
4456 * start up when no ports are active.
4457 */
4458 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4459 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
4460 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01004461 /* The below fixes the weird display corruption, a few pixels shifted
4462 * downward, on (only) LVDS of some HP laptops with IVY.
4463 */
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004464 for_each_pipe(pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03004465 val = I915_READ(TRANS_CHICKEN2(pipe));
4466 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
4467 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004468 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004469 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03004470 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
4471 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
4472 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03004473 I915_WRITE(TRANS_CHICKEN2(pipe), val);
4474 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01004475 /* WADP0ClockGatingDisable */
4476 for_each_pipe(pipe) {
4477 I915_WRITE(TRANS_CHICKEN1(pipe),
4478 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
4479 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004480}
4481
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004482static void gen6_check_mch_setup(struct drm_device *dev)
4483{
4484 struct drm_i915_private *dev_priv = dev->dev_private;
4485 uint32_t tmp;
4486
4487 tmp = I915_READ(MCH_SSKPD);
4488 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) {
4489 DRM_INFO("Wrong MCH_SSKPD value: 0x%08x\n", tmp);
4490 DRM_INFO("This can cause pipe underruns and display issues.\n");
4491 DRM_INFO("Please upgrade your BIOS to fix this.\n");
4492 }
4493}
4494
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004495static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004496{
4497 struct drm_i915_private *dev_priv = dev->dev_private;
4498 int pipe;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004499 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004500
Damien Lespiau231e54f2012-10-19 17:55:41 +01004501 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004502
4503 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4504 I915_READ(ILK_DISPLAY_CHICKEN2) |
4505 ILK_ELPIN_409_SELECT);
4506
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004507 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01004508 I915_WRITE(_3D_CHICKEN,
4509 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
4510
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004511 /* WaSetupGtModeTdRowDispatch:snb */
Daniel Vetter6547fbd2012-12-14 23:38:29 +01004512 if (IS_SNB_GT1(dev))
4513 I915_WRITE(GEN6_GT_MODE,
4514 _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE));
4515
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004516 I915_WRITE(WM3_LP_ILK, 0);
4517 I915_WRITE(WM2_LP_ILK, 0);
4518 I915_WRITE(WM1_LP_ILK, 0);
4519
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004520 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02004521 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004522
4523 I915_WRITE(GEN6_UCGCTL1,
4524 I915_READ(GEN6_UCGCTL1) |
4525 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
4526 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
4527
4528 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
4529 * gating disable must be set. Failure to set it results in
4530 * flickering pixels due to Z write ordering failures after
4531 * some amount of runtime in the Mesa "fire" demo, and Unigine
4532 * Sanctuary and Tropics, and apparently anything else with
4533 * alpha test or pixel discard.
4534 *
4535 * According to the spec, bit 11 (RCCUNIT) must also be set,
4536 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004537 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004538 * Also apply WaDisableVDSUnitClockGating:snb and
4539 * WaDisableRCPBUnitClockGating:snb.
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004540 */
4541 I915_WRITE(GEN6_UCGCTL2,
Jesse Barnes0f846f82012-06-14 11:04:47 -07004542 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004543 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
4544 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
4545
4546 /* Bspec says we need to always set all mask bits. */
Kenneth Graunke26b6e442012-10-07 08:51:07 -07004547 I915_WRITE(_3D_CHICKEN3, (0xFFFF << 16) |
4548 _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004549
4550 /*
4551 * According to the spec the following bits should be
4552 * set in order to enable memory self-refresh and fbc:
4553 * The bit21 and bit22 of 0x42000
4554 * The bit21 and bit22 of 0x42004
4555 * The bit5 and bit7 of 0x42020
4556 * The bit14 of 0x70180
4557 * The bit14 of 0x71180
4558 */
4559 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4560 I915_READ(ILK_DISPLAY_CHICKEN1) |
4561 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
4562 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4563 I915_READ(ILK_DISPLAY_CHICKEN2) |
4564 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01004565 I915_WRITE(ILK_DSPCLK_GATE_D,
4566 I915_READ(ILK_DSPCLK_GATE_D) |
4567 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
4568 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004569
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004570 /* WaMbcDriverBootEnable:snb */
Jesse Barnesb4ae3f22012-06-14 11:04:48 -07004571 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4572 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4573
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004574 for_each_pipe(pipe) {
4575 I915_WRITE(DSPCNTR(pipe),
4576 I915_READ(DSPCNTR(pipe)) |
4577 DISPPLANE_TRICKLE_FEED_DISABLE);
4578 intel_flush_display_plane(dev_priv, pipe);
4579 }
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07004580
4581 /* The default value should be 0x200 according to docs, but the two
4582 * platforms I checked have a 0 for this. (Maybe BIOS overrides?) */
4583 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_DISABLE(0xffff));
4584 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_ENABLE(GEN6_GT_MODE_HI));
Daniel Vetter3107bd42012-10-31 22:52:31 +01004585
4586 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004587
4588 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004589}
4590
4591static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
4592{
4593 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
4594
4595 reg &= ~GEN7_FF_SCHED_MASK;
4596 reg |= GEN7_FF_TS_SCHED_HW;
4597 reg |= GEN7_FF_VS_SCHED_HW;
4598 reg |= GEN7_FF_DS_SCHED_HW;
4599
Ben Widawsky41c0b3a2013-01-26 11:52:00 -08004600 if (IS_HASWELL(dev_priv->dev))
4601 reg &= ~GEN7_FF_VS_REF_CNT_FFME;
4602
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004603 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
4604}
4605
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004606static void lpt_init_clock_gating(struct drm_device *dev)
4607{
4608 struct drm_i915_private *dev_priv = dev->dev_private;
4609
4610 /*
4611 * TODO: this bit should only be enabled when really needed, then
4612 * disabled when not needed anymore in order to save power.
4613 */
4614 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
4615 I915_WRITE(SOUTH_DSPCLK_GATE_D,
4616 I915_READ(SOUTH_DSPCLK_GATE_D) |
4617 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03004618
4619 /* WADPOClockGatingDisable:hsw */
4620 I915_WRITE(_TRANSA_CHICKEN1,
4621 I915_READ(_TRANSA_CHICKEN1) |
4622 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004623}
4624
Imre Deak7d708ee2013-04-17 14:04:50 +03004625static void lpt_suspend_hw(struct drm_device *dev)
4626{
4627 struct drm_i915_private *dev_priv = dev->dev_private;
4628
4629 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
4630 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
4631
4632 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
4633 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
4634 }
4635}
4636
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004637static void haswell_init_clock_gating(struct drm_device *dev)
4638{
4639 struct drm_i915_private *dev_priv = dev->dev_private;
4640 int pipe;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004641
4642 I915_WRITE(WM3_LP_ILK, 0);
4643 I915_WRITE(WM2_LP_ILK, 0);
4644 I915_WRITE(WM1_LP_ILK, 0);
4645
4646 /* According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004647 * This implements the WaDisableRCZUnitClockGating:hsw workaround.
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004648 */
4649 I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
4650
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004651 /* Apply the WaDisableRHWOOptimizationForRenderHang:hsw workaround. */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004652 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
4653 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
4654
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004655 /* WaApplyL3ControlAndL3ChickenMode:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004656 I915_WRITE(GEN7_L3CNTLREG1,
4657 GEN7_WA_FOR_GEN7_L3_CONTROL);
4658 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
4659 GEN7_WA_L3_CHICKEN_MODE);
4660
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004661 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004662 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
4663 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
4664 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
4665
4666 for_each_pipe(pipe) {
4667 I915_WRITE(DSPCNTR(pipe),
4668 I915_READ(DSPCNTR(pipe)) |
4669 DISPPLANE_TRICKLE_FEED_DISABLE);
4670 intel_flush_display_plane(dev_priv, pipe);
4671 }
4672
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004673 /* WaVSRefCountFullforceMissDisable:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004674 gen7_setup_fixed_func_scheduler(dev_priv);
4675
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004676 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004677 I915_WRITE(CACHE_MODE_1,
4678 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03004679
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004680 /* WaMbcDriverBootEnable:hsw */
Paulo Zanonib3bf0762012-11-20 13:27:44 -02004681 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4682 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4683
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004684 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07004685 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
4686
Paulo Zanoni90a88642013-05-03 17:23:45 -03004687 /* WaRsPkgCStateDisplayPMReq:hsw */
4688 I915_WRITE(CHICKEN_PAR1_1,
4689 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03004690
Paulo Zanoni17a303e2012-11-20 15:12:07 -02004691 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03004692}
4693
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004694static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004695{
4696 struct drm_i915_private *dev_priv = dev->dev_private;
4697 int pipe;
Ben Widawsky20848222012-05-04 18:58:59 -07004698 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004699
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004700 I915_WRITE(WM3_LP_ILK, 0);
4701 I915_WRITE(WM2_LP_ILK, 0);
4702 I915_WRITE(WM1_LP_ILK, 0);
4703
Damien Lespiau231e54f2012-10-19 17:55:41 +01004704 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004705
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004706 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05004707 I915_WRITE(_3D_CHICKEN3,
4708 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
4709
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004710 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004711 I915_WRITE(IVB_CHICKEN3,
4712 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
4713 CHICKEN3_DGMG_DONE_FIX_DISABLE);
4714
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004715 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07004716 if (IS_IVB_GT1(dev))
4717 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
4718 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
4719 else
4720 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1_GT2,
4721 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
4722
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004723 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004724 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
4725 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
4726
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004727 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004728 I915_WRITE(GEN7_L3CNTLREG1,
4729 GEN7_WA_FOR_GEN7_L3_CONTROL);
4730 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07004731 GEN7_WA_L3_CHICKEN_MODE);
4732 if (IS_IVB_GT1(dev))
4733 I915_WRITE(GEN7_ROW_CHICKEN2,
4734 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
4735 else
4736 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
4737 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
4738
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004739
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004740 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05004741 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
4742 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
4743
Jesse Barnes0f846f82012-06-14 11:04:47 -07004744 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
4745 * gating disable must be set. Failure to set it results in
4746 * flickering pixels due to Z write ordering failures after
4747 * some amount of runtime in the Mesa "fire" demo, and Unigine
4748 * Sanctuary and Tropics, and apparently anything else with
4749 * alpha test or pixel discard.
4750 *
4751 * According to the spec, bit 11 (RCCUNIT) must also be set,
4752 * but we didn't debug actual testcases to find it out.
4753 *
4754 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004755 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004756 */
4757 I915_WRITE(GEN6_UCGCTL2,
4758 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
4759 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
4760
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004761 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004762 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
4763 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
4764 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
4765
4766 for_each_pipe(pipe) {
4767 I915_WRITE(DSPCNTR(pipe),
4768 I915_READ(DSPCNTR(pipe)) |
4769 DISPPLANE_TRICKLE_FEED_DISABLE);
4770 intel_flush_display_plane(dev_priv, pipe);
4771 }
4772
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004773 /* WaMbcDriverBootEnable:ivb */
Jesse Barnesb4ae3f22012-06-14 11:04:48 -07004774 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4775 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4776
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004777 /* WaVSRefCountFullforceMissDisable:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004778 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02004779
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004780 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02004781 I915_WRITE(CACHE_MODE_1,
4782 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07004783
4784 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
4785 snpcr &= ~GEN6_MBC_SNPCR_MASK;
4786 snpcr |= GEN6_MBC_SNPCR_MED;
4787 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01004788
Ben Widawskyab5c6082013-04-05 13:12:41 -07004789 if (!HAS_PCH_NOP(dev))
4790 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01004791
4792 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004793}
4794
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004795static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004796{
4797 struct drm_i915_private *dev_priv = dev->dev_private;
4798 int pipe;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004799
4800 I915_WRITE(WM3_LP_ILK, 0);
4801 I915_WRITE(WM2_LP_ILK, 0);
4802 I915_WRITE(WM1_LP_ILK, 0);
4803
Damien Lespiau231e54f2012-10-19 17:55:41 +01004804 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004805
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004806 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05004807 I915_WRITE(_3D_CHICKEN3,
4808 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
4809
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004810 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004811 I915_WRITE(IVB_CHICKEN3,
4812 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
4813 CHICKEN3_DGMG_DONE_FIX_DISABLE);
4814
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004815 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07004816 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08004817 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
4818 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07004819
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004820 /* Apply the WaDisableRHWOOptimizationForRenderHang:vlv workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004821 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
4822 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
4823
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004824 /* WaApplyL3ControlAndL3ChickenMode:vlv */
Jesse Barnesd0cf5ea2012-10-25 12:15:41 -07004825 I915_WRITE(GEN7_L3CNTLREG1, I915_READ(GEN7_L3CNTLREG1) | GEN7_L3AGDIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004826 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, GEN7_WA_L3_CHICKEN_MODE);
4827
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004828 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05004829 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
4830 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
4831
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004832 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07004833 I915_WRITE(GEN7_ROW_CHICKEN2,
4834 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
4835
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004836 /* WaForceL3Serialization:vlv */
Jesse Barnes5c9664d2012-10-25 12:15:43 -07004837 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
4838 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
4839
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004840 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004841 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
4842 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
4843 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
4844
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004845 /* WaMbcDriverBootEnable:vlv */
Jesse Barnesb4ae3f22012-06-14 11:04:48 -07004846 I915_WRITE(GEN6_MBCTL, I915_READ(GEN6_MBCTL) |
4847 GEN6_MBCTL_ENABLE_BOOT_FETCH);
4848
Jesse Barnes0f846f82012-06-14 11:04:47 -07004849
4850 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
4851 * gating disable must be set. Failure to set it results in
4852 * flickering pixels due to Z write ordering failures after
4853 * some amount of runtime in the Mesa "fire" demo, and Unigine
4854 * Sanctuary and Tropics, and apparently anything else with
4855 * alpha test or pixel discard.
4856 *
4857 * According to the spec, bit 11 (RCCUNIT) must also be set,
4858 * but we didn't debug actual testcases to find it out.
4859 *
4860 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004861 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004862 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004863 * Also apply WaDisableVDSUnitClockGating:vlv and
4864 * WaDisableRCPBUnitClockGating:vlv.
Jesse Barnes0f846f82012-06-14 11:04:47 -07004865 */
4866 I915_WRITE(GEN6_UCGCTL2,
4867 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes6edaa7f2012-06-14 11:04:49 -07004868 GEN7_TDLUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes0f846f82012-06-14 11:04:47 -07004869 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
4870 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
4871 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
4872
Jesse Barnese3f33d42012-06-14 11:04:50 -07004873 I915_WRITE(GEN7_UCGCTL4, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
4874
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004875 for_each_pipe(pipe) {
4876 I915_WRITE(DSPCNTR(pipe),
4877 I915_READ(DSPCNTR(pipe)) |
4878 DISPPLANE_TRICKLE_FEED_DISABLE);
4879 intel_flush_display_plane(dev_priv, pipe);
4880 }
4881
Daniel Vetter6b26c862012-04-24 14:04:12 +02004882 I915_WRITE(CACHE_MODE_1,
4883 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07004884
4885 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01004886 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07004887 * Disable clock gating on th GCFG unit to prevent a delay
4888 * in the reporting of vblank events.
4889 */
Jesse Barnes4e8c84a2013-03-08 10:45:54 -08004890 I915_WRITE(VLV_GUNIT_CLOCK_GATE, 0xffffffff);
4891
4892 /* Conservative clock gating settings for now */
4893 I915_WRITE(0x9400, 0xffffffff);
4894 I915_WRITE(0x9404, 0xffffffff);
4895 I915_WRITE(0x9408, 0xffffffff);
4896 I915_WRITE(0x940c, 0xffffffff);
4897 I915_WRITE(0x9410, 0xffffffff);
4898 I915_WRITE(0x9414, 0xffffffff);
4899 I915_WRITE(0x9418, 0xffffffff);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004900}
4901
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004902static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004903{
4904 struct drm_i915_private *dev_priv = dev->dev_private;
4905 uint32_t dspclk_gate;
4906
4907 I915_WRITE(RENCLK_GATE_D1, 0);
4908 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
4909 GS_UNIT_CLOCK_GATE_DISABLE |
4910 CL_UNIT_CLOCK_GATE_DISABLE);
4911 I915_WRITE(RAMCLK_GATE_D, 0);
4912 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
4913 OVRUNIT_CLOCK_GATE_DISABLE |
4914 OVCUNIT_CLOCK_GATE_DISABLE;
4915 if (IS_GM45(dev))
4916 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
4917 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02004918
4919 /* WaDisableRenderCachePipelinedFlush */
4920 I915_WRITE(CACHE_MODE_0,
4921 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004922}
4923
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004924static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004925{
4926 struct drm_i915_private *dev_priv = dev->dev_private;
4927
4928 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
4929 I915_WRITE(RENCLK_GATE_D2, 0);
4930 I915_WRITE(DSPCLK_GATE_D, 0);
4931 I915_WRITE(RAMCLK_GATE_D, 0);
4932 I915_WRITE16(DEUC, 0);
4933}
4934
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004935static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004936{
4937 struct drm_i915_private *dev_priv = dev->dev_private;
4938
4939 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
4940 I965_RCC_CLOCK_GATE_DISABLE |
4941 I965_RCPB_CLOCK_GATE_DISABLE |
4942 I965_ISC_CLOCK_GATE_DISABLE |
4943 I965_FBC_CLOCK_GATE_DISABLE);
4944 I915_WRITE(RENCLK_GATE_D2, 0);
4945}
4946
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004947static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004948{
4949 struct drm_i915_private *dev_priv = dev->dev_private;
4950 u32 dstate = I915_READ(D_STATE);
4951
4952 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
4953 DSTATE_DOT_CLOCK_GATING;
4954 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01004955
4956 if (IS_PINEVIEW(dev))
4957 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02004958
4959 /* IIR "flip pending" means done if this bit is set */
4960 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004961}
4962
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004963static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004964{
4965 struct drm_i915_private *dev_priv = dev->dev_private;
4966
4967 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
4968}
4969
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004970static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004971{
4972 struct drm_i915_private *dev_priv = dev->dev_private;
4973
4974 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
4975}
4976
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004977void intel_init_clock_gating(struct drm_device *dev)
4978{
4979 struct drm_i915_private *dev_priv = dev->dev_private;
4980
4981 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004982}
4983
Imre Deak7d708ee2013-04-17 14:04:50 +03004984void intel_suspend_hw(struct drm_device *dev)
4985{
4986 if (HAS_PCH_LPT(dev))
4987 lpt_suspend_hw(dev);
4988}
4989
Paulo Zanoni15d199e2013-03-22 14:14:13 -03004990/**
4991 * We should only use the power well if we explicitly asked the hardware to
4992 * enable it, so check if it's enabled and also check if we've requested it to
4993 * be enabled.
4994 */
Paulo Zanonib97186f2013-05-03 12:15:36 -03004995bool intel_display_power_enabled(struct drm_device *dev,
4996 enum intel_display_power_domain domain)
Paulo Zanoni15d199e2013-03-22 14:14:13 -03004997{
4998 struct drm_i915_private *dev_priv = dev->dev_private;
4999
Paulo Zanonib97186f2013-05-03 12:15:36 -03005000 if (!HAS_POWER_WELL(dev))
5001 return true;
5002
5003 switch (domain) {
5004 case POWER_DOMAIN_PIPE_A:
5005 case POWER_DOMAIN_TRANSCODER_EDP:
5006 return true;
5007 case POWER_DOMAIN_PIPE_B:
5008 case POWER_DOMAIN_PIPE_C:
5009 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
5010 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
5011 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
5012 case POWER_DOMAIN_TRANSCODER_A:
5013 case POWER_DOMAIN_TRANSCODER_B:
5014 case POWER_DOMAIN_TRANSCODER_C:
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005015 return I915_READ(HSW_PWR_WELL_DRIVER) ==
5016 (HSW_PWR_WELL_ENABLE | HSW_PWR_WELL_STATE);
Paulo Zanonib97186f2013-05-03 12:15:36 -03005017 default:
5018 BUG();
5019 }
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005020}
5021
Paulo Zanonicb107992013-01-25 16:59:15 -02005022void intel_set_power_well(struct drm_device *dev, bool enable)
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005023{
5024 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonifa42e232013-01-25 16:59:11 -02005025 bool is_enabled, enable_requested;
5026 uint32_t tmp;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005027
Paulo Zanoni86d52df2013-03-06 20:03:18 -03005028 if (!HAS_POWER_WELL(dev))
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005029 return;
5030
Paulo Zanoni2124b722013-03-22 14:07:23 -03005031 if (!i915_disable_power_well && !enable)
5032 return;
5033
Paulo Zanonifa42e232013-01-25 16:59:11 -02005034 tmp = I915_READ(HSW_PWR_WELL_DRIVER);
5035 is_enabled = tmp & HSW_PWR_WELL_STATE;
5036 enable_requested = tmp & HSW_PWR_WELL_ENABLE;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005037
Paulo Zanonifa42e232013-01-25 16:59:11 -02005038 if (enable) {
5039 if (!enable_requested)
5040 I915_WRITE(HSW_PWR_WELL_DRIVER, HSW_PWR_WELL_ENABLE);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005041
Paulo Zanonifa42e232013-01-25 16:59:11 -02005042 if (!is_enabled) {
5043 DRM_DEBUG_KMS("Enabling power well\n");
5044 if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
5045 HSW_PWR_WELL_STATE), 20))
5046 DRM_ERROR("Timeout enabling power well\n");
5047 }
5048 } else {
5049 if (enable_requested) {
5050 I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
5051 DRM_DEBUG_KMS("Requesting to disable the power well\n");
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005052 }
5053 }
Paulo Zanonifa42e232013-01-25 16:59:11 -02005054}
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005055
Paulo Zanonifa42e232013-01-25 16:59:11 -02005056/*
5057 * Starting with Haswell, we have a "Power Down Well" that can be turned off
5058 * when not needed anymore. We have 4 registers that can request the power well
5059 * to be enabled, and it will only be disabled if none of the registers is
5060 * requesting it to be enabled.
5061 */
5062void intel_init_power_well(struct drm_device *dev)
5063{
5064 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005065
Paulo Zanoni86d52df2013-03-06 20:03:18 -03005066 if (!HAS_POWER_WELL(dev))
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005067 return;
5068
Paulo Zanonifa42e232013-01-25 16:59:11 -02005069 /* For now, we need the power well to be always enabled. */
5070 intel_set_power_well(dev, true);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005071
Paulo Zanonifa42e232013-01-25 16:59:11 -02005072 /* We're taking over the BIOS, so clear any requests made by it since
5073 * the driver is in charge now. */
5074 if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE)
5075 I915_WRITE(HSW_PWR_WELL_BIOS, 0);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005076}
5077
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005078/* Set up chip specific power management-related functions */
5079void intel_init_pm(struct drm_device *dev)
5080{
5081 struct drm_i915_private *dev_priv = dev->dev_private;
5082
5083 if (I915_HAS_FBC(dev)) {
5084 if (HAS_PCH_SPLIT(dev)) {
5085 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
Rodrigo Vivi891348b2013-05-06 19:37:36 -03005086 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Rodrigo Viviabe959c2013-05-06 19:37:33 -03005087 dev_priv->display.enable_fbc =
5088 gen7_enable_fbc;
5089 else
5090 dev_priv->display.enable_fbc =
5091 ironlake_enable_fbc;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005092 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5093 } else if (IS_GM45(dev)) {
5094 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5095 dev_priv->display.enable_fbc = g4x_enable_fbc;
5096 dev_priv->display.disable_fbc = g4x_disable_fbc;
5097 } else if (IS_CRESTLINE(dev)) {
5098 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5099 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5100 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5101 }
5102 /* 855GM needs testing */
5103 }
5104
Daniel Vetterc921aba2012-04-26 23:28:17 +02005105 /* For cxsr */
5106 if (IS_PINEVIEW(dev))
5107 i915_pineview_get_mem_freq(dev);
5108 else if (IS_GEN5(dev))
5109 i915_ironlake_get_mem_freq(dev);
5110
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005111 /* For FIFO watermark updates */
5112 if (HAS_PCH_SPLIT(dev)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005113 if (IS_GEN5(dev)) {
5114 if (I915_READ(MLTR_ILK) & ILK_SRLT_MASK)
5115 dev_priv->display.update_wm = ironlake_update_wm;
5116 else {
5117 DRM_DEBUG_KMS("Failed to get proper latency. "
5118 "Disable CxSR\n");
5119 dev_priv->display.update_wm = NULL;
5120 }
5121 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
5122 } else if (IS_GEN6(dev)) {
5123 if (SNB_READ_WM0_LATENCY()) {
5124 dev_priv->display.update_wm = sandybridge_update_wm;
5125 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5126 } else {
5127 DRM_DEBUG_KMS("Failed to read display plane latency. "
5128 "Disable CxSR\n");
5129 dev_priv->display.update_wm = NULL;
5130 }
5131 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
5132 } else if (IS_IVYBRIDGE(dev)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005133 if (SNB_READ_WM0_LATENCY()) {
Chris Wilsonc43d0182012-12-11 12:01:42 +00005134 dev_priv->display.update_wm = ivybridge_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005135 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5136 } else {
5137 DRM_DEBUG_KMS("Failed to read display plane latency. "
5138 "Disable CxSR\n");
5139 dev_priv->display.update_wm = NULL;
5140 }
5141 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005142 } else if (IS_HASWELL(dev)) {
Paulo Zanoni3e1f7262013-05-03 17:23:44 -03005143 if (I915_READ64(MCH_SSKPD)) {
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005144 dev_priv->display.update_wm = haswell_update_wm;
Paulo Zanoni526682e2013-05-24 11:59:18 -03005145 dev_priv->display.update_sprite_wm =
5146 haswell_update_sprite_wm;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005147 } else {
5148 DRM_DEBUG_KMS("Failed to read display plane latency. "
5149 "Disable CxSR\n");
5150 dev_priv->display.update_wm = NULL;
5151 }
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005152 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005153 } else
5154 dev_priv->display.update_wm = NULL;
5155 } else if (IS_VALLEYVIEW(dev)) {
5156 dev_priv->display.update_wm = valleyview_update_wm;
5157 dev_priv->display.init_clock_gating =
5158 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005159 } else if (IS_PINEVIEW(dev)) {
5160 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
5161 dev_priv->is_ddr3,
5162 dev_priv->fsb_freq,
5163 dev_priv->mem_freq)) {
5164 DRM_INFO("failed to find known CxSR latency "
5165 "(found ddr%s fsb freq %d, mem freq %d), "
5166 "disabling CxSR\n",
5167 (dev_priv->is_ddr3 == 1) ? "3" : "2",
5168 dev_priv->fsb_freq, dev_priv->mem_freq);
5169 /* Disable CxSR and never update its watermark again */
5170 pineview_disable_cxsr(dev);
5171 dev_priv->display.update_wm = NULL;
5172 } else
5173 dev_priv->display.update_wm = pineview_update_wm;
5174 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5175 } else if (IS_G4X(dev)) {
5176 dev_priv->display.update_wm = g4x_update_wm;
5177 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
5178 } else if (IS_GEN4(dev)) {
5179 dev_priv->display.update_wm = i965_update_wm;
5180 if (IS_CRESTLINE(dev))
5181 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
5182 else if (IS_BROADWATER(dev))
5183 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
5184 } else if (IS_GEN3(dev)) {
5185 dev_priv->display.update_wm = i9xx_update_wm;
5186 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
5187 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5188 } else if (IS_I865G(dev)) {
5189 dev_priv->display.update_wm = i830_update_wm;
5190 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5191 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5192 } else if (IS_I85X(dev)) {
5193 dev_priv->display.update_wm = i9xx_update_wm;
5194 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
5195 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5196 } else {
5197 dev_priv->display.update_wm = i830_update_wm;
5198 dev_priv->display.init_clock_gating = i830_init_clock_gating;
5199 if (IS_845G(dev))
5200 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5201 else
5202 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5203 }
5204}
5205
Eugeni Dodonov65901902012-07-02 11:51:11 -03005206static void __gen6_gt_wait_for_thread_c0(struct drm_i915_private *dev_priv)
5207{
5208 u32 gt_thread_status_mask;
5209
5210 if (IS_HASWELL(dev_priv->dev))
5211 gt_thread_status_mask = GEN6_GT_THREAD_STATUS_CORE_MASK_HSW;
5212 else
5213 gt_thread_status_mask = GEN6_GT_THREAD_STATUS_CORE_MASK;
5214
5215 /* w/a for a sporadic read returning 0 by waiting for the GT
5216 * thread to wake up.
5217 */
5218 if (wait_for_atomic_us((I915_READ_NOTRACE(GEN6_GT_THREAD_STATUS_REG) & gt_thread_status_mask) == 0, 500))
5219 DRM_ERROR("GT thread status wait timed out\n");
5220}
5221
Chris Wilson16995a92012-10-18 11:46:10 +01005222static void __gen6_gt_force_wake_reset(struct drm_i915_private *dev_priv)
5223{
5224 I915_WRITE_NOTRACE(FORCEWAKE, 0);
5225 POSTING_READ(ECOBUS); /* something from same cacheline, but !FORCEWAKE */
5226}
5227
Eugeni Dodonov65901902012-07-02 11:51:11 -03005228static void __gen6_gt_force_wake_get(struct drm_i915_private *dev_priv)
5229{
Ville Syrjäläebd37ce2013-03-01 14:35:39 +02005230 if (wait_for_atomic((I915_READ_NOTRACE(FORCEWAKE_ACK) & 1) == 0,
Ben Widawsky057d3862012-09-01 22:59:49 -07005231 FORCEWAKE_ACK_TIMEOUT_MS))
Daniel Vetter8a038fd2012-08-24 17:26:21 +02005232 DRM_ERROR("Timed out waiting for forcewake old ack to clear.\n");
Eugeni Dodonov65901902012-07-02 11:51:11 -03005233
Ville Syrjälä30771e12013-03-01 14:35:38 +02005234 I915_WRITE_NOTRACE(FORCEWAKE, 1);
Ben Widawsky8dee3ee2012-09-01 22:59:50 -07005235 POSTING_READ(ECOBUS); /* something from same cacheline, but !FORCEWAKE */
Eugeni Dodonov65901902012-07-02 11:51:11 -03005236
Ville Syrjäläebd37ce2013-03-01 14:35:39 +02005237 if (wait_for_atomic((I915_READ_NOTRACE(FORCEWAKE_ACK) & 1),
Ben Widawsky057d3862012-09-01 22:59:49 -07005238 FORCEWAKE_ACK_TIMEOUT_MS))
Daniel Vetter8a038fd2012-08-24 17:26:21 +02005239 DRM_ERROR("Timed out waiting for forcewake to ack request.\n");
Eugeni Dodonov65901902012-07-02 11:51:11 -03005240
Damien Lespiau8693a822013-05-03 18:48:11 +01005241 /* WaRsForcewakeWaitTC0:snb */
Eugeni Dodonov65901902012-07-02 11:51:11 -03005242 __gen6_gt_wait_for_thread_c0(dev_priv);
5243}
5244
Chris Wilson16995a92012-10-18 11:46:10 +01005245static void __gen6_gt_force_wake_mt_reset(struct drm_i915_private *dev_priv)
5246{
5247 I915_WRITE_NOTRACE(FORCEWAKE_MT, _MASKED_BIT_DISABLE(0xffff));
Jani Nikulab5144072013-01-17 10:24:09 +02005248 /* something from same cacheline, but !FORCEWAKE_MT */
5249 POSTING_READ(ECOBUS);
Chris Wilson16995a92012-10-18 11:46:10 +01005250}
5251
Eugeni Dodonov65901902012-07-02 11:51:11 -03005252static void __gen6_gt_force_wake_mt_get(struct drm_i915_private *dev_priv)
5253{
5254 u32 forcewake_ack;
5255
5256 if (IS_HASWELL(dev_priv->dev))
5257 forcewake_ack = FORCEWAKE_ACK_HSW;
5258 else
5259 forcewake_ack = FORCEWAKE_MT_ACK;
5260
Ville Syrjälä83983c82013-03-01 14:35:37 +02005261 if (wait_for_atomic((I915_READ_NOTRACE(forcewake_ack) & FORCEWAKE_KERNEL) == 0,
Ben Widawsky057d3862012-09-01 22:59:49 -07005262 FORCEWAKE_ACK_TIMEOUT_MS))
Daniel Vetter8a038fd2012-08-24 17:26:21 +02005263 DRM_ERROR("Timed out waiting for forcewake old ack to clear.\n");
Eugeni Dodonov65901902012-07-02 11:51:11 -03005264
Chris Wilsonc5836c22012-10-17 12:09:55 +01005265 I915_WRITE_NOTRACE(FORCEWAKE_MT, _MASKED_BIT_ENABLE(FORCEWAKE_KERNEL));
Jani Nikulab5144072013-01-17 10:24:09 +02005266 /* something from same cacheline, but !FORCEWAKE_MT */
5267 POSTING_READ(ECOBUS);
Eugeni Dodonov65901902012-07-02 11:51:11 -03005268
Ville Syrjälä83983c82013-03-01 14:35:37 +02005269 if (wait_for_atomic((I915_READ_NOTRACE(forcewake_ack) & FORCEWAKE_KERNEL),
Ben Widawsky057d3862012-09-01 22:59:49 -07005270 FORCEWAKE_ACK_TIMEOUT_MS))
Daniel Vetter8a038fd2012-08-24 17:26:21 +02005271 DRM_ERROR("Timed out waiting for forcewake to ack request.\n");
Eugeni Dodonov65901902012-07-02 11:51:11 -03005272
Damien Lespiau8693a822013-05-03 18:48:11 +01005273 /* WaRsForcewakeWaitTC0:ivb,hsw */
Eugeni Dodonov65901902012-07-02 11:51:11 -03005274 __gen6_gt_wait_for_thread_c0(dev_priv);
5275}
5276
5277/*
5278 * Generally this is called implicitly by the register read function. However,
5279 * if some sequence requires the GT to not power down then this function should
5280 * be called at the beginning of the sequence followed by a call to
5281 * gen6_gt_force_wake_put() at the end of the sequence.
5282 */
5283void gen6_gt_force_wake_get(struct drm_i915_private *dev_priv)
5284{
5285 unsigned long irqflags;
5286
5287 spin_lock_irqsave(&dev_priv->gt_lock, irqflags);
5288 if (dev_priv->forcewake_count++ == 0)
5289 dev_priv->gt.force_wake_get(dev_priv);
5290 spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags);
5291}
5292
5293void gen6_gt_check_fifodbg(struct drm_i915_private *dev_priv)
5294{
5295 u32 gtfifodbg;
5296 gtfifodbg = I915_READ_NOTRACE(GTFIFODBG);
5297 if (WARN(gtfifodbg & GT_FIFO_CPU_ERROR_MASK,
5298 "MMIO read or write has been dropped %x\n", gtfifodbg))
5299 I915_WRITE_NOTRACE(GTFIFODBG, GT_FIFO_CPU_ERROR_MASK);
5300}
5301
5302static void __gen6_gt_force_wake_put(struct drm_i915_private *dev_priv)
5303{
5304 I915_WRITE_NOTRACE(FORCEWAKE, 0);
Jani Nikulab5144072013-01-17 10:24:09 +02005305 /* something from same cacheline, but !FORCEWAKE */
5306 POSTING_READ(ECOBUS);
Eugeni Dodonov65901902012-07-02 11:51:11 -03005307 gen6_gt_check_fifodbg(dev_priv);
5308}
5309
5310static void __gen6_gt_force_wake_mt_put(struct drm_i915_private *dev_priv)
5311{
Chris Wilsonc5836c22012-10-17 12:09:55 +01005312 I915_WRITE_NOTRACE(FORCEWAKE_MT, _MASKED_BIT_DISABLE(FORCEWAKE_KERNEL));
Jani Nikulab5144072013-01-17 10:24:09 +02005313 /* something from same cacheline, but !FORCEWAKE_MT */
5314 POSTING_READ(ECOBUS);
Eugeni Dodonov65901902012-07-02 11:51:11 -03005315 gen6_gt_check_fifodbg(dev_priv);
5316}
5317
5318/*
5319 * see gen6_gt_force_wake_get()
5320 */
5321void gen6_gt_force_wake_put(struct drm_i915_private *dev_priv)
5322{
5323 unsigned long irqflags;
5324
5325 spin_lock_irqsave(&dev_priv->gt_lock, irqflags);
5326 if (--dev_priv->forcewake_count == 0)
5327 dev_priv->gt.force_wake_put(dev_priv);
5328 spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags);
5329}
5330
5331int __gen6_gt_wait_for_fifo(struct drm_i915_private *dev_priv)
5332{
5333 int ret = 0;
5334
5335 if (dev_priv->gt_fifo_count < GT_FIFO_NUM_RESERVED_ENTRIES) {
5336 int loop = 500;
5337 u32 fifo = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
5338 while (fifo <= GT_FIFO_NUM_RESERVED_ENTRIES && loop--) {
5339 udelay(10);
5340 fifo = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
5341 }
5342 if (WARN_ON(loop < 0 && fifo <= GT_FIFO_NUM_RESERVED_ENTRIES))
5343 ++ret;
5344 dev_priv->gt_fifo_count = fifo;
5345 }
5346 dev_priv->gt_fifo_count--;
5347
5348 return ret;
5349}
5350
Chris Wilson16995a92012-10-18 11:46:10 +01005351static void vlv_force_wake_reset(struct drm_i915_private *dev_priv)
5352{
5353 I915_WRITE_NOTRACE(FORCEWAKE_VLV, _MASKED_BIT_DISABLE(0xffff));
Jani Nikulab5144072013-01-17 10:24:09 +02005354 /* something from same cacheline, but !FORCEWAKE_VLV */
5355 POSTING_READ(FORCEWAKE_ACK_VLV);
Chris Wilson16995a92012-10-18 11:46:10 +01005356}
5357
Eugeni Dodonov65901902012-07-02 11:51:11 -03005358static void vlv_force_wake_get(struct drm_i915_private *dev_priv)
5359{
Ville Syrjälä83983c82013-03-01 14:35:37 +02005360 if (wait_for_atomic((I915_READ_NOTRACE(FORCEWAKE_ACK_VLV) & FORCEWAKE_KERNEL) == 0,
Ben Widawsky057d3862012-09-01 22:59:49 -07005361 FORCEWAKE_ACK_TIMEOUT_MS))
Daniel Vetter8a038fd2012-08-24 17:26:21 +02005362 DRM_ERROR("Timed out waiting for forcewake old ack to clear.\n");
Eugeni Dodonov65901902012-07-02 11:51:11 -03005363
Chris Wilsonc5836c22012-10-17 12:09:55 +01005364 I915_WRITE_NOTRACE(FORCEWAKE_VLV, _MASKED_BIT_ENABLE(FORCEWAKE_KERNEL));
Jesse Barnesed5de392013-03-08 10:45:57 -08005365 I915_WRITE_NOTRACE(FORCEWAKE_MEDIA_VLV,
5366 _MASKED_BIT_ENABLE(FORCEWAKE_KERNEL));
Eugeni Dodonov65901902012-07-02 11:51:11 -03005367
Ville Syrjälä83983c82013-03-01 14:35:37 +02005368 if (wait_for_atomic((I915_READ_NOTRACE(FORCEWAKE_ACK_VLV) & FORCEWAKE_KERNEL),
Ben Widawsky057d3862012-09-01 22:59:49 -07005369 FORCEWAKE_ACK_TIMEOUT_MS))
Jesse Barnesed5de392013-03-08 10:45:57 -08005370 DRM_ERROR("Timed out waiting for GT to ack forcewake request.\n");
5371
5372 if (wait_for_atomic((I915_READ_NOTRACE(FORCEWAKE_ACK_MEDIA_VLV) &
5373 FORCEWAKE_KERNEL),
5374 FORCEWAKE_ACK_TIMEOUT_MS))
5375 DRM_ERROR("Timed out waiting for media to ack forcewake request.\n");
Eugeni Dodonov65901902012-07-02 11:51:11 -03005376
Damien Lespiau8693a822013-05-03 18:48:11 +01005377 /* WaRsForcewakeWaitTC0:vlv */
Eugeni Dodonov65901902012-07-02 11:51:11 -03005378 __gen6_gt_wait_for_thread_c0(dev_priv);
5379}
5380
5381static void vlv_force_wake_put(struct drm_i915_private *dev_priv)
5382{
Chris Wilsonc5836c22012-10-17 12:09:55 +01005383 I915_WRITE_NOTRACE(FORCEWAKE_VLV, _MASKED_BIT_DISABLE(FORCEWAKE_KERNEL));
Jesse Barnesed5de392013-03-08 10:45:57 -08005384 I915_WRITE_NOTRACE(FORCEWAKE_MEDIA_VLV,
5385 _MASKED_BIT_DISABLE(FORCEWAKE_KERNEL));
5386 /* The below doubles as a POSTING_READ */
Daniel Vetter5ab140a2012-08-24 17:26:20 +02005387 gen6_gt_check_fifodbg(dev_priv);
Eugeni Dodonov65901902012-07-02 11:51:11 -03005388}
5389
Chris Wilson16995a92012-10-18 11:46:10 +01005390void intel_gt_reset(struct drm_device *dev)
5391{
5392 struct drm_i915_private *dev_priv = dev->dev_private;
5393
5394 if (IS_VALLEYVIEW(dev)) {
5395 vlv_force_wake_reset(dev_priv);
5396 } else if (INTEL_INFO(dev)->gen >= 6) {
5397 __gen6_gt_force_wake_reset(dev_priv);
5398 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
5399 __gen6_gt_force_wake_mt_reset(dev_priv);
5400 }
5401}
5402
Eugeni Dodonov65901902012-07-02 11:51:11 -03005403void intel_gt_init(struct drm_device *dev)
5404{
5405 struct drm_i915_private *dev_priv = dev->dev_private;
5406
5407 spin_lock_init(&dev_priv->gt_lock);
5408
Chris Wilson16995a92012-10-18 11:46:10 +01005409 intel_gt_reset(dev);
5410
Eugeni Dodonov65901902012-07-02 11:51:11 -03005411 if (IS_VALLEYVIEW(dev)) {
5412 dev_priv->gt.force_wake_get = vlv_force_wake_get;
5413 dev_priv->gt.force_wake_put = vlv_force_wake_put;
Daniel Vetter36ec8f82012-10-18 14:44:35 +02005414 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
5415 dev_priv->gt.force_wake_get = __gen6_gt_force_wake_mt_get;
5416 dev_priv->gt.force_wake_put = __gen6_gt_force_wake_mt_put;
5417 } else if (IS_GEN6(dev)) {
Eugeni Dodonov65901902012-07-02 11:51:11 -03005418 dev_priv->gt.force_wake_get = __gen6_gt_force_wake_get;
5419 dev_priv->gt.force_wake_put = __gen6_gt_force_wake_put;
Eugeni Dodonov65901902012-07-02 11:51:11 -03005420 }
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005421 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
5422 intel_gen6_powersave_work);
Eugeni Dodonov65901902012-07-02 11:51:11 -03005423}
5424
Ben Widawsky42c05262012-09-26 10:34:00 -07005425int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val)
5426{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005427 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005428
5429 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5430 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
5431 return -EAGAIN;
5432 }
5433
5434 I915_WRITE(GEN6_PCODE_DATA, *val);
5435 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5436
5437 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5438 500)) {
5439 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
5440 return -ETIMEDOUT;
5441 }
5442
5443 *val = I915_READ(GEN6_PCODE_DATA);
5444 I915_WRITE(GEN6_PCODE_DATA, 0);
5445
5446 return 0;
5447}
5448
5449int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val)
5450{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005451 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005452
5453 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5454 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
5455 return -EAGAIN;
5456 }
5457
5458 I915_WRITE(GEN6_PCODE_DATA, val);
5459 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5460
5461 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5462 500)) {
5463 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
5464 return -ETIMEDOUT;
5465 }
5466
5467 I915_WRITE(GEN6_PCODE_DATA, 0);
5468
5469 return 0;
5470}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07005471
Jesse Barnes855ba3b2013-04-17 15:54:57 -07005472int vlv_gpu_freq(int ddr_freq, int val)
5473{
5474 int mult, base;
5475
5476 switch (ddr_freq) {
5477 case 800:
5478 mult = 20;
5479 base = 120;
5480 break;
5481 case 1066:
5482 mult = 22;
5483 base = 133;
5484 break;
5485 case 1333:
5486 mult = 21;
5487 base = 125;
5488 break;
5489 default:
5490 return -1;
5491 }
5492
5493 return ((val - 0xbd) * mult) + base;
5494}
5495
5496int vlv_freq_opcode(int ddr_freq, int val)
5497{
5498 int mult, base;
5499
5500 switch (ddr_freq) {
5501 case 800:
5502 mult = 20;
5503 base = 120;
5504 break;
5505 case 1066:
5506 mult = 22;
5507 base = 133;
5508 break;
5509 case 1333:
5510 mult = 21;
5511 base = 125;
5512 break;
5513 default:
5514 return -1;
5515 }
5516
5517 val /= mult;
5518 val -= base / mult;
5519 val += 0xbd;
5520
5521 if (val > 0xea)
5522 val = 0xea;
5523
5524 return val;
5525}
5526