blob: 276e98df1c0dbf461a90f3d679eaaa4c497fe33d [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>
Paulo Zanonif9dcb0d2013-12-11 18:50:10 -020033#include <linux/vgaarb.h>
Damien Lespiauf4db9322013-06-24 22:59:50 +010034#include <drm/i915_powerwell.h>
Paulo Zanoni8a187452013-12-06 20:32:13 -020035#include <linux/pm_runtime.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030036
Ben Widawskydc39fff2013-10-18 12:32:07 -070037/**
38 * RC6 is a special power stage which allows the GPU to enter an very
39 * low-voltage mode when idle, using down to 0V while at this stage. This
40 * stage is entered automatically when the GPU is idle when RC6 support is
41 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
42 *
43 * There are different RC6 modes available in Intel GPU, which differentiate
44 * among each other with the latency required to enter and leave RC6 and
45 * voltage consumed by the GPU in different states.
46 *
47 * The combination of the following flags define which states GPU is allowed
48 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
49 * RC6pp is deepest RC6. Their support by hardware varies according to the
50 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
51 * which brings the most power savings; deeper states save more power, but
52 * require higher latency to switch to and wake up.
53 */
54#define INTEL_RC6_ENABLE (1<<0)
55#define INTEL_RC6p_ENABLE (1<<1)
56#define INTEL_RC6pp_ENABLE (1<<2)
57
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030058/* FBC, or Frame Buffer Compression, is a technique employed to compress the
59 * framebuffer contents in-memory, aiming at reducing the required bandwidth
60 * during in-memory transfers and, therefore, reduce the power packet.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030061 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030062 * The benefits of FBC are mostly visible with solid backgrounds and
63 * variation-less patterns.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030064 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030065 * FBC-related functionality can be enabled by the means of the
66 * i915.i915_enable_fbc parameter
Eugeni Dodonov85208be2012-04-16 22:20:34 -030067 */
68
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030069static void i8xx_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030070{
71 struct drm_i915_private *dev_priv = dev->dev_private;
72 u32 fbc_ctl;
73
74 /* Disable compression */
75 fbc_ctl = I915_READ(FBC_CONTROL);
76 if ((fbc_ctl & FBC_CTL_EN) == 0)
77 return;
78
79 fbc_ctl &= ~FBC_CTL_EN;
80 I915_WRITE(FBC_CONTROL, fbc_ctl);
81
82 /* Wait for compressing bit to clear */
83 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
84 DRM_DEBUG_KMS("FBC idle timed out\n");
85 return;
86 }
87
88 DRM_DEBUG_KMS("disabled FBC\n");
89}
90
Ville Syrjälä993495a2013-12-12 17:27:40 +020091static void i8xx_enable_fbc(struct drm_crtc *crtc)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030092{
93 struct drm_device *dev = crtc->dev;
94 struct drm_i915_private *dev_priv = dev->dev_private;
95 struct drm_framebuffer *fb = crtc->fb;
96 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
97 struct drm_i915_gem_object *obj = intel_fb->obj;
98 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
99 int cfb_pitch;
100 int plane, i;
Ville Syrjälä159f9872013-11-28 17:29:57 +0200101 u32 fbc_ctl;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300102
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700103 cfb_pitch = dev_priv->fbc.size / FBC_LL_SIZE;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300104 if (fb->pitches[0] < cfb_pitch)
105 cfb_pitch = fb->pitches[0];
106
Ville Syrjälä42a430f2013-11-28 17:29:56 +0200107 /* FBC_CTL wants 32B or 64B units */
108 if (IS_GEN2(dev))
109 cfb_pitch = (cfb_pitch / 32) - 1;
110 else
111 cfb_pitch = (cfb_pitch / 64) - 1;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300112 plane = intel_crtc->plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
113
114 /* Clear old tags */
115 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
116 I915_WRITE(FBC_TAG + (i * 4), 0);
117
Ville Syrjälä159f9872013-11-28 17:29:57 +0200118 if (IS_GEN4(dev)) {
119 u32 fbc_ctl2;
120
121 /* Set it up... */
122 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE;
123 fbc_ctl2 |= plane;
124 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
125 I915_WRITE(FBC_FENCE_OFF, crtc->y);
126 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300127
128 /* enable it... */
Ville Syrjälä993495a2013-12-12 17:27:40 +0200129 fbc_ctl = I915_READ(FBC_CONTROL);
130 fbc_ctl &= 0x3fff << FBC_CTL_INTERVAL_SHIFT;
131 fbc_ctl |= FBC_CTL_EN | FBC_CTL_PERIODIC;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300132 if (IS_I945GM(dev))
133 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
134 fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300135 fbc_ctl |= obj->fence_reg;
136 I915_WRITE(FBC_CONTROL, fbc_ctl);
137
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300138 DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c, ",
139 cfb_pitch, crtc->y, plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300140}
141
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300142static bool i8xx_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300143{
144 struct drm_i915_private *dev_priv = dev->dev_private;
145
146 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
147}
148
Ville Syrjälä993495a2013-12-12 17:27:40 +0200149static void g4x_enable_fbc(struct drm_crtc *crtc)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300150{
151 struct drm_device *dev = crtc->dev;
152 struct drm_i915_private *dev_priv = dev->dev_private;
153 struct drm_framebuffer *fb = crtc->fb;
154 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
155 struct drm_i915_gem_object *obj = intel_fb->obj;
156 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
157 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300158 u32 dpfc_ctl;
159
160 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
161 dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg;
162 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
163
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300164 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
165
166 /* enable it... */
167 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
168
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300169 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300170}
171
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300172static void g4x_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300173{
174 struct drm_i915_private *dev_priv = dev->dev_private;
175 u32 dpfc_ctl;
176
177 /* Disable compression */
178 dpfc_ctl = I915_READ(DPFC_CONTROL);
179 if (dpfc_ctl & DPFC_CTL_EN) {
180 dpfc_ctl &= ~DPFC_CTL_EN;
181 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
182
183 DRM_DEBUG_KMS("disabled FBC\n");
184 }
185}
186
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300187static bool g4x_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300188{
189 struct drm_i915_private *dev_priv = dev->dev_private;
190
191 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
192}
193
194static void sandybridge_blit_fbc_update(struct drm_device *dev)
195{
196 struct drm_i915_private *dev_priv = dev->dev_private;
197 u32 blt_ecoskpd;
198
199 /* Make sure blitter notifies FBC of writes */
Deepak S940aece2013-11-23 14:55:43 +0530200
201 /* Blitter is part of Media powerwell on VLV. No impact of
202 * his param in other platforms for now */
203 gen6_gt_force_wake_get(dev_priv, FORCEWAKE_MEDIA);
Deepak Sc8d9a592013-11-23 14:55:42 +0530204
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300205 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
206 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
207 GEN6_BLITTER_LOCK_SHIFT;
208 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
209 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
210 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
211 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
212 GEN6_BLITTER_LOCK_SHIFT);
213 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
214 POSTING_READ(GEN6_BLITTER_ECOSKPD);
Deepak Sc8d9a592013-11-23 14:55:42 +0530215
Deepak S940aece2013-11-23 14:55:43 +0530216 gen6_gt_force_wake_put(dev_priv, FORCEWAKE_MEDIA);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300217}
218
Ville Syrjälä993495a2013-12-12 17:27:40 +0200219static void ironlake_enable_fbc(struct drm_crtc *crtc)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300220{
221 struct drm_device *dev = crtc->dev;
222 struct drm_i915_private *dev_priv = dev->dev_private;
223 struct drm_framebuffer *fb = crtc->fb;
224 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
225 struct drm_i915_gem_object *obj = intel_fb->obj;
226 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
227 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300228 u32 dpfc_ctl;
229
230 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
231 dpfc_ctl &= DPFC_RESERVED;
232 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
233 /* Set persistent mode for front-buffer rendering, ala X. */
234 dpfc_ctl |= DPFC_CTL_PERSISTENT_MODE;
Ville Syrjäläd6293362013-11-21 21:29:45 +0200235 dpfc_ctl |= DPFC_CTL_FENCE_EN;
236 if (IS_GEN5(dev))
237 dpfc_ctl |= obj->fence_reg;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300238 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
239
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300240 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700241 I915_WRITE(ILK_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj) | ILK_FBC_RT_VALID);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300242 /* enable it... */
243 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
244
245 if (IS_GEN6(dev)) {
246 I915_WRITE(SNB_DPFC_CTL_SA,
247 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
248 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
249 sandybridge_blit_fbc_update(dev);
250 }
251
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300252 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300253}
254
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300255static void ironlake_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300256{
257 struct drm_i915_private *dev_priv = dev->dev_private;
258 u32 dpfc_ctl;
259
260 /* Disable compression */
261 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
262 if (dpfc_ctl & DPFC_CTL_EN) {
263 dpfc_ctl &= ~DPFC_CTL_EN;
264 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
265
266 DRM_DEBUG_KMS("disabled FBC\n");
267 }
268}
269
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300270static bool ironlake_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300271{
272 struct drm_i915_private *dev_priv = dev->dev_private;
273
274 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
275}
276
Ville Syrjälä993495a2013-12-12 17:27:40 +0200277static void gen7_enable_fbc(struct drm_crtc *crtc)
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300278{
279 struct drm_device *dev = crtc->dev;
280 struct drm_i915_private *dev_priv = dev->dev_private;
281 struct drm_framebuffer *fb = crtc->fb;
282 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
283 struct drm_i915_gem_object *obj = intel_fb->obj;
284 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
285
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700286 I915_WRITE(IVB_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj));
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300287
288 I915_WRITE(ILK_DPFC_CONTROL, DPFC_CTL_EN | DPFC_CTL_LIMIT_1X |
289 IVB_DPFC_CTL_FENCE_EN |
290 intel_crtc->plane << IVB_DPFC_CTL_PLANE_SHIFT);
291
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300292 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100293 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300294 I915_WRITE(ILK_DISPLAY_CHICKEN1, ILK_FBCQ_DIS);
Rodrigo Vivi28554162013-05-06 19:37:37 -0300295 } else {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100296 /* WaFbcAsynchFlipDisableFbcQueue:hsw */
Rodrigo Vivi28554162013-05-06 19:37:37 -0300297 I915_WRITE(HSW_PIPE_SLICE_CHICKEN_1(intel_crtc->pipe),
298 HSW_BYPASS_FBC_QUEUE);
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300299 }
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300300
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300301 I915_WRITE(SNB_DPFC_CTL_SA,
302 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
303 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
304
305 sandybridge_blit_fbc_update(dev);
306
Ville Syrjäläb19870e2013-11-06 23:02:25 +0200307 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300308}
309
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300310bool intel_fbc_enabled(struct drm_device *dev)
311{
312 struct drm_i915_private *dev_priv = dev->dev_private;
313
314 if (!dev_priv->display.fbc_enabled)
315 return false;
316
317 return dev_priv->display.fbc_enabled(dev);
318}
319
320static void intel_fbc_work_fn(struct work_struct *__work)
321{
322 struct intel_fbc_work *work =
323 container_of(to_delayed_work(__work),
324 struct intel_fbc_work, work);
325 struct drm_device *dev = work->crtc->dev;
326 struct drm_i915_private *dev_priv = dev->dev_private;
327
328 mutex_lock(&dev->struct_mutex);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700329 if (work == dev_priv->fbc.fbc_work) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300330 /* Double check that we haven't switched fb without cancelling
331 * the prior work.
332 */
333 if (work->crtc->fb == work->fb) {
Ville Syrjälä993495a2013-12-12 17:27:40 +0200334 dev_priv->display.enable_fbc(work->crtc);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300335
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700336 dev_priv->fbc.plane = to_intel_crtc(work->crtc)->plane;
337 dev_priv->fbc.fb_id = work->crtc->fb->base.id;
338 dev_priv->fbc.y = work->crtc->y;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300339 }
340
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700341 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300342 }
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{
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700350 if (dev_priv->fbc.fbc_work == NULL)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300351 return;
352
353 DRM_DEBUG_KMS("cancelling pending FBC enable\n");
354
355 /* Synchronisation is provided by struct_mutex and checking of
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700356 * dev_priv->fbc.fbc_work, so we can perform the cancellation
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300357 * entirely asynchronously.
358 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700359 if (cancel_delayed_work(&dev_priv->fbc.fbc_work->work))
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300360 /* tasklet was killed before being run, clean up */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700361 kfree(dev_priv->fbc.fbc_work);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300362
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 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700368 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300369}
370
Ville Syrjälä993495a2013-12-12 17:27:40 +0200371static void intel_enable_fbc(struct drm_crtc *crtc)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300372{
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
Daniel Vetterb14c5672013-09-19 12:18:32 +0200382 work = kzalloc(sizeof(*work), GFP_KERNEL);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300383 if (work == NULL) {
Paulo Zanoni6cdcb5e2013-06-12 17:27:29 -0300384 DRM_ERROR("Failed to allocate FBC work structure\n");
Ville Syrjälä993495a2013-12-12 17:27:40 +0200385 dev_priv->display.enable_fbc(crtc);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300386 return;
387 }
388
389 work->crtc = crtc;
390 work->fb = crtc->fb;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300391 INIT_DELAYED_WORK(&work->work, intel_fbc_work_fn);
392
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700393 dev_priv->fbc.fbc_work = work;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300394
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300395 /* Delay the actual enabling to let pageflipping cease and the
396 * display to settle before starting the compression. Note that
397 * this delay also serves a second purpose: it allows for a
398 * vblank to pass after disabling the FBC before we attempt
399 * to modify the control registers.
400 *
401 * A more complicated solution would involve tracking vblanks
402 * following the termination of the page-flipping sequence
403 * and indeed performing the enable as a co-routine and not
404 * waiting synchronously upon the vblank.
Damien Lespiau7457d612013-06-07 17:41:07 +0100405 *
406 * WaFbcWaitForVBlankBeforeEnable:ilk,snb
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300407 */
408 schedule_delayed_work(&work->work, msecs_to_jiffies(50));
409}
410
411void intel_disable_fbc(struct drm_device *dev)
412{
413 struct drm_i915_private *dev_priv = dev->dev_private;
414
415 intel_cancel_fbc_work(dev_priv);
416
417 if (!dev_priv->display.disable_fbc)
418 return;
419
420 dev_priv->display.disable_fbc(dev);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700421 dev_priv->fbc.plane = -1;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300422}
423
Chris Wilson29ebf902013-07-27 17:23:55 +0100424static bool set_no_fbc_reason(struct drm_i915_private *dev_priv,
425 enum no_fbc_reason reason)
426{
427 if (dev_priv->fbc.no_fbc_reason == reason)
428 return false;
429
430 dev_priv->fbc.no_fbc_reason = reason;
431 return true;
432}
433
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300434/**
435 * intel_update_fbc - enable/disable FBC as needed
436 * @dev: the drm_device
437 *
438 * Set up the framebuffer compression hardware at mode set time. We
439 * enable it if possible:
440 * - plane A only (on pre-965)
441 * - no pixel mulitply/line duplication
442 * - no alpha buffer discard
443 * - no dual wide
Paulo Zanonif85da862013-06-04 16:53:39 -0300444 * - framebuffer <= max_hdisplay in width, max_vdisplay in height
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300445 *
446 * We can't assume that any compression will take place (worst case),
447 * so the compressed buffer has to be the same size as the uncompressed
448 * one. It also must reside (along with the line length buffer) in
449 * stolen memory.
450 *
451 * We need to enable/disable FBC on a global basis.
452 */
453void intel_update_fbc(struct drm_device *dev)
454{
455 struct drm_i915_private *dev_priv = dev->dev_private;
456 struct drm_crtc *crtc = NULL, *tmp_crtc;
457 struct intel_crtc *intel_crtc;
458 struct drm_framebuffer *fb;
459 struct intel_framebuffer *intel_fb;
460 struct drm_i915_gem_object *obj;
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300461 const struct drm_display_mode *adjusted_mode;
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300462 unsigned int max_width, max_height;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300463
Chris Wilson29ebf902013-07-27 17:23:55 +0100464 if (!I915_HAS_FBC(dev)) {
465 set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300466 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100467 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300468
Chris Wilson29ebf902013-07-27 17:23:55 +0100469 if (!i915_powersave) {
470 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
471 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300472 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100473 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300474
475 /*
476 * If FBC is already on, we just have to verify that we can
477 * keep it that way...
478 * Need to disable if:
479 * - more than one pipe is active
480 * - changing FBC params (stride, fence, mode)
481 * - new fb is too large to fit in compressed buffer
482 * - going to an unsupported config (interlace, pixel multiply, etc.)
483 */
484 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000485 if (intel_crtc_active(tmp_crtc) &&
Ville Syrjälä4c445e02013-10-09 17:24:58 +0300486 to_intel_crtc(tmp_crtc)->primary_enabled) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300487 if (crtc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100488 if (set_no_fbc_reason(dev_priv, FBC_MULTIPLE_PIPES))
489 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300490 goto out_disable;
491 }
492 crtc = tmp_crtc;
493 }
494 }
495
496 if (!crtc || crtc->fb == NULL) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100497 if (set_no_fbc_reason(dev_priv, FBC_NO_OUTPUT))
498 DRM_DEBUG_KMS("no output, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300499 goto out_disable;
500 }
501
502 intel_crtc = to_intel_crtc(crtc);
503 fb = crtc->fb;
504 intel_fb = to_intel_framebuffer(fb);
505 obj = intel_fb->obj;
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300506 adjusted_mode = &intel_crtc->config.adjusted_mode;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300507
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100508 if (i915_enable_fbc < 0 &&
509 INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100510 if (set_no_fbc_reason(dev_priv, FBC_CHIP_DEFAULT))
511 DRM_DEBUG_KMS("disabled per chip default\n");
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100512 goto out_disable;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300513 }
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100514 if (!i915_enable_fbc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100515 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
516 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300517 goto out_disable;
518 }
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300519 if ((adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) ||
520 (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100521 if (set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED_MODE))
522 DRM_DEBUG_KMS("mode incompatible with compression, "
523 "disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300524 goto out_disable;
525 }
Paulo Zanonif85da862013-06-04 16:53:39 -0300526
527 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300528 max_width = 4096;
529 max_height = 2048;
Paulo Zanonif85da862013-06-04 16:53:39 -0300530 } else {
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300531 max_width = 2048;
532 max_height = 1536;
Paulo Zanonif85da862013-06-04 16:53:39 -0300533 }
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300534 if (intel_crtc->config.pipe_src_w > max_width ||
535 intel_crtc->config.pipe_src_h > max_height) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100536 if (set_no_fbc_reason(dev_priv, FBC_MODE_TOO_LARGE))
537 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300538 goto out_disable;
539 }
Ville Syrjäläc5a44aa2013-11-28 17:29:58 +0200540 if ((INTEL_INFO(dev)->gen < 4 || IS_HASWELL(dev)) &&
541 intel_crtc->plane != PLANE_A) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100542 if (set_no_fbc_reason(dev_priv, FBC_BAD_PLANE))
Ville Syrjäläc5a44aa2013-11-28 17:29:58 +0200543 DRM_DEBUG_KMS("plane not A, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300544 goto out_disable;
545 }
546
547 /* The use of a CPU fence is mandatory in order to detect writes
548 * by the CPU to the scanout and trigger updates to the FBC.
549 */
550 if (obj->tiling_mode != I915_TILING_X ||
551 obj->fence_reg == I915_FENCE_REG_NONE) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100552 if (set_no_fbc_reason(dev_priv, FBC_NOT_TILED))
553 DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300554 goto out_disable;
555 }
556
557 /* If the kernel debugger is active, always disable compression */
558 if (in_dbg_master())
559 goto out_disable;
560
Chris Wilson11be49e2012-11-15 11:32:20 +0000561 if (i915_gem_stolen_setup_compression(dev, intel_fb->obj->base.size)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100562 if (set_no_fbc_reason(dev_priv, FBC_STOLEN_TOO_SMALL))
563 DRM_DEBUG_KMS("framebuffer too large, disabling compression\n");
Chris Wilson11be49e2012-11-15 11:32:20 +0000564 goto out_disable;
565 }
566
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300567 /* If the scanout has not changed, don't modify the FBC settings.
568 * Note that we make the fundamental assumption that the fb->obj
569 * cannot be unpinned (and have its GTT offset and fence revoked)
570 * without first being decoupled from the scanout and FBC disabled.
571 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700572 if (dev_priv->fbc.plane == intel_crtc->plane &&
573 dev_priv->fbc.fb_id == fb->base.id &&
574 dev_priv->fbc.y == crtc->y)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300575 return;
576
577 if (intel_fbc_enabled(dev)) {
578 /* We update FBC along two paths, after changing fb/crtc
579 * configuration (modeswitching) and after page-flipping
580 * finishes. For the latter, we know that not only did
581 * we disable the FBC at the start of the page-flip
582 * sequence, but also more than one vblank has passed.
583 *
584 * For the former case of modeswitching, it is possible
585 * to switch between two FBC valid configurations
586 * instantaneously so we do need to disable the FBC
587 * before we can modify its control registers. We also
588 * have to wait for the next vblank for that to take
589 * effect. However, since we delay enabling FBC we can
590 * assume that a vblank has passed since disabling and
591 * that we can safely alter the registers in the deferred
592 * callback.
593 *
594 * In the scenario that we go from a valid to invalid
595 * and then back to valid FBC configuration we have
596 * no strict enforcement that a vblank occurred since
597 * disabling the FBC. However, along all current pipe
598 * disabling paths we do need to wait for a vblank at
599 * some point. And we wait before enabling FBC anyway.
600 */
601 DRM_DEBUG_KMS("disabling active FBC for update\n");
602 intel_disable_fbc(dev);
603 }
604
Ville Syrjälä993495a2013-12-12 17:27:40 +0200605 intel_enable_fbc(crtc);
Chris Wilson29ebf902013-07-27 17:23:55 +0100606 dev_priv->fbc.no_fbc_reason = FBC_OK;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300607 return;
608
609out_disable:
610 /* Multiple disables should be harmless */
611 if (intel_fbc_enabled(dev)) {
612 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
613 intel_disable_fbc(dev);
614 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000615 i915_gem_stolen_cleanup_compression(dev);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300616}
617
Daniel Vetterc921aba2012-04-26 23:28:17 +0200618static void i915_pineview_get_mem_freq(struct drm_device *dev)
619{
620 drm_i915_private_t *dev_priv = dev->dev_private;
621 u32 tmp;
622
623 tmp = I915_READ(CLKCFG);
624
625 switch (tmp & CLKCFG_FSB_MASK) {
626 case CLKCFG_FSB_533:
627 dev_priv->fsb_freq = 533; /* 133*4 */
628 break;
629 case CLKCFG_FSB_800:
630 dev_priv->fsb_freq = 800; /* 200*4 */
631 break;
632 case CLKCFG_FSB_667:
633 dev_priv->fsb_freq = 667; /* 167*4 */
634 break;
635 case CLKCFG_FSB_400:
636 dev_priv->fsb_freq = 400; /* 100*4 */
637 break;
638 }
639
640 switch (tmp & CLKCFG_MEM_MASK) {
641 case CLKCFG_MEM_533:
642 dev_priv->mem_freq = 533;
643 break;
644 case CLKCFG_MEM_667:
645 dev_priv->mem_freq = 667;
646 break;
647 case CLKCFG_MEM_800:
648 dev_priv->mem_freq = 800;
649 break;
650 }
651
652 /* detect pineview DDR3 setting */
653 tmp = I915_READ(CSHRDDR3CTL);
654 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
655}
656
657static void i915_ironlake_get_mem_freq(struct drm_device *dev)
658{
659 drm_i915_private_t *dev_priv = dev->dev_private;
660 u16 ddrpll, csipll;
661
662 ddrpll = I915_READ16(DDRMPLL1);
663 csipll = I915_READ16(CSIPLL0);
664
665 switch (ddrpll & 0xff) {
666 case 0xc:
667 dev_priv->mem_freq = 800;
668 break;
669 case 0x10:
670 dev_priv->mem_freq = 1066;
671 break;
672 case 0x14:
673 dev_priv->mem_freq = 1333;
674 break;
675 case 0x18:
676 dev_priv->mem_freq = 1600;
677 break;
678 default:
679 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
680 ddrpll & 0xff);
681 dev_priv->mem_freq = 0;
682 break;
683 }
684
Daniel Vetter20e4d402012-08-08 23:35:39 +0200685 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200686
687 switch (csipll & 0x3ff) {
688 case 0x00c:
689 dev_priv->fsb_freq = 3200;
690 break;
691 case 0x00e:
692 dev_priv->fsb_freq = 3733;
693 break;
694 case 0x010:
695 dev_priv->fsb_freq = 4266;
696 break;
697 case 0x012:
698 dev_priv->fsb_freq = 4800;
699 break;
700 case 0x014:
701 dev_priv->fsb_freq = 5333;
702 break;
703 case 0x016:
704 dev_priv->fsb_freq = 5866;
705 break;
706 case 0x018:
707 dev_priv->fsb_freq = 6400;
708 break;
709 default:
710 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
711 csipll & 0x3ff);
712 dev_priv->fsb_freq = 0;
713 break;
714 }
715
716 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200717 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200718 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200719 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200720 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200721 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200722 }
723}
724
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300725static const struct cxsr_latency cxsr_latency_table[] = {
726 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
727 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
728 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
729 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
730 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
731
732 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
733 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
734 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
735 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
736 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
737
738 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
739 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
740 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
741 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
742 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
743
744 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
745 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
746 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
747 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
748 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
749
750 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
751 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
752 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
753 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
754 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
755
756 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
757 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
758 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
759 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
760 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
761};
762
Daniel Vetter63c62272012-04-21 23:17:55 +0200763static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300764 int is_ddr3,
765 int fsb,
766 int mem)
767{
768 const struct cxsr_latency *latency;
769 int i;
770
771 if (fsb == 0 || mem == 0)
772 return NULL;
773
774 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
775 latency = &cxsr_latency_table[i];
776 if (is_desktop == latency->is_desktop &&
777 is_ddr3 == latency->is_ddr3 &&
778 fsb == latency->fsb_freq && mem == latency->mem_freq)
779 return latency;
780 }
781
782 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
783
784 return NULL;
785}
786
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300787static void pineview_disable_cxsr(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300788{
789 struct drm_i915_private *dev_priv = dev->dev_private;
790
791 /* deactivate cxsr */
792 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
793}
794
795/*
796 * Latency for FIFO fetches is dependent on several factors:
797 * - memory configuration (speed, channels)
798 * - chipset
799 * - current MCH state
800 * It can be fairly high in some situations, so here we assume a fairly
801 * pessimal value. It's a tradeoff between extra memory fetches (if we
802 * set this value too high, the FIFO will fetch frequently to stay full)
803 * and power consumption (set it too low to save power and we might see
804 * FIFO underruns and display "flicker").
805 *
806 * A value of 5us seems to be a good balance; safe for very low end
807 * platforms but not overly aggressive on lower latency configs.
808 */
809static const int latency_ns = 5000;
810
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300811static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300812{
813 struct drm_i915_private *dev_priv = dev->dev_private;
814 uint32_t dsparb = I915_READ(DSPARB);
815 int size;
816
817 size = dsparb & 0x7f;
818 if (plane)
819 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
820
821 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
822 plane ? "B" : "A", size);
823
824 return size;
825}
826
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300827static int i85x_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300828{
829 struct drm_i915_private *dev_priv = dev->dev_private;
830 uint32_t dsparb = I915_READ(DSPARB);
831 int size;
832
833 size = dsparb & 0x1ff;
834 if (plane)
835 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
836 size >>= 1; /* Convert to cachelines */
837
838 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
839 plane ? "B" : "A", size);
840
841 return size;
842}
843
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300844static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300845{
846 struct drm_i915_private *dev_priv = dev->dev_private;
847 uint32_t dsparb = I915_READ(DSPARB);
848 int size;
849
850 size = dsparb & 0x7f;
851 size >>= 2; /* Convert to cachelines */
852
853 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
854 plane ? "B" : "A",
855 size);
856
857 return size;
858}
859
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300860static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300861{
862 struct drm_i915_private *dev_priv = dev->dev_private;
863 uint32_t dsparb = I915_READ(DSPARB);
864 int size;
865
866 size = dsparb & 0x7f;
867 size >>= 1; /* Convert to cachelines */
868
869 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
870 plane ? "B" : "A", size);
871
872 return size;
873}
874
875/* Pineview has different values for various configs */
876static const struct intel_watermark_params pineview_display_wm = {
877 PINEVIEW_DISPLAY_FIFO,
878 PINEVIEW_MAX_WM,
879 PINEVIEW_DFT_WM,
880 PINEVIEW_GUARD_WM,
881 PINEVIEW_FIFO_LINE_SIZE
882};
883static const struct intel_watermark_params pineview_display_hplloff_wm = {
884 PINEVIEW_DISPLAY_FIFO,
885 PINEVIEW_MAX_WM,
886 PINEVIEW_DFT_HPLLOFF_WM,
887 PINEVIEW_GUARD_WM,
888 PINEVIEW_FIFO_LINE_SIZE
889};
890static const struct intel_watermark_params pineview_cursor_wm = {
891 PINEVIEW_CURSOR_FIFO,
892 PINEVIEW_CURSOR_MAX_WM,
893 PINEVIEW_CURSOR_DFT_WM,
894 PINEVIEW_CURSOR_GUARD_WM,
895 PINEVIEW_FIFO_LINE_SIZE,
896};
897static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
898 PINEVIEW_CURSOR_FIFO,
899 PINEVIEW_CURSOR_MAX_WM,
900 PINEVIEW_CURSOR_DFT_WM,
901 PINEVIEW_CURSOR_GUARD_WM,
902 PINEVIEW_FIFO_LINE_SIZE
903};
904static const struct intel_watermark_params g4x_wm_info = {
905 G4X_FIFO_SIZE,
906 G4X_MAX_WM,
907 G4X_MAX_WM,
908 2,
909 G4X_FIFO_LINE_SIZE,
910};
911static const struct intel_watermark_params g4x_cursor_wm_info = {
912 I965_CURSOR_FIFO,
913 I965_CURSOR_MAX_WM,
914 I965_CURSOR_DFT_WM,
915 2,
916 G4X_FIFO_LINE_SIZE,
917};
918static const struct intel_watermark_params valleyview_wm_info = {
919 VALLEYVIEW_FIFO_SIZE,
920 VALLEYVIEW_MAX_WM,
921 VALLEYVIEW_MAX_WM,
922 2,
923 G4X_FIFO_LINE_SIZE,
924};
925static const struct intel_watermark_params valleyview_cursor_wm_info = {
926 I965_CURSOR_FIFO,
927 VALLEYVIEW_CURSOR_MAX_WM,
928 I965_CURSOR_DFT_WM,
929 2,
930 G4X_FIFO_LINE_SIZE,
931};
932static const struct intel_watermark_params i965_cursor_wm_info = {
933 I965_CURSOR_FIFO,
934 I965_CURSOR_MAX_WM,
935 I965_CURSOR_DFT_WM,
936 2,
937 I915_FIFO_LINE_SIZE,
938};
939static const struct intel_watermark_params i945_wm_info = {
940 I945_FIFO_SIZE,
941 I915_MAX_WM,
942 1,
943 2,
944 I915_FIFO_LINE_SIZE
945};
946static const struct intel_watermark_params i915_wm_info = {
947 I915_FIFO_SIZE,
948 I915_MAX_WM,
949 1,
950 2,
951 I915_FIFO_LINE_SIZE
952};
953static const struct intel_watermark_params i855_wm_info = {
954 I855GM_FIFO_SIZE,
955 I915_MAX_WM,
956 1,
957 2,
958 I830_FIFO_LINE_SIZE
959};
960static const struct intel_watermark_params i830_wm_info = {
961 I830_FIFO_SIZE,
962 I915_MAX_WM,
963 1,
964 2,
965 I830_FIFO_LINE_SIZE
966};
967
968static const struct intel_watermark_params ironlake_display_wm_info = {
969 ILK_DISPLAY_FIFO,
970 ILK_DISPLAY_MAXWM,
971 ILK_DISPLAY_DFTWM,
972 2,
973 ILK_FIFO_LINE_SIZE
974};
975static const struct intel_watermark_params ironlake_cursor_wm_info = {
976 ILK_CURSOR_FIFO,
977 ILK_CURSOR_MAXWM,
978 ILK_CURSOR_DFTWM,
979 2,
980 ILK_FIFO_LINE_SIZE
981};
982static const struct intel_watermark_params ironlake_display_srwm_info = {
983 ILK_DISPLAY_SR_FIFO,
984 ILK_DISPLAY_MAX_SRWM,
985 ILK_DISPLAY_DFT_SRWM,
986 2,
987 ILK_FIFO_LINE_SIZE
988};
989static const struct intel_watermark_params ironlake_cursor_srwm_info = {
990 ILK_CURSOR_SR_FIFO,
991 ILK_CURSOR_MAX_SRWM,
992 ILK_CURSOR_DFT_SRWM,
993 2,
994 ILK_FIFO_LINE_SIZE
995};
996
997static const struct intel_watermark_params sandybridge_display_wm_info = {
998 SNB_DISPLAY_FIFO,
999 SNB_DISPLAY_MAXWM,
1000 SNB_DISPLAY_DFTWM,
1001 2,
1002 SNB_FIFO_LINE_SIZE
1003};
1004static const struct intel_watermark_params sandybridge_cursor_wm_info = {
1005 SNB_CURSOR_FIFO,
1006 SNB_CURSOR_MAXWM,
1007 SNB_CURSOR_DFTWM,
1008 2,
1009 SNB_FIFO_LINE_SIZE
1010};
1011static const struct intel_watermark_params sandybridge_display_srwm_info = {
1012 SNB_DISPLAY_SR_FIFO,
1013 SNB_DISPLAY_MAX_SRWM,
1014 SNB_DISPLAY_DFT_SRWM,
1015 2,
1016 SNB_FIFO_LINE_SIZE
1017};
1018static const struct intel_watermark_params sandybridge_cursor_srwm_info = {
1019 SNB_CURSOR_SR_FIFO,
1020 SNB_CURSOR_MAX_SRWM,
1021 SNB_CURSOR_DFT_SRWM,
1022 2,
1023 SNB_FIFO_LINE_SIZE
1024};
1025
1026
1027/**
1028 * intel_calculate_wm - calculate watermark level
1029 * @clock_in_khz: pixel clock
1030 * @wm: chip FIFO params
1031 * @pixel_size: display pixel size
1032 * @latency_ns: memory latency for the platform
1033 *
1034 * Calculate the watermark level (the level at which the display plane will
1035 * start fetching from memory again). Each chip has a different display
1036 * FIFO size and allocation, so the caller needs to figure that out and pass
1037 * in the correct intel_watermark_params structure.
1038 *
1039 * As the pixel clock runs, the FIFO will be drained at a rate that depends
1040 * on the pixel size. When it reaches the watermark level, it'll start
1041 * fetching FIFO line sized based chunks from memory until the FIFO fills
1042 * past the watermark point. If the FIFO drains completely, a FIFO underrun
1043 * will occur, and a display engine hang could result.
1044 */
1045static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
1046 const struct intel_watermark_params *wm,
1047 int fifo_size,
1048 int pixel_size,
1049 unsigned long latency_ns)
1050{
1051 long entries_required, wm_size;
1052
1053 /*
1054 * Note: we need to make sure we don't overflow for various clock &
1055 * latency values.
1056 * clocks go from a few thousand to several hundred thousand.
1057 * latency is usually a few thousand
1058 */
1059 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
1060 1000;
1061 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
1062
1063 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
1064
1065 wm_size = fifo_size - (entries_required + wm->guard_size);
1066
1067 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
1068
1069 /* Don't promote wm_size to unsigned... */
1070 if (wm_size > (long)wm->max_wm)
1071 wm_size = wm->max_wm;
1072 if (wm_size <= 0)
1073 wm_size = wm->default_wm;
1074 return wm_size;
1075}
1076
1077static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
1078{
1079 struct drm_crtc *crtc, *enabled = NULL;
1080
1081 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +00001082 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001083 if (enabled)
1084 return NULL;
1085 enabled = crtc;
1086 }
1087 }
1088
1089 return enabled;
1090}
1091
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001092static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001093{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001094 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001095 struct drm_i915_private *dev_priv = dev->dev_private;
1096 struct drm_crtc *crtc;
1097 const struct cxsr_latency *latency;
1098 u32 reg;
1099 unsigned long wm;
1100
1101 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
1102 dev_priv->fsb_freq, dev_priv->mem_freq);
1103 if (!latency) {
1104 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
1105 pineview_disable_cxsr(dev);
1106 return;
1107 }
1108
1109 crtc = single_enabled_crtc(dev);
1110 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001111 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001112 int pixel_size = crtc->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001113 int clock;
1114
1115 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1116 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001117
1118 /* Display SR */
1119 wm = intel_calculate_wm(clock, &pineview_display_wm,
1120 pineview_display_wm.fifo_size,
1121 pixel_size, latency->display_sr);
1122 reg = I915_READ(DSPFW1);
1123 reg &= ~DSPFW_SR_MASK;
1124 reg |= wm << DSPFW_SR_SHIFT;
1125 I915_WRITE(DSPFW1, reg);
1126 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
1127
1128 /* cursor SR */
1129 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
1130 pineview_display_wm.fifo_size,
1131 pixel_size, latency->cursor_sr);
1132 reg = I915_READ(DSPFW3);
1133 reg &= ~DSPFW_CURSOR_SR_MASK;
1134 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
1135 I915_WRITE(DSPFW3, reg);
1136
1137 /* Display HPLL off SR */
1138 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
1139 pineview_display_hplloff_wm.fifo_size,
1140 pixel_size, latency->display_hpll_disable);
1141 reg = I915_READ(DSPFW3);
1142 reg &= ~DSPFW_HPLL_SR_MASK;
1143 reg |= wm & DSPFW_HPLL_SR_MASK;
1144 I915_WRITE(DSPFW3, reg);
1145
1146 /* cursor HPLL off SR */
1147 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
1148 pineview_display_hplloff_wm.fifo_size,
1149 pixel_size, latency->cursor_hpll_disable);
1150 reg = I915_READ(DSPFW3);
1151 reg &= ~DSPFW_HPLL_CURSOR_MASK;
1152 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
1153 I915_WRITE(DSPFW3, reg);
1154 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
1155
1156 /* activate cxsr */
1157 I915_WRITE(DSPFW3,
1158 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
1159 DRM_DEBUG_KMS("Self-refresh is enabled\n");
1160 } else {
1161 pineview_disable_cxsr(dev);
1162 DRM_DEBUG_KMS("Self-refresh is disabled\n");
1163 }
1164}
1165
1166static bool g4x_compute_wm0(struct drm_device *dev,
1167 int plane,
1168 const struct intel_watermark_params *display,
1169 int display_latency_ns,
1170 const struct intel_watermark_params *cursor,
1171 int cursor_latency_ns,
1172 int *plane_wm,
1173 int *cursor_wm)
1174{
1175 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001176 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001177 int htotal, hdisplay, clock, pixel_size;
1178 int line_time_us, line_count;
1179 int entries, tlb_miss;
1180
1181 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001182 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001183 *cursor_wm = cursor->guard_size;
1184 *plane_wm = display->guard_size;
1185 return false;
1186 }
1187
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001188 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001189 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001190 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001191 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001192 pixel_size = crtc->fb->bits_per_pixel / 8;
1193
1194 /* Use the small buffer method to calculate plane watermark */
1195 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
1196 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
1197 if (tlb_miss > 0)
1198 entries += tlb_miss;
1199 entries = DIV_ROUND_UP(entries, display->cacheline_size);
1200 *plane_wm = entries + display->guard_size;
1201 if (*plane_wm > (int)display->max_wm)
1202 *plane_wm = display->max_wm;
1203
1204 /* Use the large buffer method to calculate cursor watermark */
1205 line_time_us = ((htotal * 1000) / clock);
1206 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
1207 entries = line_count * 64 * pixel_size;
1208 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1209 if (tlb_miss > 0)
1210 entries += tlb_miss;
1211 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1212 *cursor_wm = entries + cursor->guard_size;
1213 if (*cursor_wm > (int)cursor->max_wm)
1214 *cursor_wm = (int)cursor->max_wm;
1215
1216 return true;
1217}
1218
1219/*
1220 * Check the wm result.
1221 *
1222 * If any calculated watermark values is larger than the maximum value that
1223 * can be programmed into the associated watermark register, that watermark
1224 * must be disabled.
1225 */
1226static bool g4x_check_srwm(struct drm_device *dev,
1227 int display_wm, int cursor_wm,
1228 const struct intel_watermark_params *display,
1229 const struct intel_watermark_params *cursor)
1230{
1231 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
1232 display_wm, cursor_wm);
1233
1234 if (display_wm > display->max_wm) {
1235 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
1236 display_wm, display->max_wm);
1237 return false;
1238 }
1239
1240 if (cursor_wm > cursor->max_wm) {
1241 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
1242 cursor_wm, cursor->max_wm);
1243 return false;
1244 }
1245
1246 if (!(display_wm || cursor_wm)) {
1247 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
1248 return false;
1249 }
1250
1251 return true;
1252}
1253
1254static bool g4x_compute_srwm(struct drm_device *dev,
1255 int plane,
1256 int latency_ns,
1257 const struct intel_watermark_params *display,
1258 const struct intel_watermark_params *cursor,
1259 int *display_wm, int *cursor_wm)
1260{
1261 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001262 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001263 int hdisplay, htotal, pixel_size, clock;
1264 unsigned long line_time_us;
1265 int line_count, line_size;
1266 int small, large;
1267 int entries;
1268
1269 if (!latency_ns) {
1270 *display_wm = *cursor_wm = 0;
1271 return false;
1272 }
1273
1274 crtc = intel_get_crtc_for_plane(dev, plane);
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001275 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001276 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001277 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001278 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001279 pixel_size = crtc->fb->bits_per_pixel / 8;
1280
1281 line_time_us = (htotal * 1000) / clock;
1282 line_count = (latency_ns / line_time_us + 1000) / 1000;
1283 line_size = hdisplay * pixel_size;
1284
1285 /* Use the minimum of the small and large buffer method for primary */
1286 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1287 large = line_count * line_size;
1288
1289 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1290 *display_wm = entries + display->guard_size;
1291
1292 /* calculate the self-refresh watermark for display cursor */
1293 entries = line_count * pixel_size * 64;
1294 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1295 *cursor_wm = entries + cursor->guard_size;
1296
1297 return g4x_check_srwm(dev,
1298 *display_wm, *cursor_wm,
1299 display, cursor);
1300}
1301
1302static bool vlv_compute_drain_latency(struct drm_device *dev,
1303 int plane,
1304 int *plane_prec_mult,
1305 int *plane_dl,
1306 int *cursor_prec_mult,
1307 int *cursor_dl)
1308{
1309 struct drm_crtc *crtc;
1310 int clock, pixel_size;
1311 int entries;
1312
1313 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001314 if (!intel_crtc_active(crtc))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001315 return false;
1316
Damien Lespiau241bfc32013-09-25 16:45:37 +01001317 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001318 pixel_size = crtc->fb->bits_per_pixel / 8; /* BPP */
1319
1320 entries = (clock / 1000) * pixel_size;
1321 *plane_prec_mult = (entries > 256) ?
1322 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1323 *plane_dl = (64 * (*plane_prec_mult) * 4) / ((clock / 1000) *
1324 pixel_size);
1325
1326 entries = (clock / 1000) * 4; /* BPP is always 4 for cursor */
1327 *cursor_prec_mult = (entries > 256) ?
1328 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1329 *cursor_dl = (64 * (*cursor_prec_mult) * 4) / ((clock / 1000) * 4);
1330
1331 return true;
1332}
1333
1334/*
1335 * Update drain latency registers of memory arbiter
1336 *
1337 * Valleyview SoC has a new memory arbiter and needs drain latency registers
1338 * to be programmed. Each plane has a drain latency multiplier and a drain
1339 * latency value.
1340 */
1341
1342static void vlv_update_drain_latency(struct drm_device *dev)
1343{
1344 struct drm_i915_private *dev_priv = dev->dev_private;
1345 int planea_prec, planea_dl, planeb_prec, planeb_dl;
1346 int cursora_prec, cursora_dl, cursorb_prec, cursorb_dl;
1347 int plane_prec_mult, cursor_prec_mult; /* Precision multiplier is
1348 either 16 or 32 */
1349
1350 /* For plane A, Cursor A */
1351 if (vlv_compute_drain_latency(dev, 0, &plane_prec_mult, &planea_dl,
1352 &cursor_prec_mult, &cursora_dl)) {
1353 cursora_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1354 DDL_CURSORA_PRECISION_32 : DDL_CURSORA_PRECISION_16;
1355 planea_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1356 DDL_PLANEA_PRECISION_32 : DDL_PLANEA_PRECISION_16;
1357
1358 I915_WRITE(VLV_DDL1, cursora_prec |
1359 (cursora_dl << DDL_CURSORA_SHIFT) |
1360 planea_prec | planea_dl);
1361 }
1362
1363 /* For plane B, Cursor B */
1364 if (vlv_compute_drain_latency(dev, 1, &plane_prec_mult, &planeb_dl,
1365 &cursor_prec_mult, &cursorb_dl)) {
1366 cursorb_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1367 DDL_CURSORB_PRECISION_32 : DDL_CURSORB_PRECISION_16;
1368 planeb_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1369 DDL_PLANEB_PRECISION_32 : DDL_PLANEB_PRECISION_16;
1370
1371 I915_WRITE(VLV_DDL2, cursorb_prec |
1372 (cursorb_dl << DDL_CURSORB_SHIFT) |
1373 planeb_prec | planeb_dl);
1374 }
1375}
1376
1377#define single_plane_enabled(mask) is_power_of_2(mask)
1378
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001379static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001380{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001381 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001382 static const int sr_latency_ns = 12000;
1383 struct drm_i915_private *dev_priv = dev->dev_private;
1384 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1385 int plane_sr, cursor_sr;
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001386 int ignore_plane_sr, ignore_cursor_sr;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001387 unsigned int enabled = 0;
1388
1389 vlv_update_drain_latency(dev);
1390
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001391 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001392 &valleyview_wm_info, latency_ns,
1393 &valleyview_cursor_wm_info, latency_ns,
1394 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001395 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001396
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001397 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001398 &valleyview_wm_info, latency_ns,
1399 &valleyview_cursor_wm_info, latency_ns,
1400 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001401 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001403 if (single_plane_enabled(enabled) &&
1404 g4x_compute_srwm(dev, ffs(enabled) - 1,
1405 sr_latency_ns,
1406 &valleyview_wm_info,
1407 &valleyview_cursor_wm_info,
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001408 &plane_sr, &ignore_cursor_sr) &&
1409 g4x_compute_srwm(dev, ffs(enabled) - 1,
1410 2*sr_latency_ns,
1411 &valleyview_wm_info,
1412 &valleyview_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001413 &ignore_plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001414 I915_WRITE(FW_BLC_SELF_VLV, FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001415 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001416 I915_WRITE(FW_BLC_SELF_VLV,
1417 I915_READ(FW_BLC_SELF_VLV) & ~FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001418 plane_sr = cursor_sr = 0;
1419 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001420
1421 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1422 planea_wm, cursora_wm,
1423 planeb_wm, cursorb_wm,
1424 plane_sr, cursor_sr);
1425
1426 I915_WRITE(DSPFW1,
1427 (plane_sr << DSPFW_SR_SHIFT) |
1428 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1429 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1430 planea_wm);
1431 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001432 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433 (cursora_wm << DSPFW_CURSORA_SHIFT));
1434 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001435 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
1436 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001437}
1438
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001439static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001441 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 static const int sr_latency_ns = 12000;
1443 struct drm_i915_private *dev_priv = dev->dev_private;
1444 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1445 int plane_sr, cursor_sr;
1446 unsigned int enabled = 0;
1447
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001448 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001449 &g4x_wm_info, latency_ns,
1450 &g4x_cursor_wm_info, latency_ns,
1451 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001452 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001453
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001454 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001455 &g4x_wm_info, latency_ns,
1456 &g4x_cursor_wm_info, latency_ns,
1457 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001458 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001459
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001460 if (single_plane_enabled(enabled) &&
1461 g4x_compute_srwm(dev, ffs(enabled) - 1,
1462 sr_latency_ns,
1463 &g4x_wm_info,
1464 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001465 &plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001466 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001467 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001468 I915_WRITE(FW_BLC_SELF,
1469 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001470 plane_sr = cursor_sr = 0;
1471 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001472
1473 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1474 planea_wm, cursora_wm,
1475 planeb_wm, cursorb_wm,
1476 plane_sr, cursor_sr);
1477
1478 I915_WRITE(DSPFW1,
1479 (plane_sr << DSPFW_SR_SHIFT) |
1480 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1481 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1482 planea_wm);
1483 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001484 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001485 (cursora_wm << DSPFW_CURSORA_SHIFT));
1486 /* HPLL off in SR has some issues on G4x... disable it */
1487 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001488 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001489 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1490}
1491
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001492static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001493{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001494 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001495 struct drm_i915_private *dev_priv = dev->dev_private;
1496 struct drm_crtc *crtc;
1497 int srwm = 1;
1498 int cursor_sr = 16;
1499
1500 /* Calc sr entries for one plane configs */
1501 crtc = single_enabled_crtc(dev);
1502 if (crtc) {
1503 /* self-refresh has much higher latency */
1504 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001505 const struct drm_display_mode *adjusted_mode =
1506 &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001507 int clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001508 int htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001509 int hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001510 int pixel_size = crtc->fb->bits_per_pixel / 8;
1511 unsigned long line_time_us;
1512 int entries;
1513
1514 line_time_us = ((htotal * 1000) / clock);
1515
1516 /* Use ns/us then divide to preserve precision */
1517 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1518 pixel_size * hdisplay;
1519 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1520 srwm = I965_FIFO_SIZE - entries;
1521 if (srwm < 0)
1522 srwm = 1;
1523 srwm &= 0x1ff;
1524 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1525 entries, srwm);
1526
1527 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1528 pixel_size * 64;
1529 entries = DIV_ROUND_UP(entries,
1530 i965_cursor_wm_info.cacheline_size);
1531 cursor_sr = i965_cursor_wm_info.fifo_size -
1532 (entries + i965_cursor_wm_info.guard_size);
1533
1534 if (cursor_sr > i965_cursor_wm_info.max_wm)
1535 cursor_sr = i965_cursor_wm_info.max_wm;
1536
1537 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1538 "cursor %d\n", srwm, cursor_sr);
1539
1540 if (IS_CRESTLINE(dev))
1541 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
1542 } else {
1543 /* Turn off self refresh if both pipes are enabled */
1544 if (IS_CRESTLINE(dev))
1545 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
1546 & ~FW_BLC_SELF_EN);
1547 }
1548
1549 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1550 srwm);
1551
1552 /* 965 has limitations... */
1553 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
1554 (8 << 16) | (8 << 8) | (8 << 0));
1555 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
1556 /* update cursor SR watermark */
1557 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1558}
1559
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001560static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001561{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001562 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001563 struct drm_i915_private *dev_priv = dev->dev_private;
1564 const struct intel_watermark_params *wm_info;
1565 uint32_t fwater_lo;
1566 uint32_t fwater_hi;
1567 int cwm, srwm = 1;
1568 int fifo_size;
1569 int planea_wm, planeb_wm;
1570 struct drm_crtc *crtc, *enabled = NULL;
1571
1572 if (IS_I945GM(dev))
1573 wm_info = &i945_wm_info;
1574 else if (!IS_GEN2(dev))
1575 wm_info = &i915_wm_info;
1576 else
1577 wm_info = &i855_wm_info;
1578
1579 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1580 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001581 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001582 const struct drm_display_mode *adjusted_mode;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001583 int cpp = crtc->fb->bits_per_pixel / 8;
1584 if (IS_GEN2(dev))
1585 cpp = 4;
1586
Damien Lespiau241bfc32013-09-25 16:45:37 +01001587 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1588 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001589 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001590 latency_ns);
1591 enabled = crtc;
1592 } else
1593 planea_wm = fifo_size - wm_info->guard_size;
1594
1595 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1596 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001597 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001598 const struct drm_display_mode *adjusted_mode;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001599 int cpp = crtc->fb->bits_per_pixel / 8;
1600 if (IS_GEN2(dev))
1601 cpp = 4;
1602
Damien Lespiau241bfc32013-09-25 16:45:37 +01001603 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1604 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001605 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001606 latency_ns);
1607 if (enabled == NULL)
1608 enabled = crtc;
1609 else
1610 enabled = NULL;
1611 } else
1612 planeb_wm = fifo_size - wm_info->guard_size;
1613
1614 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1615
1616 /*
1617 * Overlay gets an aggressive default since video jitter is bad.
1618 */
1619 cwm = 2;
1620
1621 /* Play safe and disable self-refresh before adjusting watermarks. */
1622 if (IS_I945G(dev) || IS_I945GM(dev))
1623 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
1624 else if (IS_I915GM(dev))
1625 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
1626
1627 /* Calc sr entries for one plane configs */
1628 if (HAS_FW_BLC(dev) && enabled) {
1629 /* self-refresh has much higher latency */
1630 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001631 const struct drm_display_mode *adjusted_mode =
1632 &to_intel_crtc(enabled)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001633 int clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001634 int htotal = adjusted_mode->htotal;
Daniel Vetterf727b492013-11-20 15:02:10 +01001635 int hdisplay = to_intel_crtc(enabled)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001636 int pixel_size = enabled->fb->bits_per_pixel / 8;
1637 unsigned long line_time_us;
1638 int entries;
1639
1640 line_time_us = (htotal * 1000) / clock;
1641
1642 /* Use ns/us then divide to preserve precision */
1643 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1644 pixel_size * hdisplay;
1645 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1646 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1647 srwm = wm_info->fifo_size - entries;
1648 if (srwm < 0)
1649 srwm = 1;
1650
1651 if (IS_I945G(dev) || IS_I945GM(dev))
1652 I915_WRITE(FW_BLC_SELF,
1653 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1654 else if (IS_I915GM(dev))
1655 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1656 }
1657
1658 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1659 planea_wm, planeb_wm, cwm, srwm);
1660
1661 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1662 fwater_hi = (cwm & 0x1f);
1663
1664 /* Set request length to 8 cachelines per fetch */
1665 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1666 fwater_hi = fwater_hi | (1 << 8);
1667
1668 I915_WRITE(FW_BLC, fwater_lo);
1669 I915_WRITE(FW_BLC2, fwater_hi);
1670
1671 if (HAS_FW_BLC(dev)) {
1672 if (enabled) {
1673 if (IS_I945G(dev) || IS_I945GM(dev))
1674 I915_WRITE(FW_BLC_SELF,
1675 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
1676 else if (IS_I915GM(dev))
1677 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
1678 DRM_DEBUG_KMS("memory self refresh enabled\n");
1679 } else
1680 DRM_DEBUG_KMS("memory self refresh disabled\n");
1681 }
1682}
1683
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001684static void i830_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001685{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001686 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001687 struct drm_i915_private *dev_priv = dev->dev_private;
1688 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001689 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001690 uint32_t fwater_lo;
1691 int planea_wm;
1692
1693 crtc = single_enabled_crtc(dev);
1694 if (crtc == NULL)
1695 return;
1696
Damien Lespiau241bfc32013-09-25 16:45:37 +01001697 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1698 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001699 &i830_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001700 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001701 4, latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001702 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1703 fwater_lo |= (3<<8) | planea_wm;
1704
1705 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1706
1707 I915_WRITE(FW_BLC, fwater_lo);
1708}
1709
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001710/*
1711 * Check the wm result.
1712 *
1713 * If any calculated watermark values is larger than the maximum value that
1714 * can be programmed into the associated watermark register, that watermark
1715 * must be disabled.
1716 */
1717static bool ironlake_check_srwm(struct drm_device *dev, int level,
1718 int fbc_wm, int display_wm, int cursor_wm,
1719 const struct intel_watermark_params *display,
1720 const struct intel_watermark_params *cursor)
1721{
1722 struct drm_i915_private *dev_priv = dev->dev_private;
1723
1724 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
1725 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
1726
1727 if (fbc_wm > SNB_FBC_MAX_SRWM) {
1728 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
1729 fbc_wm, SNB_FBC_MAX_SRWM, level);
1730
1731 /* fbc has it's own way to disable FBC WM */
1732 I915_WRITE(DISP_ARB_CTL,
1733 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
1734 return false;
Ville Syrjälä615aaa52013-04-24 21:09:10 +03001735 } else if (INTEL_INFO(dev)->gen >= 6) {
1736 /* enable FBC WM (except on ILK, where it must remain off) */
1737 I915_WRITE(DISP_ARB_CTL,
1738 I915_READ(DISP_ARB_CTL) & ~DISP_FBC_WM_DIS);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001739 }
1740
1741 if (display_wm > display->max_wm) {
1742 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
1743 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1744 return false;
1745 }
1746
1747 if (cursor_wm > cursor->max_wm) {
1748 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
1749 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1750 return false;
1751 }
1752
1753 if (!(fbc_wm || display_wm || cursor_wm)) {
1754 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
1755 return false;
1756 }
1757
1758 return true;
1759}
1760
1761/*
1762 * Compute watermark values of WM[1-3],
1763 */
1764static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
1765 int latency_ns,
1766 const struct intel_watermark_params *display,
1767 const struct intel_watermark_params *cursor,
1768 int *fbc_wm, int *display_wm, int *cursor_wm)
1769{
1770 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001771 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001772 unsigned long line_time_us;
1773 int hdisplay, htotal, pixel_size, clock;
1774 int line_count, line_size;
1775 int small, large;
1776 int entries;
1777
1778 if (!latency_ns) {
1779 *fbc_wm = *display_wm = *cursor_wm = 0;
1780 return false;
1781 }
1782
1783 crtc = intel_get_crtc_for_plane(dev, plane);
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001784 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001785 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001786 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001787 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001788 pixel_size = crtc->fb->bits_per_pixel / 8;
1789
1790 line_time_us = (htotal * 1000) / clock;
1791 line_count = (latency_ns / line_time_us + 1000) / 1000;
1792 line_size = hdisplay * pixel_size;
1793
1794 /* Use the minimum of the small and large buffer method for primary */
1795 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1796 large = line_count * line_size;
1797
1798 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1799 *display_wm = entries + display->guard_size;
1800
1801 /*
1802 * Spec says:
1803 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
1804 */
1805 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
1806
1807 /* calculate the self-refresh watermark for display cursor */
1808 entries = line_count * pixel_size * 64;
1809 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1810 *cursor_wm = entries + cursor->guard_size;
1811
1812 return ironlake_check_srwm(dev, level,
1813 *fbc_wm, *display_wm, *cursor_wm,
1814 display, cursor);
1815}
1816
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001817static void ironlake_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001818{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001819 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001820 struct drm_i915_private *dev_priv = dev->dev_private;
1821 int fbc_wm, plane_wm, cursor_wm;
1822 unsigned int enabled;
1823
1824 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001825 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001826 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001827 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001828 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001829 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001830 &plane_wm, &cursor_wm)) {
1831 I915_WRITE(WM0_PIPEA_ILK,
1832 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1833 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1834 " plane %d, " "cursor: %d\n",
1835 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001836 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001837 }
1838
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001839 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001840 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001841 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001842 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001843 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001844 &plane_wm, &cursor_wm)) {
1845 I915_WRITE(WM0_PIPEB_ILK,
1846 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1847 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1848 " plane %d, cursor: %d\n",
1849 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001850 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001851 }
1852
1853 /*
1854 * Calculate and update the self-refresh watermark only when one
1855 * display plane is used.
1856 */
1857 I915_WRITE(WM3_LP_ILK, 0);
1858 I915_WRITE(WM2_LP_ILK, 0);
1859 I915_WRITE(WM1_LP_ILK, 0);
1860
1861 if (!single_plane_enabled(enabled))
1862 return;
1863 enabled = ffs(enabled) - 1;
1864
1865 /* WM1 */
1866 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001867 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001868 &ironlake_display_srwm_info,
1869 &ironlake_cursor_srwm_info,
1870 &fbc_wm, &plane_wm, &cursor_wm))
1871 return;
1872
1873 I915_WRITE(WM1_LP_ILK,
1874 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001875 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001876 (fbc_wm << WM1_LP_FBC_SHIFT) |
1877 (plane_wm << WM1_LP_SR_SHIFT) |
1878 cursor_wm);
1879
1880 /* WM2 */
1881 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001882 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001883 &ironlake_display_srwm_info,
1884 &ironlake_cursor_srwm_info,
1885 &fbc_wm, &plane_wm, &cursor_wm))
1886 return;
1887
1888 I915_WRITE(WM2_LP_ILK,
1889 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001890 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001891 (fbc_wm << WM1_LP_FBC_SHIFT) |
1892 (plane_wm << WM1_LP_SR_SHIFT) |
1893 cursor_wm);
1894
1895 /*
1896 * WM3 is unsupported on ILK, probably because we don't have latency
1897 * data for that power state
1898 */
1899}
1900
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001901static void sandybridge_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001902{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001903 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001904 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001905 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001906 u32 val;
1907 int fbc_wm, plane_wm, cursor_wm;
1908 unsigned int enabled;
1909
1910 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001911 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001912 &sandybridge_display_wm_info, latency,
1913 &sandybridge_cursor_wm_info, latency,
1914 &plane_wm, &cursor_wm)) {
1915 val = I915_READ(WM0_PIPEA_ILK);
1916 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1917 I915_WRITE(WM0_PIPEA_ILK, val |
1918 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1919 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1920 " plane %d, " "cursor: %d\n",
1921 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001922 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001923 }
1924
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001925 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001926 &sandybridge_display_wm_info, latency,
1927 &sandybridge_cursor_wm_info, latency,
1928 &plane_wm, &cursor_wm)) {
1929 val = I915_READ(WM0_PIPEB_ILK);
1930 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1931 I915_WRITE(WM0_PIPEB_ILK, val |
1932 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1933 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1934 " plane %d, cursor: %d\n",
1935 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001936 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001937 }
1938
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001939 /*
1940 * Calculate and update the self-refresh watermark only when one
1941 * display plane is used.
1942 *
1943 * SNB support 3 levels of watermark.
1944 *
1945 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
1946 * and disabled in the descending order
1947 *
1948 */
1949 I915_WRITE(WM3_LP_ILK, 0);
1950 I915_WRITE(WM2_LP_ILK, 0);
1951 I915_WRITE(WM1_LP_ILK, 0);
1952
1953 if (!single_plane_enabled(enabled) ||
1954 dev_priv->sprite_scaling_enabled)
1955 return;
1956 enabled = ffs(enabled) - 1;
1957
1958 /* WM1 */
1959 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001960 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001961 &sandybridge_display_srwm_info,
1962 &sandybridge_cursor_srwm_info,
1963 &fbc_wm, &plane_wm, &cursor_wm))
1964 return;
1965
1966 I915_WRITE(WM1_LP_ILK,
1967 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001968 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001969 (fbc_wm << WM1_LP_FBC_SHIFT) |
1970 (plane_wm << WM1_LP_SR_SHIFT) |
1971 cursor_wm);
1972
1973 /* WM2 */
1974 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001975 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001976 &sandybridge_display_srwm_info,
1977 &sandybridge_cursor_srwm_info,
1978 &fbc_wm, &plane_wm, &cursor_wm))
1979 return;
1980
1981 I915_WRITE(WM2_LP_ILK,
1982 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001983 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001984 (fbc_wm << WM1_LP_FBC_SHIFT) |
1985 (plane_wm << WM1_LP_SR_SHIFT) |
1986 cursor_wm);
1987
1988 /* WM3 */
1989 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001990 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001991 &sandybridge_display_srwm_info,
1992 &sandybridge_cursor_srwm_info,
1993 &fbc_wm, &plane_wm, &cursor_wm))
1994 return;
1995
1996 I915_WRITE(WM3_LP_ILK,
1997 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001998 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001999 (fbc_wm << WM1_LP_FBC_SHIFT) |
2000 (plane_wm << WM1_LP_SR_SHIFT) |
2001 cursor_wm);
2002}
2003
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002004static void ivybridge_update_wm(struct drm_crtc *crtc)
Chris Wilsonc43d0182012-12-11 12:01:42 +00002005{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002006 struct drm_device *dev = crtc->dev;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002007 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002008 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Chris Wilsonc43d0182012-12-11 12:01:42 +00002009 u32 val;
2010 int fbc_wm, plane_wm, cursor_wm;
2011 int ignore_fbc_wm, ignore_plane_wm, ignore_cursor_wm;
2012 unsigned int enabled;
2013
2014 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002015 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002016 &sandybridge_display_wm_info, latency,
2017 &sandybridge_cursor_wm_info, latency,
2018 &plane_wm, &cursor_wm)) {
2019 val = I915_READ(WM0_PIPEA_ILK);
2020 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2021 I915_WRITE(WM0_PIPEA_ILK, val |
2022 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2023 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
2024 " plane %d, " "cursor: %d\n",
2025 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002026 enabled |= 1 << PIPE_A;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002027 }
2028
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002029 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002030 &sandybridge_display_wm_info, latency,
2031 &sandybridge_cursor_wm_info, latency,
2032 &plane_wm, &cursor_wm)) {
2033 val = I915_READ(WM0_PIPEB_ILK);
2034 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2035 I915_WRITE(WM0_PIPEB_ILK, val |
2036 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2037 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
2038 " plane %d, cursor: %d\n",
2039 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002040 enabled |= 1 << PIPE_B;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002041 }
2042
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002043 if (g4x_compute_wm0(dev, PIPE_C,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002044 &sandybridge_display_wm_info, latency,
2045 &sandybridge_cursor_wm_info, latency,
2046 &plane_wm, &cursor_wm)) {
2047 val = I915_READ(WM0_PIPEC_IVB);
2048 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2049 I915_WRITE(WM0_PIPEC_IVB, val |
2050 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2051 DRM_DEBUG_KMS("FIFO watermarks For pipe C -"
2052 " plane %d, cursor: %d\n",
2053 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002054 enabled |= 1 << PIPE_C;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002055 }
2056
2057 /*
2058 * Calculate and update the self-refresh watermark only when one
2059 * display plane is used.
2060 *
2061 * SNB support 3 levels of watermark.
2062 *
2063 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
2064 * and disabled in the descending order
2065 *
2066 */
2067 I915_WRITE(WM3_LP_ILK, 0);
2068 I915_WRITE(WM2_LP_ILK, 0);
2069 I915_WRITE(WM1_LP_ILK, 0);
2070
2071 if (!single_plane_enabled(enabled) ||
2072 dev_priv->sprite_scaling_enabled)
2073 return;
2074 enabled = ffs(enabled) - 1;
2075
2076 /* WM1 */
2077 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002078 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002079 &sandybridge_display_srwm_info,
2080 &sandybridge_cursor_srwm_info,
2081 &fbc_wm, &plane_wm, &cursor_wm))
2082 return;
2083
2084 I915_WRITE(WM1_LP_ILK,
2085 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002086 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002087 (fbc_wm << WM1_LP_FBC_SHIFT) |
2088 (plane_wm << WM1_LP_SR_SHIFT) |
2089 cursor_wm);
2090
2091 /* WM2 */
2092 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002093 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002094 &sandybridge_display_srwm_info,
2095 &sandybridge_cursor_srwm_info,
2096 &fbc_wm, &plane_wm, &cursor_wm))
2097 return;
2098
2099 I915_WRITE(WM2_LP_ILK,
2100 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002101 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002102 (fbc_wm << WM1_LP_FBC_SHIFT) |
2103 (plane_wm << WM1_LP_SR_SHIFT) |
2104 cursor_wm);
2105
Chris Wilsonc43d0182012-12-11 12:01:42 +00002106 /* WM3, note we have to correct the cursor latency */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002107 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002108 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002109 &sandybridge_display_srwm_info,
2110 &sandybridge_cursor_srwm_info,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002111 &fbc_wm, &plane_wm, &ignore_cursor_wm) ||
2112 !ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002113 dev_priv->wm.cur_latency[3] * 500,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002114 &sandybridge_display_srwm_info,
2115 &sandybridge_cursor_srwm_info,
2116 &ignore_fbc_wm, &ignore_plane_wm, &cursor_wm))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002117 return;
2118
2119 I915_WRITE(WM3_LP_ILK,
2120 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002121 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002122 (fbc_wm << WM1_LP_FBC_SHIFT) |
2123 (plane_wm << WM1_LP_SR_SHIFT) |
2124 cursor_wm);
2125}
2126
Ville Syrjälä36587292013-07-05 11:57:16 +03002127static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
2128 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002129{
2130 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002131 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002132
Damien Lespiau241bfc32013-09-25 16:45:37 +01002133 pixel_rate = intel_crtc->config.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002134
2135 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
2136 * adjust the pixel_rate here. */
2137
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002138 if (intel_crtc->config.pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002139 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002140 uint32_t pfit_size = intel_crtc->config.pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002141
Ville Syrjälä37327ab2013-09-04 18:25:28 +03002142 pipe_w = intel_crtc->config.pipe_src_w;
2143 pipe_h = intel_crtc->config.pipe_src_h;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002144 pfit_w = (pfit_size >> 16) & 0xFFFF;
2145 pfit_h = pfit_size & 0xFFFF;
2146 if (pipe_w < pfit_w)
2147 pipe_w = pfit_w;
2148 if (pipe_h < pfit_h)
2149 pipe_h = pfit_h;
2150
2151 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
2152 pfit_w * pfit_h);
2153 }
2154
2155 return pixel_rate;
2156}
2157
Ville Syrjälä37126462013-08-01 16:18:55 +03002158/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002159static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002160 uint32_t latency)
2161{
2162 uint64_t ret;
2163
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002164 if (WARN(latency == 0, "Latency value missing\n"))
2165 return UINT_MAX;
2166
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002167 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
2168 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
2169
2170 return ret;
2171}
2172
Ville Syrjälä37126462013-08-01 16:18:55 +03002173/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002174static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002175 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2176 uint32_t latency)
2177{
2178 uint32_t ret;
2179
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002180 if (WARN(latency == 0, "Latency value missing\n"))
2181 return UINT_MAX;
2182
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002183 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
2184 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
2185 ret = DIV_ROUND_UP(ret, 64) + 2;
2186 return ret;
2187}
2188
Ville Syrjälä23297042013-07-05 11:57:17 +03002189static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002190 uint8_t bytes_per_pixel)
2191{
2192 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
2193}
2194
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002195struct hsw_pipe_wm_parameters {
2196 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002197 uint32_t pipe_htotal;
2198 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002199 struct intel_plane_wm_parameters pri;
2200 struct intel_plane_wm_parameters spr;
2201 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002202};
2203
Paulo Zanonicca32e92013-05-31 11:45:06 -03002204struct hsw_wm_maximums {
2205 uint16_t pri;
2206 uint16_t spr;
2207 uint16_t cur;
2208 uint16_t fbc;
2209};
2210
Ville Syrjälä240264f2013-08-07 13:29:12 +03002211/* used in computing the new watermarks state */
2212struct intel_wm_config {
2213 unsigned int num_pipes_active;
2214 bool sprites_enabled;
2215 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03002216};
2217
Ville Syrjälä37126462013-08-01 16:18:55 +03002218/*
2219 * For both WM_PIPE and WM_LP.
2220 * mem_value must be in 0.1us units.
2221 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002222static uint32_t ilk_compute_pri_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002223 uint32_t mem_value,
2224 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002225{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002226 uint32_t method1, method2;
2227
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002228 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002229 return 0;
2230
Ville Syrjälä23297042013-07-05 11:57:17 +03002231 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002232 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002233 mem_value);
2234
2235 if (!is_lp)
2236 return method1;
2237
Ville Syrjälä23297042013-07-05 11:57:17 +03002238 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002239 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002240 params->pri.horiz_pixels,
2241 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002242 mem_value);
2243
2244 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002245}
2246
Ville Syrjälä37126462013-08-01 16:18:55 +03002247/*
2248 * For both WM_PIPE and WM_LP.
2249 * mem_value must be in 0.1us units.
2250 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002251static uint32_t ilk_compute_spr_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002252 uint32_t mem_value)
2253{
2254 uint32_t method1, method2;
2255
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002256 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002257 return 0;
2258
Ville Syrjälä23297042013-07-05 11:57:17 +03002259 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002260 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002261 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03002262 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002263 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002264 params->spr.horiz_pixels,
2265 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002266 mem_value);
2267 return min(method1, method2);
2268}
2269
Ville Syrjälä37126462013-08-01 16:18:55 +03002270/*
2271 * For both WM_PIPE and WM_LP.
2272 * mem_value must be in 0.1us units.
2273 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002274static uint32_t ilk_compute_cur_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002275 uint32_t mem_value)
2276{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002277 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002278 return 0;
2279
Ville Syrjälä23297042013-07-05 11:57:17 +03002280 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002281 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002282 params->cur.horiz_pixels,
2283 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002284 mem_value);
2285}
2286
Paulo Zanonicca32e92013-05-31 11:45:06 -03002287/* Only for WM_LP. */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002288static uint32_t ilk_compute_fbc_wm(const struct hsw_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002289 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002290{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002291 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002292 return 0;
2293
Ville Syrjälä23297042013-07-05 11:57:17 +03002294 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002295 params->pri.horiz_pixels,
2296 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002297}
2298
Ville Syrjälä158ae642013-08-07 13:28:19 +03002299static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
2300{
Ville Syrjälä416f4722013-11-02 21:07:46 -07002301 if (INTEL_INFO(dev)->gen >= 8)
2302 return 3072;
2303 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002304 return 768;
2305 else
2306 return 512;
2307}
2308
2309/* Calculate the maximum primary/sprite plane watermark */
2310static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2311 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002312 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002313 enum intel_ddb_partitioning ddb_partitioning,
2314 bool is_sprite)
2315{
2316 unsigned int fifo_size = ilk_display_fifo_size(dev);
2317 unsigned int max;
2318
2319 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002320 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002321 return 0;
2322
2323 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002324 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002325 fifo_size /= INTEL_INFO(dev)->num_pipes;
2326
2327 /*
2328 * For some reason the non self refresh
2329 * FIFO size is only half of the self
2330 * refresh FIFO size on ILK/SNB.
2331 */
2332 if (INTEL_INFO(dev)->gen <= 6)
2333 fifo_size /= 2;
2334 }
2335
Ville Syrjälä240264f2013-08-07 13:29:12 +03002336 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002337 /* level 0 is always calculated with 1:1 split */
2338 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2339 if (is_sprite)
2340 fifo_size *= 5;
2341 fifo_size /= 6;
2342 } else {
2343 fifo_size /= 2;
2344 }
2345 }
2346
2347 /* clamp to max that the registers can hold */
Ville Syrjälä416f4722013-11-02 21:07:46 -07002348 if (INTEL_INFO(dev)->gen >= 8)
2349 max = level == 0 ? 255 : 2047;
2350 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002351 /* IVB/HSW primary/sprite plane watermarks */
2352 max = level == 0 ? 127 : 1023;
2353 else if (!is_sprite)
2354 /* ILK/SNB primary plane watermarks */
2355 max = level == 0 ? 127 : 511;
2356 else
2357 /* ILK/SNB sprite plane watermarks */
2358 max = level == 0 ? 63 : 255;
2359
2360 return min(fifo_size, max);
2361}
2362
2363/* Calculate the maximum cursor plane watermark */
2364static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002365 int level,
2366 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002367{
2368 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002369 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002370 return 64;
2371
2372 /* otherwise just report max that registers can hold */
2373 if (INTEL_INFO(dev)->gen >= 7)
2374 return level == 0 ? 63 : 255;
2375 else
2376 return level == 0 ? 31 : 63;
2377}
2378
2379/* Calculate the maximum FBC watermark */
Ville Syrjälä416f4722013-11-02 21:07:46 -07002380static unsigned int ilk_fbc_wm_max(struct drm_device *dev)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002381{
2382 /* max that registers can hold */
Ville Syrjälä416f4722013-11-02 21:07:46 -07002383 if (INTEL_INFO(dev)->gen >= 8)
2384 return 31;
2385 else
2386 return 15;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002387}
2388
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002389static void ilk_compute_wm_maximums(struct drm_device *dev,
2390 int level,
2391 const struct intel_wm_config *config,
2392 enum intel_ddb_partitioning ddb_partitioning,
2393 struct hsw_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002394{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002395 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2396 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2397 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä416f4722013-11-02 21:07:46 -07002398 max->fbc = ilk_fbc_wm_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002399}
2400
Ville Syrjäläd9395652013-10-09 19:18:10 +03002401static bool ilk_validate_wm_level(int level,
2402 const struct hsw_wm_maximums *max,
2403 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002404{
2405 bool ret;
2406
2407 /* already determined to be invalid? */
2408 if (!result->enable)
2409 return false;
2410
2411 result->enable = result->pri_val <= max->pri &&
2412 result->spr_val <= max->spr &&
2413 result->cur_val <= max->cur;
2414
2415 ret = result->enable;
2416
2417 /*
2418 * HACK until we can pre-compute everything,
2419 * and thus fail gracefully if LP0 watermarks
2420 * are exceeded...
2421 */
2422 if (level == 0 && !result->enable) {
2423 if (result->pri_val > max->pri)
2424 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2425 level, result->pri_val, max->pri);
2426 if (result->spr_val > max->spr)
2427 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2428 level, result->spr_val, max->spr);
2429 if (result->cur_val > max->cur)
2430 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2431 level, result->cur_val, max->cur);
2432
2433 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2434 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2435 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2436 result->enable = true;
2437 }
2438
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002439 return ret;
2440}
2441
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002442static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
2443 int level,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002444 const struct hsw_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002445 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002446{
2447 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2448 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2449 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2450
2451 /* WM1+ latency values stored in 0.5us units */
2452 if (level > 0) {
2453 pri_latency *= 5;
2454 spr_latency *= 5;
2455 cur_latency *= 5;
2456 }
2457
2458 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2459 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2460 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2461 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2462 result->enable = true;
2463}
2464
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002465static uint32_t
2466hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002467{
2468 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002469 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002470 struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002471 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002472
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002473 if (!intel_crtc_active(crtc))
2474 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002475
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002476 /* The WM are computed with base on how long it takes to fill a single
2477 * row at the given clock rate, multiplied by 8.
2478 * */
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002479 linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8, mode->clock);
2480 ips_linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8,
2481 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002482
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002483 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2484 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002485}
2486
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002487static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[5])
2488{
2489 struct drm_i915_private *dev_priv = dev->dev_private;
2490
2491 if (IS_HASWELL(dev)) {
2492 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2493
2494 wm[0] = (sskpd >> 56) & 0xFF;
2495 if (wm[0] == 0)
2496 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002497 wm[1] = (sskpd >> 4) & 0xFF;
2498 wm[2] = (sskpd >> 12) & 0xFF;
2499 wm[3] = (sskpd >> 20) & 0x1FF;
2500 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002501 } else if (INTEL_INFO(dev)->gen >= 6) {
2502 uint32_t sskpd = I915_READ(MCH_SSKPD);
2503
2504 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2505 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2506 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2507 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002508 } else if (INTEL_INFO(dev)->gen >= 5) {
2509 uint32_t mltr = I915_READ(MLTR_ILK);
2510
2511 /* ILK primary LP0 latency is 700 ns */
2512 wm[0] = 7;
2513 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2514 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002515 }
2516}
2517
Ville Syrjälä53615a52013-08-01 16:18:50 +03002518static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2519{
2520 /* ILK sprite LP0 latency is 1300 ns */
2521 if (INTEL_INFO(dev)->gen == 5)
2522 wm[0] = 13;
2523}
2524
2525static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2526{
2527 /* ILK cursor LP0 latency is 1300 ns */
2528 if (INTEL_INFO(dev)->gen == 5)
2529 wm[0] = 13;
2530
2531 /* WaDoubleCursorLP3Latency:ivb */
2532 if (IS_IVYBRIDGE(dev))
2533 wm[3] *= 2;
2534}
2535
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002536static int ilk_wm_max_level(const struct drm_device *dev)
2537{
2538 /* how many WM levels are we expecting */
2539 if (IS_HASWELL(dev))
2540 return 4;
2541 else if (INTEL_INFO(dev)->gen >= 6)
2542 return 3;
2543 else
2544 return 2;
2545}
2546
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002547static void intel_print_wm_latency(struct drm_device *dev,
2548 const char *name,
2549 const uint16_t wm[5])
2550{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002551 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002552
2553 for (level = 0; level <= max_level; level++) {
2554 unsigned int latency = wm[level];
2555
2556 if (latency == 0) {
2557 DRM_ERROR("%s WM%d latency not provided\n",
2558 name, level);
2559 continue;
2560 }
2561
2562 /* WM1+ latency values in 0.5us units */
2563 if (level > 0)
2564 latency *= 5;
2565
2566 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2567 name, level, wm[level],
2568 latency / 10, latency % 10);
2569 }
2570}
2571
Ville Syrjälä53615a52013-08-01 16:18:50 +03002572static void intel_setup_wm_latency(struct drm_device *dev)
2573{
2574 struct drm_i915_private *dev_priv = dev->dev_private;
2575
2576 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2577
2578 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2579 sizeof(dev_priv->wm.pri_latency));
2580 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2581 sizeof(dev_priv->wm.pri_latency));
2582
2583 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2584 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002585
2586 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2587 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2588 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002589}
2590
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002591static void hsw_compute_wm_parameters(struct drm_crtc *crtc,
2592 struct hsw_pipe_wm_parameters *p,
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002593 struct intel_wm_config *config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002594{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002595 struct drm_device *dev = crtc->dev;
2596 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2597 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002598 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002599
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002600 p->active = intel_crtc_active(crtc);
2601 if (p->active) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002602 p->pipe_htotal = intel_crtc->config.adjusted_mode.htotal;
Ville Syrjälä36587292013-07-05 11:57:16 +03002603 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002604 p->pri.bytes_per_pixel = crtc->fb->bits_per_pixel / 8;
2605 p->cur.bytes_per_pixel = 4;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03002606 p->pri.horiz_pixels = intel_crtc->config.pipe_src_w;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002607 p->cur.horiz_pixels = 64;
2608 /* TODO: for now, assume primary and cursor planes are always enabled. */
2609 p->pri.enabled = true;
2610 p->cur.enabled = true;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002611 }
2612
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002613 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002614 config->num_pipes_active += intel_crtc_active(crtc);
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002615
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002616 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2617 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002618
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002619 if (intel_plane->pipe == pipe)
2620 p->spr = intel_plane->wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002621
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002622 config->sprites_enabled |= intel_plane->wm.enabled;
2623 config->sprites_scaled |= intel_plane->wm.scaled;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002624 }
2625}
2626
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002627/* Compute new watermarks for the pipe */
2628static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
2629 const struct hsw_pipe_wm_parameters *params,
2630 struct intel_pipe_wm *pipe_wm)
2631{
2632 struct drm_device *dev = crtc->dev;
2633 struct drm_i915_private *dev_priv = dev->dev_private;
2634 int level, max_level = ilk_wm_max_level(dev);
2635 /* LP0 watermark maximums depend on this pipe alone */
2636 struct intel_wm_config config = {
2637 .num_pipes_active = 1,
2638 .sprites_enabled = params->spr.enabled,
2639 .sprites_scaled = params->spr.scaled,
2640 };
2641 struct hsw_wm_maximums max;
2642
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002643 /* LP0 watermarks always use 1/2 DDB partitioning */
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002644 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002645
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002646 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2647 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2648 max_level = 1;
2649
2650 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2651 if (params->spr.scaled)
2652 max_level = 0;
2653
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002654 for (level = 0; level <= max_level; level++)
2655 ilk_compute_wm_level(dev_priv, level, params,
2656 &pipe_wm->wm[level]);
2657
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002658 if (IS_HASWELL(dev))
2659 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002660
2661 /* At least LP0 must be valid */
Ville Syrjäläd9395652013-10-09 19:18:10 +03002662 return ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002663}
2664
2665/*
2666 * Merge the watermarks from all active pipes for a specific level.
2667 */
2668static void ilk_merge_wm_level(struct drm_device *dev,
2669 int level,
2670 struct intel_wm_level *ret_wm)
2671{
2672 const struct intel_crtc *intel_crtc;
2673
2674 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head) {
2675 const struct intel_wm_level *wm =
2676 &intel_crtc->wm.active.wm[level];
2677
2678 if (!wm->enable)
2679 return;
2680
2681 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2682 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2683 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2684 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2685 }
2686
2687 ret_wm->enable = true;
2688}
2689
2690/*
2691 * Merge all low power watermarks for all active pipes.
2692 */
2693static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002694 const struct intel_wm_config *config,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002695 const struct hsw_wm_maximums *max,
2696 struct intel_pipe_wm *merged)
2697{
2698 int level, max_level = ilk_wm_max_level(dev);
2699
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002700 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2701 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2702 config->num_pipes_active > 1)
2703 return;
2704
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002705 /* ILK: FBC WM must be disabled always */
2706 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002707
2708 /* merge each WM1+ level */
2709 for (level = 1; level <= max_level; level++) {
2710 struct intel_wm_level *wm = &merged->wm[level];
2711
2712 ilk_merge_wm_level(dev, level, wm);
2713
Ville Syrjäläd9395652013-10-09 19:18:10 +03002714 if (!ilk_validate_wm_level(level, max, wm))
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002715 break;
2716
2717 /*
2718 * The spec says it is preferred to disable
2719 * FBC WMs instead of disabling a WM level.
2720 */
2721 if (wm->fbc_val > max->fbc) {
2722 merged->fbc_wm_enabled = false;
2723 wm->fbc_val = 0;
2724 }
2725 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002726
2727 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2728 /*
2729 * FIXME this is racy. FBC might get enabled later.
2730 * What we should check here is whether FBC can be
2731 * enabled sometime later.
2732 */
2733 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2734 for (level = 2; level <= max_level; level++) {
2735 struct intel_wm_level *wm = &merged->wm[level];
2736
2737 wm->enable = false;
2738 }
2739 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002740}
2741
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002742static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2743{
2744 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2745 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2746}
2747
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002748/* The value we need to program into the WM_LPx latency field */
2749static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2750{
2751 struct drm_i915_private *dev_priv = dev->dev_private;
2752
2753 if (IS_HASWELL(dev))
2754 return 2 * level;
2755 else
2756 return dev_priv->wm.pri_latency[level];
2757}
2758
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002759static void hsw_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002760 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002761 enum intel_ddb_partitioning partitioning,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002762 struct hsw_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002763{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002764 struct intel_crtc *intel_crtc;
2765 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002766
Ville Syrjälä0362c782013-10-09 19:17:57 +03002767 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002768 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002769
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002770 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002771 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002772 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002773
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002774 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002775
Ville Syrjälä0362c782013-10-09 19:17:57 +03002776 r = &merged->wm[level];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002777 if (!r->enable)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002778 break;
2779
Ville Syrjälä416f4722013-11-02 21:07:46 -07002780 results->wm_lp[wm_lp - 1] = WM3_LP_EN |
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002781 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002782 (r->pri_val << WM1_LP_SR_SHIFT) |
2783 r->cur_val;
2784
2785 if (INTEL_INFO(dev)->gen >= 8)
2786 results->wm_lp[wm_lp - 1] |=
2787 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2788 else
2789 results->wm_lp[wm_lp - 1] |=
2790 r->fbc_val << WM1_LP_FBC_SHIFT;
2791
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002792 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2793 WARN_ON(wm_lp != 1);
2794 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2795 } else
2796 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002797 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002798
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002799 /* LP0 register values */
2800 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head) {
2801 enum pipe pipe = intel_crtc->pipe;
2802 const struct intel_wm_level *r =
2803 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002804
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002805 if (WARN_ON(!r->enable))
2806 continue;
2807
2808 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2809
2810 results->wm_pipe[pipe] =
2811 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2812 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2813 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002814 }
2815}
2816
Paulo Zanoni861f3382013-05-31 10:19:21 -03002817/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2818 * case both are at the same level. Prefer r1 in case they're the same. */
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002819static struct intel_pipe_wm *hsw_find_best_result(struct drm_device *dev,
2820 struct intel_pipe_wm *r1,
2821 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002822{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002823 int level, max_level = ilk_wm_max_level(dev);
2824 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002825
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002826 for (level = 1; level <= max_level; level++) {
2827 if (r1->wm[level].enable)
2828 level1 = level;
2829 if (r2->wm[level].enable)
2830 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002831 }
2832
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002833 if (level1 == level2) {
2834 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002835 return r2;
2836 else
2837 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002838 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002839 return r1;
2840 } else {
2841 return r2;
2842 }
2843}
2844
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002845/* dirty bits used to track which watermarks need changes */
2846#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2847#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2848#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2849#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2850#define WM_DIRTY_FBC (1 << 24)
2851#define WM_DIRTY_DDB (1 << 25)
2852
2853static unsigned int ilk_compute_wm_dirty(struct drm_device *dev,
2854 const struct hsw_wm_values *old,
2855 const struct hsw_wm_values *new)
2856{
2857 unsigned int dirty = 0;
2858 enum pipe pipe;
2859 int wm_lp;
2860
2861 for_each_pipe(pipe) {
2862 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2863 dirty |= WM_DIRTY_LINETIME(pipe);
2864 /* Must disable LP1+ watermarks too */
2865 dirty |= WM_DIRTY_LP_ALL;
2866 }
2867
2868 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2869 dirty |= WM_DIRTY_PIPE(pipe);
2870 /* Must disable LP1+ watermarks too */
2871 dirty |= WM_DIRTY_LP_ALL;
2872 }
2873 }
2874
2875 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2876 dirty |= WM_DIRTY_FBC;
2877 /* Must disable LP1+ watermarks too */
2878 dirty |= WM_DIRTY_LP_ALL;
2879 }
2880
2881 if (old->partitioning != new->partitioning) {
2882 dirty |= WM_DIRTY_DDB;
2883 /* Must disable LP1+ watermarks too */
2884 dirty |= WM_DIRTY_LP_ALL;
2885 }
2886
2887 /* LP1+ watermarks already deemed dirty, no need to continue */
2888 if (dirty & WM_DIRTY_LP_ALL)
2889 return dirty;
2890
2891 /* Find the lowest numbered LP1+ watermark in need of an update... */
2892 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2893 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2894 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2895 break;
2896 }
2897
2898 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2899 for (; wm_lp <= 3; wm_lp++)
2900 dirty |= WM_DIRTY_LP(wm_lp);
2901
2902 return dirty;
2903}
2904
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002905/*
2906 * The spec says we shouldn't write when we don't need, because every write
2907 * causes WMs to be re-evaluated, expending some power.
2908 */
2909static void hsw_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002910 struct hsw_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002911{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002912 struct drm_device *dev = dev_priv->dev;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002913 struct hsw_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002914 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002915 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002916
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002917 dirty = ilk_compute_wm_dirty(dev_priv->dev, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002918 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002919 return;
2920
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002921 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2922 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2923 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2924 }
2925 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2926 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2927 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2928 }
2929 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2930 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2931 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2932 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002933
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002934 /*
2935 * Don't touch WM1S_LP_EN here.
2936 * Doing so could cause underruns.
2937 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002938
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002939 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002940 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002941 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002942 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002943 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002944 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2945
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002946 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002947 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002948 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002949 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002950 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002951 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2952
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002953 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002954 if (IS_HASWELL(dev)) {
2955 val = I915_READ(WM_MISC);
2956 if (results->partitioning == INTEL_DDB_PART_1_2)
2957 val &= ~WM_MISC_DATA_PARTITION_5_6;
2958 else
2959 val |= WM_MISC_DATA_PARTITION_5_6;
2960 I915_WRITE(WM_MISC, val);
2961 } else {
2962 val = I915_READ(DISP_ARB_CTL2);
2963 if (results->partitioning == INTEL_DDB_PART_1_2)
2964 val &= ~DISP_DATA_PARTITION_5_6;
2965 else
2966 val |= DISP_DATA_PARTITION_5_6;
2967 I915_WRITE(DISP_ARB_CTL2, val);
2968 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002969 }
2970
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002971 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002972 val = I915_READ(DISP_ARB_CTL);
2973 if (results->enable_fbc_wm)
2974 val &= ~DISP_FBC_WM_DIS;
2975 else
2976 val |= DISP_FBC_WM_DIS;
2977 I915_WRITE(DISP_ARB_CTL, val);
2978 }
2979
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002980 if (INTEL_INFO(dev)->gen <= 6) {
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002981 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp_spr[0] != results->wm_lp_spr[0])
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002982 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2983 } else {
2984 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2985 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2986 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2987 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2988 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2989 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2990 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002991
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002992 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002993 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002994 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002995 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002996 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002997 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002998
2999 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003000}
3001
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003002static void haswell_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003003{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003004 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003005 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003006 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003007 struct hsw_wm_maximums max;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003008 struct hsw_pipe_wm_parameters params = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003009 struct hsw_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003010 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003011 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003012 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003013 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003014
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003015 hsw_compute_wm_parameters(crtc, &params, &config);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003016
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003017 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3018
3019 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3020 return;
3021
3022 intel_crtc->wm.active = pipe_wm;
3023
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003024 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003025 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003026
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003027 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003028 if (INTEL_INFO(dev)->gen >= 7 &&
3029 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003030 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003031 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003032
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003033 best_lp_wm = hsw_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003034 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003035 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003036 }
3037
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003038 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003039 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003040
Ville Syrjälä609cede2013-10-09 19:18:03 +03003041 hsw_compute_wm_results(dev, best_lp_wm, partitioning, &results);
3042
3043 hsw_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003044}
3045
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003046static void haswell_update_sprite_wm(struct drm_plane *plane,
3047 struct drm_crtc *crtc,
Paulo Zanoni526682e2013-05-24 11:59:18 -03003048 uint32_t sprite_width, int pixel_size,
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03003049 bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003050{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003051 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003052
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003053 intel_plane->wm.enabled = enabled;
3054 intel_plane->wm.scaled = scaled;
3055 intel_plane->wm.horiz_pixels = sprite_width;
3056 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003057
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003058 haswell_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003059}
3060
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003061static bool
3062sandybridge_compute_sprite_wm(struct drm_device *dev, int plane,
3063 uint32_t sprite_width, int pixel_size,
3064 const struct intel_watermark_params *display,
3065 int display_latency_ns, int *sprite_wm)
3066{
3067 struct drm_crtc *crtc;
3068 int clock;
3069 int entries, tlb_miss;
3070
3071 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00003072 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003073 *sprite_wm = display->guard_size;
3074 return false;
3075 }
3076
Damien Lespiau241bfc32013-09-25 16:45:37 +01003077 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003078
3079 /* Use the small buffer method to calculate the sprite watermark */
3080 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
3081 tlb_miss = display->fifo_size*display->cacheline_size -
3082 sprite_width * 8;
3083 if (tlb_miss > 0)
3084 entries += tlb_miss;
3085 entries = DIV_ROUND_UP(entries, display->cacheline_size);
3086 *sprite_wm = entries + display->guard_size;
3087 if (*sprite_wm > (int)display->max_wm)
3088 *sprite_wm = display->max_wm;
3089
3090 return true;
3091}
3092
3093static bool
3094sandybridge_compute_sprite_srwm(struct drm_device *dev, int plane,
3095 uint32_t sprite_width, int pixel_size,
3096 const struct intel_watermark_params *display,
3097 int latency_ns, int *sprite_wm)
3098{
3099 struct drm_crtc *crtc;
3100 unsigned long line_time_us;
3101 int clock;
3102 int line_count, line_size;
3103 int small, large;
3104 int entries;
3105
3106 if (!latency_ns) {
3107 *sprite_wm = 0;
3108 return false;
3109 }
3110
3111 crtc = intel_get_crtc_for_plane(dev, plane);
Damien Lespiau241bfc32013-09-25 16:45:37 +01003112 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003113 if (!clock) {
3114 *sprite_wm = 0;
3115 return false;
3116 }
3117
3118 line_time_us = (sprite_width * 1000) / clock;
3119 if (!line_time_us) {
3120 *sprite_wm = 0;
3121 return false;
3122 }
3123
3124 line_count = (latency_ns / line_time_us + 1000) / 1000;
3125 line_size = sprite_width * pixel_size;
3126
3127 /* Use the minimum of the small and large buffer method for primary */
3128 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
3129 large = line_count * line_size;
3130
3131 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
3132 *sprite_wm = entries + display->guard_size;
3133
3134 return *sprite_wm > 0x3ff ? false : true;
3135}
3136
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003137static void sandybridge_update_sprite_wm(struct drm_plane *plane,
3138 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003139 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003140 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003141{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003142 struct drm_device *dev = plane->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003143 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003144 int pipe = to_intel_plane(plane)->pipe;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003145 int latency = dev_priv->wm.spr_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003146 u32 val;
3147 int sprite_wm, reg;
3148 int ret;
3149
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003150 if (!enabled)
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003151 return;
3152
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003153 switch (pipe) {
3154 case 0:
3155 reg = WM0_PIPEA_ILK;
3156 break;
3157 case 1:
3158 reg = WM0_PIPEB_ILK;
3159 break;
3160 case 2:
3161 reg = WM0_PIPEC_IVB;
3162 break;
3163 default:
3164 return; /* bad pipe */
3165 }
3166
3167 ret = sandybridge_compute_sprite_wm(dev, pipe, sprite_width, pixel_size,
3168 &sandybridge_display_wm_info,
3169 latency, &sprite_wm);
3170 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003171 DRM_DEBUG_KMS("failed to compute sprite wm for pipe %c\n",
3172 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003173 return;
3174 }
3175
3176 val = I915_READ(reg);
3177 val &= ~WM0_PIPE_SPRITE_MASK;
3178 I915_WRITE(reg, val | (sprite_wm << WM0_PIPE_SPRITE_SHIFT));
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003179 DRM_DEBUG_KMS("sprite watermarks For pipe %c - %d\n", pipe_name(pipe), sprite_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003180
3181
3182 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3183 pixel_size,
3184 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003185 dev_priv->wm.spr_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003186 &sprite_wm);
3187 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003188 DRM_DEBUG_KMS("failed to compute sprite lp1 wm on pipe %c\n",
3189 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003190 return;
3191 }
3192 I915_WRITE(WM1S_LP_ILK, sprite_wm);
3193
3194 /* Only IVB has two more LP watermarks for sprite */
3195 if (!IS_IVYBRIDGE(dev))
3196 return;
3197
3198 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3199 pixel_size,
3200 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003201 dev_priv->wm.spr_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003202 &sprite_wm);
3203 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003204 DRM_DEBUG_KMS("failed to compute sprite lp2 wm on pipe %c\n",
3205 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003206 return;
3207 }
3208 I915_WRITE(WM2S_LP_IVB, sprite_wm);
3209
3210 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3211 pixel_size,
3212 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003213 dev_priv->wm.spr_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003214 &sprite_wm);
3215 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003216 DRM_DEBUG_KMS("failed to compute sprite lp3 wm on pipe %c\n",
3217 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003218 return;
3219 }
3220 I915_WRITE(WM3S_LP_IVB, sprite_wm);
3221}
3222
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003223static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3224{
3225 struct drm_device *dev = crtc->dev;
3226 struct drm_i915_private *dev_priv = dev->dev_private;
3227 struct hsw_wm_values *hw = &dev_priv->wm.hw;
3228 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3229 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3230 enum pipe pipe = intel_crtc->pipe;
3231 static const unsigned int wm0_pipe_reg[] = {
3232 [PIPE_A] = WM0_PIPEA_ILK,
3233 [PIPE_B] = WM0_PIPEB_ILK,
3234 [PIPE_C] = WM0_PIPEC_IVB,
3235 };
3236
3237 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003238 if (IS_HASWELL(dev))
3239 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003240
3241 if (intel_crtc_active(crtc)) {
3242 u32 tmp = hw->wm_pipe[pipe];
3243
3244 /*
3245 * For active pipes LP0 watermark is marked as
3246 * enabled, and LP1+ watermaks as disabled since
3247 * we can't really reverse compute them in case
3248 * multiple pipes are active.
3249 */
3250 active->wm[0].enable = true;
3251 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3252 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3253 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3254 active->linetime = hw->wm_linetime[pipe];
3255 } else {
3256 int level, max_level = ilk_wm_max_level(dev);
3257
3258 /*
3259 * For inactive pipes, all watermark levels
3260 * should be marked as enabled but zeroed,
3261 * which is what we'd compute them to.
3262 */
3263 for (level = 0; level <= max_level; level++)
3264 active->wm[level].enable = true;
3265 }
3266}
3267
3268void ilk_wm_get_hw_state(struct drm_device *dev)
3269{
3270 struct drm_i915_private *dev_priv = dev->dev_private;
3271 struct hsw_wm_values *hw = &dev_priv->wm.hw;
3272 struct drm_crtc *crtc;
3273
3274 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3275 ilk_pipe_wm_get_hw_state(crtc);
3276
3277 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3278 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3279 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3280
3281 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
3282 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3283 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3284
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003285 if (IS_HASWELL(dev))
3286 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3287 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3288 else if (IS_IVYBRIDGE(dev))
3289 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
3290 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003291
3292 hw->enable_fbc_wm =
3293 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3294}
3295
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003296/**
3297 * intel_update_watermarks - update FIFO watermark values based on current modes
3298 *
3299 * Calculate watermark values for the various WM regs based on current mode
3300 * and plane configuration.
3301 *
3302 * There are several cases to deal with here:
3303 * - normal (i.e. non-self-refresh)
3304 * - self-refresh (SR) mode
3305 * - lines are large relative to FIFO size (buffer can hold up to 2)
3306 * - lines are small relative to FIFO size (buffer can hold more than 2
3307 * lines), so need to account for TLB latency
3308 *
3309 * The normal calculation is:
3310 * watermark = dotclock * bytes per pixel * latency
3311 * where latency is platform & configuration dependent (we assume pessimal
3312 * values here).
3313 *
3314 * The SR calculation is:
3315 * watermark = (trunc(latency/line time)+1) * surface width *
3316 * bytes per pixel
3317 * where
3318 * line time = htotal / dotclock
3319 * surface width = hdisplay for normal plane and 64 for cursor
3320 * and latency is assumed to be high, as above.
3321 *
3322 * The final value programmed to the register should always be rounded up,
3323 * and include an extra 2 entries to account for clock crossings.
3324 *
3325 * We don't use the sprite, so we can ignore that. And on Crestline we have
3326 * to set the non-SR watermarks to 8.
3327 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003328void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003329{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003330 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003331
3332 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003333 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003334}
3335
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003336void intel_update_sprite_watermarks(struct drm_plane *plane,
3337 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003338 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003339 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003340{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003341 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003342
3343 if (dev_priv->display.update_sprite_wm)
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003344 dev_priv->display.update_sprite_wm(plane, crtc, sprite_width,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003345 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003346}
3347
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003348static struct drm_i915_gem_object *
3349intel_alloc_context_page(struct drm_device *dev)
3350{
3351 struct drm_i915_gem_object *ctx;
3352 int ret;
3353
3354 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3355
3356 ctx = i915_gem_alloc_object(dev, 4096);
3357 if (!ctx) {
3358 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
3359 return NULL;
3360 }
3361
Ben Widawskyc37e2202013-07-31 16:59:58 -07003362 ret = i915_gem_obj_ggtt_pin(ctx, 4096, true, false);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003363 if (ret) {
3364 DRM_ERROR("failed to pin power context: %d\n", ret);
3365 goto err_unref;
3366 }
3367
3368 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
3369 if (ret) {
3370 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
3371 goto err_unpin;
3372 }
3373
3374 return ctx;
3375
3376err_unpin:
3377 i915_gem_object_unpin(ctx);
3378err_unref:
3379 drm_gem_object_unreference(&ctx->base);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003380 return NULL;
3381}
3382
Daniel Vetter92703882012-08-09 16:46:01 +02003383/**
3384 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003385 */
3386DEFINE_SPINLOCK(mchdev_lock);
3387
3388/* Global for IPS driver to get at the current i915 device. Protected by
3389 * mchdev_lock. */
3390static struct drm_i915_private *i915_mch_dev;
3391
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003392bool ironlake_set_drps(struct drm_device *dev, u8 val)
3393{
3394 struct drm_i915_private *dev_priv = dev->dev_private;
3395 u16 rgvswctl;
3396
Daniel Vetter92703882012-08-09 16:46:01 +02003397 assert_spin_locked(&mchdev_lock);
3398
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003399 rgvswctl = I915_READ16(MEMSWCTL);
3400 if (rgvswctl & MEMCTL_CMD_STS) {
3401 DRM_DEBUG("gpu busy, RCS change rejected\n");
3402 return false; /* still busy with another command */
3403 }
3404
3405 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3406 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3407 I915_WRITE16(MEMSWCTL, rgvswctl);
3408 POSTING_READ16(MEMSWCTL);
3409
3410 rgvswctl |= MEMCTL_CMD_STS;
3411 I915_WRITE16(MEMSWCTL, rgvswctl);
3412
3413 return true;
3414}
3415
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003416static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003417{
3418 struct drm_i915_private *dev_priv = dev->dev_private;
3419 u32 rgvmodectl = I915_READ(MEMMODECTL);
3420 u8 fmax, fmin, fstart, vstart;
3421
Daniel Vetter92703882012-08-09 16:46:01 +02003422 spin_lock_irq(&mchdev_lock);
3423
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003424 /* Enable temp reporting */
3425 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3426 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3427
3428 /* 100ms RC evaluation intervals */
3429 I915_WRITE(RCUPEI, 100000);
3430 I915_WRITE(RCDNEI, 100000);
3431
3432 /* Set max/min thresholds to 90ms and 80ms respectively */
3433 I915_WRITE(RCBMAXAVG, 90000);
3434 I915_WRITE(RCBMINAVG, 80000);
3435
3436 I915_WRITE(MEMIHYST, 1);
3437
3438 /* Set up min, max, and cur for interrupt handling */
3439 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3440 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3441 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3442 MEMMODE_FSTART_SHIFT;
3443
3444 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3445 PXVFREQ_PX_SHIFT;
3446
Daniel Vetter20e4d402012-08-08 23:35:39 +02003447 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3448 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003449
Daniel Vetter20e4d402012-08-08 23:35:39 +02003450 dev_priv->ips.max_delay = fstart;
3451 dev_priv->ips.min_delay = fmin;
3452 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003453
3454 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3455 fmax, fmin, fstart);
3456
3457 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3458
3459 /*
3460 * Interrupts will be enabled in ironlake_irq_postinstall
3461 */
3462
3463 I915_WRITE(VIDSTART, vstart);
3464 POSTING_READ(VIDSTART);
3465
3466 rgvmodectl |= MEMMODE_SWMODE_EN;
3467 I915_WRITE(MEMMODECTL, rgvmodectl);
3468
Daniel Vetter92703882012-08-09 16:46:01 +02003469 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003470 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003471 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003472
3473 ironlake_set_drps(dev, fstart);
3474
Daniel Vetter20e4d402012-08-08 23:35:39 +02003475 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003476 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003477 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3478 dev_priv->ips.last_count2 = I915_READ(0x112f4);
3479 getrawmonotonic(&dev_priv->ips.last_time2);
Daniel Vetter92703882012-08-09 16:46:01 +02003480
3481 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003482}
3483
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003484static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003485{
3486 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003487 u16 rgvswctl;
3488
3489 spin_lock_irq(&mchdev_lock);
3490
3491 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003492
3493 /* Ack interrupts, disable EFC interrupt */
3494 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3495 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3496 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3497 I915_WRITE(DEIIR, DE_PCU_EVENT);
3498 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3499
3500 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003501 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003502 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003503 rgvswctl |= MEMCTL_CMD_STS;
3504 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003505 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003506
Daniel Vetter92703882012-08-09 16:46:01 +02003507 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003508}
3509
Daniel Vetteracbe9472012-07-26 11:50:05 +02003510/* There's a funny hw issue where the hw returns all 0 when reading from
3511 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3512 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3513 * all limits and the gpu stuck at whatever frequency it is at atm).
3514 */
Chris Wilson6917c7b2013-11-06 13:56:26 -02003515static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003516{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003517 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003518
Daniel Vetter20b46e52012-07-26 11:16:14 +02003519 /* Only set the down limit when we've reached the lowest level to avoid
3520 * getting more interrupts, otherwise leave this clear. This prevents a
3521 * race in the hw when coming out of rc6: There's a tiny window where
3522 * the hw runs at the minimal clock before selecting the desired
3523 * frequency, if the down threshold expires in that window we will not
3524 * receive a down interrupt. */
Chris Wilson6917c7b2013-11-06 13:56:26 -02003525 limits = dev_priv->rps.max_delay << 24;
3526 if (val <= dev_priv->rps.min_delay)
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003527 limits |= dev_priv->rps.min_delay << 16;
Daniel Vetter20b46e52012-07-26 11:16:14 +02003528
3529 return limits;
3530}
3531
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003532static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
3533{
3534 int new_power;
3535
3536 new_power = dev_priv->rps.power;
3537 switch (dev_priv->rps.power) {
3538 case LOW_POWER:
3539 if (val > dev_priv->rps.rpe_delay + 1 && val > dev_priv->rps.cur_delay)
3540 new_power = BETWEEN;
3541 break;
3542
3543 case BETWEEN:
3544 if (val <= dev_priv->rps.rpe_delay && val < dev_priv->rps.cur_delay)
3545 new_power = LOW_POWER;
3546 else if (val >= dev_priv->rps.rp0_delay && val > dev_priv->rps.cur_delay)
3547 new_power = HIGH_POWER;
3548 break;
3549
3550 case HIGH_POWER:
3551 if (val < (dev_priv->rps.rp1_delay + dev_priv->rps.rp0_delay) >> 1 && val < dev_priv->rps.cur_delay)
3552 new_power = BETWEEN;
3553 break;
3554 }
3555 /* Max/min bins are special */
3556 if (val == dev_priv->rps.min_delay)
3557 new_power = LOW_POWER;
3558 if (val == dev_priv->rps.max_delay)
3559 new_power = HIGH_POWER;
3560 if (new_power == dev_priv->rps.power)
3561 return;
3562
3563 /* Note the units here are not exactly 1us, but 1280ns. */
3564 switch (new_power) {
3565 case LOW_POWER:
3566 /* Upclock if more than 95% busy over 16ms */
3567 I915_WRITE(GEN6_RP_UP_EI, 12500);
3568 I915_WRITE(GEN6_RP_UP_THRESHOLD, 11800);
3569
3570 /* Downclock if less than 85% busy over 32ms */
3571 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3572 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 21250);
3573
3574 I915_WRITE(GEN6_RP_CONTROL,
3575 GEN6_RP_MEDIA_TURBO |
3576 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3577 GEN6_RP_MEDIA_IS_GFX |
3578 GEN6_RP_ENABLE |
3579 GEN6_RP_UP_BUSY_AVG |
3580 GEN6_RP_DOWN_IDLE_AVG);
3581 break;
3582
3583 case BETWEEN:
3584 /* Upclock if more than 90% busy over 13ms */
3585 I915_WRITE(GEN6_RP_UP_EI, 10250);
3586 I915_WRITE(GEN6_RP_UP_THRESHOLD, 9225);
3587
3588 /* Downclock if less than 75% busy over 32ms */
3589 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3590 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 18750);
3591
3592 I915_WRITE(GEN6_RP_CONTROL,
3593 GEN6_RP_MEDIA_TURBO |
3594 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3595 GEN6_RP_MEDIA_IS_GFX |
3596 GEN6_RP_ENABLE |
3597 GEN6_RP_UP_BUSY_AVG |
3598 GEN6_RP_DOWN_IDLE_AVG);
3599 break;
3600
3601 case HIGH_POWER:
3602 /* Upclock if more than 85% busy over 10ms */
3603 I915_WRITE(GEN6_RP_UP_EI, 8000);
3604 I915_WRITE(GEN6_RP_UP_THRESHOLD, 6800);
3605
3606 /* Downclock if less than 60% busy over 32ms */
3607 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3608 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 15000);
3609
3610 I915_WRITE(GEN6_RP_CONTROL,
3611 GEN6_RP_MEDIA_TURBO |
3612 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3613 GEN6_RP_MEDIA_IS_GFX |
3614 GEN6_RP_ENABLE |
3615 GEN6_RP_UP_BUSY_AVG |
3616 GEN6_RP_DOWN_IDLE_AVG);
3617 break;
3618 }
3619
3620 dev_priv->rps.power = new_power;
3621 dev_priv->rps.last_adj = 0;
3622}
3623
Daniel Vetter20b46e52012-07-26 11:16:14 +02003624void gen6_set_rps(struct drm_device *dev, u8 val)
3625{
3626 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003627
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003628 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky79249632012-09-07 19:43:42 -07003629 WARN_ON(val > dev_priv->rps.max_delay);
3630 WARN_ON(val < dev_priv->rps.min_delay);
Daniel Vetter004777c2012-08-09 15:07:01 +02003631
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003632 if (val == dev_priv->rps.cur_delay)
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003633 return;
3634
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003635 gen6_set_rps_thresholds(dev_priv, val);
3636
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003637 if (IS_HASWELL(dev))
3638 I915_WRITE(GEN6_RPNSWREQ,
3639 HSW_FREQUENCY(val));
3640 else
3641 I915_WRITE(GEN6_RPNSWREQ,
3642 GEN6_FREQUENCY(val) |
3643 GEN6_OFFSET(0) |
3644 GEN6_AGGRESSIVE_TURBO);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003645
3646 /* Make sure we continue to get interrupts
3647 * until we hit the minimum or maximum frequencies.
3648 */
Chris Wilson6917c7b2013-11-06 13:56:26 -02003649 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
3650 gen6_rps_limits(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003651
Ben Widawskyd5570a72012-09-07 19:43:41 -07003652 POSTING_READ(GEN6_RPNSWREQ);
3653
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003654 dev_priv->rps.cur_delay = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02003655
3656 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003657}
3658
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003659void gen6_rps_idle(struct drm_i915_private *dev_priv)
3660{
Damien Lespiau691bb712013-12-12 14:36:36 +00003661 struct drm_device *dev = dev_priv->dev;
3662
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003663 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01003664 if (dev_priv->rps.enabled) {
Damien Lespiau691bb712013-12-12 14:36:36 +00003665 if (IS_VALLEYVIEW(dev))
Chris Wilsonc0951f02013-10-10 21:58:50 +01003666 valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
3667 else
3668 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
3669 dev_priv->rps.last_adj = 0;
3670 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003671 mutex_unlock(&dev_priv->rps.hw_lock);
3672}
3673
3674void gen6_rps_boost(struct drm_i915_private *dev_priv)
3675{
Damien Lespiau691bb712013-12-12 14:36:36 +00003676 struct drm_device *dev = dev_priv->dev;
3677
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003678 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01003679 if (dev_priv->rps.enabled) {
Damien Lespiau691bb712013-12-12 14:36:36 +00003680 if (IS_VALLEYVIEW(dev))
Chris Wilsonc0951f02013-10-10 21:58:50 +01003681 valleyview_set_rps(dev_priv->dev, dev_priv->rps.max_delay);
3682 else
3683 gen6_set_rps(dev_priv->dev, dev_priv->rps.max_delay);
3684 dev_priv->rps.last_adj = 0;
3685 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003686 mutex_unlock(&dev_priv->rps.hw_lock);
3687}
3688
Jesse Barnes0a073b82013-04-17 15:54:58 -07003689void valleyview_set_rps(struct drm_device *dev, u8 val)
3690{
3691 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7a670922013-06-25 19:21:06 +03003692
Jesse Barnes0a073b82013-04-17 15:54:58 -07003693 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3694 WARN_ON(val > dev_priv->rps.max_delay);
3695 WARN_ON(val < dev_priv->rps.min_delay);
3696
Ville Syrjälä73008b92013-06-25 19:21:01 +03003697 DRM_DEBUG_DRIVER("GPU freq request from %d MHz (%u) to %d MHz (%u)\n",
Ville Syrjälä2ec38152013-11-05 22:42:29 +02003698 vlv_gpu_freq(dev_priv, dev_priv->rps.cur_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03003699 dev_priv->rps.cur_delay,
Ville Syrjälä2ec38152013-11-05 22:42:29 +02003700 vlv_gpu_freq(dev_priv, val), val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003701
3702 if (val == dev_priv->rps.cur_delay)
3703 return;
3704
Jani Nikulaae992582013-05-22 15:36:19 +03003705 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003706
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003707 dev_priv->rps.cur_delay = val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003708
Ville Syrjälä2ec38152013-11-05 22:42:29 +02003709 trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv, val));
Jesse Barnes0a073b82013-04-17 15:54:58 -07003710}
3711
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003712static void gen6_disable_rps_interrupts(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003713{
3714 struct drm_i915_private *dev_priv = dev->dev_private;
3715
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003716 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Ben Widawsky48484052013-05-28 19:22:27 -07003717 I915_WRITE(GEN6_PMIER, I915_READ(GEN6_PMIER) & ~GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003718 /* Complete PM interrupt masking here doesn't race with the rps work
3719 * item again unmasking PM interrupts because that is using a different
3720 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3721 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3722
Daniel Vetter59cdb632013-07-04 23:35:28 +02003723 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003724 dev_priv->rps.pm_iir = 0;
Daniel Vetter59cdb632013-07-04 23:35:28 +02003725 spin_unlock_irq(&dev_priv->irq_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003726
Ben Widawsky48484052013-05-28 19:22:27 -07003727 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003728}
3729
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003730static void gen6_disable_rps(struct drm_device *dev)
3731{
3732 struct drm_i915_private *dev_priv = dev->dev_private;
3733
3734 I915_WRITE(GEN6_RC_CONTROL, 0);
3735 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
3736
3737 gen6_disable_rps_interrupts(dev);
3738}
3739
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003740static void valleyview_disable_rps(struct drm_device *dev)
3741{
3742 struct drm_i915_private *dev_priv = dev->dev_private;
3743
3744 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003745
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003746 gen6_disable_rps_interrupts(dev);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003747
3748 if (dev_priv->vlv_pctx) {
3749 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
3750 dev_priv->vlv_pctx = NULL;
3751 }
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003752}
3753
Ben Widawskydc39fff2013-10-18 12:32:07 -07003754static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
3755{
3756 if (IS_GEN6(dev))
3757 DRM_DEBUG_DRIVER("Sandybridge: deep RC6 disabled\n");
3758
3759 if (IS_HASWELL(dev))
3760 DRM_DEBUG_DRIVER("Haswell: only RC6 available\n");
3761
3762 DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
3763 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3764 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3765 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
3766}
3767
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003768int intel_enable_rc6(const struct drm_device *dev)
3769{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01003770 /* No RC6 before Ironlake */
3771 if (INTEL_INFO(dev)->gen < 5)
3772 return 0;
3773
Daniel Vetter456470e2012-08-08 23:35:40 +02003774 /* Respect the kernel parameter if it is set */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003775 if (i915_enable_rc6 >= 0)
3776 return i915_enable_rc6;
3777
Chris Wilson6567d742012-11-10 10:00:06 +00003778 /* Disable RC6 on Ironlake */
3779 if (INTEL_INFO(dev)->gen == 5)
3780 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003781
Ben Widawskydc39fff2013-10-18 12:32:07 -07003782 if (IS_HASWELL(dev))
Daniel Vetter456470e2012-08-08 23:35:40 +02003783 return INTEL_RC6_ENABLE;
Daniel Vetter456470e2012-08-08 23:35:40 +02003784
3785 /* snb/ivb have more than one rc6 state. */
Ben Widawskydc39fff2013-10-18 12:32:07 -07003786 if (INTEL_INFO(dev)->gen == 6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003787 return INTEL_RC6_ENABLE;
Daniel Vetter456470e2012-08-08 23:35:40 +02003788
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003789 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
3790}
3791
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003792static void gen6_enable_rps_interrupts(struct drm_device *dev)
3793{
3794 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003795 u32 enabled_intrs;
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003796
3797 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vettera0b33352013-07-04 23:35:34 +02003798 WARN_ON(dev_priv->rps.pm_iir);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03003799 snb_enable_pm_irq(dev_priv, GEN6_PM_RPS_EVENTS);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003800 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
3801 spin_unlock_irq(&dev_priv->irq_lock);
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003802
Vinit Azadfd547d22013-08-14 13:34:33 -07003803 /* only unmask PM interrupts we need. Mask all others. */
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003804 enabled_intrs = GEN6_PM_RPS_EVENTS;
3805
3806 /* IVB and SNB hard hangs on looping batchbuffer
3807 * if GEN6_PM_UP_EI_EXPIRED is masked.
3808 */
3809 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
3810 enabled_intrs |= GEN6_PM_RP_UP_EI_EXPIRED;
3811
3812 I915_WRITE(GEN6_PMINTRMSK, ~enabled_intrs);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003813}
3814
Ben Widawsky6edee7f2013-11-02 21:07:52 -07003815static void gen8_enable_rps(struct drm_device *dev)
3816{
3817 struct drm_i915_private *dev_priv = dev->dev_private;
3818 struct intel_ring_buffer *ring;
3819 uint32_t rc6_mask = 0, rp_state_cap;
3820 int unused;
3821
3822 /* 1a: Software RC state - RC0 */
3823 I915_WRITE(GEN6_RC_STATE, 0);
3824
3825 /* 1c & 1d: Get forcewake during program sequence. Although the driver
3826 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Deepak Sc8d9a592013-11-23 14:55:42 +05303827 gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07003828
3829 /* 2a: Disable RC states. */
3830 I915_WRITE(GEN6_RC_CONTROL, 0);
3831
3832 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3833
3834 /* 2b: Program RC6 thresholds.*/
3835 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
3836 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
3837 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
3838 for_each_ring(ring, dev_priv, unused)
3839 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
3840 I915_WRITE(GEN6_RC_SLEEP, 0);
3841 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
3842
3843 /* 3: Enable RC6 */
3844 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
3845 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
3846 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
3847 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
3848 GEN6_RC_CTL_EI_MODE(1) |
3849 rc6_mask);
3850
3851 /* 4 Program defaults and thresholds for RPS*/
3852 I915_WRITE(GEN6_RPNSWREQ, HSW_FREQUENCY(10)); /* Request 500 MHz */
3853 I915_WRITE(GEN6_RC_VIDEO_FREQ, HSW_FREQUENCY(12)); /* Request 600 MHz */
3854 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
3855 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
3856
3857 /* Docs recommend 900MHz, and 300 MHz respectively */
3858 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
3859 dev_priv->rps.max_delay << 24 |
3860 dev_priv->rps.min_delay << 16);
3861
3862 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
3863 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
3864 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
3865 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
3866
3867 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
3868
3869 /* 5: Enable RPS */
3870 I915_WRITE(GEN6_RP_CONTROL,
3871 GEN6_RP_MEDIA_TURBO |
3872 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3873 GEN6_RP_MEDIA_IS_GFX |
3874 GEN6_RP_ENABLE |
3875 GEN6_RP_UP_BUSY_AVG |
3876 GEN6_RP_DOWN_IDLE_AVG);
3877
3878 /* 6: Ring frequency + overclocking (our driver does this later */
3879
3880 gen6_set_rps(dev, (I915_READ(GEN6_GT_PERF_STATUS) & 0xff00) >> 8);
3881
3882 gen6_enable_rps_interrupts(dev);
3883
Deepak Sc8d9a592013-11-23 14:55:42 +05303884 gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07003885}
3886
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003887static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003888{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003889 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003890 struct intel_ring_buffer *ring;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003891 u32 rp_state_cap;
3892 u32 gt_perf_status;
Ben Widawsky31643d52012-09-26 10:34:01 -07003893 u32 rc6vids, pcu_mbox, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003894 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003895 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07003896 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003897
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003898 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003899
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003900 /* Here begins a magic sequence of register writes to enable
3901 * auto-downclocking.
3902 *
3903 * Perhaps there might be some value in exposing these to
3904 * userspace...
3905 */
3906 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003907
3908 /* Clear the DBG now so we don't confuse earlier errors */
3909 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3910 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3911 I915_WRITE(GTFIFODBG, gtfifodbg);
3912 }
3913
Deepak Sc8d9a592013-11-23 14:55:42 +05303914 gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003915
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003916 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3917 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
3918
Ben Widawsky31c77382013-04-05 14:29:22 -07003919 /* In units of 50MHz */
3920 dev_priv->rps.hw_max = dev_priv->rps.max_delay = rp_state_cap & 0xff;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003921 dev_priv->rps.min_delay = (rp_state_cap >> 16) & 0xff;
3922 dev_priv->rps.rp1_delay = (rp_state_cap >> 8) & 0xff;
3923 dev_priv->rps.rp0_delay = (rp_state_cap >> 0) & 0xff;
3924 dev_priv->rps.rpe_delay = dev_priv->rps.rp1_delay;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003925 dev_priv->rps.cur_delay = 0;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003926
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003927 /* disable the counters and set deterministic thresholds */
3928 I915_WRITE(GEN6_RC_CONTROL, 0);
3929
3930 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
3931 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
3932 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
3933 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3934 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3935
Chris Wilsonb4519512012-05-11 14:29:30 +01003936 for_each_ring(ring, dev_priv, i)
3937 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003938
3939 I915_WRITE(GEN6_RC_SLEEP, 0);
3940 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01003941 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07003942 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
3943 else
3944 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08003945 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003946 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
3947
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003948 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003949 rc6_mode = intel_enable_rc6(dev_priv->dev);
3950 if (rc6_mode & INTEL_RC6_ENABLE)
3951 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
3952
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003953 /* We don't use those on Haswell */
3954 if (!IS_HASWELL(dev)) {
3955 if (rc6_mode & INTEL_RC6p_ENABLE)
3956 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003957
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003958 if (rc6_mode & INTEL_RC6pp_ENABLE)
3959 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
3960 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003961
Ben Widawskydc39fff2013-10-18 12:32:07 -07003962 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003963
3964 I915_WRITE(GEN6_RC_CONTROL,
3965 rc6_mask |
3966 GEN6_RC_CTL_EI_MODE(1) |
3967 GEN6_RC_CTL_HW_ENABLE);
3968
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003969 /* Power down if completely idle for over 50ms */
3970 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003971 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003972
Ben Widawsky42c05262012-09-26 10:34:00 -07003973 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawsky988b36e2013-04-23 17:33:02 -07003974 if (!ret) {
Ben Widawsky42c05262012-09-26 10:34:00 -07003975 pcu_mbox = 0;
3976 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003977 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
Ben Widawsky10e08492013-04-05 14:29:23 -07003978 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003979 (dev_priv->rps.max_delay & 0xff) * 50,
3980 (pcu_mbox & 0xff) * 50);
Ben Widawsky31c77382013-04-05 14:29:22 -07003981 dev_priv->rps.hw_max = pcu_mbox & 0xff;
Ben Widawsky42c05262012-09-26 10:34:00 -07003982 }
3983 } else {
3984 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003985 }
3986
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003987 dev_priv->rps.power = HIGH_POWER; /* force a reset */
3988 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003989
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003990 gen6_enable_rps_interrupts(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003991
Ben Widawsky31643d52012-09-26 10:34:01 -07003992 rc6vids = 0;
3993 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
3994 if (IS_GEN6(dev) && ret) {
3995 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
3996 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
3997 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
3998 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
3999 rc6vids &= 0xffff00;
4000 rc6vids |= GEN6_ENCODE_RC6_VID(450);
4001 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
4002 if (ret)
4003 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
4004 }
4005
Deepak Sc8d9a592013-11-23 14:55:42 +05304006 gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004007}
4008
Paulo Zanonic67a4702013-08-19 13:18:09 -03004009void gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004010{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004011 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004012 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004013 unsigned int gpu_freq;
4014 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004015 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03004016 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004017
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004018 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004019
Ben Widawskyeda79642013-10-07 17:15:48 -03004020 policy = cpufreq_cpu_get(0);
4021 if (policy) {
4022 max_ia_freq = policy->cpuinfo.max_freq;
4023 cpufreq_cpu_put(policy);
4024 } else {
4025 /*
4026 * Default to measured freq if none found, PCU will ensure we
4027 * don't go over
4028 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004029 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03004030 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004031
4032 /* Convert from kHz to MHz */
4033 max_ia_freq /= 1000;
4034
Ben Widawsky153b4b952013-10-22 22:05:09 -07004035 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07004036 /* convert DDR frequency from units of 266.6MHz to bandwidth */
4037 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004038
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004039 /*
4040 * For each potential GPU frequency, load a ring frequency we'd like
4041 * to use for memory access. We do this by specifying the IA frequency
4042 * the PCU should use as a reference to determine the ring frequency.
4043 */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004044 for (gpu_freq = dev_priv->rps.max_delay; gpu_freq >= dev_priv->rps.min_delay;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004045 gpu_freq--) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004046 int diff = dev_priv->rps.max_delay - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004047 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004048
Ben Widawsky46c764d2013-11-02 21:07:49 -07004049 if (INTEL_INFO(dev)->gen >= 8) {
4050 /* max(2 * GT, DDR). NB: GT is 50MHz units */
4051 ring_freq = max(min_ring_freq, gpu_freq);
4052 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07004053 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004054 ring_freq = max(min_ring_freq, ring_freq);
4055 /* leave ia_freq as the default, chosen by cpufreq */
4056 } else {
4057 /* On older processors, there is no separate ring
4058 * clock domain, so in order to boost the bandwidth
4059 * of the ring, we need to upclock the CPU (ia_freq).
4060 *
4061 * For GPU frequencies less than 750MHz,
4062 * just use the lowest ring freq.
4063 */
4064 if (gpu_freq < min_freq)
4065 ia_freq = 800;
4066 else
4067 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
4068 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
4069 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004070
Ben Widawsky42c05262012-09-26 10:34:00 -07004071 sandybridge_pcode_write(dev_priv,
4072 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01004073 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
4074 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
4075 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004076 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004077}
4078
Jesse Barnes0a073b82013-04-17 15:54:58 -07004079int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
4080{
4081 u32 val, rp0;
4082
Jani Nikula64936252013-05-22 15:36:20 +03004083 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004084
4085 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
4086 /* Clamp to max */
4087 rp0 = min_t(u32, rp0, 0xea);
4088
4089 return rp0;
4090}
4091
4092static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4093{
4094 u32 val, rpe;
4095
Jani Nikula64936252013-05-22 15:36:20 +03004096 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004097 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03004098 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004099 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
4100
4101 return rpe;
4102}
4103
4104int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
4105{
Jani Nikula64936252013-05-22 15:36:20 +03004106 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004107}
4108
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004109static void valleyview_setup_pctx(struct drm_device *dev)
4110{
4111 struct drm_i915_private *dev_priv = dev->dev_private;
4112 struct drm_i915_gem_object *pctx;
4113 unsigned long pctx_paddr;
4114 u32 pcbr;
4115 int pctx_size = 24*1024;
4116
4117 pcbr = I915_READ(VLV_PCBR);
4118 if (pcbr) {
4119 /* BIOS set it up already, grab the pre-alloc'd space */
4120 int pcbr_offset;
4121
4122 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
4123 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
4124 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02004125 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004126 pctx_size);
4127 goto out;
4128 }
4129
4130 /*
4131 * From the Gunit register HAS:
4132 * The Gfx driver is expected to program this register and ensure
4133 * proper allocation within Gfx stolen memory. For example, this
4134 * register should be programmed such than the PCBR range does not
4135 * overlap with other ranges, such as the frame buffer, protected
4136 * memory, or any other relevant ranges.
4137 */
4138 pctx = i915_gem_object_create_stolen(dev, pctx_size);
4139 if (!pctx) {
4140 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
4141 return;
4142 }
4143
4144 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
4145 I915_WRITE(VLV_PCBR, pctx_paddr);
4146
4147out:
4148 dev_priv->vlv_pctx = pctx;
4149}
4150
Jesse Barnes0a073b82013-04-17 15:54:58 -07004151static void valleyview_enable_rps(struct drm_device *dev)
4152{
4153 struct drm_i915_private *dev_priv = dev->dev_private;
4154 struct intel_ring_buffer *ring;
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004155 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004156 int i;
4157
4158 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
4159
4160 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07004161 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
4162 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004163 I915_WRITE(GTFIFODBG, gtfifodbg);
4164 }
4165
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004166 valleyview_setup_pctx(dev);
4167
Deepak Sc8d9a592013-11-23 14:55:42 +05304168 /* If VLV, Forcewake all wells, else re-direct to regular path */
4169 gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004170
4171 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
4172 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
4173 I915_WRITE(GEN6_RP_UP_EI, 66000);
4174 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
4175
4176 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
4177
4178 I915_WRITE(GEN6_RP_CONTROL,
4179 GEN6_RP_MEDIA_TURBO |
4180 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4181 GEN6_RP_MEDIA_IS_GFX |
4182 GEN6_RP_ENABLE |
4183 GEN6_RP_UP_BUSY_AVG |
4184 GEN6_RP_DOWN_IDLE_CONT);
4185
4186 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
4187 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4188 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4189
4190 for_each_ring(ring, dev_priv, i)
4191 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4192
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08004193 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004194
4195 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07004196 I915_WRITE(VLV_COUNTER_CONTROL,
4197 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
4198 VLV_MEDIA_RC6_COUNT_EN |
4199 VLV_RENDER_RC6_COUNT_EN));
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004200 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08004201 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07004202
4203 intel_print_rc6_info(dev, rc6_mode);
4204
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004205 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004206
Jani Nikula64936252013-05-22 15:36:20 +03004207 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004208
4209 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no");
4210 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
4211
Jesse Barnes0a073b82013-04-17 15:54:58 -07004212 dev_priv->rps.cur_delay = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03004213 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä2ec38152013-11-05 22:42:29 +02004214 vlv_gpu_freq(dev_priv, dev_priv->rps.cur_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03004215 dev_priv->rps.cur_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004216
4217 dev_priv->rps.max_delay = valleyview_rps_max_freq(dev_priv);
4218 dev_priv->rps.hw_max = dev_priv->rps.max_delay;
Ville Syrjälä73008b92013-06-25 19:21:01 +03004219 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä2ec38152013-11-05 22:42:29 +02004220 vlv_gpu_freq(dev_priv, dev_priv->rps.max_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03004221 dev_priv->rps.max_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004222
Ville Syrjälä73008b92013-06-25 19:21:01 +03004223 dev_priv->rps.rpe_delay = valleyview_rps_rpe_freq(dev_priv);
4224 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä2ec38152013-11-05 22:42:29 +02004225 vlv_gpu_freq(dev_priv, dev_priv->rps.rpe_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03004226 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004227
Ville Syrjälä73008b92013-06-25 19:21:01 +03004228 dev_priv->rps.min_delay = valleyview_rps_min_freq(dev_priv);
4229 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä2ec38152013-11-05 22:42:29 +02004230 vlv_gpu_freq(dev_priv, dev_priv->rps.min_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03004231 dev_priv->rps.min_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004232
Ville Syrjälä73008b92013-06-25 19:21:01 +03004233 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä2ec38152013-11-05 22:42:29 +02004234 vlv_gpu_freq(dev_priv, dev_priv->rps.rpe_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03004235 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004236
Ville Syrjälä73008b92013-06-25 19:21:01 +03004237 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004238
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004239 gen6_enable_rps_interrupts(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004240
Deepak Sc8d9a592013-11-23 14:55:42 +05304241 gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004242}
4243
Daniel Vetter930ebb42012-06-29 23:32:16 +02004244void ironlake_teardown_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004245{
4246 struct drm_i915_private *dev_priv = dev->dev_private;
4247
Daniel Vetter3e373942012-11-02 19:55:04 +01004248 if (dev_priv->ips.renderctx) {
4249 i915_gem_object_unpin(dev_priv->ips.renderctx);
4250 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
4251 dev_priv->ips.renderctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004252 }
4253
Daniel Vetter3e373942012-11-02 19:55:04 +01004254 if (dev_priv->ips.pwrctx) {
4255 i915_gem_object_unpin(dev_priv->ips.pwrctx);
4256 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
4257 dev_priv->ips.pwrctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004258 }
4259}
4260
Daniel Vetter930ebb42012-06-29 23:32:16 +02004261static void ironlake_disable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004262{
4263 struct drm_i915_private *dev_priv = dev->dev_private;
4264
4265 if (I915_READ(PWRCTXA)) {
4266 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
4267 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
4268 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
4269 50);
4270
4271 I915_WRITE(PWRCTXA, 0);
4272 POSTING_READ(PWRCTXA);
4273
4274 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
4275 POSTING_READ(RSTDBYCTL);
4276 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004277}
4278
4279static int ironlake_setup_rc6(struct drm_device *dev)
4280{
4281 struct drm_i915_private *dev_priv = dev->dev_private;
4282
Daniel Vetter3e373942012-11-02 19:55:04 +01004283 if (dev_priv->ips.renderctx == NULL)
4284 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
4285 if (!dev_priv->ips.renderctx)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004286 return -ENOMEM;
4287
Daniel Vetter3e373942012-11-02 19:55:04 +01004288 if (dev_priv->ips.pwrctx == NULL)
4289 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
4290 if (!dev_priv->ips.pwrctx) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004291 ironlake_teardown_rc6(dev);
4292 return -ENOMEM;
4293 }
4294
4295 return 0;
4296}
4297
Daniel Vetter930ebb42012-06-29 23:32:16 +02004298static void ironlake_enable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004299{
4300 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +02004301 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson3e960502012-11-27 16:22:54 +00004302 bool was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004303 int ret;
4304
4305 /* rc6 disabled by default due to repeated reports of hanging during
4306 * boot and resume.
4307 */
4308 if (!intel_enable_rc6(dev))
4309 return;
4310
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004311 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4312
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004313 ret = ironlake_setup_rc6(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004314 if (ret)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004315 return;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004316
Chris Wilson3e960502012-11-27 16:22:54 +00004317 was_interruptible = dev_priv->mm.interruptible;
4318 dev_priv->mm.interruptible = false;
4319
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004320 /*
4321 * GPU can automatically power down the render unit if given a page
4322 * to save state.
4323 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02004324 ret = intel_ring_begin(ring, 6);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004325 if (ret) {
4326 ironlake_teardown_rc6(dev);
Chris Wilson3e960502012-11-27 16:22:54 +00004327 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004328 return;
4329 }
4330
Daniel Vetter6d90c952012-04-26 23:28:05 +02004331 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
4332 intel_ring_emit(ring, MI_SET_CONTEXT);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004333 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) |
Daniel Vetter6d90c952012-04-26 23:28:05 +02004334 MI_MM_SPACE_GTT |
4335 MI_SAVE_EXT_STATE_EN |
4336 MI_RESTORE_EXT_STATE_EN |
4337 MI_RESTORE_INHIBIT);
4338 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
4339 intel_ring_emit(ring, MI_NOOP);
4340 intel_ring_emit(ring, MI_FLUSH);
4341 intel_ring_advance(ring);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004342
4343 /*
4344 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
4345 * does an implicit flush, combined with MI_FLUSH above, it should be
4346 * safe to assume that renderctx is valid
4347 */
Chris Wilson3e960502012-11-27 16:22:54 +00004348 ret = intel_ring_idle(ring);
4349 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004350 if (ret) {
Jani Nikuladef27a52013-03-12 10:49:19 +02004351 DRM_ERROR("failed to enable ironlake power savings\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004352 ironlake_teardown_rc6(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004353 return;
4354 }
4355
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004356 I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004357 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
Ben Widawskydc39fff2013-10-18 12:32:07 -07004358
4359 intel_print_rc6_info(dev, INTEL_RC6_ENABLE);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004360}
4361
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004362static unsigned long intel_pxfreq(u32 vidfreq)
4363{
4364 unsigned long freq;
4365 int div = (vidfreq & 0x3f0000) >> 16;
4366 int post = (vidfreq & 0x3000) >> 12;
4367 int pre = (vidfreq & 0x7);
4368
4369 if (!pre)
4370 return 0;
4371
4372 freq = ((div * 133333) / ((1<<post) * pre));
4373
4374 return freq;
4375}
4376
Daniel Vettereb48eb02012-04-26 23:28:12 +02004377static const struct cparams {
4378 u16 i;
4379 u16 t;
4380 u16 m;
4381 u16 c;
4382} cparams[] = {
4383 { 1, 1333, 301, 28664 },
4384 { 1, 1066, 294, 24460 },
4385 { 1, 800, 294, 25192 },
4386 { 0, 1333, 276, 27605 },
4387 { 0, 1066, 276, 27605 },
4388 { 0, 800, 231, 23784 },
4389};
4390
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004391static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004392{
4393 u64 total_count, diff, ret;
4394 u32 count1, count2, count3, m = 0, c = 0;
4395 unsigned long now = jiffies_to_msecs(jiffies), diff1;
4396 int i;
4397
Daniel Vetter02d71952012-08-09 16:44:54 +02004398 assert_spin_locked(&mchdev_lock);
4399
Daniel Vetter20e4d402012-08-08 23:35:39 +02004400 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004401
4402 /* Prevent division-by-zero if we are asking too fast.
4403 * Also, we don't get interesting results if we are polling
4404 * faster than once in 10ms, so just return the saved value
4405 * in such cases.
4406 */
4407 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02004408 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004409
4410 count1 = I915_READ(DMIEC);
4411 count2 = I915_READ(DDREC);
4412 count3 = I915_READ(CSIEC);
4413
4414 total_count = count1 + count2 + count3;
4415
4416 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004417 if (total_count < dev_priv->ips.last_count1) {
4418 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004419 diff += total_count;
4420 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004421 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004422 }
4423
4424 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004425 if (cparams[i].i == dev_priv->ips.c_m &&
4426 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02004427 m = cparams[i].m;
4428 c = cparams[i].c;
4429 break;
4430 }
4431 }
4432
4433 diff = div_u64(diff, diff1);
4434 ret = ((m * diff) + c);
4435 ret = div_u64(ret, 10);
4436
Daniel Vetter20e4d402012-08-08 23:35:39 +02004437 dev_priv->ips.last_count1 = total_count;
4438 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004439
Daniel Vetter20e4d402012-08-08 23:35:39 +02004440 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004441
4442 return ret;
4443}
4444
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004445unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
4446{
4447 unsigned long val;
4448
4449 if (dev_priv->info->gen != 5)
4450 return 0;
4451
4452 spin_lock_irq(&mchdev_lock);
4453
4454 val = __i915_chipset_val(dev_priv);
4455
4456 spin_unlock_irq(&mchdev_lock);
4457
4458 return val;
4459}
4460
Daniel Vettereb48eb02012-04-26 23:28:12 +02004461unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
4462{
4463 unsigned long m, x, b;
4464 u32 tsfs;
4465
4466 tsfs = I915_READ(TSFS);
4467
4468 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
4469 x = I915_READ8(TR1);
4470
4471 b = tsfs & TSFS_INTR_MASK;
4472
4473 return ((m * x) / 127) - b;
4474}
4475
4476static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
4477{
4478 static const struct v_table {
4479 u16 vd; /* in .1 mil */
4480 u16 vm; /* in .1 mil */
4481 } v_table[] = {
4482 { 0, 0, },
4483 { 375, 0, },
4484 { 500, 0, },
4485 { 625, 0, },
4486 { 750, 0, },
4487 { 875, 0, },
4488 { 1000, 0, },
4489 { 1125, 0, },
4490 { 4125, 3000, },
4491 { 4125, 3000, },
4492 { 4125, 3000, },
4493 { 4125, 3000, },
4494 { 4125, 3000, },
4495 { 4125, 3000, },
4496 { 4125, 3000, },
4497 { 4125, 3000, },
4498 { 4125, 3000, },
4499 { 4125, 3000, },
4500 { 4125, 3000, },
4501 { 4125, 3000, },
4502 { 4125, 3000, },
4503 { 4125, 3000, },
4504 { 4125, 3000, },
4505 { 4125, 3000, },
4506 { 4125, 3000, },
4507 { 4125, 3000, },
4508 { 4125, 3000, },
4509 { 4125, 3000, },
4510 { 4125, 3000, },
4511 { 4125, 3000, },
4512 { 4125, 3000, },
4513 { 4125, 3000, },
4514 { 4250, 3125, },
4515 { 4375, 3250, },
4516 { 4500, 3375, },
4517 { 4625, 3500, },
4518 { 4750, 3625, },
4519 { 4875, 3750, },
4520 { 5000, 3875, },
4521 { 5125, 4000, },
4522 { 5250, 4125, },
4523 { 5375, 4250, },
4524 { 5500, 4375, },
4525 { 5625, 4500, },
4526 { 5750, 4625, },
4527 { 5875, 4750, },
4528 { 6000, 4875, },
4529 { 6125, 5000, },
4530 { 6250, 5125, },
4531 { 6375, 5250, },
4532 { 6500, 5375, },
4533 { 6625, 5500, },
4534 { 6750, 5625, },
4535 { 6875, 5750, },
4536 { 7000, 5875, },
4537 { 7125, 6000, },
4538 { 7250, 6125, },
4539 { 7375, 6250, },
4540 { 7500, 6375, },
4541 { 7625, 6500, },
4542 { 7750, 6625, },
4543 { 7875, 6750, },
4544 { 8000, 6875, },
4545 { 8125, 7000, },
4546 { 8250, 7125, },
4547 { 8375, 7250, },
4548 { 8500, 7375, },
4549 { 8625, 7500, },
4550 { 8750, 7625, },
4551 { 8875, 7750, },
4552 { 9000, 7875, },
4553 { 9125, 8000, },
4554 { 9250, 8125, },
4555 { 9375, 8250, },
4556 { 9500, 8375, },
4557 { 9625, 8500, },
4558 { 9750, 8625, },
4559 { 9875, 8750, },
4560 { 10000, 8875, },
4561 { 10125, 9000, },
4562 { 10250, 9125, },
4563 { 10375, 9250, },
4564 { 10500, 9375, },
4565 { 10625, 9500, },
4566 { 10750, 9625, },
4567 { 10875, 9750, },
4568 { 11000, 9875, },
4569 { 11125, 10000, },
4570 { 11250, 10125, },
4571 { 11375, 10250, },
4572 { 11500, 10375, },
4573 { 11625, 10500, },
4574 { 11750, 10625, },
4575 { 11875, 10750, },
4576 { 12000, 10875, },
4577 { 12125, 11000, },
4578 { 12250, 11125, },
4579 { 12375, 11250, },
4580 { 12500, 11375, },
4581 { 12625, 11500, },
4582 { 12750, 11625, },
4583 { 12875, 11750, },
4584 { 13000, 11875, },
4585 { 13125, 12000, },
4586 { 13250, 12125, },
4587 { 13375, 12250, },
4588 { 13500, 12375, },
4589 { 13625, 12500, },
4590 { 13750, 12625, },
4591 { 13875, 12750, },
4592 { 14000, 12875, },
4593 { 14125, 13000, },
4594 { 14250, 13125, },
4595 { 14375, 13250, },
4596 { 14500, 13375, },
4597 { 14625, 13500, },
4598 { 14750, 13625, },
4599 { 14875, 13750, },
4600 { 15000, 13875, },
4601 { 15125, 14000, },
4602 { 15250, 14125, },
4603 { 15375, 14250, },
4604 { 15500, 14375, },
4605 { 15625, 14500, },
4606 { 15750, 14625, },
4607 { 15875, 14750, },
4608 { 16000, 14875, },
4609 { 16125, 15000, },
4610 };
4611 if (dev_priv->info->is_mobile)
4612 return v_table[pxvid].vm;
4613 else
4614 return v_table[pxvid].vd;
4615}
4616
Daniel Vetter02d71952012-08-09 16:44:54 +02004617static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004618{
4619 struct timespec now, diff1;
4620 u64 diff;
4621 unsigned long diffms;
4622 u32 count;
4623
Daniel Vetter02d71952012-08-09 16:44:54 +02004624 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004625
4626 getrawmonotonic(&now);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004627 diff1 = timespec_sub(now, dev_priv->ips.last_time2);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004628
4629 /* Don't divide by 0 */
4630 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
4631 if (!diffms)
4632 return;
4633
4634 count = I915_READ(GFXEC);
4635
Daniel Vetter20e4d402012-08-08 23:35:39 +02004636 if (count < dev_priv->ips.last_count2) {
4637 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004638 diff += count;
4639 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004640 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004641 }
4642
Daniel Vetter20e4d402012-08-08 23:35:39 +02004643 dev_priv->ips.last_count2 = count;
4644 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004645
4646 /* More magic constants... */
4647 diff = diff * 1181;
4648 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004649 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004650}
4651
Daniel Vetter02d71952012-08-09 16:44:54 +02004652void i915_update_gfx_val(struct drm_i915_private *dev_priv)
4653{
4654 if (dev_priv->info->gen != 5)
4655 return;
4656
Daniel Vetter92703882012-08-09 16:46:01 +02004657 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004658
4659 __i915_update_gfx_val(dev_priv);
4660
Daniel Vetter92703882012-08-09 16:46:01 +02004661 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004662}
4663
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004664static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004665{
4666 unsigned long t, corr, state1, corr2, state2;
4667 u32 pxvid, ext_v;
4668
Daniel Vetter02d71952012-08-09 16:44:54 +02004669 assert_spin_locked(&mchdev_lock);
4670
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004671 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_delay * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02004672 pxvid = (pxvid >> 24) & 0x7f;
4673 ext_v = pvid_to_extvid(dev_priv, pxvid);
4674
4675 state1 = ext_v;
4676
4677 t = i915_mch_val(dev_priv);
4678
4679 /* Revel in the empirically derived constants */
4680
4681 /* Correction factor in 1/100000 units */
4682 if (t > 80)
4683 corr = ((t * 2349) + 135940);
4684 else if (t >= 50)
4685 corr = ((t * 964) + 29317);
4686 else /* < 50 */
4687 corr = ((t * 301) + 1004);
4688
4689 corr = corr * ((150142 * state1) / 10000 - 78642);
4690 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02004691 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004692
4693 state2 = (corr2 * state1) / 10000;
4694 state2 /= 100; /* convert to mW */
4695
Daniel Vetter02d71952012-08-09 16:44:54 +02004696 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004697
Daniel Vetter20e4d402012-08-08 23:35:39 +02004698 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004699}
4700
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004701unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
4702{
4703 unsigned long val;
4704
4705 if (dev_priv->info->gen != 5)
4706 return 0;
4707
4708 spin_lock_irq(&mchdev_lock);
4709
4710 val = __i915_gfx_val(dev_priv);
4711
4712 spin_unlock_irq(&mchdev_lock);
4713
4714 return val;
4715}
4716
Daniel Vettereb48eb02012-04-26 23:28:12 +02004717/**
4718 * i915_read_mch_val - return value for IPS use
4719 *
4720 * Calculate and return a value for the IPS driver to use when deciding whether
4721 * we have thermal and power headroom to increase CPU or GPU power budget.
4722 */
4723unsigned long i915_read_mch_val(void)
4724{
4725 struct drm_i915_private *dev_priv;
4726 unsigned long chipset_val, graphics_val, ret = 0;
4727
Daniel Vetter92703882012-08-09 16:46:01 +02004728 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004729 if (!i915_mch_dev)
4730 goto out_unlock;
4731 dev_priv = i915_mch_dev;
4732
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004733 chipset_val = __i915_chipset_val(dev_priv);
4734 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004735
4736 ret = chipset_val + graphics_val;
4737
4738out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004739 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004740
4741 return ret;
4742}
4743EXPORT_SYMBOL_GPL(i915_read_mch_val);
4744
4745/**
4746 * i915_gpu_raise - raise GPU frequency limit
4747 *
4748 * Raise the limit; IPS indicates we have thermal headroom.
4749 */
4750bool i915_gpu_raise(void)
4751{
4752 struct drm_i915_private *dev_priv;
4753 bool ret = true;
4754
Daniel Vetter92703882012-08-09 16:46:01 +02004755 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004756 if (!i915_mch_dev) {
4757 ret = false;
4758 goto out_unlock;
4759 }
4760 dev_priv = i915_mch_dev;
4761
Daniel Vetter20e4d402012-08-08 23:35:39 +02004762 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
4763 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004764
4765out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004766 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004767
4768 return ret;
4769}
4770EXPORT_SYMBOL_GPL(i915_gpu_raise);
4771
4772/**
4773 * i915_gpu_lower - lower GPU frequency limit
4774 *
4775 * IPS indicates we're close to a thermal limit, so throttle back the GPU
4776 * frequency maximum.
4777 */
4778bool i915_gpu_lower(void)
4779{
4780 struct drm_i915_private *dev_priv;
4781 bool ret = true;
4782
Daniel Vetter92703882012-08-09 16:46:01 +02004783 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004784 if (!i915_mch_dev) {
4785 ret = false;
4786 goto out_unlock;
4787 }
4788 dev_priv = i915_mch_dev;
4789
Daniel Vetter20e4d402012-08-08 23:35:39 +02004790 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
4791 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004792
4793out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004794 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004795
4796 return ret;
4797}
4798EXPORT_SYMBOL_GPL(i915_gpu_lower);
4799
4800/**
4801 * i915_gpu_busy - indicate GPU business to IPS
4802 *
4803 * Tell the IPS driver whether or not the GPU is busy.
4804 */
4805bool i915_gpu_busy(void)
4806{
4807 struct drm_i915_private *dev_priv;
Chris Wilsonf047e392012-07-21 12:31:41 +01004808 struct intel_ring_buffer *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004809 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01004810 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004811
Daniel Vetter92703882012-08-09 16:46:01 +02004812 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004813 if (!i915_mch_dev)
4814 goto out_unlock;
4815 dev_priv = i915_mch_dev;
4816
Chris Wilsonf047e392012-07-21 12:31:41 +01004817 for_each_ring(ring, dev_priv, i)
4818 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004819
4820out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004821 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004822
4823 return ret;
4824}
4825EXPORT_SYMBOL_GPL(i915_gpu_busy);
4826
4827/**
4828 * i915_gpu_turbo_disable - disable graphics turbo
4829 *
4830 * Disable graphics turbo by resetting the max frequency and setting the
4831 * current frequency to the default.
4832 */
4833bool i915_gpu_turbo_disable(void)
4834{
4835 struct drm_i915_private *dev_priv;
4836 bool ret = true;
4837
Daniel Vetter92703882012-08-09 16:46:01 +02004838 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004839 if (!i915_mch_dev) {
4840 ret = false;
4841 goto out_unlock;
4842 }
4843 dev_priv = i915_mch_dev;
4844
Daniel Vetter20e4d402012-08-08 23:35:39 +02004845 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004846
Daniel Vetter20e4d402012-08-08 23:35:39 +02004847 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02004848 ret = false;
4849
4850out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004851 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004852
4853 return ret;
4854}
4855EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
4856
4857/**
4858 * Tells the intel_ips driver that the i915 driver is now loaded, if
4859 * IPS got loaded first.
4860 *
4861 * This awkward dance is so that neither module has to depend on the
4862 * other in order for IPS to do the appropriate communication of
4863 * GPU turbo limits to i915.
4864 */
4865static void
4866ips_ping_for_i915_load(void)
4867{
4868 void (*link)(void);
4869
4870 link = symbol_get(ips_link_to_i915_driver);
4871 if (link) {
4872 link();
4873 symbol_put(ips_link_to_i915_driver);
4874 }
4875}
4876
4877void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
4878{
Daniel Vetter02d71952012-08-09 16:44:54 +02004879 /* We only register the i915 ips part with intel-ips once everything is
4880 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02004881 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004882 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02004883 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004884
4885 ips_ping_for_i915_load();
4886}
4887
4888void intel_gpu_ips_teardown(void)
4889{
Daniel Vetter92703882012-08-09 16:46:01 +02004890 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004891 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02004892 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004893}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004894static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004895{
4896 struct drm_i915_private *dev_priv = dev->dev_private;
4897 u32 lcfuse;
4898 u8 pxw[16];
4899 int i;
4900
4901 /* Disable to program */
4902 I915_WRITE(ECR, 0);
4903 POSTING_READ(ECR);
4904
4905 /* Program energy weights for various events */
4906 I915_WRITE(SDEW, 0x15040d00);
4907 I915_WRITE(CSIEW0, 0x007f0000);
4908 I915_WRITE(CSIEW1, 0x1e220004);
4909 I915_WRITE(CSIEW2, 0x04000004);
4910
4911 for (i = 0; i < 5; i++)
4912 I915_WRITE(PEW + (i * 4), 0);
4913 for (i = 0; i < 3; i++)
4914 I915_WRITE(DEW + (i * 4), 0);
4915
4916 /* Program P-state weights to account for frequency power adjustment */
4917 for (i = 0; i < 16; i++) {
4918 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
4919 unsigned long freq = intel_pxfreq(pxvidfreq);
4920 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
4921 PXVFREQ_PX_SHIFT;
4922 unsigned long val;
4923
4924 val = vid * vid;
4925 val *= (freq / 1000);
4926 val *= 255;
4927 val /= (127*127*900);
4928 if (val > 0xff)
4929 DRM_ERROR("bad pxval: %ld\n", val);
4930 pxw[i] = val;
4931 }
4932 /* Render standby states get 0 weight */
4933 pxw[14] = 0;
4934 pxw[15] = 0;
4935
4936 for (i = 0; i < 4; i++) {
4937 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
4938 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
4939 I915_WRITE(PXW + (i * 4), val);
4940 }
4941
4942 /* Adjust magic regs to magic values (more experimental results) */
4943 I915_WRITE(OGW0, 0);
4944 I915_WRITE(OGW1, 0);
4945 I915_WRITE(EG0, 0x00007f00);
4946 I915_WRITE(EG1, 0x0000000e);
4947 I915_WRITE(EG2, 0x000e0000);
4948 I915_WRITE(EG3, 0x68000300);
4949 I915_WRITE(EG4, 0x42000000);
4950 I915_WRITE(EG5, 0x00140031);
4951 I915_WRITE(EG6, 0);
4952 I915_WRITE(EG7, 0);
4953
4954 for (i = 0; i < 8; i++)
4955 I915_WRITE(PXWL + (i * 4), 0);
4956
4957 /* Enable PMON + select events */
4958 I915_WRITE(ECR, 0x80000019);
4959
4960 lcfuse = I915_READ(LCFUSE02);
4961
Daniel Vetter20e4d402012-08-08 23:35:39 +02004962 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004963}
4964
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004965void intel_disable_gt_powersave(struct drm_device *dev)
4966{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004967 struct drm_i915_private *dev_priv = dev->dev_private;
4968
Daniel Vetterfd0c0642013-04-24 11:13:35 +02004969 /* Interrupts should be disabled already to avoid re-arming. */
4970 WARN_ON(dev->irq_enabled);
4971
Daniel Vetter930ebb42012-06-29 23:32:16 +02004972 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004973 ironlake_disable_drps(dev);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004974 ironlake_disable_rc6(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004975 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004976 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
Jesse Barnes250848c2013-04-23 10:09:27 -07004977 cancel_work_sync(&dev_priv->rps.work);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004978 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004979 if (IS_VALLEYVIEW(dev))
4980 valleyview_disable_rps(dev);
4981 else
4982 gen6_disable_rps(dev);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004983 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004984 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004985 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004986}
4987
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004988static void intel_gen6_powersave_work(struct work_struct *work)
4989{
4990 struct drm_i915_private *dev_priv =
4991 container_of(work, struct drm_i915_private,
4992 rps.delayed_resume_work.work);
4993 struct drm_device *dev = dev_priv->dev;
4994
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004995 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004996
4997 if (IS_VALLEYVIEW(dev)) {
4998 valleyview_enable_rps(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004999 } else if (IS_BROADWELL(dev)) {
5000 gen8_enable_rps(dev);
5001 gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005002 } else {
5003 gen6_enable_rps(dev);
5004 gen6_update_ring_freq(dev);
5005 }
Chris Wilsonc0951f02013-10-10 21:58:50 +01005006 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005007 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005008}
5009
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005010void intel_enable_gt_powersave(struct drm_device *dev)
5011{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005012 struct drm_i915_private *dev_priv = dev->dev_private;
5013
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005014 if (IS_IRONLAKE_M(dev)) {
5015 ironlake_enable_drps(dev);
5016 ironlake_enable_rc6(dev);
5017 intel_init_emon(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005018 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005019 /*
5020 * PCU communication is slow and this doesn't need to be
5021 * done at any specific time, so do this out of our fast path
5022 * to make resume and init faster.
5023 */
5024 schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
5025 round_jiffies_up_relative(HZ));
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005026 }
5027}
5028
Daniel Vetter3107bd42012-10-31 22:52:31 +01005029static void ibx_init_clock_gating(struct drm_device *dev)
5030{
5031 struct drm_i915_private *dev_priv = dev->dev_private;
5032
5033 /*
5034 * On Ibex Peak and Cougar Point, we need to disable clock
5035 * gating for the panel power sequencer or it will fail to
5036 * start up when no ports are active.
5037 */
5038 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
5039}
5040
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005041static void g4x_disable_trickle_feed(struct drm_device *dev)
5042{
5043 struct drm_i915_private *dev_priv = dev->dev_private;
5044 int pipe;
5045
5046 for_each_pipe(pipe) {
5047 I915_WRITE(DSPCNTR(pipe),
5048 I915_READ(DSPCNTR(pipe)) |
5049 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03005050 intel_flush_primary_plane(dev_priv, pipe);
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005051 }
5052}
5053
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005054static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005055{
5056 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005057 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005058
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01005059 /*
5060 * Required for FBC
5061 * WaFbcDisableDpfcClockGating:ilk
5062 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005063 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
5064 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
5065 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005066
5067 I915_WRITE(PCH_3DCGDIS0,
5068 MARIUNIT_CLOCK_GATE_DISABLE |
5069 SVSMUNIT_CLOCK_GATE_DISABLE);
5070 I915_WRITE(PCH_3DCGDIS1,
5071 VFMUNIT_CLOCK_GATE_DISABLE);
5072
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005073 /*
5074 * According to the spec the following bits should be set in
5075 * order to enable memory self-refresh
5076 * The bit 22/21 of 0x42004
5077 * The bit 5 of 0x42020
5078 * The bit 15 of 0x45000
5079 */
5080 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5081 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5082 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005083 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005084 I915_WRITE(DISP_ARB_CTL,
5085 (I915_READ(DISP_ARB_CTL) |
5086 DISP_FBC_WM_DIS));
5087 I915_WRITE(WM3_LP_ILK, 0);
5088 I915_WRITE(WM2_LP_ILK, 0);
5089 I915_WRITE(WM1_LP_ILK, 0);
5090
5091 /*
5092 * Based on the document from hardware guys the following bits
5093 * should be set unconditionally in order to enable FBC.
5094 * The bit 22 of 0x42000
5095 * The bit 22 of 0x42004
5096 * The bit 7,8,9 of 0x42020.
5097 */
5098 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01005099 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005100 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5101 I915_READ(ILK_DISPLAY_CHICKEN1) |
5102 ILK_FBCQ_DIS);
5103 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5104 I915_READ(ILK_DISPLAY_CHICKEN2) |
5105 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005106 }
5107
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005108 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
5109
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005110 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5111 I915_READ(ILK_DISPLAY_CHICKEN2) |
5112 ILK_ELPIN_409_SELECT);
5113 I915_WRITE(_3D_CHICKEN2,
5114 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
5115 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02005116
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005117 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02005118 I915_WRITE(CACHE_MODE_0,
5119 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005120
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005121 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03005122
Daniel Vetter3107bd42012-10-31 22:52:31 +01005123 ibx_init_clock_gating(dev);
5124}
5125
5126static void cpt_init_clock_gating(struct drm_device *dev)
5127{
5128 struct drm_i915_private *dev_priv = dev->dev_private;
5129 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005130 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01005131
5132 /*
5133 * On Ibex Peak and Cougar Point, we need to disable clock
5134 * gating for the panel power sequencer or it will fail to
5135 * start up when no ports are active.
5136 */
Jesse Barnescd664072013-10-02 10:34:19 -07005137 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
5138 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
5139 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005140 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
5141 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01005142 /* The below fixes the weird display corruption, a few pixels shifted
5143 * downward, on (only) LVDS of some HP laptops with IVY.
5144 */
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005145 for_each_pipe(pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005146 val = I915_READ(TRANS_CHICKEN2(pipe));
5147 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
5148 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005149 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005150 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005151 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
5152 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
5153 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005154 I915_WRITE(TRANS_CHICKEN2(pipe), val);
5155 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01005156 /* WADP0ClockGatingDisable */
5157 for_each_pipe(pipe) {
5158 I915_WRITE(TRANS_CHICKEN1(pipe),
5159 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
5160 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005161}
5162
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005163static void gen6_check_mch_setup(struct drm_device *dev)
5164{
5165 struct drm_i915_private *dev_priv = dev->dev_private;
5166 uint32_t tmp;
5167
5168 tmp = I915_READ(MCH_SSKPD);
5169 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) {
5170 DRM_INFO("Wrong MCH_SSKPD value: 0x%08x\n", tmp);
5171 DRM_INFO("This can cause pipe underruns and display issues.\n");
5172 DRM_INFO("Please upgrade your BIOS to fix this.\n");
5173 }
5174}
5175
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005176static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005177{
5178 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005179 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005180
Damien Lespiau231e54f2012-10-19 17:55:41 +01005181 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005182
5183 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5184 I915_READ(ILK_DISPLAY_CHICKEN2) |
5185 ILK_ELPIN_409_SELECT);
5186
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005187 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01005188 I915_WRITE(_3D_CHICKEN,
5189 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
5190
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005191 /* WaSetupGtModeTdRowDispatch:snb */
Daniel Vetter6547fbd2012-12-14 23:38:29 +01005192 if (IS_SNB_GT1(dev))
5193 I915_WRITE(GEN6_GT_MODE,
5194 _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE));
5195
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005196 I915_WRITE(WM3_LP_ILK, 0);
5197 I915_WRITE(WM2_LP_ILK, 0);
5198 I915_WRITE(WM1_LP_ILK, 0);
5199
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005200 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02005201 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005202
5203 I915_WRITE(GEN6_UCGCTL1,
5204 I915_READ(GEN6_UCGCTL1) |
5205 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
5206 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
5207
5208 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5209 * gating disable must be set. Failure to set it results in
5210 * flickering pixels due to Z write ordering failures after
5211 * some amount of runtime in the Mesa "fire" demo, and Unigine
5212 * Sanctuary and Tropics, and apparently anything else with
5213 * alpha test or pixel discard.
5214 *
5215 * According to the spec, bit 11 (RCCUNIT) must also be set,
5216 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005217 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005218 * Also apply WaDisableVDSUnitClockGating:snb and
5219 * WaDisableRCPBUnitClockGating:snb.
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005220 */
5221 I915_WRITE(GEN6_UCGCTL2,
Jesse Barnes0f846f82012-06-14 11:04:47 -07005222 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005223 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5224 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5225
5226 /* Bspec says we need to always set all mask bits. */
Kenneth Graunke26b6e442012-10-07 08:51:07 -07005227 I915_WRITE(_3D_CHICKEN3, (0xFFFF << 16) |
5228 _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005229
5230 /*
5231 * According to the spec the following bits should be
5232 * set in order to enable memory self-refresh and fbc:
5233 * The bit21 and bit22 of 0x42000
5234 * The bit21 and bit22 of 0x42004
5235 * The bit5 and bit7 of 0x42020
5236 * The bit14 of 0x70180
5237 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01005238 *
5239 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005240 */
5241 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5242 I915_READ(ILK_DISPLAY_CHICKEN1) |
5243 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
5244 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5245 I915_READ(ILK_DISPLAY_CHICKEN2) |
5246 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01005247 I915_WRITE(ILK_DSPCLK_GATE_D,
5248 I915_READ(ILK_DSPCLK_GATE_D) |
5249 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
5250 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005251
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005252 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07005253
5254 /* The default value should be 0x200 according to docs, but the two
5255 * platforms I checked have a 0 for this. (Maybe BIOS overrides?) */
5256 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_DISABLE(0xffff));
5257 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_ENABLE(GEN6_GT_MODE_HI));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005258
5259 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005260
5261 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005262}
5263
5264static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
5265{
5266 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
5267
5268 reg &= ~GEN7_FF_SCHED_MASK;
5269 reg |= GEN7_FF_TS_SCHED_HW;
5270 reg |= GEN7_FF_VS_SCHED_HW;
5271 reg |= GEN7_FF_DS_SCHED_HW;
5272
Ben Widawsky41c0b3a2013-01-26 11:52:00 -08005273 if (IS_HASWELL(dev_priv->dev))
5274 reg &= ~GEN7_FF_VS_REF_CNT_FFME;
5275
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005276 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
5277}
5278
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005279static void lpt_init_clock_gating(struct drm_device *dev)
5280{
5281 struct drm_i915_private *dev_priv = dev->dev_private;
5282
5283 /*
5284 * TODO: this bit should only be enabled when really needed, then
5285 * disabled when not needed anymore in order to save power.
5286 */
5287 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
5288 I915_WRITE(SOUTH_DSPCLK_GATE_D,
5289 I915_READ(SOUTH_DSPCLK_GATE_D) |
5290 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03005291
5292 /* WADPOClockGatingDisable:hsw */
5293 I915_WRITE(_TRANSA_CHICKEN1,
5294 I915_READ(_TRANSA_CHICKEN1) |
5295 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005296}
5297
Imre Deak7d708ee2013-04-17 14:04:50 +03005298static void lpt_suspend_hw(struct drm_device *dev)
5299{
5300 struct drm_i915_private *dev_priv = dev->dev_private;
5301
5302 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
5303 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
5304
5305 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
5306 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
5307 }
5308}
5309
Ben Widawsky1020a5c2013-11-02 21:07:06 -07005310static void gen8_init_clock_gating(struct drm_device *dev)
5311{
5312 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07005313 enum pipe i;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07005314
5315 I915_WRITE(WM3_LP_ILK, 0);
5316 I915_WRITE(WM2_LP_ILK, 0);
5317 I915_WRITE(WM1_LP_ILK, 0);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07005318
5319 /* FIXME(BDW): Check all the w/a, some might only apply to
5320 * pre-production hw. */
5321
Ben Widawskyfd392b62013-11-04 22:52:39 -08005322 WARN(!i915_preliminary_hw_support,
5323 "GEN8_CENTROID_PIXEL_OPT_DIS not be needed for production\n");
5324 I915_WRITE(HALF_SLICE_CHICKEN3,
5325 _MASKED_BIT_ENABLE(GEN8_CENTROID_PIXEL_OPT_DIS));
Ben Widawskybf663472013-11-02 21:07:57 -07005326 I915_WRITE(HALF_SLICE_CHICKEN3,
5327 _MASKED_BIT_ENABLE(GEN8_SAMPLER_POWER_BYPASS_DIS));
Ben Widawsky4afe8d32013-11-02 21:07:55 -07005328 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_BWGTLB_DISABLE));
5329
Ben Widawsky7f88da02013-11-02 21:07:58 -07005330 I915_WRITE(_3D_CHICKEN3,
5331 _3D_CHICKEN_SDE_LIMIT_FIFO_POLY_DEPTH(2));
5332
Ben Widawskya75f3622013-11-02 21:07:59 -07005333 I915_WRITE(COMMON_SLICE_CHICKEN2,
5334 _MASKED_BIT_ENABLE(GEN8_CSC2_SBE_VUE_CACHE_CONSERVATIVE));
5335
Ben Widawsky4c2e7a52013-11-02 21:08:00 -07005336 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
5337 _MASKED_BIT_ENABLE(GEN7_SINGLE_SUBSCAN_DISPATCH_ENABLE));
5338
Ben Widawskyab57fff2013-12-12 15:28:04 -08005339 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07005340 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07005341
Ben Widawskyab57fff2013-12-12 15:28:04 -08005342 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07005343 I915_WRITE(CHICKEN_PAR1_1,
5344 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
5345
Ben Widawskyab57fff2013-12-12 15:28:04 -08005346 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07005347 for_each_pipe(i) {
5348 I915_WRITE(CHICKEN_PIPESL_1(i),
5349 I915_READ(CHICKEN_PIPESL_1(i) |
5350 DPRS_MASK_VBLANK_SRD));
5351 }
Ben Widawsky63801f22013-12-12 17:26:03 -08005352
5353 /* Use Force Non-Coherent whenever executing a 3D context. This is a
5354 * workaround for for a possible hang in the unlikely event a TLB
5355 * invalidation occurs during a PSD flush.
5356 */
5357 I915_WRITE(HDC_CHICKEN0,
5358 I915_READ(HDC_CHICKEN0) |
5359 _MASKED_BIT_ENABLE(HDC_FORCE_NON_COHERENT));
Ben Widawskyab57fff2013-12-12 15:28:04 -08005360
5361 /* WaVSRefCountFullforceMissDisable:bdw */
5362 /* WaDSRefCountFullforceMissDisable:bdw */
5363 I915_WRITE(GEN7_FF_THREAD_MODE,
5364 I915_READ(GEN7_FF_THREAD_MODE) &
5365 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ben Widawsky1020a5c2013-11-02 21:07:06 -07005366}
5367
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005368static void haswell_init_clock_gating(struct drm_device *dev)
5369{
5370 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005371
5372 I915_WRITE(WM3_LP_ILK, 0);
5373 I915_WRITE(WM2_LP_ILK, 0);
5374 I915_WRITE(WM1_LP_ILK, 0);
5375
5376 /* According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005377 * This implements the WaDisableRCZUnitClockGating:hsw workaround.
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005378 */
5379 I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
5380
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005381 /* Apply the WaDisableRHWOOptimizationForRenderHang:hsw workaround. */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005382 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5383 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5384
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005385 /* WaApplyL3ControlAndL3ChickenMode:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005386 I915_WRITE(GEN7_L3CNTLREG1,
5387 GEN7_WA_FOR_GEN7_L3_CONTROL);
5388 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
5389 GEN7_WA_L3_CHICKEN_MODE);
5390
Francisco Jerezf3fc4882013-10-02 15:53:16 -07005391 /* L3 caching of data atomics doesn't work -- disable it. */
5392 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
5393 I915_WRITE(HSW_ROW_CHICKEN3,
5394 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
5395
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005396 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005397 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5398 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5399 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5400
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005401 /* WaVSRefCountFullforceMissDisable:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005402 gen7_setup_fixed_func_scheduler(dev_priv);
5403
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005404 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005405 I915_WRITE(CACHE_MODE_1,
5406 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03005407
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005408 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07005409 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
5410
Paulo Zanoni90a88642013-05-03 17:23:45 -03005411 /* WaRsPkgCStateDisplayPMReq:hsw */
5412 I915_WRITE(CHICKEN_PAR1_1,
5413 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03005414
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005415 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005416}
5417
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005418static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005419{
5420 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07005421 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005422
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005423 I915_WRITE(WM3_LP_ILK, 0);
5424 I915_WRITE(WM2_LP_ILK, 0);
5425 I915_WRITE(WM1_LP_ILK, 0);
5426
Damien Lespiau231e54f2012-10-19 17:55:41 +01005427 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005428
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005429 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05005430 I915_WRITE(_3D_CHICKEN3,
5431 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5432
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005433 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005434 I915_WRITE(IVB_CHICKEN3,
5435 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5436 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5437
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005438 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07005439 if (IS_IVB_GT1(dev))
5440 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
5441 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5442 else
5443 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1_GT2,
5444 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5445
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005446 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005447 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5448 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5449
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005450 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005451 I915_WRITE(GEN7_L3CNTLREG1,
5452 GEN7_WA_FOR_GEN7_L3_CONTROL);
5453 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07005454 GEN7_WA_L3_CHICKEN_MODE);
5455 if (IS_IVB_GT1(dev))
5456 I915_WRITE(GEN7_ROW_CHICKEN2,
5457 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5458 else
5459 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
5460 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5461
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005462
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005463 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05005464 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5465 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5466
Jesse Barnes0f846f82012-06-14 11:04:47 -07005467 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5468 * gating disable must be set. Failure to set it results in
5469 * flickering pixels due to Z write ordering failures after
5470 * some amount of runtime in the Mesa "fire" demo, and Unigine
5471 * Sanctuary and Tropics, and apparently anything else with
5472 * alpha test or pixel discard.
5473 *
5474 * According to the spec, bit 11 (RCCUNIT) must also be set,
5475 * but we didn't debug actual testcases to find it out.
5476 *
5477 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005478 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005479 */
5480 I915_WRITE(GEN6_UCGCTL2,
5481 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5482 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5483
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005484 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005485 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5486 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5487 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5488
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005489 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005490
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005491 /* WaVSRefCountFullforceMissDisable:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005492 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02005493
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005494 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02005495 I915_WRITE(CACHE_MODE_1,
5496 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07005497
5498 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
5499 snpcr &= ~GEN6_MBC_SNPCR_MASK;
5500 snpcr |= GEN6_MBC_SNPCR_MED;
5501 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005502
Ben Widawskyab5c6082013-04-05 13:12:41 -07005503 if (!HAS_PCH_NOP(dev))
5504 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005505
5506 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005507}
5508
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005509static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005510{
5511 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes85b1d7b2013-11-04 11:52:45 -08005512 u32 val;
5513
5514 mutex_lock(&dev_priv->rps.hw_lock);
5515 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5516 mutex_unlock(&dev_priv->rps.hw_lock);
5517 switch ((val >> 6) & 3) {
5518 case 0:
Jesse Barnes85b1d7b2013-11-04 11:52:45 -08005519 dev_priv->mem_freq = 800;
5520 break;
Jesse Barnesf64a28a2013-11-04 16:07:00 -08005521 case 1:
Jesse Barnes85b1d7b2013-11-04 11:52:45 -08005522 dev_priv->mem_freq = 1066;
5523 break;
Jesse Barnesf64a28a2013-11-04 16:07:00 -08005524 case 2:
Jesse Barnes85b1d7b2013-11-04 11:52:45 -08005525 dev_priv->mem_freq = 1333;
5526 break;
Jesse Barnesf64a28a2013-11-04 16:07:00 -08005527 case 3:
Chon Ming Lee23259912013-11-07 15:23:26 +08005528 dev_priv->mem_freq = 1333;
Jesse Barnesf64a28a2013-11-04 16:07:00 -08005529 break;
Jesse Barnes85b1d7b2013-11-04 11:52:45 -08005530 }
5531 DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005532
Ville Syrjäläd7fe0cc2013-05-21 18:01:50 +03005533 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005534
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005535 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05005536 I915_WRITE(_3D_CHICKEN3,
5537 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5538
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005539 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005540 I915_WRITE(IVB_CHICKEN3,
5541 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5542 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5543
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005544 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07005545 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08005546 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
5547 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07005548
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005549 /* Apply the WaDisableRHWOOptimizationForRenderHang:vlv workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005550 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5551 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5552
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005553 /* WaApplyL3ControlAndL3ChickenMode:vlv */
Jesse Barnesd0cf5ea2012-10-25 12:15:41 -07005554 I915_WRITE(GEN7_L3CNTLREG1, I915_READ(GEN7_L3CNTLREG1) | GEN7_L3AGDIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005555 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, GEN7_WA_L3_CHICKEN_MODE);
5556
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005557 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05005558 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5559 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5560
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005561 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07005562 I915_WRITE(GEN7_ROW_CHICKEN2,
5563 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5564
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005565 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005566 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5567 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5568 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5569
Jesse Barnes0f846f82012-06-14 11:04:47 -07005570 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5571 * gating disable must be set. Failure to set it results in
5572 * flickering pixels due to Z write ordering failures after
5573 * some amount of runtime in the Mesa "fire" demo, and Unigine
5574 * Sanctuary and Tropics, and apparently anything else with
5575 * alpha test or pixel discard.
5576 *
5577 * According to the spec, bit 11 (RCCUNIT) must also be set,
5578 * but we didn't debug actual testcases to find it out.
5579 *
5580 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005581 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005582 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005583 * Also apply WaDisableVDSUnitClockGating:vlv and
5584 * WaDisableRCPBUnitClockGating:vlv.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005585 */
5586 I915_WRITE(GEN6_UCGCTL2,
5587 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes6edaa7f2012-06-14 11:04:49 -07005588 GEN7_TDLUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes0f846f82012-06-14 11:04:47 -07005589 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5590 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5591 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5592
Jesse Barnese3f33d42012-06-14 11:04:50 -07005593 I915_WRITE(GEN7_UCGCTL4, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
5594
Ville Syrjäläe0d8d592013-06-12 22:11:18 +03005595 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005596
Daniel Vetter6b26c862012-04-24 14:04:12 +02005597 I915_WRITE(CACHE_MODE_1,
5598 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07005599
5600 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005601 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07005602 * Disable clock gating on th GCFG unit to prevent a delay
5603 * in the reporting of vblank events.
5604 */
Jesse Barnes4e8c84a2013-03-08 10:45:54 -08005605 I915_WRITE(VLV_GUNIT_CLOCK_GATE, 0xffffffff);
5606
5607 /* Conservative clock gating settings for now */
5608 I915_WRITE(0x9400, 0xffffffff);
5609 I915_WRITE(0x9404, 0xffffffff);
5610 I915_WRITE(0x9408, 0xffffffff);
5611 I915_WRITE(0x940c, 0xffffffff);
5612 I915_WRITE(0x9410, 0xffffffff);
5613 I915_WRITE(0x9414, 0xffffffff);
5614 I915_WRITE(0x9418, 0xffffffff);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005615}
5616
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005617static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005618{
5619 struct drm_i915_private *dev_priv = dev->dev_private;
5620 uint32_t dspclk_gate;
5621
5622 I915_WRITE(RENCLK_GATE_D1, 0);
5623 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5624 GS_UNIT_CLOCK_GATE_DISABLE |
5625 CL_UNIT_CLOCK_GATE_DISABLE);
5626 I915_WRITE(RAMCLK_GATE_D, 0);
5627 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5628 OVRUNIT_CLOCK_GATE_DISABLE |
5629 OVCUNIT_CLOCK_GATE_DISABLE;
5630 if (IS_GM45(dev))
5631 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5632 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02005633
5634 /* WaDisableRenderCachePipelinedFlush */
5635 I915_WRITE(CACHE_MODE_0,
5636 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03005637
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005638 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005639}
5640
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005641static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005642{
5643 struct drm_i915_private *dev_priv = dev->dev_private;
5644
5645 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5646 I915_WRITE(RENCLK_GATE_D2, 0);
5647 I915_WRITE(DSPCLK_GATE_D, 0);
5648 I915_WRITE(RAMCLK_GATE_D, 0);
5649 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005650 I915_WRITE(MI_ARB_STATE,
5651 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005652}
5653
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005654static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005655{
5656 struct drm_i915_private *dev_priv = dev->dev_private;
5657
5658 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5659 I965_RCC_CLOCK_GATE_DISABLE |
5660 I965_RCPB_CLOCK_GATE_DISABLE |
5661 I965_ISC_CLOCK_GATE_DISABLE |
5662 I965_FBC_CLOCK_GATE_DISABLE);
5663 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005664 I915_WRITE(MI_ARB_STATE,
5665 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005666}
5667
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005668static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005669{
5670 struct drm_i915_private *dev_priv = dev->dev_private;
5671 u32 dstate = I915_READ(D_STATE);
5672
5673 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5674 DSTATE_DOT_CLOCK_GATING;
5675 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01005676
5677 if (IS_PINEVIEW(dev))
5678 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02005679
5680 /* IIR "flip pending" means done if this bit is set */
5681 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005682}
5683
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005684static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005685{
5686 struct drm_i915_private *dev_priv = dev->dev_private;
5687
5688 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5689}
5690
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005691static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005692{
5693 struct drm_i915_private *dev_priv = dev->dev_private;
5694
5695 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5696}
5697
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005698void intel_init_clock_gating(struct drm_device *dev)
5699{
5700 struct drm_i915_private *dev_priv = dev->dev_private;
5701
5702 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005703}
5704
Imre Deak7d708ee2013-04-17 14:04:50 +03005705void intel_suspend_hw(struct drm_device *dev)
5706{
5707 if (HAS_PCH_LPT(dev))
5708 lpt_suspend_hw(dev);
5709}
5710
Imre Deakc1ca7272013-11-25 17:15:29 +02005711#define for_each_power_well(i, power_well, domain_mask, power_domains) \
5712 for (i = 0; \
5713 i < (power_domains)->power_well_count && \
5714 ((power_well) = &(power_domains)->power_wells[i]); \
5715 i++) \
5716 if ((power_well)->domains & (domain_mask))
5717
5718#define for_each_power_well_rev(i, power_well, domain_mask, power_domains) \
5719 for (i = (power_domains)->power_well_count - 1; \
5720 i >= 0 && ((power_well) = &(power_domains)->power_wells[i]);\
5721 i--) \
5722 if ((power_well)->domains & (domain_mask))
5723
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005724/**
5725 * We should only use the power well if we explicitly asked the hardware to
5726 * enable it, so check if it's enabled and also check if we've requested it to
5727 * be enabled.
5728 */
Imre Deakc1ca7272013-11-25 17:15:29 +02005729static bool hsw_power_well_enabled(struct drm_device *dev,
5730 struct i915_power_well *power_well)
5731{
5732 struct drm_i915_private *dev_priv = dev->dev_private;
5733
5734 return I915_READ(HSW_PWR_WELL_DRIVER) ==
5735 (HSW_PWR_WELL_ENABLE_REQUEST | HSW_PWR_WELL_STATE_ENABLED);
5736}
5737
Imre Deakddf9c532013-11-27 22:02:02 +02005738bool intel_display_power_enabled_sw(struct drm_device *dev,
5739 enum intel_display_power_domain domain)
5740{
5741 struct drm_i915_private *dev_priv = dev->dev_private;
5742 struct i915_power_domains *power_domains;
5743
5744 power_domains = &dev_priv->power_domains;
5745
5746 return power_domains->domain_use_count[domain];
5747}
5748
Paulo Zanonib97186f2013-05-03 12:15:36 -03005749bool intel_display_power_enabled(struct drm_device *dev,
5750 enum intel_display_power_domain domain)
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005751{
5752 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deakc1ca7272013-11-25 17:15:29 +02005753 struct i915_power_domains *power_domains;
5754 struct i915_power_well *power_well;
5755 bool is_enabled;
5756 int i;
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005757
Imre Deakc1ca7272013-11-25 17:15:29 +02005758 power_domains = &dev_priv->power_domains;
5759
5760 is_enabled = true;
5761
5762 mutex_lock(&power_domains->lock);
5763 for_each_power_well_rev(i, power_well, BIT(domain), power_domains) {
Imre Deak6f3ef5d2013-11-25 17:15:30 +02005764 if (power_well->always_on)
5765 continue;
5766
Imre Deakc1ca7272013-11-25 17:15:29 +02005767 if (!power_well->is_enabled(dev, power_well)) {
5768 is_enabled = false;
5769 break;
5770 }
5771 }
5772 mutex_unlock(&power_domains->lock);
5773
5774 return is_enabled;
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005775}
5776
Paulo Zanonid5e8fdc2013-12-11 18:50:09 -02005777static void hsw_power_well_post_enable(struct drm_i915_private *dev_priv)
5778{
5779 struct drm_device *dev = dev_priv->dev;
5780 unsigned long irqflags;
5781
Paulo Zanonif9dcb0d2013-12-11 18:50:10 -02005782 /*
5783 * After we re-enable the power well, if we touch VGA register 0x3d5
5784 * we'll get unclaimed register interrupts. This stops after we write
5785 * anything to the VGA MSR register. The vgacon module uses this
5786 * register all the time, so if we unbind our driver and, as a
5787 * consequence, bind vgacon, we'll get stuck in an infinite loop at
5788 * console_unlock(). So make here we touch the VGA MSR register, making
5789 * sure vgacon can keep working normally without triggering interrupts
5790 * and error messages.
5791 */
5792 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
5793 outb(inb(VGA_MSR_READ), VGA_MSR_WRITE);
5794 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
5795
Paulo Zanonid5e8fdc2013-12-11 18:50:09 -02005796 if (IS_BROADWELL(dev)) {
5797 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
5798 I915_WRITE(GEN8_DE_PIPE_IMR(PIPE_B),
5799 dev_priv->de_irq_mask[PIPE_B]);
5800 I915_WRITE(GEN8_DE_PIPE_IER(PIPE_B),
5801 ~dev_priv->de_irq_mask[PIPE_B] |
5802 GEN8_PIPE_VBLANK);
5803 I915_WRITE(GEN8_DE_PIPE_IMR(PIPE_C),
5804 dev_priv->de_irq_mask[PIPE_C]);
5805 I915_WRITE(GEN8_DE_PIPE_IER(PIPE_C),
5806 ~dev_priv->de_irq_mask[PIPE_C] |
5807 GEN8_PIPE_VBLANK);
5808 POSTING_READ(GEN8_DE_PIPE_IER(PIPE_C));
5809 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
5810 }
5811}
5812
5813static void hsw_power_well_post_disable(struct drm_i915_private *dev_priv)
5814{
5815 struct drm_device *dev = dev_priv->dev;
5816 enum pipe p;
5817 unsigned long irqflags;
5818
5819 /*
5820 * After this, the registers on the pipes that are part of the power
5821 * well will become zero, so we have to adjust our counters according to
5822 * that.
5823 *
5824 * FIXME: Should we do this in general in drm_vblank_post_modeset?
5825 */
5826 spin_lock_irqsave(&dev->vbl_lock, irqflags);
5827 for_each_pipe(p)
5828 if (p != PIPE_A)
5829 dev->vblank[p].last = 0;
5830 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
5831}
5832
Imre Deakc1ca7272013-11-25 17:15:29 +02005833static void hsw_set_power_well(struct drm_device *dev,
5834 struct i915_power_well *power_well, bool enable)
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005835{
5836 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonifa42e232013-01-25 16:59:11 -02005837 bool is_enabled, enable_requested;
5838 uint32_t tmp;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005839
Paulo Zanonid62292c2013-11-27 17:59:22 -02005840 WARN_ON(dev_priv->pc8.enabled);
5841
Paulo Zanonifa42e232013-01-25 16:59:11 -02005842 tmp = I915_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005843 is_enabled = tmp & HSW_PWR_WELL_STATE_ENABLED;
5844 enable_requested = tmp & HSW_PWR_WELL_ENABLE_REQUEST;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005845
Paulo Zanonifa42e232013-01-25 16:59:11 -02005846 if (enable) {
5847 if (!enable_requested)
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005848 I915_WRITE(HSW_PWR_WELL_DRIVER,
5849 HSW_PWR_WELL_ENABLE_REQUEST);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005850
Paulo Zanonifa42e232013-01-25 16:59:11 -02005851 if (!is_enabled) {
5852 DRM_DEBUG_KMS("Enabling power well\n");
5853 if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005854 HSW_PWR_WELL_STATE_ENABLED), 20))
Paulo Zanonifa42e232013-01-25 16:59:11 -02005855 DRM_ERROR("Timeout enabling power well\n");
5856 }
Ben Widawsky596cc112013-11-11 14:46:28 -08005857
Paulo Zanonid5e8fdc2013-12-11 18:50:09 -02005858 hsw_power_well_post_enable(dev_priv);
Paulo Zanonifa42e232013-01-25 16:59:11 -02005859 } else {
5860 if (enable_requested) {
5861 I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005862 POSTING_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanonifa42e232013-01-25 16:59:11 -02005863 DRM_DEBUG_KMS("Requesting to disable the power well\n");
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005864
Paulo Zanonid5e8fdc2013-12-11 18:50:09 -02005865 hsw_power_well_post_disable(dev_priv);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005866 }
5867 }
Paulo Zanonifa42e232013-01-25 16:59:11 -02005868}
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005869
Imre Deakb4ed4482013-10-25 17:36:49 +03005870static void __intel_power_well_get(struct drm_device *dev,
5871 struct i915_power_well *power_well)
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005872{
Paulo Zanonid62292c2013-11-27 17:59:22 -02005873 struct drm_i915_private *dev_priv = dev->dev_private;
5874
5875 if (!power_well->count++ && power_well->set) {
5876 hsw_disable_package_c8(dev_priv);
Imre Deakc1ca7272013-11-25 17:15:29 +02005877 power_well->set(dev, power_well, true);
Paulo Zanonid62292c2013-11-27 17:59:22 -02005878 }
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005879}
5880
Imre Deakb4ed4482013-10-25 17:36:49 +03005881static void __intel_power_well_put(struct drm_device *dev,
5882 struct i915_power_well *power_well)
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005883{
Paulo Zanonid62292c2013-11-27 17:59:22 -02005884 struct drm_i915_private *dev_priv = dev->dev_private;
5885
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005886 WARN_ON(!power_well->count);
Imre Deakc1ca7272013-11-25 17:15:29 +02005887
Paulo Zanonid62292c2013-11-27 17:59:22 -02005888 if (!--power_well->count && power_well->set &&
5889 i915_disable_power_well) {
Imre Deakc1ca7272013-11-25 17:15:29 +02005890 power_well->set(dev, power_well, false);
Paulo Zanonid62292c2013-11-27 17:59:22 -02005891 hsw_enable_package_c8(dev_priv);
5892 }
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005893}
5894
Ville Syrjälä67656252013-09-16 17:38:28 +03005895void intel_display_power_get(struct drm_device *dev,
5896 enum intel_display_power_domain domain)
5897{
5898 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03005899 struct i915_power_domains *power_domains;
Imre Deakc1ca7272013-11-25 17:15:29 +02005900 struct i915_power_well *power_well;
5901 int i;
Ville Syrjälä67656252013-09-16 17:38:28 +03005902
Imre Deak83c00f552013-10-25 17:36:47 +03005903 power_domains = &dev_priv->power_domains;
5904
5905 mutex_lock(&power_domains->lock);
Imre Deak1da51582013-11-25 17:15:35 +02005906
Imre Deakc1ca7272013-11-25 17:15:29 +02005907 for_each_power_well(i, power_well, BIT(domain), power_domains)
5908 __intel_power_well_get(dev, power_well);
Imre Deak1da51582013-11-25 17:15:35 +02005909
Imre Deakddf9c532013-11-27 22:02:02 +02005910 power_domains->domain_use_count[domain]++;
5911
Imre Deak83c00f552013-10-25 17:36:47 +03005912 mutex_unlock(&power_domains->lock);
Ville Syrjälä67656252013-09-16 17:38:28 +03005913}
5914
5915void intel_display_power_put(struct drm_device *dev,
5916 enum intel_display_power_domain domain)
5917{
5918 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03005919 struct i915_power_domains *power_domains;
Imre Deakc1ca7272013-11-25 17:15:29 +02005920 struct i915_power_well *power_well;
5921 int i;
Ville Syrjälä67656252013-09-16 17:38:28 +03005922
Imre Deak83c00f552013-10-25 17:36:47 +03005923 power_domains = &dev_priv->power_domains;
5924
5925 mutex_lock(&power_domains->lock);
Imre Deak1da51582013-11-25 17:15:35 +02005926
Imre Deak1da51582013-11-25 17:15:35 +02005927 WARN_ON(!power_domains->domain_use_count[domain]);
5928 power_domains->domain_use_count[domain]--;
Imre Deakddf9c532013-11-27 22:02:02 +02005929
5930 for_each_power_well_rev(i, power_well, BIT(domain), power_domains)
5931 __intel_power_well_put(dev, power_well);
Imre Deak1da51582013-11-25 17:15:35 +02005932
Imre Deak83c00f552013-10-25 17:36:47 +03005933 mutex_unlock(&power_domains->lock);
Ville Syrjälä67656252013-09-16 17:38:28 +03005934}
5935
Imre Deak83c00f552013-10-25 17:36:47 +03005936static struct i915_power_domains *hsw_pwr;
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005937
5938/* Display audio driver power well request */
5939void i915_request_power_well(void)
5940{
Imre Deakb4ed4482013-10-25 17:36:49 +03005941 struct drm_i915_private *dev_priv;
5942
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005943 if (WARN_ON(!hsw_pwr))
5944 return;
5945
Imre Deakb4ed4482013-10-25 17:36:49 +03005946 dev_priv = container_of(hsw_pwr, struct drm_i915_private,
5947 power_domains);
Imre Deakfbeeaa22013-11-25 17:15:28 +02005948 intel_display_power_get(dev_priv->dev, POWER_DOMAIN_AUDIO);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005949}
5950EXPORT_SYMBOL_GPL(i915_request_power_well);
5951
5952/* Display audio driver power well release */
5953void i915_release_power_well(void)
5954{
Imre Deakb4ed4482013-10-25 17:36:49 +03005955 struct drm_i915_private *dev_priv;
5956
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005957 if (WARN_ON(!hsw_pwr))
5958 return;
5959
Imre Deakb4ed4482013-10-25 17:36:49 +03005960 dev_priv = container_of(hsw_pwr, struct drm_i915_private,
5961 power_domains);
Imre Deakfbeeaa22013-11-25 17:15:28 +02005962 intel_display_power_put(dev_priv->dev, POWER_DOMAIN_AUDIO);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005963}
5964EXPORT_SYMBOL_GPL(i915_release_power_well);
5965
Imre Deak1c2256d2013-11-25 17:15:34 +02005966static struct i915_power_well i9xx_always_on_power_well[] = {
5967 {
5968 .name = "always-on",
5969 .always_on = 1,
5970 .domains = POWER_DOMAIN_MASK,
5971 },
5972};
5973
Imre Deakc1ca7272013-11-25 17:15:29 +02005974static struct i915_power_well hsw_power_wells[] = {
5975 {
Imre Deak6f3ef5d2013-11-25 17:15:30 +02005976 .name = "always-on",
5977 .always_on = 1,
5978 .domains = HSW_ALWAYS_ON_POWER_DOMAINS,
5979 },
5980 {
Imre Deakc1ca7272013-11-25 17:15:29 +02005981 .name = "display",
5982 .domains = POWER_DOMAIN_MASK & ~HSW_ALWAYS_ON_POWER_DOMAINS,
5983 .is_enabled = hsw_power_well_enabled,
5984 .set = hsw_set_power_well,
5985 },
5986};
5987
5988static struct i915_power_well bdw_power_wells[] = {
5989 {
Imre Deak6f3ef5d2013-11-25 17:15:30 +02005990 .name = "always-on",
5991 .always_on = 1,
5992 .domains = BDW_ALWAYS_ON_POWER_DOMAINS,
5993 },
5994 {
Imre Deakc1ca7272013-11-25 17:15:29 +02005995 .name = "display",
5996 .domains = POWER_DOMAIN_MASK & ~BDW_ALWAYS_ON_POWER_DOMAINS,
5997 .is_enabled = hsw_power_well_enabled,
5998 .set = hsw_set_power_well,
5999 },
6000};
6001
6002#define set_power_wells(power_domains, __power_wells) ({ \
6003 (power_domains)->power_wells = (__power_wells); \
6004 (power_domains)->power_well_count = ARRAY_SIZE(__power_wells); \
6005})
6006
Imre Deakddb642f2013-10-28 17:20:35 +02006007int intel_power_domains_init(struct drm_device *dev)
Wang Xingchaoa38911a2013-05-30 22:07:11 +08006008{
6009 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03006010 struct i915_power_domains *power_domains = &dev_priv->power_domains;
Imre Deakc1ca7272013-11-25 17:15:29 +02006011
Imre Deak83c00f552013-10-25 17:36:47 +03006012 mutex_init(&power_domains->lock);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08006013
Imre Deakc1ca7272013-11-25 17:15:29 +02006014 /*
6015 * The enabling order will be from lower to higher indexed wells,
6016 * the disabling order is reversed.
6017 */
6018 if (IS_HASWELL(dev)) {
6019 set_power_wells(power_domains, hsw_power_wells);
6020 hsw_pwr = power_domains;
6021 } else if (IS_BROADWELL(dev)) {
6022 set_power_wells(power_domains, bdw_power_wells);
6023 hsw_pwr = power_domains;
6024 } else {
Imre Deak1c2256d2013-11-25 17:15:34 +02006025 set_power_wells(power_domains, i9xx_always_on_power_well);
Imre Deakc1ca7272013-11-25 17:15:29 +02006026 }
Wang Xingchaoa38911a2013-05-30 22:07:11 +08006027
6028 return 0;
6029}
6030
Imre Deakddb642f2013-10-28 17:20:35 +02006031void intel_power_domains_remove(struct drm_device *dev)
Wang Xingchaoa38911a2013-05-30 22:07:11 +08006032{
6033 hsw_pwr = NULL;
6034}
6035
Imre Deakddb642f2013-10-28 17:20:35 +02006036static void intel_power_domains_resume(struct drm_device *dev)
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03006037{
6038 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03006039 struct i915_power_domains *power_domains = &dev_priv->power_domains;
6040 struct i915_power_well *power_well;
Imre Deakc1ca7272013-11-25 17:15:29 +02006041 int i;
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03006042
Imre Deak83c00f552013-10-25 17:36:47 +03006043 mutex_lock(&power_domains->lock);
Imre Deakc1ca7272013-11-25 17:15:29 +02006044 for_each_power_well(i, power_well, POWER_DOMAIN_MASK, power_domains) {
6045 if (power_well->set)
6046 power_well->set(dev, power_well, power_well->count > 0);
6047 }
Imre Deak83c00f552013-10-25 17:36:47 +03006048 mutex_unlock(&power_domains->lock);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08006049}
6050
Paulo Zanonifa42e232013-01-25 16:59:11 -02006051/*
6052 * Starting with Haswell, we have a "Power Down Well" that can be turned off
6053 * when not needed anymore. We have 4 registers that can request the power well
6054 * to be enabled, and it will only be disabled if none of the registers is
6055 * requesting it to be enabled.
6056 */
Imre Deakddb642f2013-10-28 17:20:35 +02006057void intel_power_domains_init_hw(struct drm_device *dev)
Paulo Zanonifa42e232013-01-25 16:59:11 -02006058{
6059 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03006060
Paulo Zanonifa42e232013-01-25 16:59:11 -02006061 /* For now, we need the power well to be always enabled. */
Imre Deakbaa70702013-10-25 17:36:48 +03006062 intel_display_set_init_power(dev, true);
Imre Deakddb642f2013-10-28 17:20:35 +02006063 intel_power_domains_resume(dev);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03006064
Imre Deakf7243ac2013-11-25 17:15:33 +02006065 if (!(IS_HASWELL(dev) || IS_BROADWELL(dev)))
6066 return;
6067
Paulo Zanonifa42e232013-01-25 16:59:11 -02006068 /* We're taking over the BIOS, so clear any requests made by it since
6069 * the driver is in charge now. */
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03006070 if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE_REQUEST)
Paulo Zanonifa42e232013-01-25 16:59:11 -02006071 I915_WRITE(HSW_PWR_WELL_BIOS, 0);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03006072}
6073
Paulo Zanonic67a4702013-08-19 13:18:09 -03006074/* Disables PC8 so we can use the GMBUS and DP AUX interrupts. */
6075void intel_aux_display_runtime_get(struct drm_i915_private *dev_priv)
6076{
6077 hsw_disable_package_c8(dev_priv);
6078}
6079
6080void intel_aux_display_runtime_put(struct drm_i915_private *dev_priv)
6081{
6082 hsw_enable_package_c8(dev_priv);
6083}
6084
Paulo Zanoni8a187452013-12-06 20:32:13 -02006085void intel_runtime_pm_get(struct drm_i915_private *dev_priv)
6086{
6087 struct drm_device *dev = dev_priv->dev;
6088 struct device *device = &dev->pdev->dev;
6089
6090 if (!HAS_RUNTIME_PM(dev))
6091 return;
6092
6093 pm_runtime_get_sync(device);
6094 WARN(dev_priv->pm.suspended, "Device still suspended.\n");
6095}
6096
6097void intel_runtime_pm_put(struct drm_i915_private *dev_priv)
6098{
6099 struct drm_device *dev = dev_priv->dev;
6100 struct device *device = &dev->pdev->dev;
6101
6102 if (!HAS_RUNTIME_PM(dev))
6103 return;
6104
6105 pm_runtime_mark_last_busy(device);
6106 pm_runtime_put_autosuspend(device);
6107}
6108
6109void intel_init_runtime_pm(struct drm_i915_private *dev_priv)
6110{
6111 struct drm_device *dev = dev_priv->dev;
6112 struct device *device = &dev->pdev->dev;
6113
6114 dev_priv->pm.suspended = false;
6115
6116 if (!HAS_RUNTIME_PM(dev))
6117 return;
6118
6119 pm_runtime_set_active(device);
6120
6121 pm_runtime_set_autosuspend_delay(device, 10000); /* 10s */
6122 pm_runtime_mark_last_busy(device);
6123 pm_runtime_use_autosuspend(device);
6124}
6125
6126void intel_fini_runtime_pm(struct drm_i915_private *dev_priv)
6127{
6128 struct drm_device *dev = dev_priv->dev;
6129 struct device *device = &dev->pdev->dev;
6130
6131 if (!HAS_RUNTIME_PM(dev))
6132 return;
6133
6134 /* Make sure we're not suspended first. */
6135 pm_runtime_get_sync(device);
6136 pm_runtime_disable(device);
6137}
6138
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006139/* Set up chip specific power management-related functions */
6140void intel_init_pm(struct drm_device *dev)
6141{
6142 struct drm_i915_private *dev_priv = dev->dev_private;
6143
6144 if (I915_HAS_FBC(dev)) {
Ville Syrjälä40045462013-11-28 17:29:59 +02006145 if (INTEL_INFO(dev)->gen >= 7) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006146 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
Ville Syrjälä40045462013-11-28 17:29:59 +02006147 dev_priv->display.enable_fbc = gen7_enable_fbc;
6148 dev_priv->display.disable_fbc = ironlake_disable_fbc;
6149 } else if (INTEL_INFO(dev)->gen >= 5) {
6150 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
6151 dev_priv->display.enable_fbc = ironlake_enable_fbc;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006152 dev_priv->display.disable_fbc = ironlake_disable_fbc;
6153 } else if (IS_GM45(dev)) {
6154 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
6155 dev_priv->display.enable_fbc = g4x_enable_fbc;
6156 dev_priv->display.disable_fbc = g4x_disable_fbc;
Ville Syrjälä40045462013-11-28 17:29:59 +02006157 } else {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006158 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
6159 dev_priv->display.enable_fbc = i8xx_enable_fbc;
6160 dev_priv->display.disable_fbc = i8xx_disable_fbc;
Ville Syrjälä993495a2013-12-12 17:27:40 +02006161
6162 /* This value was pulled out of someone's hat */
6163 I915_WRITE(FBC_CONTROL, 500 << FBC_CTL_INTERVAL_SHIFT);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006164 }
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006165 }
6166
Daniel Vetterc921aba2012-04-26 23:28:17 +02006167 /* For cxsr */
6168 if (IS_PINEVIEW(dev))
6169 i915_pineview_get_mem_freq(dev);
6170 else if (IS_GEN5(dev))
6171 i915_ironlake_get_mem_freq(dev);
6172
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006173 /* For FIFO watermark updates */
6174 if (HAS_PCH_SPLIT(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03006175 intel_setup_wm_latency(dev);
6176
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006177 if (IS_GEN5(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03006178 if (dev_priv->wm.pri_latency[1] &&
6179 dev_priv->wm.spr_latency[1] &&
6180 dev_priv->wm.cur_latency[1])
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006181 dev_priv->display.update_wm = ironlake_update_wm;
6182 else {
6183 DRM_DEBUG_KMS("Failed to get proper latency. "
6184 "Disable CxSR\n");
6185 dev_priv->display.update_wm = NULL;
6186 }
6187 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
6188 } else if (IS_GEN6(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03006189 if (dev_priv->wm.pri_latency[0] &&
6190 dev_priv->wm.spr_latency[0] &&
6191 dev_priv->wm.cur_latency[0]) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006192 dev_priv->display.update_wm = sandybridge_update_wm;
6193 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
6194 } else {
6195 DRM_DEBUG_KMS("Failed to read display plane latency. "
6196 "Disable CxSR\n");
6197 dev_priv->display.update_wm = NULL;
6198 }
6199 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
6200 } else if (IS_IVYBRIDGE(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03006201 if (dev_priv->wm.pri_latency[0] &&
6202 dev_priv->wm.spr_latency[0] &&
6203 dev_priv->wm.cur_latency[0]) {
Chris Wilsonc43d0182012-12-11 12:01:42 +00006204 dev_priv->display.update_wm = ivybridge_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006205 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
6206 } else {
6207 DRM_DEBUG_KMS("Failed to read display plane latency. "
6208 "Disable CxSR\n");
6209 dev_priv->display.update_wm = NULL;
6210 }
6211 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03006212 } else if (IS_HASWELL(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03006213 if (dev_priv->wm.pri_latency[0] &&
6214 dev_priv->wm.spr_latency[0] &&
6215 dev_priv->wm.cur_latency[0]) {
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03006216 dev_priv->display.update_wm = haswell_update_wm;
Paulo Zanoni526682e2013-05-24 11:59:18 -03006217 dev_priv->display.update_sprite_wm =
6218 haswell_update_sprite_wm;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03006219 } else {
6220 DRM_DEBUG_KMS("Failed to read display plane latency. "
6221 "Disable CxSR\n");
6222 dev_priv->display.update_wm = NULL;
6223 }
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006224 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006225 } else if (INTEL_INFO(dev)->gen == 8) {
6226 dev_priv->display.init_clock_gating = gen8_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006227 } else
6228 dev_priv->display.update_wm = NULL;
6229 } else if (IS_VALLEYVIEW(dev)) {
6230 dev_priv->display.update_wm = valleyview_update_wm;
6231 dev_priv->display.init_clock_gating =
6232 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006233 } else if (IS_PINEVIEW(dev)) {
6234 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
6235 dev_priv->is_ddr3,
6236 dev_priv->fsb_freq,
6237 dev_priv->mem_freq)) {
6238 DRM_INFO("failed to find known CxSR latency "
6239 "(found ddr%s fsb freq %d, mem freq %d), "
6240 "disabling CxSR\n",
6241 (dev_priv->is_ddr3 == 1) ? "3" : "2",
6242 dev_priv->fsb_freq, dev_priv->mem_freq);
6243 /* Disable CxSR and never update its watermark again */
6244 pineview_disable_cxsr(dev);
6245 dev_priv->display.update_wm = NULL;
6246 } else
6247 dev_priv->display.update_wm = pineview_update_wm;
6248 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
6249 } else if (IS_G4X(dev)) {
6250 dev_priv->display.update_wm = g4x_update_wm;
6251 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
6252 } else if (IS_GEN4(dev)) {
6253 dev_priv->display.update_wm = i965_update_wm;
6254 if (IS_CRESTLINE(dev))
6255 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
6256 else if (IS_BROADWATER(dev))
6257 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
6258 } else if (IS_GEN3(dev)) {
6259 dev_priv->display.update_wm = i9xx_update_wm;
6260 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
6261 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
6262 } else if (IS_I865G(dev)) {
6263 dev_priv->display.update_wm = i830_update_wm;
6264 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
6265 dev_priv->display.get_fifo_size = i830_get_fifo_size;
6266 } else if (IS_I85X(dev)) {
6267 dev_priv->display.update_wm = i9xx_update_wm;
6268 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
6269 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
6270 } else {
6271 dev_priv->display.update_wm = i830_update_wm;
6272 dev_priv->display.init_clock_gating = i830_init_clock_gating;
6273 if (IS_845G(dev))
6274 dev_priv->display.get_fifo_size = i845_get_fifo_size;
6275 else
6276 dev_priv->display.get_fifo_size = i830_get_fifo_size;
6277 }
6278}
6279
Ben Widawsky42c05262012-09-26 10:34:00 -07006280int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val)
6281{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006282 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006283
6284 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6285 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
6286 return -EAGAIN;
6287 }
6288
6289 I915_WRITE(GEN6_PCODE_DATA, *val);
6290 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6291
6292 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6293 500)) {
6294 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
6295 return -ETIMEDOUT;
6296 }
6297
6298 *val = I915_READ(GEN6_PCODE_DATA);
6299 I915_WRITE(GEN6_PCODE_DATA, 0);
6300
6301 return 0;
6302}
6303
6304int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val)
6305{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006306 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006307
6308 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6309 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
6310 return -EAGAIN;
6311 }
6312
6313 I915_WRITE(GEN6_PCODE_DATA, val);
6314 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6315
6316 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6317 500)) {
6318 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
6319 return -ETIMEDOUT;
6320 }
6321
6322 I915_WRITE(GEN6_PCODE_DATA, 0);
6323
6324 return 0;
6325}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07006326
Ville Syrjälä2ec38152013-11-05 22:42:29 +02006327int vlv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006328{
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006329 int div;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006330
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006331 /* 4 x czclk */
Ville Syrjälä2ec38152013-11-05 22:42:29 +02006332 switch (dev_priv->mem_freq) {
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006333 case 800:
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006334 div = 10;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006335 break;
6336 case 1066:
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006337 div = 12;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006338 break;
6339 case 1333:
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006340 div = 16;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006341 break;
6342 default:
6343 return -1;
6344 }
6345
Ville Syrjälä2ec38152013-11-05 22:42:29 +02006346 return DIV_ROUND_CLOSEST(dev_priv->mem_freq * (val + 6 - 0xbd), 4 * div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006347}
6348
Ville Syrjälä2ec38152013-11-05 22:42:29 +02006349int vlv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006350{
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006351 int mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006352
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006353 /* 4 x czclk */
Ville Syrjälä2ec38152013-11-05 22:42:29 +02006354 switch (dev_priv->mem_freq) {
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006355 case 800:
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006356 mul = 10;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006357 break;
6358 case 1066:
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006359 mul = 12;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006360 break;
6361 case 1333:
Ville Syrjälä07ab1182013-11-05 22:42:28 +02006362 mul = 16;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006363 break;
6364 default:
6365 return -1;
6366 }
6367
Ville Syrjälä2ec38152013-11-05 22:42:29 +02006368 return DIV_ROUND_CLOSEST(4 * mul * val, dev_priv->mem_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006369}
6370
Chris Wilson907b28c2013-07-19 20:36:52 +01006371void intel_pm_init(struct drm_device *dev)
6372{
6373 struct drm_i915_private *dev_priv = dev->dev_private;
6374
6375 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
6376 intel_gen6_powersave_work);
6377}