blob: 0ca8eb765e2f9a78a943c89c65714b66454b11fd [file] [log] [blame]
Eugeni Dodonov85208be2012-04-16 22:20:34 -03001/*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -030028#include <linux/cpufreq.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030029#include "i915_drv.h"
30#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020031#include "../../../platform/x86/intel_ips.h"
32#include <linux/module.h>
Damien Lespiauf4db9322013-06-24 22:59:50 +010033#include <drm/i915_powerwell.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030034
Ben Widawskydc39fff2013-10-18 12:32:07 -070035/**
36 * RC6 is a special power stage which allows the GPU to enter an very
37 * low-voltage mode when idle, using down to 0V while at this stage. This
38 * stage is entered automatically when the GPU is idle when RC6 support is
39 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
40 *
41 * There are different RC6 modes available in Intel GPU, which differentiate
42 * among each other with the latency required to enter and leave RC6 and
43 * voltage consumed by the GPU in different states.
44 *
45 * The combination of the following flags define which states GPU is allowed
46 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
47 * RC6pp is deepest RC6. Their support by hardware varies according to the
48 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
49 * which brings the most power savings; deeper states save more power, but
50 * require higher latency to switch to and wake up.
51 */
52#define INTEL_RC6_ENABLE (1<<0)
53#define INTEL_RC6p_ENABLE (1<<1)
54#define INTEL_RC6pp_ENABLE (1<<2)
55
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030056/* FBC, or Frame Buffer Compression, is a technique employed to compress the
57 * framebuffer contents in-memory, aiming at reducing the required bandwidth
58 * during in-memory transfers and, therefore, reduce the power packet.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030059 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030060 * The benefits of FBC are mostly visible with solid backgrounds and
61 * variation-less patterns.
Eugeni Dodonov85208be2012-04-16 22:20:34 -030062 *
Eugeni Dodonovf6750b32012-04-18 11:51:14 -030063 * FBC-related functionality can be enabled by the means of the
64 * i915.i915_enable_fbc parameter
Eugeni Dodonov85208be2012-04-16 22:20:34 -030065 */
66
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030067static void i8xx_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030068{
69 struct drm_i915_private *dev_priv = dev->dev_private;
70 u32 fbc_ctl;
71
72 /* Disable compression */
73 fbc_ctl = I915_READ(FBC_CONTROL);
74 if ((fbc_ctl & FBC_CTL_EN) == 0)
75 return;
76
77 fbc_ctl &= ~FBC_CTL_EN;
78 I915_WRITE(FBC_CONTROL, fbc_ctl);
79
80 /* Wait for compressing bit to clear */
81 if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) {
82 DRM_DEBUG_KMS("FBC idle timed out\n");
83 return;
84 }
85
86 DRM_DEBUG_KMS("disabled FBC\n");
87}
88
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030089static void i8xx_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -030090{
91 struct drm_device *dev = crtc->dev;
92 struct drm_i915_private *dev_priv = dev->dev_private;
93 struct drm_framebuffer *fb = crtc->fb;
94 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
95 struct drm_i915_gem_object *obj = intel_fb->obj;
96 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
97 int cfb_pitch;
98 int plane, i;
99 u32 fbc_ctl, fbc_ctl2;
100
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700101 cfb_pitch = dev_priv->fbc.size / FBC_LL_SIZE;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300102 if (fb->pitches[0] < cfb_pitch)
103 cfb_pitch = fb->pitches[0];
104
105 /* FBC_CTL wants 64B units */
106 cfb_pitch = (cfb_pitch / 64) - 1;
107 plane = intel_crtc->plane == 0 ? FBC_CTL_PLANEA : FBC_CTL_PLANEB;
108
109 /* Clear old tags */
110 for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++)
111 I915_WRITE(FBC_TAG + (i * 4), 0);
112
113 /* Set it up... */
114 fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE;
115 fbc_ctl2 |= plane;
116 I915_WRITE(FBC_CONTROL2, fbc_ctl2);
117 I915_WRITE(FBC_FENCE_OFF, crtc->y);
118
119 /* enable it... */
120 fbc_ctl = FBC_CTL_EN | FBC_CTL_PERIODIC;
121 if (IS_I945GM(dev))
122 fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */
123 fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT;
124 fbc_ctl |= (interval & 0x2fff) << FBC_CTL_INTERVAL_SHIFT;
125 fbc_ctl |= obj->fence_reg;
126 I915_WRITE(FBC_CONTROL, fbc_ctl);
127
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300128 DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c, ",
129 cfb_pitch, crtc->y, plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300130}
131
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300132static bool i8xx_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300133{
134 struct drm_i915_private *dev_priv = dev->dev_private;
135
136 return I915_READ(FBC_CONTROL) & FBC_CTL_EN;
137}
138
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300139static void g4x_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300140{
141 struct drm_device *dev = crtc->dev;
142 struct drm_i915_private *dev_priv = dev->dev_private;
143 struct drm_framebuffer *fb = crtc->fb;
144 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
145 struct drm_i915_gem_object *obj = intel_fb->obj;
146 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
147 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
148 unsigned long stall_watermark = 200;
149 u32 dpfc_ctl;
150
151 dpfc_ctl = plane | DPFC_SR_EN | DPFC_CTL_LIMIT_1X;
152 dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg;
153 I915_WRITE(DPFC_CHICKEN, DPFC_HT_MODIFY);
154
155 I915_WRITE(DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
156 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
157 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
158 I915_WRITE(DPFC_FENCE_YOFF, crtc->y);
159
160 /* enable it... */
161 I915_WRITE(DPFC_CONTROL, I915_READ(DPFC_CONTROL) | DPFC_CTL_EN);
162
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300163 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300164}
165
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300166static void g4x_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300167{
168 struct drm_i915_private *dev_priv = dev->dev_private;
169 u32 dpfc_ctl;
170
171 /* Disable compression */
172 dpfc_ctl = I915_READ(DPFC_CONTROL);
173 if (dpfc_ctl & DPFC_CTL_EN) {
174 dpfc_ctl &= ~DPFC_CTL_EN;
175 I915_WRITE(DPFC_CONTROL, dpfc_ctl);
176
177 DRM_DEBUG_KMS("disabled FBC\n");
178 }
179}
180
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300181static bool g4x_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300182{
183 struct drm_i915_private *dev_priv = dev->dev_private;
184
185 return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN;
186}
187
188static void sandybridge_blit_fbc_update(struct drm_device *dev)
189{
190 struct drm_i915_private *dev_priv = dev->dev_private;
191 u32 blt_ecoskpd;
192
193 /* Make sure blitter notifies FBC of writes */
194 gen6_gt_force_wake_get(dev_priv);
195 blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD);
196 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY <<
197 GEN6_BLITTER_LOCK_SHIFT;
198 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
199 blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY;
200 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
201 blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY <<
202 GEN6_BLITTER_LOCK_SHIFT);
203 I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd);
204 POSTING_READ(GEN6_BLITTER_ECOSKPD);
205 gen6_gt_force_wake_put(dev_priv);
206}
207
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300208static void ironlake_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300209{
210 struct drm_device *dev = crtc->dev;
211 struct drm_i915_private *dev_priv = dev->dev_private;
212 struct drm_framebuffer *fb = crtc->fb;
213 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
214 struct drm_i915_gem_object *obj = intel_fb->obj;
215 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
216 int plane = intel_crtc->plane == 0 ? DPFC_CTL_PLANEA : DPFC_CTL_PLANEB;
217 unsigned long stall_watermark = 200;
218 u32 dpfc_ctl;
219
220 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
221 dpfc_ctl &= DPFC_RESERVED;
222 dpfc_ctl |= (plane | DPFC_CTL_LIMIT_1X);
223 /* Set persistent mode for front-buffer rendering, ala X. */
224 dpfc_ctl |= DPFC_CTL_PERSISTENT_MODE;
225 dpfc_ctl |= (DPFC_CTL_FENCE_EN | obj->fence_reg);
226 I915_WRITE(ILK_DPFC_CHICKEN, DPFC_HT_MODIFY);
227
228 I915_WRITE(ILK_DPFC_RECOMP_CTL, DPFC_RECOMP_STALL_EN |
229 (stall_watermark << DPFC_RECOMP_STALL_WM_SHIFT) |
230 (interval << DPFC_RECOMP_TIMER_COUNT_SHIFT));
231 I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y);
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700232 I915_WRITE(ILK_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj) | ILK_FBC_RT_VALID);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300233 /* enable it... */
234 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN);
235
236 if (IS_GEN6(dev)) {
237 I915_WRITE(SNB_DPFC_CTL_SA,
238 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
239 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
240 sandybridge_blit_fbc_update(dev);
241 }
242
Ville Syrjälä84f44ce2013-04-17 17:48:49 +0300243 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane));
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300244}
245
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300246static void ironlake_disable_fbc(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300247{
248 struct drm_i915_private *dev_priv = dev->dev_private;
249 u32 dpfc_ctl;
250
251 /* Disable compression */
252 dpfc_ctl = I915_READ(ILK_DPFC_CONTROL);
253 if (dpfc_ctl & DPFC_CTL_EN) {
254 dpfc_ctl &= ~DPFC_CTL_EN;
255 I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl);
256
257 DRM_DEBUG_KMS("disabled FBC\n");
258 }
259}
260
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300261static bool ironlake_fbc_enabled(struct drm_device *dev)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300262{
263 struct drm_i915_private *dev_priv = dev->dev_private;
264
265 return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN;
266}
267
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300268static void gen7_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
269{
270 struct drm_device *dev = crtc->dev;
271 struct drm_i915_private *dev_priv = dev->dev_private;
272 struct drm_framebuffer *fb = crtc->fb;
273 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
274 struct drm_i915_gem_object *obj = intel_fb->obj;
275 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
276
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700277 I915_WRITE(IVB_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj));
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300278
279 I915_WRITE(ILK_DPFC_CONTROL, DPFC_CTL_EN | DPFC_CTL_LIMIT_1X |
280 IVB_DPFC_CTL_FENCE_EN |
281 intel_crtc->plane << IVB_DPFC_CTL_PLANE_SHIFT);
282
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300283 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100284 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300285 I915_WRITE(ILK_DISPLAY_CHICKEN1, ILK_FBCQ_DIS);
Rodrigo Vivi28554162013-05-06 19:37:37 -0300286 } else {
Damien Lespiau7dd23ba2013-05-10 14:33:17 +0100287 /* WaFbcAsynchFlipDisableFbcQueue:hsw */
Rodrigo Vivi28554162013-05-06 19:37:37 -0300288 I915_WRITE(HSW_PIPE_SLICE_CHICKEN_1(intel_crtc->pipe),
289 HSW_BYPASS_FBC_QUEUE);
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300290 }
Rodrigo Vivib74ea102013-05-09 14:08:38 -0300291
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300292 I915_WRITE(SNB_DPFC_CTL_SA,
293 SNB_CPU_FENCE_ENABLE | obj->fence_reg);
294 I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y);
295
296 sandybridge_blit_fbc_update(dev);
297
298 DRM_DEBUG_KMS("enabled fbc on plane %d\n", intel_crtc->plane);
299}
300
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300301bool intel_fbc_enabled(struct drm_device *dev)
302{
303 struct drm_i915_private *dev_priv = dev->dev_private;
304
305 if (!dev_priv->display.fbc_enabled)
306 return false;
307
308 return dev_priv->display.fbc_enabled(dev);
309}
310
311static void intel_fbc_work_fn(struct work_struct *__work)
312{
313 struct intel_fbc_work *work =
314 container_of(to_delayed_work(__work),
315 struct intel_fbc_work, work);
316 struct drm_device *dev = work->crtc->dev;
317 struct drm_i915_private *dev_priv = dev->dev_private;
318
319 mutex_lock(&dev->struct_mutex);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700320 if (work == dev_priv->fbc.fbc_work) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300321 /* Double check that we haven't switched fb without cancelling
322 * the prior work.
323 */
324 if (work->crtc->fb == work->fb) {
325 dev_priv->display.enable_fbc(work->crtc,
326 work->interval);
327
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700328 dev_priv->fbc.plane = to_intel_crtc(work->crtc)->plane;
329 dev_priv->fbc.fb_id = work->crtc->fb->base.id;
330 dev_priv->fbc.y = work->crtc->y;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300331 }
332
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700333 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300334 }
335 mutex_unlock(&dev->struct_mutex);
336
337 kfree(work);
338}
339
340static void intel_cancel_fbc_work(struct drm_i915_private *dev_priv)
341{
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700342 if (dev_priv->fbc.fbc_work == NULL)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300343 return;
344
345 DRM_DEBUG_KMS("cancelling pending FBC enable\n");
346
347 /* Synchronisation is provided by struct_mutex and checking of
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700348 * dev_priv->fbc.fbc_work, so we can perform the cancellation
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300349 * entirely asynchronously.
350 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700351 if (cancel_delayed_work(&dev_priv->fbc.fbc_work->work))
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300352 /* tasklet was killed before being run, clean up */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700353 kfree(dev_priv->fbc.fbc_work);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300354
355 /* Mark the work as no longer wanted so that if it does
356 * wake-up (because the work was already running and waiting
357 * for our mutex), it will discover that is no longer
358 * necessary to run.
359 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700360 dev_priv->fbc.fbc_work = NULL;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300361}
362
Damien Lespiaub63fb442013-06-24 16:22:01 +0100363static void intel_enable_fbc(struct drm_crtc *crtc, unsigned long interval)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300364{
365 struct intel_fbc_work *work;
366 struct drm_device *dev = crtc->dev;
367 struct drm_i915_private *dev_priv = dev->dev_private;
368
369 if (!dev_priv->display.enable_fbc)
370 return;
371
372 intel_cancel_fbc_work(dev_priv);
373
Daniel Vetterb14c5672013-09-19 12:18:32 +0200374 work = kzalloc(sizeof(*work), GFP_KERNEL);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300375 if (work == NULL) {
Paulo Zanoni6cdcb5e2013-06-12 17:27:29 -0300376 DRM_ERROR("Failed to allocate FBC work structure\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300377 dev_priv->display.enable_fbc(crtc, interval);
378 return;
379 }
380
381 work->crtc = crtc;
382 work->fb = crtc->fb;
383 work->interval = interval;
384 INIT_DELAYED_WORK(&work->work, intel_fbc_work_fn);
385
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700386 dev_priv->fbc.fbc_work = work;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300387
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300388 /* Delay the actual enabling to let pageflipping cease and the
389 * display to settle before starting the compression. Note that
390 * this delay also serves a second purpose: it allows for a
391 * vblank to pass after disabling the FBC before we attempt
392 * to modify the control registers.
393 *
394 * A more complicated solution would involve tracking vblanks
395 * following the termination of the page-flipping sequence
396 * and indeed performing the enable as a co-routine and not
397 * waiting synchronously upon the vblank.
Damien Lespiau7457d612013-06-07 17:41:07 +0100398 *
399 * WaFbcWaitForVBlankBeforeEnable:ilk,snb
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300400 */
401 schedule_delayed_work(&work->work, msecs_to_jiffies(50));
402}
403
404void intel_disable_fbc(struct drm_device *dev)
405{
406 struct drm_i915_private *dev_priv = dev->dev_private;
407
408 intel_cancel_fbc_work(dev_priv);
409
410 if (!dev_priv->display.disable_fbc)
411 return;
412
413 dev_priv->display.disable_fbc(dev);
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700414 dev_priv->fbc.plane = -1;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300415}
416
Chris Wilson29ebf902013-07-27 17:23:55 +0100417static bool set_no_fbc_reason(struct drm_i915_private *dev_priv,
418 enum no_fbc_reason reason)
419{
420 if (dev_priv->fbc.no_fbc_reason == reason)
421 return false;
422
423 dev_priv->fbc.no_fbc_reason = reason;
424 return true;
425}
426
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300427/**
428 * intel_update_fbc - enable/disable FBC as needed
429 * @dev: the drm_device
430 *
431 * Set up the framebuffer compression hardware at mode set time. We
432 * enable it if possible:
433 * - plane A only (on pre-965)
434 * - no pixel mulitply/line duplication
435 * - no alpha buffer discard
436 * - no dual wide
Paulo Zanonif85da862013-06-04 16:53:39 -0300437 * - framebuffer <= max_hdisplay in width, max_vdisplay in height
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300438 *
439 * We can't assume that any compression will take place (worst case),
440 * so the compressed buffer has to be the same size as the uncompressed
441 * one. It also must reside (along with the line length buffer) in
442 * stolen memory.
443 *
444 * We need to enable/disable FBC on a global basis.
445 */
446void intel_update_fbc(struct drm_device *dev)
447{
448 struct drm_i915_private *dev_priv = dev->dev_private;
449 struct drm_crtc *crtc = NULL, *tmp_crtc;
450 struct intel_crtc *intel_crtc;
451 struct drm_framebuffer *fb;
452 struct intel_framebuffer *intel_fb;
453 struct drm_i915_gem_object *obj;
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300454 const struct drm_display_mode *adjusted_mode;
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300455 unsigned int max_width, max_height;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300456
Chris Wilson29ebf902013-07-27 17:23:55 +0100457 if (!I915_HAS_FBC(dev)) {
458 set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300459 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100460 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300461
Chris Wilson29ebf902013-07-27 17:23:55 +0100462 if (!i915_powersave) {
463 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
464 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300465 return;
Chris Wilson29ebf902013-07-27 17:23:55 +0100466 }
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300467
468 /*
469 * If FBC is already on, we just have to verify that we can
470 * keep it that way...
471 * Need to disable if:
472 * - more than one pipe is active
473 * - changing FBC params (stride, fence, mode)
474 * - new fb is too large to fit in compressed buffer
475 * - going to an unsupported config (interlace, pixel multiply, etc.)
476 */
477 list_for_each_entry(tmp_crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000478 if (intel_crtc_active(tmp_crtc) &&
Ville Syrjälä4c445e02013-10-09 17:24:58 +0300479 to_intel_crtc(tmp_crtc)->primary_enabled) {
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300480 if (crtc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100481 if (set_no_fbc_reason(dev_priv, FBC_MULTIPLE_PIPES))
482 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300483 goto out_disable;
484 }
485 crtc = tmp_crtc;
486 }
487 }
488
489 if (!crtc || crtc->fb == NULL) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100490 if (set_no_fbc_reason(dev_priv, FBC_NO_OUTPUT))
491 DRM_DEBUG_KMS("no output, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300492 goto out_disable;
493 }
494
495 intel_crtc = to_intel_crtc(crtc);
496 fb = crtc->fb;
497 intel_fb = to_intel_framebuffer(fb);
498 obj = intel_fb->obj;
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300499 adjusted_mode = &intel_crtc->config.adjusted_mode;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300500
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100501 if (i915_enable_fbc < 0 &&
502 INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100503 if (set_no_fbc_reason(dev_priv, FBC_CHIP_DEFAULT))
504 DRM_DEBUG_KMS("disabled per chip default\n");
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100505 goto out_disable;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300506 }
Damien Lespiau8a5729a2013-06-24 16:22:02 +0100507 if (!i915_enable_fbc) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100508 if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM))
509 DRM_DEBUG_KMS("fbc disabled per module param\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300510 goto out_disable;
511 }
Ville Syrjäläef644fd2013-09-04 18:25:21 +0300512 if ((adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) ||
513 (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100514 if (set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED_MODE))
515 DRM_DEBUG_KMS("mode incompatible with compression, "
516 "disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300517 goto out_disable;
518 }
Paulo Zanonif85da862013-06-04 16:53:39 -0300519
520 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300521 max_width = 4096;
522 max_height = 2048;
Paulo Zanonif85da862013-06-04 16:53:39 -0300523 } else {
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300524 max_width = 2048;
525 max_height = 1536;
Paulo Zanonif85da862013-06-04 16:53:39 -0300526 }
Ville Syrjälä37327ab2013-09-04 18:25:28 +0300527 if (intel_crtc->config.pipe_src_w > max_width ||
528 intel_crtc->config.pipe_src_h > max_height) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100529 if (set_no_fbc_reason(dev_priv, FBC_MODE_TOO_LARGE))
530 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300531 goto out_disable;
532 }
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300533 if ((IS_I915GM(dev) || IS_I945GM(dev) || IS_HASWELL(dev)) &&
534 intel_crtc->plane != 0) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100535 if (set_no_fbc_reason(dev_priv, FBC_BAD_PLANE))
536 DRM_DEBUG_KMS("plane not 0, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300537 goto out_disable;
538 }
539
540 /* The use of a CPU fence is mandatory in order to detect writes
541 * by the CPU to the scanout and trigger updates to the FBC.
542 */
543 if (obj->tiling_mode != I915_TILING_X ||
544 obj->fence_reg == I915_FENCE_REG_NONE) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100545 if (set_no_fbc_reason(dev_priv, FBC_NOT_TILED))
546 DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n");
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300547 goto out_disable;
548 }
549
550 /* If the kernel debugger is active, always disable compression */
551 if (in_dbg_master())
552 goto out_disable;
553
Chris Wilson11be49e2012-11-15 11:32:20 +0000554 if (i915_gem_stolen_setup_compression(dev, intel_fb->obj->base.size)) {
Chris Wilson29ebf902013-07-27 17:23:55 +0100555 if (set_no_fbc_reason(dev_priv, FBC_STOLEN_TOO_SMALL))
556 DRM_DEBUG_KMS("framebuffer too large, disabling compression\n");
Chris Wilson11be49e2012-11-15 11:32:20 +0000557 goto out_disable;
558 }
559
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300560 /* If the scanout has not changed, don't modify the FBC settings.
561 * Note that we make the fundamental assumption that the fb->obj
562 * cannot be unpinned (and have its GTT offset and fence revoked)
563 * without first being decoupled from the scanout and FBC disabled.
564 */
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -0700565 if (dev_priv->fbc.plane == intel_crtc->plane &&
566 dev_priv->fbc.fb_id == fb->base.id &&
567 dev_priv->fbc.y == crtc->y)
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300568 return;
569
570 if (intel_fbc_enabled(dev)) {
571 /* We update FBC along two paths, after changing fb/crtc
572 * configuration (modeswitching) and after page-flipping
573 * finishes. For the latter, we know that not only did
574 * we disable the FBC at the start of the page-flip
575 * sequence, but also more than one vblank has passed.
576 *
577 * For the former case of modeswitching, it is possible
578 * to switch between two FBC valid configurations
579 * instantaneously so we do need to disable the FBC
580 * before we can modify its control registers. We also
581 * have to wait for the next vblank for that to take
582 * effect. However, since we delay enabling FBC we can
583 * assume that a vblank has passed since disabling and
584 * that we can safely alter the registers in the deferred
585 * callback.
586 *
587 * In the scenario that we go from a valid to invalid
588 * and then back to valid FBC configuration we have
589 * no strict enforcement that a vblank occurred since
590 * disabling the FBC. However, along all current pipe
591 * disabling paths we do need to wait for a vblank at
592 * some point. And we wait before enabling FBC anyway.
593 */
594 DRM_DEBUG_KMS("disabling active FBC for update\n");
595 intel_disable_fbc(dev);
596 }
597
598 intel_enable_fbc(crtc, 500);
Chris Wilson29ebf902013-07-27 17:23:55 +0100599 dev_priv->fbc.no_fbc_reason = FBC_OK;
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300600 return;
601
602out_disable:
603 /* Multiple disables should be harmless */
604 if (intel_fbc_enabled(dev)) {
605 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
606 intel_disable_fbc(dev);
607 }
Chris Wilson11be49e2012-11-15 11:32:20 +0000608 i915_gem_stolen_cleanup_compression(dev);
Eugeni Dodonov85208be2012-04-16 22:20:34 -0300609}
610
Daniel Vetterc921aba2012-04-26 23:28:17 +0200611static void i915_pineview_get_mem_freq(struct drm_device *dev)
612{
613 drm_i915_private_t *dev_priv = dev->dev_private;
614 u32 tmp;
615
616 tmp = I915_READ(CLKCFG);
617
618 switch (tmp & CLKCFG_FSB_MASK) {
619 case CLKCFG_FSB_533:
620 dev_priv->fsb_freq = 533; /* 133*4 */
621 break;
622 case CLKCFG_FSB_800:
623 dev_priv->fsb_freq = 800; /* 200*4 */
624 break;
625 case CLKCFG_FSB_667:
626 dev_priv->fsb_freq = 667; /* 167*4 */
627 break;
628 case CLKCFG_FSB_400:
629 dev_priv->fsb_freq = 400; /* 100*4 */
630 break;
631 }
632
633 switch (tmp & CLKCFG_MEM_MASK) {
634 case CLKCFG_MEM_533:
635 dev_priv->mem_freq = 533;
636 break;
637 case CLKCFG_MEM_667:
638 dev_priv->mem_freq = 667;
639 break;
640 case CLKCFG_MEM_800:
641 dev_priv->mem_freq = 800;
642 break;
643 }
644
645 /* detect pineview DDR3 setting */
646 tmp = I915_READ(CSHRDDR3CTL);
647 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
648}
649
650static void i915_ironlake_get_mem_freq(struct drm_device *dev)
651{
652 drm_i915_private_t *dev_priv = dev->dev_private;
653 u16 ddrpll, csipll;
654
655 ddrpll = I915_READ16(DDRMPLL1);
656 csipll = I915_READ16(CSIPLL0);
657
658 switch (ddrpll & 0xff) {
659 case 0xc:
660 dev_priv->mem_freq = 800;
661 break;
662 case 0x10:
663 dev_priv->mem_freq = 1066;
664 break;
665 case 0x14:
666 dev_priv->mem_freq = 1333;
667 break;
668 case 0x18:
669 dev_priv->mem_freq = 1600;
670 break;
671 default:
672 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
673 ddrpll & 0xff);
674 dev_priv->mem_freq = 0;
675 break;
676 }
677
Daniel Vetter20e4d402012-08-08 23:35:39 +0200678 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200679
680 switch (csipll & 0x3ff) {
681 case 0x00c:
682 dev_priv->fsb_freq = 3200;
683 break;
684 case 0x00e:
685 dev_priv->fsb_freq = 3733;
686 break;
687 case 0x010:
688 dev_priv->fsb_freq = 4266;
689 break;
690 case 0x012:
691 dev_priv->fsb_freq = 4800;
692 break;
693 case 0x014:
694 dev_priv->fsb_freq = 5333;
695 break;
696 case 0x016:
697 dev_priv->fsb_freq = 5866;
698 break;
699 case 0x018:
700 dev_priv->fsb_freq = 6400;
701 break;
702 default:
703 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
704 csipll & 0x3ff);
705 dev_priv->fsb_freq = 0;
706 break;
707 }
708
709 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200710 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200711 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200712 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200713 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200714 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200715 }
716}
717
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300718static const struct cxsr_latency cxsr_latency_table[] = {
719 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
720 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
721 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
722 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
723 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
724
725 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
726 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
727 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
728 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
729 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
730
731 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
732 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
733 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
734 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
735 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
736
737 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
738 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
739 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
740 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
741 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
742
743 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
744 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
745 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
746 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
747 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
748
749 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
750 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
751 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
752 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
753 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
754};
755
Daniel Vetter63c62272012-04-21 23:17:55 +0200756static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300757 int is_ddr3,
758 int fsb,
759 int mem)
760{
761 const struct cxsr_latency *latency;
762 int i;
763
764 if (fsb == 0 || mem == 0)
765 return NULL;
766
767 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
768 latency = &cxsr_latency_table[i];
769 if (is_desktop == latency->is_desktop &&
770 is_ddr3 == latency->is_ddr3 &&
771 fsb == latency->fsb_freq && mem == latency->mem_freq)
772 return latency;
773 }
774
775 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
776
777 return NULL;
778}
779
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300780static void pineview_disable_cxsr(struct drm_device *dev)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300781{
782 struct drm_i915_private *dev_priv = dev->dev_private;
783
784 /* deactivate cxsr */
785 I915_WRITE(DSPFW3, I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN);
786}
787
788/*
789 * Latency for FIFO fetches is dependent on several factors:
790 * - memory configuration (speed, channels)
791 * - chipset
792 * - current MCH state
793 * It can be fairly high in some situations, so here we assume a fairly
794 * pessimal value. It's a tradeoff between extra memory fetches (if we
795 * set this value too high, the FIFO will fetch frequently to stay full)
796 * and power consumption (set it too low to save power and we might see
797 * FIFO underruns and display "flicker").
798 *
799 * A value of 5us seems to be a good balance; safe for very low end
800 * platforms but not overly aggressive on lower latency configs.
801 */
802static const int latency_ns = 5000;
803
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300804static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300805{
806 struct drm_i915_private *dev_priv = dev->dev_private;
807 uint32_t dsparb = I915_READ(DSPARB);
808 int size;
809
810 size = dsparb & 0x7f;
811 if (plane)
812 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
813
814 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
815 plane ? "B" : "A", size);
816
817 return size;
818}
819
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300820static int i85x_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300821{
822 struct drm_i915_private *dev_priv = dev->dev_private;
823 uint32_t dsparb = I915_READ(DSPARB);
824 int size;
825
826 size = dsparb & 0x1ff;
827 if (plane)
828 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
829 size >>= 1; /* Convert to cachelines */
830
831 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
832 plane ? "B" : "A", size);
833
834 return size;
835}
836
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300837static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300838{
839 struct drm_i915_private *dev_priv = dev->dev_private;
840 uint32_t dsparb = I915_READ(DSPARB);
841 int size;
842
843 size = dsparb & 0x7f;
844 size >>= 2; /* Convert to cachelines */
845
846 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
847 plane ? "B" : "A",
848 size);
849
850 return size;
851}
852
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300853static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300854{
855 struct drm_i915_private *dev_priv = dev->dev_private;
856 uint32_t dsparb = I915_READ(DSPARB);
857 int size;
858
859 size = dsparb & 0x7f;
860 size >>= 1; /* Convert to cachelines */
861
862 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
863 plane ? "B" : "A", size);
864
865 return size;
866}
867
868/* Pineview has different values for various configs */
869static const struct intel_watermark_params pineview_display_wm = {
870 PINEVIEW_DISPLAY_FIFO,
871 PINEVIEW_MAX_WM,
872 PINEVIEW_DFT_WM,
873 PINEVIEW_GUARD_WM,
874 PINEVIEW_FIFO_LINE_SIZE
875};
876static const struct intel_watermark_params pineview_display_hplloff_wm = {
877 PINEVIEW_DISPLAY_FIFO,
878 PINEVIEW_MAX_WM,
879 PINEVIEW_DFT_HPLLOFF_WM,
880 PINEVIEW_GUARD_WM,
881 PINEVIEW_FIFO_LINE_SIZE
882};
883static const struct intel_watermark_params pineview_cursor_wm = {
884 PINEVIEW_CURSOR_FIFO,
885 PINEVIEW_CURSOR_MAX_WM,
886 PINEVIEW_CURSOR_DFT_WM,
887 PINEVIEW_CURSOR_GUARD_WM,
888 PINEVIEW_FIFO_LINE_SIZE,
889};
890static const struct intel_watermark_params pineview_cursor_hplloff_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 g4x_wm_info = {
898 G4X_FIFO_SIZE,
899 G4X_MAX_WM,
900 G4X_MAX_WM,
901 2,
902 G4X_FIFO_LINE_SIZE,
903};
904static const struct intel_watermark_params g4x_cursor_wm_info = {
905 I965_CURSOR_FIFO,
906 I965_CURSOR_MAX_WM,
907 I965_CURSOR_DFT_WM,
908 2,
909 G4X_FIFO_LINE_SIZE,
910};
911static const struct intel_watermark_params valleyview_wm_info = {
912 VALLEYVIEW_FIFO_SIZE,
913 VALLEYVIEW_MAX_WM,
914 VALLEYVIEW_MAX_WM,
915 2,
916 G4X_FIFO_LINE_SIZE,
917};
918static const struct intel_watermark_params valleyview_cursor_wm_info = {
919 I965_CURSOR_FIFO,
920 VALLEYVIEW_CURSOR_MAX_WM,
921 I965_CURSOR_DFT_WM,
922 2,
923 G4X_FIFO_LINE_SIZE,
924};
925static const struct intel_watermark_params i965_cursor_wm_info = {
926 I965_CURSOR_FIFO,
927 I965_CURSOR_MAX_WM,
928 I965_CURSOR_DFT_WM,
929 2,
930 I915_FIFO_LINE_SIZE,
931};
932static const struct intel_watermark_params i945_wm_info = {
933 I945_FIFO_SIZE,
934 I915_MAX_WM,
935 1,
936 2,
937 I915_FIFO_LINE_SIZE
938};
939static const struct intel_watermark_params i915_wm_info = {
940 I915_FIFO_SIZE,
941 I915_MAX_WM,
942 1,
943 2,
944 I915_FIFO_LINE_SIZE
945};
946static const struct intel_watermark_params i855_wm_info = {
947 I855GM_FIFO_SIZE,
948 I915_MAX_WM,
949 1,
950 2,
951 I830_FIFO_LINE_SIZE
952};
953static const struct intel_watermark_params i830_wm_info = {
954 I830_FIFO_SIZE,
955 I915_MAX_WM,
956 1,
957 2,
958 I830_FIFO_LINE_SIZE
959};
960
961static const struct intel_watermark_params ironlake_display_wm_info = {
962 ILK_DISPLAY_FIFO,
963 ILK_DISPLAY_MAXWM,
964 ILK_DISPLAY_DFTWM,
965 2,
966 ILK_FIFO_LINE_SIZE
967};
968static const struct intel_watermark_params ironlake_cursor_wm_info = {
969 ILK_CURSOR_FIFO,
970 ILK_CURSOR_MAXWM,
971 ILK_CURSOR_DFTWM,
972 2,
973 ILK_FIFO_LINE_SIZE
974};
975static const struct intel_watermark_params ironlake_display_srwm_info = {
976 ILK_DISPLAY_SR_FIFO,
977 ILK_DISPLAY_MAX_SRWM,
978 ILK_DISPLAY_DFT_SRWM,
979 2,
980 ILK_FIFO_LINE_SIZE
981};
982static const struct intel_watermark_params ironlake_cursor_srwm_info = {
983 ILK_CURSOR_SR_FIFO,
984 ILK_CURSOR_MAX_SRWM,
985 ILK_CURSOR_DFT_SRWM,
986 2,
987 ILK_FIFO_LINE_SIZE
988};
989
990static const struct intel_watermark_params sandybridge_display_wm_info = {
991 SNB_DISPLAY_FIFO,
992 SNB_DISPLAY_MAXWM,
993 SNB_DISPLAY_DFTWM,
994 2,
995 SNB_FIFO_LINE_SIZE
996};
997static const struct intel_watermark_params sandybridge_cursor_wm_info = {
998 SNB_CURSOR_FIFO,
999 SNB_CURSOR_MAXWM,
1000 SNB_CURSOR_DFTWM,
1001 2,
1002 SNB_FIFO_LINE_SIZE
1003};
1004static const struct intel_watermark_params sandybridge_display_srwm_info = {
1005 SNB_DISPLAY_SR_FIFO,
1006 SNB_DISPLAY_MAX_SRWM,
1007 SNB_DISPLAY_DFT_SRWM,
1008 2,
1009 SNB_FIFO_LINE_SIZE
1010};
1011static const struct intel_watermark_params sandybridge_cursor_srwm_info = {
1012 SNB_CURSOR_SR_FIFO,
1013 SNB_CURSOR_MAX_SRWM,
1014 SNB_CURSOR_DFT_SRWM,
1015 2,
1016 SNB_FIFO_LINE_SIZE
1017};
1018
1019
1020/**
1021 * intel_calculate_wm - calculate watermark level
1022 * @clock_in_khz: pixel clock
1023 * @wm: chip FIFO params
1024 * @pixel_size: display pixel size
1025 * @latency_ns: memory latency for the platform
1026 *
1027 * Calculate the watermark level (the level at which the display plane will
1028 * start fetching from memory again). Each chip has a different display
1029 * FIFO size and allocation, so the caller needs to figure that out and pass
1030 * in the correct intel_watermark_params structure.
1031 *
1032 * As the pixel clock runs, the FIFO will be drained at a rate that depends
1033 * on the pixel size. When it reaches the watermark level, it'll start
1034 * fetching FIFO line sized based chunks from memory until the FIFO fills
1035 * past the watermark point. If the FIFO drains completely, a FIFO underrun
1036 * will occur, and a display engine hang could result.
1037 */
1038static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
1039 const struct intel_watermark_params *wm,
1040 int fifo_size,
1041 int pixel_size,
1042 unsigned long latency_ns)
1043{
1044 long entries_required, wm_size;
1045
1046 /*
1047 * Note: we need to make sure we don't overflow for various clock &
1048 * latency values.
1049 * clocks go from a few thousand to several hundred thousand.
1050 * latency is usually a few thousand
1051 */
1052 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
1053 1000;
1054 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
1055
1056 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
1057
1058 wm_size = fifo_size - (entries_required + wm->guard_size);
1059
1060 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
1061
1062 /* Don't promote wm_size to unsigned... */
1063 if (wm_size > (long)wm->max_wm)
1064 wm_size = wm->max_wm;
1065 if (wm_size <= 0)
1066 wm_size = wm->default_wm;
1067 return wm_size;
1068}
1069
1070static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
1071{
1072 struct drm_crtc *crtc, *enabled = NULL;
1073
1074 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Chris Wilson3490ea52013-01-07 10:11:40 +00001075 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001076 if (enabled)
1077 return NULL;
1078 enabled = crtc;
1079 }
1080 }
1081
1082 return enabled;
1083}
1084
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001085static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001086{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001087 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001088 struct drm_i915_private *dev_priv = dev->dev_private;
1089 struct drm_crtc *crtc;
1090 const struct cxsr_latency *latency;
1091 u32 reg;
1092 unsigned long wm;
1093
1094 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
1095 dev_priv->fsb_freq, dev_priv->mem_freq);
1096 if (!latency) {
1097 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
1098 pineview_disable_cxsr(dev);
1099 return;
1100 }
1101
1102 crtc = single_enabled_crtc(dev);
1103 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001104 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001105 int pixel_size = crtc->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001106 int clock;
1107
1108 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1109 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001110
1111 /* Display SR */
1112 wm = intel_calculate_wm(clock, &pineview_display_wm,
1113 pineview_display_wm.fifo_size,
1114 pixel_size, latency->display_sr);
1115 reg = I915_READ(DSPFW1);
1116 reg &= ~DSPFW_SR_MASK;
1117 reg |= wm << DSPFW_SR_SHIFT;
1118 I915_WRITE(DSPFW1, reg);
1119 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
1120
1121 /* cursor SR */
1122 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
1123 pineview_display_wm.fifo_size,
1124 pixel_size, latency->cursor_sr);
1125 reg = I915_READ(DSPFW3);
1126 reg &= ~DSPFW_CURSOR_SR_MASK;
1127 reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT;
1128 I915_WRITE(DSPFW3, reg);
1129
1130 /* Display HPLL off SR */
1131 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
1132 pineview_display_hplloff_wm.fifo_size,
1133 pixel_size, latency->display_hpll_disable);
1134 reg = I915_READ(DSPFW3);
1135 reg &= ~DSPFW_HPLL_SR_MASK;
1136 reg |= wm & DSPFW_HPLL_SR_MASK;
1137 I915_WRITE(DSPFW3, reg);
1138
1139 /* cursor HPLL off SR */
1140 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
1141 pineview_display_hplloff_wm.fifo_size,
1142 pixel_size, latency->cursor_hpll_disable);
1143 reg = I915_READ(DSPFW3);
1144 reg &= ~DSPFW_HPLL_CURSOR_MASK;
1145 reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT;
1146 I915_WRITE(DSPFW3, reg);
1147 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
1148
1149 /* activate cxsr */
1150 I915_WRITE(DSPFW3,
1151 I915_READ(DSPFW3) | PINEVIEW_SELF_REFRESH_EN);
1152 DRM_DEBUG_KMS("Self-refresh is enabled\n");
1153 } else {
1154 pineview_disable_cxsr(dev);
1155 DRM_DEBUG_KMS("Self-refresh is disabled\n");
1156 }
1157}
1158
1159static bool g4x_compute_wm0(struct drm_device *dev,
1160 int plane,
1161 const struct intel_watermark_params *display,
1162 int display_latency_ns,
1163 const struct intel_watermark_params *cursor,
1164 int cursor_latency_ns,
1165 int *plane_wm,
1166 int *cursor_wm)
1167{
1168 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001169 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001170 int htotal, hdisplay, clock, pixel_size;
1171 int line_time_us, line_count;
1172 int entries, tlb_miss;
1173
1174 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001175 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001176 *cursor_wm = cursor->guard_size;
1177 *plane_wm = display->guard_size;
1178 return false;
1179 }
1180
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001181 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001182 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001183 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001184 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001185 pixel_size = crtc->fb->bits_per_pixel / 8;
1186
1187 /* Use the small buffer method to calculate plane watermark */
1188 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
1189 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
1190 if (tlb_miss > 0)
1191 entries += tlb_miss;
1192 entries = DIV_ROUND_UP(entries, display->cacheline_size);
1193 *plane_wm = entries + display->guard_size;
1194 if (*plane_wm > (int)display->max_wm)
1195 *plane_wm = display->max_wm;
1196
1197 /* Use the large buffer method to calculate cursor watermark */
1198 line_time_us = ((htotal * 1000) / clock);
1199 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
1200 entries = line_count * 64 * pixel_size;
1201 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1202 if (tlb_miss > 0)
1203 entries += tlb_miss;
1204 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1205 *cursor_wm = entries + cursor->guard_size;
1206 if (*cursor_wm > (int)cursor->max_wm)
1207 *cursor_wm = (int)cursor->max_wm;
1208
1209 return true;
1210}
1211
1212/*
1213 * Check the wm result.
1214 *
1215 * If any calculated watermark values is larger than the maximum value that
1216 * can be programmed into the associated watermark register, that watermark
1217 * must be disabled.
1218 */
1219static bool g4x_check_srwm(struct drm_device *dev,
1220 int display_wm, int cursor_wm,
1221 const struct intel_watermark_params *display,
1222 const struct intel_watermark_params *cursor)
1223{
1224 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
1225 display_wm, cursor_wm);
1226
1227 if (display_wm > display->max_wm) {
1228 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
1229 display_wm, display->max_wm);
1230 return false;
1231 }
1232
1233 if (cursor_wm > cursor->max_wm) {
1234 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
1235 cursor_wm, cursor->max_wm);
1236 return false;
1237 }
1238
1239 if (!(display_wm || cursor_wm)) {
1240 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
1241 return false;
1242 }
1243
1244 return true;
1245}
1246
1247static bool g4x_compute_srwm(struct drm_device *dev,
1248 int plane,
1249 int latency_ns,
1250 const struct intel_watermark_params *display,
1251 const struct intel_watermark_params *cursor,
1252 int *display_wm, int *cursor_wm)
1253{
1254 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001255 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001256 int hdisplay, htotal, pixel_size, clock;
1257 unsigned long line_time_us;
1258 int line_count, line_size;
1259 int small, large;
1260 int entries;
1261
1262 if (!latency_ns) {
1263 *display_wm = *cursor_wm = 0;
1264 return false;
1265 }
1266
1267 crtc = intel_get_crtc_for_plane(dev, plane);
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001268 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001269 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001270 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001271 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001272 pixel_size = crtc->fb->bits_per_pixel / 8;
1273
1274 line_time_us = (htotal * 1000) / clock;
1275 line_count = (latency_ns / line_time_us + 1000) / 1000;
1276 line_size = hdisplay * pixel_size;
1277
1278 /* Use the minimum of the small and large buffer method for primary */
1279 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1280 large = line_count * line_size;
1281
1282 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1283 *display_wm = entries + display->guard_size;
1284
1285 /* calculate the self-refresh watermark for display cursor */
1286 entries = line_count * pixel_size * 64;
1287 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1288 *cursor_wm = entries + cursor->guard_size;
1289
1290 return g4x_check_srwm(dev,
1291 *display_wm, *cursor_wm,
1292 display, cursor);
1293}
1294
1295static bool vlv_compute_drain_latency(struct drm_device *dev,
1296 int plane,
1297 int *plane_prec_mult,
1298 int *plane_dl,
1299 int *cursor_prec_mult,
1300 int *cursor_dl)
1301{
1302 struct drm_crtc *crtc;
1303 int clock, pixel_size;
1304 int entries;
1305
1306 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00001307 if (!intel_crtc_active(crtc))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001308 return false;
1309
Damien Lespiau241bfc32013-09-25 16:45:37 +01001310 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001311 pixel_size = crtc->fb->bits_per_pixel / 8; /* BPP */
1312
1313 entries = (clock / 1000) * pixel_size;
1314 *plane_prec_mult = (entries > 256) ?
1315 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1316 *plane_dl = (64 * (*plane_prec_mult) * 4) / ((clock / 1000) *
1317 pixel_size);
1318
1319 entries = (clock / 1000) * 4; /* BPP is always 4 for cursor */
1320 *cursor_prec_mult = (entries > 256) ?
1321 DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_16;
1322 *cursor_dl = (64 * (*cursor_prec_mult) * 4) / ((clock / 1000) * 4);
1323
1324 return true;
1325}
1326
1327/*
1328 * Update drain latency registers of memory arbiter
1329 *
1330 * Valleyview SoC has a new memory arbiter and needs drain latency registers
1331 * to be programmed. Each plane has a drain latency multiplier and a drain
1332 * latency value.
1333 */
1334
1335static void vlv_update_drain_latency(struct drm_device *dev)
1336{
1337 struct drm_i915_private *dev_priv = dev->dev_private;
1338 int planea_prec, planea_dl, planeb_prec, planeb_dl;
1339 int cursora_prec, cursora_dl, cursorb_prec, cursorb_dl;
1340 int plane_prec_mult, cursor_prec_mult; /* Precision multiplier is
1341 either 16 or 32 */
1342
1343 /* For plane A, Cursor A */
1344 if (vlv_compute_drain_latency(dev, 0, &plane_prec_mult, &planea_dl,
1345 &cursor_prec_mult, &cursora_dl)) {
1346 cursora_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1347 DDL_CURSORA_PRECISION_32 : DDL_CURSORA_PRECISION_16;
1348 planea_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1349 DDL_PLANEA_PRECISION_32 : DDL_PLANEA_PRECISION_16;
1350
1351 I915_WRITE(VLV_DDL1, cursora_prec |
1352 (cursora_dl << DDL_CURSORA_SHIFT) |
1353 planea_prec | planea_dl);
1354 }
1355
1356 /* For plane B, Cursor B */
1357 if (vlv_compute_drain_latency(dev, 1, &plane_prec_mult, &planeb_dl,
1358 &cursor_prec_mult, &cursorb_dl)) {
1359 cursorb_prec = (cursor_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1360 DDL_CURSORB_PRECISION_32 : DDL_CURSORB_PRECISION_16;
1361 planeb_prec = (plane_prec_mult == DRAIN_LATENCY_PRECISION_32) ?
1362 DDL_PLANEB_PRECISION_32 : DDL_PLANEB_PRECISION_16;
1363
1364 I915_WRITE(VLV_DDL2, cursorb_prec |
1365 (cursorb_dl << DDL_CURSORB_SHIFT) |
1366 planeb_prec | planeb_dl);
1367 }
1368}
1369
1370#define single_plane_enabled(mask) is_power_of_2(mask)
1371
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001372static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001373{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001374 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001375 static const int sr_latency_ns = 12000;
1376 struct drm_i915_private *dev_priv = dev->dev_private;
1377 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1378 int plane_sr, cursor_sr;
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001379 int ignore_plane_sr, ignore_cursor_sr;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001380 unsigned int enabled = 0;
1381
1382 vlv_update_drain_latency(dev);
1383
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001384 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001385 &valleyview_wm_info, latency_ns,
1386 &valleyview_cursor_wm_info, latency_ns,
1387 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001388 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001389
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001390 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001391 &valleyview_wm_info, latency_ns,
1392 &valleyview_cursor_wm_info, latency_ns,
1393 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001394 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001395
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001396 if (single_plane_enabled(enabled) &&
1397 g4x_compute_srwm(dev, ffs(enabled) - 1,
1398 sr_latency_ns,
1399 &valleyview_wm_info,
1400 &valleyview_cursor_wm_info,
Chris Wilsonaf6c4572012-12-11 12:01:43 +00001401 &plane_sr, &ignore_cursor_sr) &&
1402 g4x_compute_srwm(dev, ffs(enabled) - 1,
1403 2*sr_latency_ns,
1404 &valleyview_wm_info,
1405 &valleyview_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001406 &ignore_plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001407 I915_WRITE(FW_BLC_SELF_VLV, FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001408 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001409 I915_WRITE(FW_BLC_SELF_VLV,
1410 I915_READ(FW_BLC_SELF_VLV) & ~FW_CSPWRDWNEN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001411 plane_sr = cursor_sr = 0;
1412 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001413
1414 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1415 planea_wm, cursora_wm,
1416 planeb_wm, cursorb_wm,
1417 plane_sr, cursor_sr);
1418
1419 I915_WRITE(DSPFW1,
1420 (plane_sr << DSPFW_SR_SHIFT) |
1421 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1422 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1423 planea_wm);
1424 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001425 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426 (cursora_wm << DSPFW_CURSORA_SHIFT));
1427 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001428 (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) |
1429 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430}
1431
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001432static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001434 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001435 static const int sr_latency_ns = 12000;
1436 struct drm_i915_private *dev_priv = dev->dev_private;
1437 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1438 int plane_sr, cursor_sr;
1439 unsigned int enabled = 0;
1440
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001441 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 &g4x_wm_info, latency_ns,
1443 &g4x_cursor_wm_info, latency_ns,
1444 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001445 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001446
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001447 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001448 &g4x_wm_info, latency_ns,
1449 &g4x_cursor_wm_info, latency_ns,
1450 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001451 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001452
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001453 if (single_plane_enabled(enabled) &&
1454 g4x_compute_srwm(dev, ffs(enabled) - 1,
1455 sr_latency_ns,
1456 &g4x_wm_info,
1457 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001458 &plane_sr, &cursor_sr)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001459 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001460 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001461 I915_WRITE(FW_BLC_SELF,
1462 I915_READ(FW_BLC_SELF) & ~FW_BLC_SELF_EN);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001463 plane_sr = cursor_sr = 0;
1464 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001465
1466 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
1467 planea_wm, cursora_wm,
1468 planeb_wm, cursorb_wm,
1469 plane_sr, cursor_sr);
1470
1471 I915_WRITE(DSPFW1,
1472 (plane_sr << DSPFW_SR_SHIFT) |
1473 (cursorb_wm << DSPFW_CURSORB_SHIFT) |
1474 (planeb_wm << DSPFW_PLANEB_SHIFT) |
1475 planea_wm);
1476 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001477 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001478 (cursora_wm << DSPFW_CURSORA_SHIFT));
1479 /* HPLL off in SR has some issues on G4x... disable it */
1480 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001481 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001482 (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1483}
1484
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001485static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001486{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001487 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001488 struct drm_i915_private *dev_priv = dev->dev_private;
1489 struct drm_crtc *crtc;
1490 int srwm = 1;
1491 int cursor_sr = 16;
1492
1493 /* Calc sr entries for one plane configs */
1494 crtc = single_enabled_crtc(dev);
1495 if (crtc) {
1496 /* self-refresh has much higher latency */
1497 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001498 const struct drm_display_mode *adjusted_mode =
1499 &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001500 int clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001501 int htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001502 int hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001503 int pixel_size = crtc->fb->bits_per_pixel / 8;
1504 unsigned long line_time_us;
1505 int entries;
1506
1507 line_time_us = ((htotal * 1000) / clock);
1508
1509 /* Use ns/us then divide to preserve precision */
1510 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1511 pixel_size * hdisplay;
1512 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1513 srwm = I965_FIFO_SIZE - entries;
1514 if (srwm < 0)
1515 srwm = 1;
1516 srwm &= 0x1ff;
1517 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1518 entries, srwm);
1519
1520 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1521 pixel_size * 64;
1522 entries = DIV_ROUND_UP(entries,
1523 i965_cursor_wm_info.cacheline_size);
1524 cursor_sr = i965_cursor_wm_info.fifo_size -
1525 (entries + i965_cursor_wm_info.guard_size);
1526
1527 if (cursor_sr > i965_cursor_wm_info.max_wm)
1528 cursor_sr = i965_cursor_wm_info.max_wm;
1529
1530 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1531 "cursor %d\n", srwm, cursor_sr);
1532
1533 if (IS_CRESTLINE(dev))
1534 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN);
1535 } else {
1536 /* Turn off self refresh if both pipes are enabled */
1537 if (IS_CRESTLINE(dev))
1538 I915_WRITE(FW_BLC_SELF, I915_READ(FW_BLC_SELF)
1539 & ~FW_BLC_SELF_EN);
1540 }
1541
1542 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1543 srwm);
1544
1545 /* 965 has limitations... */
1546 I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) |
1547 (8 << 16) | (8 << 8) | (8 << 0));
1548 I915_WRITE(DSPFW2, (8 << 8) | (8 << 0));
1549 /* update cursor SR watermark */
1550 I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT));
1551}
1552
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001553static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001554{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001555 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001556 struct drm_i915_private *dev_priv = dev->dev_private;
1557 const struct intel_watermark_params *wm_info;
1558 uint32_t fwater_lo;
1559 uint32_t fwater_hi;
1560 int cwm, srwm = 1;
1561 int fifo_size;
1562 int planea_wm, planeb_wm;
1563 struct drm_crtc *crtc, *enabled = NULL;
1564
1565 if (IS_I945GM(dev))
1566 wm_info = &i945_wm_info;
1567 else if (!IS_GEN2(dev))
1568 wm_info = &i915_wm_info;
1569 else
1570 wm_info = &i855_wm_info;
1571
1572 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1573 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001574 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001575 const struct drm_display_mode *adjusted_mode;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001576 int cpp = crtc->fb->bits_per_pixel / 8;
1577 if (IS_GEN2(dev))
1578 cpp = 4;
1579
Damien Lespiau241bfc32013-09-25 16:45:37 +01001580 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1581 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001582 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001583 latency_ns);
1584 enabled = crtc;
1585 } else
1586 planea_wm = fifo_size - wm_info->guard_size;
1587
1588 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1589 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001590 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001591 const struct drm_display_mode *adjusted_mode;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001592 int cpp = crtc->fb->bits_per_pixel / 8;
1593 if (IS_GEN2(dev))
1594 cpp = 4;
1595
Damien Lespiau241bfc32013-09-25 16:45:37 +01001596 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1597 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001598 wm_info, fifo_size, cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001599 latency_ns);
1600 if (enabled == NULL)
1601 enabled = crtc;
1602 else
1603 enabled = NULL;
1604 } else
1605 planeb_wm = fifo_size - wm_info->guard_size;
1606
1607 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1608
1609 /*
1610 * Overlay gets an aggressive default since video jitter is bad.
1611 */
1612 cwm = 2;
1613
1614 /* Play safe and disable self-refresh before adjusting watermarks. */
1615 if (IS_I945G(dev) || IS_I945GM(dev))
1616 I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN_MASK | 0);
1617 else if (IS_I915GM(dev))
1618 I915_WRITE(INSTPM, I915_READ(INSTPM) & ~INSTPM_SELF_EN);
1619
1620 /* Calc sr entries for one plane configs */
1621 if (HAS_FW_BLC(dev) && enabled) {
1622 /* self-refresh has much higher latency */
1623 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001624 const struct drm_display_mode *adjusted_mode =
1625 &to_intel_crtc(enabled)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001626 int clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001627 int htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001628 int hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629 int pixel_size = enabled->fb->bits_per_pixel / 8;
1630 unsigned long line_time_us;
1631 int entries;
1632
1633 line_time_us = (htotal * 1000) / clock;
1634
1635 /* Use ns/us then divide to preserve precision */
1636 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1637 pixel_size * hdisplay;
1638 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1639 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1640 srwm = wm_info->fifo_size - entries;
1641 if (srwm < 0)
1642 srwm = 1;
1643
1644 if (IS_I945G(dev) || IS_I945GM(dev))
1645 I915_WRITE(FW_BLC_SELF,
1646 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1647 else if (IS_I915GM(dev))
1648 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1649 }
1650
1651 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1652 planea_wm, planeb_wm, cwm, srwm);
1653
1654 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1655 fwater_hi = (cwm & 0x1f);
1656
1657 /* Set request length to 8 cachelines per fetch */
1658 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1659 fwater_hi = fwater_hi | (1 << 8);
1660
1661 I915_WRITE(FW_BLC, fwater_lo);
1662 I915_WRITE(FW_BLC2, fwater_hi);
1663
1664 if (HAS_FW_BLC(dev)) {
1665 if (enabled) {
1666 if (IS_I945G(dev) || IS_I945GM(dev))
1667 I915_WRITE(FW_BLC_SELF,
1668 FW_BLC_SELF_EN_MASK | FW_BLC_SELF_EN);
1669 else if (IS_I915GM(dev))
1670 I915_WRITE(INSTPM, I915_READ(INSTPM) | INSTPM_SELF_EN);
1671 DRM_DEBUG_KMS("memory self refresh enabled\n");
1672 } else
1673 DRM_DEBUG_KMS("memory self refresh disabled\n");
1674 }
1675}
1676
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001677static void i830_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001678{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001679 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001680 struct drm_i915_private *dev_priv = dev->dev_private;
1681 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001682 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001683 uint32_t fwater_lo;
1684 int planea_wm;
1685
1686 crtc = single_enabled_crtc(dev);
1687 if (crtc == NULL)
1688 return;
1689
Damien Lespiau241bfc32013-09-25 16:45:37 +01001690 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
1691 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001692 &i830_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001693 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001694 4, latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001695 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1696 fwater_lo |= (3<<8) | planea_wm;
1697
1698 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1699
1700 I915_WRITE(FW_BLC, fwater_lo);
1701}
1702
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001703/*
1704 * Check the wm result.
1705 *
1706 * If any calculated watermark values is larger than the maximum value that
1707 * can be programmed into the associated watermark register, that watermark
1708 * must be disabled.
1709 */
1710static bool ironlake_check_srwm(struct drm_device *dev, int level,
1711 int fbc_wm, int display_wm, int cursor_wm,
1712 const struct intel_watermark_params *display,
1713 const struct intel_watermark_params *cursor)
1714{
1715 struct drm_i915_private *dev_priv = dev->dev_private;
1716
1717 DRM_DEBUG_KMS("watermark %d: display plane %d, fbc lines %d,"
1718 " cursor %d\n", level, display_wm, fbc_wm, cursor_wm);
1719
1720 if (fbc_wm > SNB_FBC_MAX_SRWM) {
1721 DRM_DEBUG_KMS("fbc watermark(%d) is too large(%d), disabling wm%d+\n",
1722 fbc_wm, SNB_FBC_MAX_SRWM, level);
1723
1724 /* fbc has it's own way to disable FBC WM */
1725 I915_WRITE(DISP_ARB_CTL,
1726 I915_READ(DISP_ARB_CTL) | DISP_FBC_WM_DIS);
1727 return false;
Ville Syrjälä615aaa52013-04-24 21:09:10 +03001728 } else if (INTEL_INFO(dev)->gen >= 6) {
1729 /* enable FBC WM (except on ILK, where it must remain off) */
1730 I915_WRITE(DISP_ARB_CTL,
1731 I915_READ(DISP_ARB_CTL) & ~DISP_FBC_WM_DIS);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001732 }
1733
1734 if (display_wm > display->max_wm) {
1735 DRM_DEBUG_KMS("display watermark(%d) is too large(%d), disabling wm%d+\n",
1736 display_wm, SNB_DISPLAY_MAX_SRWM, level);
1737 return false;
1738 }
1739
1740 if (cursor_wm > cursor->max_wm) {
1741 DRM_DEBUG_KMS("cursor watermark(%d) is too large(%d), disabling wm%d+\n",
1742 cursor_wm, SNB_CURSOR_MAX_SRWM, level);
1743 return false;
1744 }
1745
1746 if (!(fbc_wm || display_wm || cursor_wm)) {
1747 DRM_DEBUG_KMS("latency %d is 0, disabling wm%d+\n", level, level);
1748 return false;
1749 }
1750
1751 return true;
1752}
1753
1754/*
1755 * Compute watermark values of WM[1-3],
1756 */
1757static bool ironlake_compute_srwm(struct drm_device *dev, int level, int plane,
1758 int latency_ns,
1759 const struct intel_watermark_params *display,
1760 const struct intel_watermark_params *cursor,
1761 int *fbc_wm, int *display_wm, int *cursor_wm)
1762{
1763 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001764 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001765 unsigned long line_time_us;
1766 int hdisplay, htotal, pixel_size, clock;
1767 int line_count, line_size;
1768 int small, large;
1769 int entries;
1770
1771 if (!latency_ns) {
1772 *fbc_wm = *display_wm = *cursor_wm = 0;
1773 return false;
1774 }
1775
1776 crtc = intel_get_crtc_for_plane(dev, plane);
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001777 adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001778 clock = adjusted_mode->crtc_clock;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001779 htotal = adjusted_mode->htotal;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03001780 hdisplay = to_intel_crtc(crtc)->config.pipe_src_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001781 pixel_size = crtc->fb->bits_per_pixel / 8;
1782
1783 line_time_us = (htotal * 1000) / clock;
1784 line_count = (latency_ns / line_time_us + 1000) / 1000;
1785 line_size = hdisplay * pixel_size;
1786
1787 /* Use the minimum of the small and large buffer method for primary */
1788 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
1789 large = line_count * line_size;
1790
1791 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
1792 *display_wm = entries + display->guard_size;
1793
1794 /*
1795 * Spec says:
1796 * FBC WM = ((Final Primary WM * 64) / number of bytes per line) + 2
1797 */
1798 *fbc_wm = DIV_ROUND_UP(*display_wm * 64, line_size) + 2;
1799
1800 /* calculate the self-refresh watermark for display cursor */
1801 entries = line_count * pixel_size * 64;
1802 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1803 *cursor_wm = entries + cursor->guard_size;
1804
1805 return ironlake_check_srwm(dev, level,
1806 *fbc_wm, *display_wm, *cursor_wm,
1807 display, cursor);
1808}
1809
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001810static void ironlake_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001811{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001812 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001813 struct drm_i915_private *dev_priv = dev->dev_private;
1814 int fbc_wm, plane_wm, cursor_wm;
1815 unsigned int enabled;
1816
1817 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001818 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001819 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001820 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001821 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001822 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001823 &plane_wm, &cursor_wm)) {
1824 I915_WRITE(WM0_PIPEA_ILK,
1825 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1826 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1827 " plane %d, " "cursor: %d\n",
1828 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001829 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001830 }
1831
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001832 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001833 &ironlake_display_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001834 dev_priv->wm.pri_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001835 &ironlake_cursor_wm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001836 dev_priv->wm.cur_latency[0] * 100,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001837 &plane_wm, &cursor_wm)) {
1838 I915_WRITE(WM0_PIPEB_ILK,
1839 (plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm);
1840 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1841 " plane %d, cursor: %d\n",
1842 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001843 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001844 }
1845
1846 /*
1847 * Calculate and update the self-refresh watermark only when one
1848 * display plane is used.
1849 */
1850 I915_WRITE(WM3_LP_ILK, 0);
1851 I915_WRITE(WM2_LP_ILK, 0);
1852 I915_WRITE(WM1_LP_ILK, 0);
1853
1854 if (!single_plane_enabled(enabled))
1855 return;
1856 enabled = ffs(enabled) - 1;
1857
1858 /* WM1 */
1859 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001860 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001861 &ironlake_display_srwm_info,
1862 &ironlake_cursor_srwm_info,
1863 &fbc_wm, &plane_wm, &cursor_wm))
1864 return;
1865
1866 I915_WRITE(WM1_LP_ILK,
1867 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001868 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001869 (fbc_wm << WM1_LP_FBC_SHIFT) |
1870 (plane_wm << WM1_LP_SR_SHIFT) |
1871 cursor_wm);
1872
1873 /* WM2 */
1874 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001875 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001876 &ironlake_display_srwm_info,
1877 &ironlake_cursor_srwm_info,
1878 &fbc_wm, &plane_wm, &cursor_wm))
1879 return;
1880
1881 I915_WRITE(WM2_LP_ILK,
1882 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001883 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001884 (fbc_wm << WM1_LP_FBC_SHIFT) |
1885 (plane_wm << WM1_LP_SR_SHIFT) |
1886 cursor_wm);
1887
1888 /*
1889 * WM3 is unsupported on ILK, probably because we don't have latency
1890 * data for that power state
1891 */
1892}
1893
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001894static void sandybridge_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001895{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001896 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001897 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001898 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001899 u32 val;
1900 int fbc_wm, plane_wm, cursor_wm;
1901 unsigned int enabled;
1902
1903 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001904 if (g4x_compute_wm0(dev, PIPE_A,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001905 &sandybridge_display_wm_info, latency,
1906 &sandybridge_cursor_wm_info, latency,
1907 &plane_wm, &cursor_wm)) {
1908 val = I915_READ(WM0_PIPEA_ILK);
1909 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1910 I915_WRITE(WM0_PIPEA_ILK, val |
1911 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1912 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1913 " plane %d, " "cursor: %d\n",
1914 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001915 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001916 }
1917
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001918 if (g4x_compute_wm0(dev, PIPE_B,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001919 &sandybridge_display_wm_info, latency,
1920 &sandybridge_cursor_wm_info, latency,
1921 &plane_wm, &cursor_wm)) {
1922 val = I915_READ(WM0_PIPEB_ILK);
1923 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
1924 I915_WRITE(WM0_PIPEB_ILK, val |
1925 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
1926 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1927 " plane %d, cursor: %d\n",
1928 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001929 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001930 }
1931
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001932 /*
1933 * Calculate and update the self-refresh watermark only when one
1934 * display plane is used.
1935 *
1936 * SNB support 3 levels of watermark.
1937 *
1938 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
1939 * and disabled in the descending order
1940 *
1941 */
1942 I915_WRITE(WM3_LP_ILK, 0);
1943 I915_WRITE(WM2_LP_ILK, 0);
1944 I915_WRITE(WM1_LP_ILK, 0);
1945
1946 if (!single_plane_enabled(enabled) ||
1947 dev_priv->sprite_scaling_enabled)
1948 return;
1949 enabled = ffs(enabled) - 1;
1950
1951 /* WM1 */
1952 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001953 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001954 &sandybridge_display_srwm_info,
1955 &sandybridge_cursor_srwm_info,
1956 &fbc_wm, &plane_wm, &cursor_wm))
1957 return;
1958
1959 I915_WRITE(WM1_LP_ILK,
1960 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001961 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001962 (fbc_wm << WM1_LP_FBC_SHIFT) |
1963 (plane_wm << WM1_LP_SR_SHIFT) |
1964 cursor_wm);
1965
1966 /* WM2 */
1967 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001968 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001969 &sandybridge_display_srwm_info,
1970 &sandybridge_cursor_srwm_info,
1971 &fbc_wm, &plane_wm, &cursor_wm))
1972 return;
1973
1974 I915_WRITE(WM2_LP_ILK,
1975 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001976 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001977 (fbc_wm << WM1_LP_FBC_SHIFT) |
1978 (plane_wm << WM1_LP_SR_SHIFT) |
1979 cursor_wm);
1980
1981 /* WM3 */
1982 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001983 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001984 &sandybridge_display_srwm_info,
1985 &sandybridge_cursor_srwm_info,
1986 &fbc_wm, &plane_wm, &cursor_wm))
1987 return;
1988
1989 I915_WRITE(WM3_LP_ILK,
1990 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03001991 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001992 (fbc_wm << WM1_LP_FBC_SHIFT) |
1993 (plane_wm << WM1_LP_SR_SHIFT) |
1994 cursor_wm);
1995}
1996
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001997static void ivybridge_update_wm(struct drm_crtc *crtc)
Chris Wilsonc43d0182012-12-11 12:01:42 +00001998{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001999 struct drm_device *dev = crtc->dev;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002000 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002001 int latency = dev_priv->wm.pri_latency[0] * 100; /* In unit 0.1us */
Chris Wilsonc43d0182012-12-11 12:01:42 +00002002 u32 val;
2003 int fbc_wm, plane_wm, cursor_wm;
2004 int ignore_fbc_wm, ignore_plane_wm, ignore_cursor_wm;
2005 unsigned int enabled;
2006
2007 enabled = 0;
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002008 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002009 &sandybridge_display_wm_info, latency,
2010 &sandybridge_cursor_wm_info, latency,
2011 &plane_wm, &cursor_wm)) {
2012 val = I915_READ(WM0_PIPEA_ILK);
2013 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2014 I915_WRITE(WM0_PIPEA_ILK, val |
2015 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2016 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
2017 " plane %d, " "cursor: %d\n",
2018 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002019 enabled |= 1 << PIPE_A;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002020 }
2021
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002022 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002023 &sandybridge_display_wm_info, latency,
2024 &sandybridge_cursor_wm_info, latency,
2025 &plane_wm, &cursor_wm)) {
2026 val = I915_READ(WM0_PIPEB_ILK);
2027 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2028 I915_WRITE(WM0_PIPEB_ILK, val |
2029 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2030 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
2031 " plane %d, cursor: %d\n",
2032 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002033 enabled |= 1 << PIPE_B;
Chris Wilsonc43d0182012-12-11 12:01:42 +00002034 }
2035
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002036 if (g4x_compute_wm0(dev, PIPE_C,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002037 &sandybridge_display_wm_info, latency,
2038 &sandybridge_cursor_wm_info, latency,
2039 &plane_wm, &cursor_wm)) {
2040 val = I915_READ(WM0_PIPEC_IVB);
2041 val &= ~(WM0_PIPE_PLANE_MASK | WM0_PIPE_CURSOR_MASK);
2042 I915_WRITE(WM0_PIPEC_IVB, val |
2043 ((plane_wm << WM0_PIPE_PLANE_SHIFT) | cursor_wm));
2044 DRM_DEBUG_KMS("FIFO watermarks For pipe C -"
2045 " plane %d, cursor: %d\n",
2046 plane_wm, cursor_wm);
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02002047 enabled |= 1 << PIPE_C;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002048 }
2049
2050 /*
2051 * Calculate and update the self-refresh watermark only when one
2052 * display plane is used.
2053 *
2054 * SNB support 3 levels of watermark.
2055 *
2056 * WM1/WM2/WM2 watermarks have to be enabled in the ascending order,
2057 * and disabled in the descending order
2058 *
2059 */
2060 I915_WRITE(WM3_LP_ILK, 0);
2061 I915_WRITE(WM2_LP_ILK, 0);
2062 I915_WRITE(WM1_LP_ILK, 0);
2063
2064 if (!single_plane_enabled(enabled) ||
2065 dev_priv->sprite_scaling_enabled)
2066 return;
2067 enabled = ffs(enabled) - 1;
2068
2069 /* WM1 */
2070 if (!ironlake_compute_srwm(dev, 1, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002071 dev_priv->wm.pri_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002072 &sandybridge_display_srwm_info,
2073 &sandybridge_cursor_srwm_info,
2074 &fbc_wm, &plane_wm, &cursor_wm))
2075 return;
2076
2077 I915_WRITE(WM1_LP_ILK,
2078 WM1_LP_SR_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002079 (dev_priv->wm.pri_latency[1] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002080 (fbc_wm << WM1_LP_FBC_SHIFT) |
2081 (plane_wm << WM1_LP_SR_SHIFT) |
2082 cursor_wm);
2083
2084 /* WM2 */
2085 if (!ironlake_compute_srwm(dev, 2, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002086 dev_priv->wm.pri_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002087 &sandybridge_display_srwm_info,
2088 &sandybridge_cursor_srwm_info,
2089 &fbc_wm, &plane_wm, &cursor_wm))
2090 return;
2091
2092 I915_WRITE(WM2_LP_ILK,
2093 WM2_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002094 (dev_priv->wm.pri_latency[2] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002095 (fbc_wm << WM1_LP_FBC_SHIFT) |
2096 (plane_wm << WM1_LP_SR_SHIFT) |
2097 cursor_wm);
2098
Chris Wilsonc43d0182012-12-11 12:01:42 +00002099 /* WM3, note we have to correct the cursor latency */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002100 if (!ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002101 dev_priv->wm.pri_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002102 &sandybridge_display_srwm_info,
2103 &sandybridge_cursor_srwm_info,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002104 &fbc_wm, &plane_wm, &ignore_cursor_wm) ||
2105 !ironlake_compute_srwm(dev, 3, enabled,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002106 dev_priv->wm.cur_latency[3] * 500,
Chris Wilsonc43d0182012-12-11 12:01:42 +00002107 &sandybridge_display_srwm_info,
2108 &sandybridge_cursor_srwm_info,
2109 &ignore_fbc_wm, &ignore_plane_wm, &cursor_wm))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002110 return;
2111
2112 I915_WRITE(WM3_LP_ILK,
2113 WM3_LP_EN |
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03002114 (dev_priv->wm.pri_latency[3] << WM1_LP_LATENCY_SHIFT) |
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002115 (fbc_wm << WM1_LP_FBC_SHIFT) |
2116 (plane_wm << WM1_LP_SR_SHIFT) |
2117 cursor_wm);
2118}
2119
Ville Syrjälä36587292013-07-05 11:57:16 +03002120static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
2121 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002122{
2123 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002124 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002125
Damien Lespiau241bfc32013-09-25 16:45:37 +01002126 pixel_rate = intel_crtc->config.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002127
2128 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
2129 * adjust the pixel_rate here. */
2130
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002131 if (intel_crtc->config.pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002132 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002133 uint32_t pfit_size = intel_crtc->config.pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002134
Ville Syrjälä37327ab2013-09-04 18:25:28 +03002135 pipe_w = intel_crtc->config.pipe_src_w;
2136 pipe_h = intel_crtc->config.pipe_src_h;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002137 pfit_w = (pfit_size >> 16) & 0xFFFF;
2138 pfit_h = pfit_size & 0xFFFF;
2139 if (pipe_w < pfit_w)
2140 pipe_w = pfit_w;
2141 if (pipe_h < pfit_h)
2142 pipe_h = pfit_h;
2143
2144 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
2145 pfit_w * pfit_h);
2146 }
2147
2148 return pixel_rate;
2149}
2150
Ville Syrjälä37126462013-08-01 16:18:55 +03002151/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002152static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002153 uint32_t latency)
2154{
2155 uint64_t ret;
2156
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002157 if (WARN(latency == 0, "Latency value missing\n"))
2158 return UINT_MAX;
2159
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002160 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
2161 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
2162
2163 return ret;
2164}
2165
Ville Syrjälä37126462013-08-01 16:18:55 +03002166/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03002167static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002168 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
2169 uint32_t latency)
2170{
2171 uint32_t ret;
2172
Ville Syrjälä3312ba62013-08-01 16:18:53 +03002173 if (WARN(latency == 0, "Latency value missing\n"))
2174 return UINT_MAX;
2175
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002176 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
2177 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
2178 ret = DIV_ROUND_UP(ret, 64) + 2;
2179 return ret;
2180}
2181
Ville Syrjälä23297042013-07-05 11:57:17 +03002182static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002183 uint8_t bytes_per_pixel)
2184{
2185 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
2186}
2187
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002188struct hsw_pipe_wm_parameters {
2189 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002190 uint32_t pipe_htotal;
2191 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002192 struct intel_plane_wm_parameters pri;
2193 struct intel_plane_wm_parameters spr;
2194 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002195};
2196
Paulo Zanonicca32e92013-05-31 11:45:06 -03002197struct hsw_wm_maximums {
2198 uint16_t pri;
2199 uint16_t spr;
2200 uint16_t cur;
2201 uint16_t fbc;
2202};
2203
Ville Syrjälä240264f2013-08-07 13:29:12 +03002204/* used in computing the new watermarks state */
2205struct intel_wm_config {
2206 unsigned int num_pipes_active;
2207 bool sprites_enabled;
2208 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03002209};
2210
Ville Syrjälä37126462013-08-01 16:18:55 +03002211/*
2212 * For both WM_PIPE and WM_LP.
2213 * mem_value must be in 0.1us units.
2214 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002215static uint32_t ilk_compute_pri_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002216 uint32_t mem_value,
2217 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002218{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002219 uint32_t method1, method2;
2220
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002221 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002222 return 0;
2223
Ville Syrjälä23297042013-07-05 11:57:17 +03002224 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002225 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002226 mem_value);
2227
2228 if (!is_lp)
2229 return method1;
2230
Ville Syrjälä23297042013-07-05 11:57:17 +03002231 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002232 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002233 params->pri.horiz_pixels,
2234 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002235 mem_value);
2236
2237 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002238}
2239
Ville Syrjälä37126462013-08-01 16:18:55 +03002240/*
2241 * For both WM_PIPE and WM_LP.
2242 * mem_value must be in 0.1us units.
2243 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002244static uint32_t ilk_compute_spr_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002245 uint32_t mem_value)
2246{
2247 uint32_t method1, method2;
2248
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002249 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002250 return 0;
2251
Ville Syrjälä23297042013-07-05 11:57:17 +03002252 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002253 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002254 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03002255 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002256 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002257 params->spr.horiz_pixels,
2258 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002259 mem_value);
2260 return min(method1, method2);
2261}
2262
Ville Syrjälä37126462013-08-01 16:18:55 +03002263/*
2264 * For both WM_PIPE and WM_LP.
2265 * mem_value must be in 0.1us units.
2266 */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002267static uint32_t ilk_compute_cur_wm(const struct hsw_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002268 uint32_t mem_value)
2269{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002270 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002271 return 0;
2272
Ville Syrjälä23297042013-07-05 11:57:17 +03002273 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002274 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002275 params->cur.horiz_pixels,
2276 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002277 mem_value);
2278}
2279
Paulo Zanonicca32e92013-05-31 11:45:06 -03002280/* Only for WM_LP. */
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002281static uint32_t ilk_compute_fbc_wm(const struct hsw_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002282 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002283{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002284 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002285 return 0;
2286
Ville Syrjälä23297042013-07-05 11:57:17 +03002287 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002288 params->pri.horiz_pixels,
2289 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002290}
2291
Ville Syrjälä158ae642013-08-07 13:28:19 +03002292static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
2293{
Ville Syrjälä416f4722013-11-02 21:07:46 -07002294 if (INTEL_INFO(dev)->gen >= 8)
2295 return 3072;
2296 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002297 return 768;
2298 else
2299 return 512;
2300}
2301
2302/* Calculate the maximum primary/sprite plane watermark */
2303static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2304 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002305 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002306 enum intel_ddb_partitioning ddb_partitioning,
2307 bool is_sprite)
2308{
2309 unsigned int fifo_size = ilk_display_fifo_size(dev);
2310 unsigned int max;
2311
2312 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002313 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002314 return 0;
2315
2316 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002317 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002318 fifo_size /= INTEL_INFO(dev)->num_pipes;
2319
2320 /*
2321 * For some reason the non self refresh
2322 * FIFO size is only half of the self
2323 * refresh FIFO size on ILK/SNB.
2324 */
2325 if (INTEL_INFO(dev)->gen <= 6)
2326 fifo_size /= 2;
2327 }
2328
Ville Syrjälä240264f2013-08-07 13:29:12 +03002329 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002330 /* level 0 is always calculated with 1:1 split */
2331 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2332 if (is_sprite)
2333 fifo_size *= 5;
2334 fifo_size /= 6;
2335 } else {
2336 fifo_size /= 2;
2337 }
2338 }
2339
2340 /* clamp to max that the registers can hold */
Ville Syrjälä416f4722013-11-02 21:07:46 -07002341 if (INTEL_INFO(dev)->gen >= 8)
2342 max = level == 0 ? 255 : 2047;
2343 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002344 /* IVB/HSW primary/sprite plane watermarks */
2345 max = level == 0 ? 127 : 1023;
2346 else if (!is_sprite)
2347 /* ILK/SNB primary plane watermarks */
2348 max = level == 0 ? 127 : 511;
2349 else
2350 /* ILK/SNB sprite plane watermarks */
2351 max = level == 0 ? 63 : 255;
2352
2353 return min(fifo_size, max);
2354}
2355
2356/* Calculate the maximum cursor plane watermark */
2357static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002358 int level,
2359 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002360{
2361 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002362 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002363 return 64;
2364
2365 /* otherwise just report max that registers can hold */
2366 if (INTEL_INFO(dev)->gen >= 7)
2367 return level == 0 ? 63 : 255;
2368 else
2369 return level == 0 ? 31 : 63;
2370}
2371
2372/* Calculate the maximum FBC watermark */
Ville Syrjälä416f4722013-11-02 21:07:46 -07002373static unsigned int ilk_fbc_wm_max(struct drm_device *dev)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002374{
2375 /* max that registers can hold */
Ville Syrjälä416f4722013-11-02 21:07:46 -07002376 if (INTEL_INFO(dev)->gen >= 8)
2377 return 31;
2378 else
2379 return 15;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002380}
2381
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002382static void ilk_compute_wm_maximums(struct drm_device *dev,
2383 int level,
2384 const struct intel_wm_config *config,
2385 enum intel_ddb_partitioning ddb_partitioning,
2386 struct hsw_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002387{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002388 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2389 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2390 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä416f4722013-11-02 21:07:46 -07002391 max->fbc = ilk_fbc_wm_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002392}
2393
Ville Syrjäläd9395652013-10-09 19:18:10 +03002394static bool ilk_validate_wm_level(int level,
2395 const struct hsw_wm_maximums *max,
2396 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002397{
2398 bool ret;
2399
2400 /* already determined to be invalid? */
2401 if (!result->enable)
2402 return false;
2403
2404 result->enable = result->pri_val <= max->pri &&
2405 result->spr_val <= max->spr &&
2406 result->cur_val <= max->cur;
2407
2408 ret = result->enable;
2409
2410 /*
2411 * HACK until we can pre-compute everything,
2412 * and thus fail gracefully if LP0 watermarks
2413 * are exceeded...
2414 */
2415 if (level == 0 && !result->enable) {
2416 if (result->pri_val > max->pri)
2417 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2418 level, result->pri_val, max->pri);
2419 if (result->spr_val > max->spr)
2420 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2421 level, result->spr_val, max->spr);
2422 if (result->cur_val > max->cur)
2423 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2424 level, result->cur_val, max->cur);
2425
2426 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2427 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2428 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2429 result->enable = true;
2430 }
2431
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002432 return ret;
2433}
2434
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002435static void ilk_compute_wm_level(struct drm_i915_private *dev_priv,
2436 int level,
Ville Syrjäläac830fe2013-08-30 14:30:23 +03002437 const struct hsw_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002438 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002439{
2440 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2441 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2442 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2443
2444 /* WM1+ latency values stored in 0.5us units */
2445 if (level > 0) {
2446 pri_latency *= 5;
2447 spr_latency *= 5;
2448 cur_latency *= 5;
2449 }
2450
2451 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2452 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2453 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2454 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2455 result->enable = true;
2456}
2457
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002458static uint32_t
2459hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002460{
2461 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002462 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002463 struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002464 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002465
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002466 if (!intel_crtc_active(crtc))
2467 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002468
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002469 /* The WM are computed with base on how long it takes to fill a single
2470 * row at the given clock rate, multiplied by 8.
2471 * */
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002472 linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8, mode->clock);
2473 ips_linetime = DIV_ROUND_CLOSEST(mode->htotal * 1000 * 8,
2474 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002475
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002476 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2477 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002478}
2479
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002480static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[5])
2481{
2482 struct drm_i915_private *dev_priv = dev->dev_private;
2483
2484 if (IS_HASWELL(dev)) {
2485 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2486
2487 wm[0] = (sskpd >> 56) & 0xFF;
2488 if (wm[0] == 0)
2489 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002490 wm[1] = (sskpd >> 4) & 0xFF;
2491 wm[2] = (sskpd >> 12) & 0xFF;
2492 wm[3] = (sskpd >> 20) & 0x1FF;
2493 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002494 } else if (INTEL_INFO(dev)->gen >= 6) {
2495 uint32_t sskpd = I915_READ(MCH_SSKPD);
2496
2497 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2498 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2499 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2500 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002501 } else if (INTEL_INFO(dev)->gen >= 5) {
2502 uint32_t mltr = I915_READ(MLTR_ILK);
2503
2504 /* ILK primary LP0 latency is 700 ns */
2505 wm[0] = 7;
2506 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2507 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002508 }
2509}
2510
Ville Syrjälä53615a52013-08-01 16:18:50 +03002511static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2512{
2513 /* ILK sprite LP0 latency is 1300 ns */
2514 if (INTEL_INFO(dev)->gen == 5)
2515 wm[0] = 13;
2516}
2517
2518static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2519{
2520 /* ILK cursor LP0 latency is 1300 ns */
2521 if (INTEL_INFO(dev)->gen == 5)
2522 wm[0] = 13;
2523
2524 /* WaDoubleCursorLP3Latency:ivb */
2525 if (IS_IVYBRIDGE(dev))
2526 wm[3] *= 2;
2527}
2528
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002529static int ilk_wm_max_level(const struct drm_device *dev)
2530{
2531 /* how many WM levels are we expecting */
2532 if (IS_HASWELL(dev))
2533 return 4;
2534 else if (INTEL_INFO(dev)->gen >= 6)
2535 return 3;
2536 else
2537 return 2;
2538}
2539
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002540static void intel_print_wm_latency(struct drm_device *dev,
2541 const char *name,
2542 const uint16_t wm[5])
2543{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002544 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002545
2546 for (level = 0; level <= max_level; level++) {
2547 unsigned int latency = wm[level];
2548
2549 if (latency == 0) {
2550 DRM_ERROR("%s WM%d latency not provided\n",
2551 name, level);
2552 continue;
2553 }
2554
2555 /* WM1+ latency values in 0.5us units */
2556 if (level > 0)
2557 latency *= 5;
2558
2559 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2560 name, level, wm[level],
2561 latency / 10, latency % 10);
2562 }
2563}
2564
Ville Syrjälä53615a52013-08-01 16:18:50 +03002565static void intel_setup_wm_latency(struct drm_device *dev)
2566{
2567 struct drm_i915_private *dev_priv = dev->dev_private;
2568
2569 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2570
2571 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2572 sizeof(dev_priv->wm.pri_latency));
2573 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2574 sizeof(dev_priv->wm.pri_latency));
2575
2576 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2577 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002578
2579 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2580 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2581 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002582}
2583
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002584static void hsw_compute_wm_parameters(struct drm_crtc *crtc,
2585 struct hsw_pipe_wm_parameters *p,
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002586 struct intel_wm_config *config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002587{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002588 struct drm_device *dev = crtc->dev;
2589 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2590 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002591 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002592
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002593 p->active = intel_crtc_active(crtc);
2594 if (p->active) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002595 p->pipe_htotal = intel_crtc->config.adjusted_mode.htotal;
Ville Syrjälä36587292013-07-05 11:57:16 +03002596 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002597 p->pri.bytes_per_pixel = crtc->fb->bits_per_pixel / 8;
2598 p->cur.bytes_per_pixel = 4;
Ville Syrjälä37327ab2013-09-04 18:25:28 +03002599 p->pri.horiz_pixels = intel_crtc->config.pipe_src_w;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002600 p->cur.horiz_pixels = 64;
2601 /* TODO: for now, assume primary and cursor planes are always enabled. */
2602 p->pri.enabled = true;
2603 p->cur.enabled = true;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002604 }
2605
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002606 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002607 config->num_pipes_active += intel_crtc_active(crtc);
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002608
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002609 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2610 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002611
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002612 if (intel_plane->pipe == pipe)
2613 p->spr = intel_plane->wm;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002614
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002615 config->sprites_enabled |= intel_plane->wm.enabled;
2616 config->sprites_scaled |= intel_plane->wm.scaled;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002617 }
2618}
2619
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002620/* Compute new watermarks for the pipe */
2621static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
2622 const struct hsw_pipe_wm_parameters *params,
2623 struct intel_pipe_wm *pipe_wm)
2624{
2625 struct drm_device *dev = crtc->dev;
2626 struct drm_i915_private *dev_priv = dev->dev_private;
2627 int level, max_level = ilk_wm_max_level(dev);
2628 /* LP0 watermark maximums depend on this pipe alone */
2629 struct intel_wm_config config = {
2630 .num_pipes_active = 1,
2631 .sprites_enabled = params->spr.enabled,
2632 .sprites_scaled = params->spr.scaled,
2633 };
2634 struct hsw_wm_maximums max;
2635
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002636 /* LP0 watermarks always use 1/2 DDB partitioning */
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002637 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002638
2639 for (level = 0; level <= max_level; level++)
2640 ilk_compute_wm_level(dev_priv, level, params,
2641 &pipe_wm->wm[level]);
2642
2643 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
2644
2645 /* At least LP0 must be valid */
Ville Syrjäläd9395652013-10-09 19:18:10 +03002646 return ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002647}
2648
2649/*
2650 * Merge the watermarks from all active pipes for a specific level.
2651 */
2652static void ilk_merge_wm_level(struct drm_device *dev,
2653 int level,
2654 struct intel_wm_level *ret_wm)
2655{
2656 const struct intel_crtc *intel_crtc;
2657
2658 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head) {
2659 const struct intel_wm_level *wm =
2660 &intel_crtc->wm.active.wm[level];
2661
2662 if (!wm->enable)
2663 return;
2664
2665 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2666 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2667 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2668 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2669 }
2670
2671 ret_wm->enable = true;
2672}
2673
2674/*
2675 * Merge all low power watermarks for all active pipes.
2676 */
2677static void ilk_wm_merge(struct drm_device *dev,
2678 const struct hsw_wm_maximums *max,
2679 struct intel_pipe_wm *merged)
2680{
2681 int level, max_level = ilk_wm_max_level(dev);
2682
2683 merged->fbc_wm_enabled = true;
2684
2685 /* merge each WM1+ level */
2686 for (level = 1; level <= max_level; level++) {
2687 struct intel_wm_level *wm = &merged->wm[level];
2688
2689 ilk_merge_wm_level(dev, level, wm);
2690
Ville Syrjäläd9395652013-10-09 19:18:10 +03002691 if (!ilk_validate_wm_level(level, max, wm))
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002692 break;
2693
2694 /*
2695 * The spec says it is preferred to disable
2696 * FBC WMs instead of disabling a WM level.
2697 */
2698 if (wm->fbc_val > max->fbc) {
2699 merged->fbc_wm_enabled = false;
2700 wm->fbc_val = 0;
2701 }
2702 }
2703}
2704
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002705static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2706{
2707 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2708 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2709}
2710
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002711static void hsw_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002712 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002713 enum intel_ddb_partitioning partitioning,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002714 struct hsw_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002715{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002716 struct intel_crtc *intel_crtc;
2717 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002718
Ville Syrjälä0362c782013-10-09 19:17:57 +03002719 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002720 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002721
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002722 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002723 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002724 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002725
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002726 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002727
Ville Syrjälä0362c782013-10-09 19:17:57 +03002728 r = &merged->wm[level];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002729 if (!r->enable)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002730 break;
2731
Ville Syrjälä416f4722013-11-02 21:07:46 -07002732 results->wm_lp[wm_lp - 1] = WM3_LP_EN |
2733 ((level * 2) << WM1_LP_LATENCY_SHIFT) |
2734 (r->pri_val << WM1_LP_SR_SHIFT) |
2735 r->cur_val;
2736
2737 if (INTEL_INFO(dev)->gen >= 8)
2738 results->wm_lp[wm_lp - 1] |=
2739 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2740 else
2741 results->wm_lp[wm_lp - 1] |=
2742 r->fbc_val << WM1_LP_FBC_SHIFT;
2743
Paulo Zanonicca32e92013-05-31 11:45:06 -03002744 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
2745 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002746
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002747 /* LP0 register values */
2748 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head) {
2749 enum pipe pipe = intel_crtc->pipe;
2750 const struct intel_wm_level *r =
2751 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002752
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002753 if (WARN_ON(!r->enable))
2754 continue;
2755
2756 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2757
2758 results->wm_pipe[pipe] =
2759 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2760 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2761 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002762 }
2763}
2764
Paulo Zanoni861f3382013-05-31 10:19:21 -03002765/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2766 * case both are at the same level. Prefer r1 in case they're the same. */
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002767static struct intel_pipe_wm *hsw_find_best_result(struct drm_device *dev,
2768 struct intel_pipe_wm *r1,
2769 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002770{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002771 int level, max_level = ilk_wm_max_level(dev);
2772 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002773
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002774 for (level = 1; level <= max_level; level++) {
2775 if (r1->wm[level].enable)
2776 level1 = level;
2777 if (r2->wm[level].enable)
2778 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002779 }
2780
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002781 if (level1 == level2) {
2782 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002783 return r2;
2784 else
2785 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002786 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002787 return r1;
2788 } else {
2789 return r2;
2790 }
2791}
2792
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002793/* dirty bits used to track which watermarks need changes */
2794#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2795#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2796#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2797#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2798#define WM_DIRTY_FBC (1 << 24)
2799#define WM_DIRTY_DDB (1 << 25)
2800
2801static unsigned int ilk_compute_wm_dirty(struct drm_device *dev,
2802 const struct hsw_wm_values *old,
2803 const struct hsw_wm_values *new)
2804{
2805 unsigned int dirty = 0;
2806 enum pipe pipe;
2807 int wm_lp;
2808
2809 for_each_pipe(pipe) {
2810 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2811 dirty |= WM_DIRTY_LINETIME(pipe);
2812 /* Must disable LP1+ watermarks too */
2813 dirty |= WM_DIRTY_LP_ALL;
2814 }
2815
2816 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2817 dirty |= WM_DIRTY_PIPE(pipe);
2818 /* Must disable LP1+ watermarks too */
2819 dirty |= WM_DIRTY_LP_ALL;
2820 }
2821 }
2822
2823 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2824 dirty |= WM_DIRTY_FBC;
2825 /* Must disable LP1+ watermarks too */
2826 dirty |= WM_DIRTY_LP_ALL;
2827 }
2828
2829 if (old->partitioning != new->partitioning) {
2830 dirty |= WM_DIRTY_DDB;
2831 /* Must disable LP1+ watermarks too */
2832 dirty |= WM_DIRTY_LP_ALL;
2833 }
2834
2835 /* LP1+ watermarks already deemed dirty, no need to continue */
2836 if (dirty & WM_DIRTY_LP_ALL)
2837 return dirty;
2838
2839 /* Find the lowest numbered LP1+ watermark in need of an update... */
2840 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2841 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2842 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2843 break;
2844 }
2845
2846 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2847 for (; wm_lp <= 3; wm_lp++)
2848 dirty |= WM_DIRTY_LP(wm_lp);
2849
2850 return dirty;
2851}
2852
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002853/*
2854 * The spec says we shouldn't write when we don't need, because every write
2855 * causes WMs to be re-evaluated, expending some power.
2856 */
2857static void hsw_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002858 struct hsw_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002859{
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002860 struct hsw_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002861 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002862 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002863
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002864 dirty = ilk_compute_wm_dirty(dev_priv->dev, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002865 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002866 return;
2867
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002868 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002869 I915_WRITE(WM3_LP_ILK, 0);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002870 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002871 I915_WRITE(WM2_LP_ILK, 0);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002872 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002873 I915_WRITE(WM1_LP_ILK, 0);
2874
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002875 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002876 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002877 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002878 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002879 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002880 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2881
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002882 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002883 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002884 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002885 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002886 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002887 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2888
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002889 if (dirty & WM_DIRTY_DDB) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002890 val = I915_READ(WM_MISC);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002891 if (results->partitioning == INTEL_DDB_PART_1_2)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002892 val &= ~WM_MISC_DATA_PARTITION_5_6;
2893 else
2894 val |= WM_MISC_DATA_PARTITION_5_6;
2895 I915_WRITE(WM_MISC, val);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002896 }
2897
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002898 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002899 val = I915_READ(DISP_ARB_CTL);
2900 if (results->enable_fbc_wm)
2901 val &= ~DISP_FBC_WM_DIS;
2902 else
2903 val |= DISP_FBC_WM_DIS;
2904 I915_WRITE(DISP_ARB_CTL, val);
2905 }
2906
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002907 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp_spr[0] != results->wm_lp_spr[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002908 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002909 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002910 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03002911 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002912 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2913
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002914 if (dirty & WM_DIRTY_LP(1) && results->wm_lp[0] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002915 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002916 if (dirty & WM_DIRTY_LP(2) && results->wm_lp[1] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002917 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002918 if (dirty & WM_DIRTY_LP(3) && results->wm_lp[2] != 0)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002919 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002920
2921 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002922}
2923
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002924static void haswell_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002925{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002926 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002927 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002928 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002929 struct hsw_wm_maximums max;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002930 struct hsw_pipe_wm_parameters params = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002931 struct hsw_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002932 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002933 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002934 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002935 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002936
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002937 hsw_compute_wm_parameters(crtc, &params, &config);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002938
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002939 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
2940
2941 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
2942 return;
2943
2944 intel_crtc->wm.active = pipe_wm;
2945
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002946 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002947 ilk_wm_merge(dev, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03002948
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002949 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03002950 if (INTEL_INFO(dev)->gen >= 7 &&
2951 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002952 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03002953 ilk_wm_merge(dev, &max, &lp_wm_5_6);
2954
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002955 best_lp_wm = hsw_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03002956 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002957 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002958 }
2959
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002960 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03002961 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002962
Ville Syrjälä609cede2013-10-09 19:18:03 +03002963 hsw_compute_wm_results(dev, best_lp_wm, partitioning, &results);
2964
2965 hsw_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002966}
2967
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002968static void haswell_update_sprite_wm(struct drm_plane *plane,
2969 struct drm_crtc *crtc,
Paulo Zanoni526682e2013-05-24 11:59:18 -03002970 uint32_t sprite_width, int pixel_size,
Ville Syrjäläbdd57d02013-07-05 11:57:13 +03002971 bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03002972{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002973 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03002974
Ville Syrjäläadf3d352013-08-06 22:24:11 +03002975 intel_plane->wm.enabled = enabled;
2976 intel_plane->wm.scaled = scaled;
2977 intel_plane->wm.horiz_pixels = sprite_width;
2978 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03002979
Ville Syrjälä46ba6142013-09-10 11:40:40 +03002980 haswell_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03002981}
2982
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002983static bool
2984sandybridge_compute_sprite_wm(struct drm_device *dev, int plane,
2985 uint32_t sprite_width, int pixel_size,
2986 const struct intel_watermark_params *display,
2987 int display_latency_ns, int *sprite_wm)
2988{
2989 struct drm_crtc *crtc;
2990 int clock;
2991 int entries, tlb_miss;
2992
2993 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +00002994 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002995 *sprite_wm = display->guard_size;
2996 return false;
2997 }
2998
Damien Lespiau241bfc32013-09-25 16:45:37 +01002999 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003000
3001 /* Use the small buffer method to calculate the sprite watermark */
3002 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
3003 tlb_miss = display->fifo_size*display->cacheline_size -
3004 sprite_width * 8;
3005 if (tlb_miss > 0)
3006 entries += tlb_miss;
3007 entries = DIV_ROUND_UP(entries, display->cacheline_size);
3008 *sprite_wm = entries + display->guard_size;
3009 if (*sprite_wm > (int)display->max_wm)
3010 *sprite_wm = display->max_wm;
3011
3012 return true;
3013}
3014
3015static bool
3016sandybridge_compute_sprite_srwm(struct drm_device *dev, int plane,
3017 uint32_t sprite_width, int pixel_size,
3018 const struct intel_watermark_params *display,
3019 int latency_ns, int *sprite_wm)
3020{
3021 struct drm_crtc *crtc;
3022 unsigned long line_time_us;
3023 int clock;
3024 int line_count, line_size;
3025 int small, large;
3026 int entries;
3027
3028 if (!latency_ns) {
3029 *sprite_wm = 0;
3030 return false;
3031 }
3032
3033 crtc = intel_get_crtc_for_plane(dev, plane);
Damien Lespiau241bfc32013-09-25 16:45:37 +01003034 clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003035 if (!clock) {
3036 *sprite_wm = 0;
3037 return false;
3038 }
3039
3040 line_time_us = (sprite_width * 1000) / clock;
3041 if (!line_time_us) {
3042 *sprite_wm = 0;
3043 return false;
3044 }
3045
3046 line_count = (latency_ns / line_time_us + 1000) / 1000;
3047 line_size = sprite_width * pixel_size;
3048
3049 /* Use the minimum of the small and large buffer method for primary */
3050 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
3051 large = line_count * line_size;
3052
3053 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
3054 *sprite_wm = entries + display->guard_size;
3055
3056 return *sprite_wm > 0x3ff ? false : true;
3057}
3058
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003059static void sandybridge_update_sprite_wm(struct drm_plane *plane,
3060 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003061 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003062 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003063{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003064 struct drm_device *dev = plane->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003065 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003066 int pipe = to_intel_plane(plane)->pipe;
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003067 int latency = dev_priv->wm.spr_latency[0] * 100; /* In unit 0.1us */
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003068 u32 val;
3069 int sprite_wm, reg;
3070 int ret;
3071
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003072 if (!enabled)
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003073 return;
3074
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003075 switch (pipe) {
3076 case 0:
3077 reg = WM0_PIPEA_ILK;
3078 break;
3079 case 1:
3080 reg = WM0_PIPEB_ILK;
3081 break;
3082 case 2:
3083 reg = WM0_PIPEC_IVB;
3084 break;
3085 default:
3086 return; /* bad pipe */
3087 }
3088
3089 ret = sandybridge_compute_sprite_wm(dev, pipe, sprite_width, pixel_size,
3090 &sandybridge_display_wm_info,
3091 latency, &sprite_wm);
3092 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003093 DRM_DEBUG_KMS("failed to compute sprite wm for pipe %c\n",
3094 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003095 return;
3096 }
3097
3098 val = I915_READ(reg);
3099 val &= ~WM0_PIPE_SPRITE_MASK;
3100 I915_WRITE(reg, val | (sprite_wm << WM0_PIPE_SPRITE_SHIFT));
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003101 DRM_DEBUG_KMS("sprite watermarks For pipe %c - %d\n", pipe_name(pipe), sprite_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003102
3103
3104 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3105 pixel_size,
3106 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003107 dev_priv->wm.spr_latency[1] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003108 &sprite_wm);
3109 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003110 DRM_DEBUG_KMS("failed to compute sprite lp1 wm on pipe %c\n",
3111 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003112 return;
3113 }
3114 I915_WRITE(WM1S_LP_ILK, sprite_wm);
3115
3116 /* Only IVB has two more LP watermarks for sprite */
3117 if (!IS_IVYBRIDGE(dev))
3118 return;
3119
3120 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3121 pixel_size,
3122 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003123 dev_priv->wm.spr_latency[2] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003124 &sprite_wm);
3125 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003126 DRM_DEBUG_KMS("failed to compute sprite lp2 wm on pipe %c\n",
3127 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003128 return;
3129 }
3130 I915_WRITE(WM2S_LP_IVB, sprite_wm);
3131
3132 ret = sandybridge_compute_sprite_srwm(dev, pipe, sprite_width,
3133 pixel_size,
3134 &sandybridge_display_srwm_info,
Ville Syrjäläb0aea5d2013-08-01 16:18:54 +03003135 dev_priv->wm.spr_latency[3] * 500,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003136 &sprite_wm);
3137 if (!ret) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003138 DRM_DEBUG_KMS("failed to compute sprite lp3 wm on pipe %c\n",
3139 pipe_name(pipe));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003140 return;
3141 }
3142 I915_WRITE(WM3S_LP_IVB, sprite_wm);
3143}
3144
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003145static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3146{
3147 struct drm_device *dev = crtc->dev;
3148 struct drm_i915_private *dev_priv = dev->dev_private;
3149 struct hsw_wm_values *hw = &dev_priv->wm.hw;
3150 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3151 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3152 enum pipe pipe = intel_crtc->pipe;
3153 static const unsigned int wm0_pipe_reg[] = {
3154 [PIPE_A] = WM0_PIPEA_ILK,
3155 [PIPE_B] = WM0_PIPEB_ILK,
3156 [PIPE_C] = WM0_PIPEC_IVB,
3157 };
3158
3159 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
3160 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3161
3162 if (intel_crtc_active(crtc)) {
3163 u32 tmp = hw->wm_pipe[pipe];
3164
3165 /*
3166 * For active pipes LP0 watermark is marked as
3167 * enabled, and LP1+ watermaks as disabled since
3168 * we can't really reverse compute them in case
3169 * multiple pipes are active.
3170 */
3171 active->wm[0].enable = true;
3172 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3173 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3174 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3175 active->linetime = hw->wm_linetime[pipe];
3176 } else {
3177 int level, max_level = ilk_wm_max_level(dev);
3178
3179 /*
3180 * For inactive pipes, all watermark levels
3181 * should be marked as enabled but zeroed,
3182 * which is what we'd compute them to.
3183 */
3184 for (level = 0; level <= max_level; level++)
3185 active->wm[level].enable = true;
3186 }
3187}
3188
3189void ilk_wm_get_hw_state(struct drm_device *dev)
3190{
3191 struct drm_i915_private *dev_priv = dev->dev_private;
3192 struct hsw_wm_values *hw = &dev_priv->wm.hw;
3193 struct drm_crtc *crtc;
3194
3195 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3196 ilk_pipe_wm_get_hw_state(crtc);
3197
3198 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3199 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3200 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3201
3202 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
3203 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3204 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3205
3206 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3207 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3208
3209 hw->enable_fbc_wm =
3210 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3211}
3212
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003213/**
3214 * intel_update_watermarks - update FIFO watermark values based on current modes
3215 *
3216 * Calculate watermark values for the various WM regs based on current mode
3217 * and plane configuration.
3218 *
3219 * There are several cases to deal with here:
3220 * - normal (i.e. non-self-refresh)
3221 * - self-refresh (SR) mode
3222 * - lines are large relative to FIFO size (buffer can hold up to 2)
3223 * - lines are small relative to FIFO size (buffer can hold more than 2
3224 * lines), so need to account for TLB latency
3225 *
3226 * The normal calculation is:
3227 * watermark = dotclock * bytes per pixel * latency
3228 * where latency is platform & configuration dependent (we assume pessimal
3229 * values here).
3230 *
3231 * The SR calculation is:
3232 * watermark = (trunc(latency/line time)+1) * surface width *
3233 * bytes per pixel
3234 * where
3235 * line time = htotal / dotclock
3236 * surface width = hdisplay for normal plane and 64 for cursor
3237 * and latency is assumed to be high, as above.
3238 *
3239 * The final value programmed to the register should always be rounded up,
3240 * and include an extra 2 entries to account for clock crossings.
3241 *
3242 * We don't use the sprite, so we can ignore that. And on Crestline we have
3243 * to set the non-SR watermarks to 8.
3244 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003245void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003246{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003247 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003248
3249 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003250 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003251}
3252
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003253void intel_update_sprite_watermarks(struct drm_plane *plane,
3254 struct drm_crtc *crtc,
Paulo Zanoni4c4ff432013-05-24 11:59:17 -03003255 uint32_t sprite_width, int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003256 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003257{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003258 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003259
3260 if (dev_priv->display.update_sprite_wm)
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003261 dev_priv->display.update_sprite_wm(plane, crtc, sprite_width,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003262 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003263}
3264
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003265static struct drm_i915_gem_object *
3266intel_alloc_context_page(struct drm_device *dev)
3267{
3268 struct drm_i915_gem_object *ctx;
3269 int ret;
3270
3271 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
3272
3273 ctx = i915_gem_alloc_object(dev, 4096);
3274 if (!ctx) {
3275 DRM_DEBUG("failed to alloc power context, RC6 disabled\n");
3276 return NULL;
3277 }
3278
Ben Widawskyc37e2202013-07-31 16:59:58 -07003279 ret = i915_gem_obj_ggtt_pin(ctx, 4096, true, false);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003280 if (ret) {
3281 DRM_ERROR("failed to pin power context: %d\n", ret);
3282 goto err_unref;
3283 }
3284
3285 ret = i915_gem_object_set_to_gtt_domain(ctx, 1);
3286 if (ret) {
3287 DRM_ERROR("failed to set-domain on power context: %d\n", ret);
3288 goto err_unpin;
3289 }
3290
3291 return ctx;
3292
3293err_unpin:
3294 i915_gem_object_unpin(ctx);
3295err_unref:
3296 drm_gem_object_unreference(&ctx->base);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003297 return NULL;
3298}
3299
Daniel Vetter92703882012-08-09 16:46:01 +02003300/**
3301 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003302 */
3303DEFINE_SPINLOCK(mchdev_lock);
3304
3305/* Global for IPS driver to get at the current i915 device. Protected by
3306 * mchdev_lock. */
3307static struct drm_i915_private *i915_mch_dev;
3308
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003309bool ironlake_set_drps(struct drm_device *dev, u8 val)
3310{
3311 struct drm_i915_private *dev_priv = dev->dev_private;
3312 u16 rgvswctl;
3313
Daniel Vetter92703882012-08-09 16:46:01 +02003314 assert_spin_locked(&mchdev_lock);
3315
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003316 rgvswctl = I915_READ16(MEMSWCTL);
3317 if (rgvswctl & MEMCTL_CMD_STS) {
3318 DRM_DEBUG("gpu busy, RCS change rejected\n");
3319 return false; /* still busy with another command */
3320 }
3321
3322 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3323 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3324 I915_WRITE16(MEMSWCTL, rgvswctl);
3325 POSTING_READ16(MEMSWCTL);
3326
3327 rgvswctl |= MEMCTL_CMD_STS;
3328 I915_WRITE16(MEMSWCTL, rgvswctl);
3329
3330 return true;
3331}
3332
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003333static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003334{
3335 struct drm_i915_private *dev_priv = dev->dev_private;
3336 u32 rgvmodectl = I915_READ(MEMMODECTL);
3337 u8 fmax, fmin, fstart, vstart;
3338
Daniel Vetter92703882012-08-09 16:46:01 +02003339 spin_lock_irq(&mchdev_lock);
3340
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003341 /* Enable temp reporting */
3342 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3343 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3344
3345 /* 100ms RC evaluation intervals */
3346 I915_WRITE(RCUPEI, 100000);
3347 I915_WRITE(RCDNEI, 100000);
3348
3349 /* Set max/min thresholds to 90ms and 80ms respectively */
3350 I915_WRITE(RCBMAXAVG, 90000);
3351 I915_WRITE(RCBMINAVG, 80000);
3352
3353 I915_WRITE(MEMIHYST, 1);
3354
3355 /* Set up min, max, and cur for interrupt handling */
3356 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3357 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3358 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3359 MEMMODE_FSTART_SHIFT;
3360
3361 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3362 PXVFREQ_PX_SHIFT;
3363
Daniel Vetter20e4d402012-08-08 23:35:39 +02003364 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3365 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003366
Daniel Vetter20e4d402012-08-08 23:35:39 +02003367 dev_priv->ips.max_delay = fstart;
3368 dev_priv->ips.min_delay = fmin;
3369 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003370
3371 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3372 fmax, fmin, fstart);
3373
3374 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3375
3376 /*
3377 * Interrupts will be enabled in ironlake_irq_postinstall
3378 */
3379
3380 I915_WRITE(VIDSTART, vstart);
3381 POSTING_READ(VIDSTART);
3382
3383 rgvmodectl |= MEMMODE_SWMODE_EN;
3384 I915_WRITE(MEMMODECTL, rgvmodectl);
3385
Daniel Vetter92703882012-08-09 16:46:01 +02003386 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003387 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003388 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003389
3390 ironlake_set_drps(dev, fstart);
3391
Daniel Vetter20e4d402012-08-08 23:35:39 +02003392 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003393 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003394 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3395 dev_priv->ips.last_count2 = I915_READ(0x112f4);
3396 getrawmonotonic(&dev_priv->ips.last_time2);
Daniel Vetter92703882012-08-09 16:46:01 +02003397
3398 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003399}
3400
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003401static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003402{
3403 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003404 u16 rgvswctl;
3405
3406 spin_lock_irq(&mchdev_lock);
3407
3408 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003409
3410 /* Ack interrupts, disable EFC interrupt */
3411 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3412 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3413 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3414 I915_WRITE(DEIIR, DE_PCU_EVENT);
3415 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3416
3417 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003418 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003419 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003420 rgvswctl |= MEMCTL_CMD_STS;
3421 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003422 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003423
Daniel Vetter92703882012-08-09 16:46:01 +02003424 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003425}
3426
Daniel Vetteracbe9472012-07-26 11:50:05 +02003427/* There's a funny hw issue where the hw returns all 0 when reading from
3428 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3429 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3430 * all limits and the gpu stuck at whatever frequency it is at atm).
3431 */
Daniel Vetter65bccb52012-08-08 17:42:52 +02003432static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 *val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003433{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003434 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003435
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003436 limits = 0;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003437
3438 if (*val >= dev_priv->rps.max_delay)
3439 *val = dev_priv->rps.max_delay;
3440 limits |= dev_priv->rps.max_delay << 24;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003441
Daniel Vetter20b46e52012-07-26 11:16:14 +02003442 /* Only set the down limit when we've reached the lowest level to avoid
3443 * getting more interrupts, otherwise leave this clear. This prevents a
3444 * race in the hw when coming out of rc6: There's a tiny window where
3445 * the hw runs at the minimal clock before selecting the desired
3446 * frequency, if the down threshold expires in that window we will not
3447 * receive a down interrupt. */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003448 if (*val <= dev_priv->rps.min_delay) {
3449 *val = dev_priv->rps.min_delay;
3450 limits |= dev_priv->rps.min_delay << 16;
Daniel Vetter20b46e52012-07-26 11:16:14 +02003451 }
3452
3453 return limits;
3454}
3455
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003456static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
3457{
3458 int new_power;
3459
3460 new_power = dev_priv->rps.power;
3461 switch (dev_priv->rps.power) {
3462 case LOW_POWER:
3463 if (val > dev_priv->rps.rpe_delay + 1 && val > dev_priv->rps.cur_delay)
3464 new_power = BETWEEN;
3465 break;
3466
3467 case BETWEEN:
3468 if (val <= dev_priv->rps.rpe_delay && val < dev_priv->rps.cur_delay)
3469 new_power = LOW_POWER;
3470 else if (val >= dev_priv->rps.rp0_delay && val > dev_priv->rps.cur_delay)
3471 new_power = HIGH_POWER;
3472 break;
3473
3474 case HIGH_POWER:
3475 if (val < (dev_priv->rps.rp1_delay + dev_priv->rps.rp0_delay) >> 1 && val < dev_priv->rps.cur_delay)
3476 new_power = BETWEEN;
3477 break;
3478 }
3479 /* Max/min bins are special */
3480 if (val == dev_priv->rps.min_delay)
3481 new_power = LOW_POWER;
3482 if (val == dev_priv->rps.max_delay)
3483 new_power = HIGH_POWER;
3484 if (new_power == dev_priv->rps.power)
3485 return;
3486
3487 /* Note the units here are not exactly 1us, but 1280ns. */
3488 switch (new_power) {
3489 case LOW_POWER:
3490 /* Upclock if more than 95% busy over 16ms */
3491 I915_WRITE(GEN6_RP_UP_EI, 12500);
3492 I915_WRITE(GEN6_RP_UP_THRESHOLD, 11800);
3493
3494 /* Downclock if less than 85% busy over 32ms */
3495 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3496 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 21250);
3497
3498 I915_WRITE(GEN6_RP_CONTROL,
3499 GEN6_RP_MEDIA_TURBO |
3500 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3501 GEN6_RP_MEDIA_IS_GFX |
3502 GEN6_RP_ENABLE |
3503 GEN6_RP_UP_BUSY_AVG |
3504 GEN6_RP_DOWN_IDLE_AVG);
3505 break;
3506
3507 case BETWEEN:
3508 /* Upclock if more than 90% busy over 13ms */
3509 I915_WRITE(GEN6_RP_UP_EI, 10250);
3510 I915_WRITE(GEN6_RP_UP_THRESHOLD, 9225);
3511
3512 /* Downclock if less than 75% busy over 32ms */
3513 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3514 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 18750);
3515
3516 I915_WRITE(GEN6_RP_CONTROL,
3517 GEN6_RP_MEDIA_TURBO |
3518 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3519 GEN6_RP_MEDIA_IS_GFX |
3520 GEN6_RP_ENABLE |
3521 GEN6_RP_UP_BUSY_AVG |
3522 GEN6_RP_DOWN_IDLE_AVG);
3523 break;
3524
3525 case HIGH_POWER:
3526 /* Upclock if more than 85% busy over 10ms */
3527 I915_WRITE(GEN6_RP_UP_EI, 8000);
3528 I915_WRITE(GEN6_RP_UP_THRESHOLD, 6800);
3529
3530 /* Downclock if less than 60% busy over 32ms */
3531 I915_WRITE(GEN6_RP_DOWN_EI, 25000);
3532 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 15000);
3533
3534 I915_WRITE(GEN6_RP_CONTROL,
3535 GEN6_RP_MEDIA_TURBO |
3536 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3537 GEN6_RP_MEDIA_IS_GFX |
3538 GEN6_RP_ENABLE |
3539 GEN6_RP_UP_BUSY_AVG |
3540 GEN6_RP_DOWN_IDLE_AVG);
3541 break;
3542 }
3543
3544 dev_priv->rps.power = new_power;
3545 dev_priv->rps.last_adj = 0;
3546}
3547
Daniel Vetter20b46e52012-07-26 11:16:14 +02003548void gen6_set_rps(struct drm_device *dev, u8 val)
3549{
3550 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter65bccb52012-08-08 17:42:52 +02003551 u32 limits = gen6_rps_limits(dev_priv, &val);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003552
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003553 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky79249632012-09-07 19:43:42 -07003554 WARN_ON(val > dev_priv->rps.max_delay);
3555 WARN_ON(val < dev_priv->rps.min_delay);
Daniel Vetter004777c2012-08-09 15:07:01 +02003556
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003557 if (val == dev_priv->rps.cur_delay)
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003558 return;
3559
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003560 gen6_set_rps_thresholds(dev_priv, val);
3561
Rodrigo Vivi92bd1bf2013-03-25 17:55:49 -03003562 if (IS_HASWELL(dev))
3563 I915_WRITE(GEN6_RPNSWREQ,
3564 HSW_FREQUENCY(val));
3565 else
3566 I915_WRITE(GEN6_RPNSWREQ,
3567 GEN6_FREQUENCY(val) |
3568 GEN6_OFFSET(0) |
3569 GEN6_AGGRESSIVE_TURBO);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003570
3571 /* Make sure we continue to get interrupts
3572 * until we hit the minimum or maximum frequencies.
3573 */
3574 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, limits);
3575
Ben Widawskyd5570a72012-09-07 19:43:41 -07003576 POSTING_READ(GEN6_RPNSWREQ);
3577
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003578 dev_priv->rps.cur_delay = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02003579
3580 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003581}
3582
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003583void gen6_rps_idle(struct drm_i915_private *dev_priv)
3584{
3585 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01003586 if (dev_priv->rps.enabled) {
3587 if (dev_priv->info->is_valleyview)
3588 valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
3589 else
3590 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
3591 dev_priv->rps.last_adj = 0;
3592 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003593 mutex_unlock(&dev_priv->rps.hw_lock);
3594}
3595
3596void gen6_rps_boost(struct drm_i915_private *dev_priv)
3597{
3598 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01003599 if (dev_priv->rps.enabled) {
3600 if (dev_priv->info->is_valleyview)
3601 valleyview_set_rps(dev_priv->dev, dev_priv->rps.max_delay);
3602 else
3603 gen6_set_rps(dev_priv->dev, dev_priv->rps.max_delay);
3604 dev_priv->rps.last_adj = 0;
3605 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003606 mutex_unlock(&dev_priv->rps.hw_lock);
3607}
3608
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003609/*
3610 * Wait until the previous freq change has completed,
3611 * or the timeout elapsed, and then update our notion
3612 * of the current GPU frequency.
3613 */
3614static void vlv_update_rps_cur_delay(struct drm_i915_private *dev_priv)
3615{
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003616 u32 pval;
3617
3618 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3619
Ville Syrjäläe8474402013-06-26 17:43:24 +03003620 if (wait_for(((pval = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS)) & GENFREQSTATUS) == 0, 10))
3621 DRM_DEBUG_DRIVER("timed out waiting for Punit\n");
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003622
3623 pval >>= 8;
3624
3625 if (pval != dev_priv->rps.cur_delay)
3626 DRM_DEBUG_DRIVER("Punit overrode GPU freq: %d MHz (%u) requested, but got %d Mhz (%u)\n",
3627 vlv_gpu_freq(dev_priv->mem_freq, dev_priv->rps.cur_delay),
3628 dev_priv->rps.cur_delay,
3629 vlv_gpu_freq(dev_priv->mem_freq, pval), pval);
3630
3631 dev_priv->rps.cur_delay = pval;
3632}
3633
Jesse Barnes0a073b82013-04-17 15:54:58 -07003634void valleyview_set_rps(struct drm_device *dev, u8 val)
3635{
3636 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7a670922013-06-25 19:21:06 +03003637
3638 gen6_rps_limits(dev_priv, &val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003639
3640 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
3641 WARN_ON(val > dev_priv->rps.max_delay);
3642 WARN_ON(val < dev_priv->rps.min_delay);
3643
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003644 vlv_update_rps_cur_delay(dev_priv);
3645
Ville Syrjälä73008b92013-06-25 19:21:01 +03003646 DRM_DEBUG_DRIVER("GPU freq request from %d MHz (%u) to %d MHz (%u)\n",
Jesse Barnes0a073b82013-04-17 15:54:58 -07003647 vlv_gpu_freq(dev_priv->mem_freq,
3648 dev_priv->rps.cur_delay),
Ville Syrjälä73008b92013-06-25 19:21:01 +03003649 dev_priv->rps.cur_delay,
3650 vlv_gpu_freq(dev_priv->mem_freq, val), val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003651
3652 if (val == dev_priv->rps.cur_delay)
3653 return;
3654
Jani Nikulaae992582013-05-22 15:36:19 +03003655 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003656
Ville Syrjälä80814ae2013-06-25 19:21:02 +03003657 dev_priv->rps.cur_delay = val;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003658
3659 trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv->mem_freq, val));
3660}
3661
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003662static void gen6_disable_rps_interrupts(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003663{
3664 struct drm_i915_private *dev_priv = dev->dev_private;
3665
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003666 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Ben Widawsky48484052013-05-28 19:22:27 -07003667 I915_WRITE(GEN6_PMIER, I915_READ(GEN6_PMIER) & ~GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003668 /* Complete PM interrupt masking here doesn't race with the rps work
3669 * item again unmasking PM interrupts because that is using a different
3670 * register (PMIMR) to mask PM interrupts. The only risk is in leaving
3671 * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */
3672
Daniel Vetter59cdb632013-07-04 23:35:28 +02003673 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003674 dev_priv->rps.pm_iir = 0;
Daniel Vetter59cdb632013-07-04 23:35:28 +02003675 spin_unlock_irq(&dev_priv->irq_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003676
Ben Widawsky48484052013-05-28 19:22:27 -07003677 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003678}
3679
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003680static void gen6_disable_rps(struct drm_device *dev)
3681{
3682 struct drm_i915_private *dev_priv = dev->dev_private;
3683
3684 I915_WRITE(GEN6_RC_CONTROL, 0);
3685 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
3686
3687 gen6_disable_rps_interrupts(dev);
3688}
3689
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003690static void valleyview_disable_rps(struct drm_device *dev)
3691{
3692 struct drm_i915_private *dev_priv = dev->dev_private;
3693
3694 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003695
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003696 gen6_disable_rps_interrupts(dev);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003697
3698 if (dev_priv->vlv_pctx) {
3699 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
3700 dev_priv->vlv_pctx = NULL;
3701 }
Jesse Barnesd20d4f02013-04-23 10:09:28 -07003702}
3703
Ben Widawskydc39fff2013-10-18 12:32:07 -07003704static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
3705{
3706 if (IS_GEN6(dev))
3707 DRM_DEBUG_DRIVER("Sandybridge: deep RC6 disabled\n");
3708
3709 if (IS_HASWELL(dev))
3710 DRM_DEBUG_DRIVER("Haswell: only RC6 available\n");
3711
3712 DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
3713 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
3714 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
3715 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
3716}
3717
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003718int intel_enable_rc6(const struct drm_device *dev)
3719{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01003720 /* No RC6 before Ironlake */
3721 if (INTEL_INFO(dev)->gen < 5)
3722 return 0;
3723
Daniel Vetter456470e2012-08-08 23:35:40 +02003724 /* Respect the kernel parameter if it is set */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003725 if (i915_enable_rc6 >= 0)
3726 return i915_enable_rc6;
3727
Chris Wilson6567d742012-11-10 10:00:06 +00003728 /* Disable RC6 on Ironlake */
3729 if (INTEL_INFO(dev)->gen == 5)
3730 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003731
Ben Widawskydc39fff2013-10-18 12:32:07 -07003732 if (IS_HASWELL(dev))
Daniel Vetter456470e2012-08-08 23:35:40 +02003733 return INTEL_RC6_ENABLE;
Daniel Vetter456470e2012-08-08 23:35:40 +02003734
3735 /* snb/ivb have more than one rc6 state. */
Ben Widawskydc39fff2013-10-18 12:32:07 -07003736 if (INTEL_INFO(dev)->gen == 6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003737 return INTEL_RC6_ENABLE;
Daniel Vetter456470e2012-08-08 23:35:40 +02003738
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003739 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
3740}
3741
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003742static void gen6_enable_rps_interrupts(struct drm_device *dev)
3743{
3744 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003745 u32 enabled_intrs;
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003746
3747 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vettera0b33352013-07-04 23:35:34 +02003748 WARN_ON(dev_priv->rps.pm_iir);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03003749 snb_enable_pm_irq(dev_priv, GEN6_PM_RPS_EVENTS);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003750 I915_WRITE(GEN6_PMIIR, GEN6_PM_RPS_EVENTS);
3751 spin_unlock_irq(&dev_priv->irq_lock);
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003752
Vinit Azadfd547d22013-08-14 13:34:33 -07003753 /* only unmask PM interrupts we need. Mask all others. */
Mika Kuoppalaa9c1f902013-08-22 21:09:00 +03003754 enabled_intrs = GEN6_PM_RPS_EVENTS;
3755
3756 /* IVB and SNB hard hangs on looping batchbuffer
3757 * if GEN6_PM_UP_EI_EXPIRED is masked.
3758 */
3759 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
3760 enabled_intrs |= GEN6_PM_RP_UP_EI_EXPIRED;
3761
3762 I915_WRITE(GEN6_PMINTRMSK, ~enabled_intrs);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003763}
3764
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003765static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003766{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003767 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003768 struct intel_ring_buffer *ring;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003769 u32 rp_state_cap;
3770 u32 gt_perf_status;
Ben Widawsky31643d52012-09-26 10:34:01 -07003771 u32 rc6vids, pcu_mbox, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003772 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003773 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07003774 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003775
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003776 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003777
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003778 /* Here begins a magic sequence of register writes to enable
3779 * auto-downclocking.
3780 *
3781 * Perhaps there might be some value in exposing these to
3782 * userspace...
3783 */
3784 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003785
3786 /* Clear the DBG now so we don't confuse earlier errors */
3787 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
3788 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
3789 I915_WRITE(GTFIFODBG, gtfifodbg);
3790 }
3791
3792 gen6_gt_force_wake_get(dev_priv);
3793
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003794 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
3795 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
3796
Ben Widawsky31c77382013-04-05 14:29:22 -07003797 /* In units of 50MHz */
3798 dev_priv->rps.hw_max = dev_priv->rps.max_delay = rp_state_cap & 0xff;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003799 dev_priv->rps.min_delay = (rp_state_cap >> 16) & 0xff;
3800 dev_priv->rps.rp1_delay = (rp_state_cap >> 8) & 0xff;
3801 dev_priv->rps.rp0_delay = (rp_state_cap >> 0) & 0xff;
3802 dev_priv->rps.rpe_delay = dev_priv->rps.rp1_delay;
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003803 dev_priv->rps.cur_delay = 0;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003804
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003805 /* disable the counters and set deterministic thresholds */
3806 I915_WRITE(GEN6_RC_CONTROL, 0);
3807
3808 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
3809 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
3810 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
3811 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
3812 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
3813
Chris Wilsonb4519512012-05-11 14:29:30 +01003814 for_each_ring(ring, dev_priv, i)
3815 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003816
3817 I915_WRITE(GEN6_RC_SLEEP, 0);
3818 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Stéphane Marchesin351aa562013-08-13 11:55:17 -07003819 if (INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev))
3820 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
3821 else
3822 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08003823 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003824 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
3825
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003826 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003827 rc6_mode = intel_enable_rc6(dev_priv->dev);
3828 if (rc6_mode & INTEL_RC6_ENABLE)
3829 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
3830
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003831 /* We don't use those on Haswell */
3832 if (!IS_HASWELL(dev)) {
3833 if (rc6_mode & INTEL_RC6p_ENABLE)
3834 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003835
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03003836 if (rc6_mode & INTEL_RC6pp_ENABLE)
3837 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
3838 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003839
Ben Widawskydc39fff2013-10-18 12:32:07 -07003840 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003841
3842 I915_WRITE(GEN6_RC_CONTROL,
3843 rc6_mask |
3844 GEN6_RC_CTL_EI_MODE(1) |
3845 GEN6_RC_CTL_HW_ENABLE);
3846
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003847 /* Power down if completely idle for over 50ms */
3848 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003849 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003850
Ben Widawsky42c05262012-09-26 10:34:00 -07003851 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawsky988b36e2013-04-23 17:33:02 -07003852 if (!ret) {
Ben Widawsky42c05262012-09-26 10:34:00 -07003853 pcu_mbox = 0;
3854 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003855 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
Ben Widawsky10e08492013-04-05 14:29:23 -07003856 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskya2b3fc02013-03-19 20:19:56 -07003857 (dev_priv->rps.max_delay & 0xff) * 50,
3858 (pcu_mbox & 0xff) * 50);
Ben Widawsky31c77382013-04-05 14:29:22 -07003859 dev_priv->rps.hw_max = pcu_mbox & 0xff;
Ben Widawsky42c05262012-09-26 10:34:00 -07003860 }
3861 } else {
3862 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003863 }
3864
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003865 dev_priv->rps.power = HIGH_POWER; /* force a reset */
3866 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003867
Daniel Vetter44fc7d52013-07-12 22:43:27 +02003868 gen6_enable_rps_interrupts(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003869
Ben Widawsky31643d52012-09-26 10:34:01 -07003870 rc6vids = 0;
3871 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
3872 if (IS_GEN6(dev) && ret) {
3873 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
3874 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
3875 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
3876 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
3877 rc6vids &= 0xffff00;
3878 rc6vids |= GEN6_ENCODE_RC6_VID(450);
3879 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
3880 if (ret)
3881 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
3882 }
3883
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003884 gen6_gt_force_wake_put(dev_priv);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003885}
3886
Paulo Zanonic67a4702013-08-19 13:18:09 -03003887void gen6_update_ring_freq(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;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003890 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003891 unsigned int gpu_freq;
3892 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003893 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03003894 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003895
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003896 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02003897
Ben Widawskyeda79642013-10-07 17:15:48 -03003898 policy = cpufreq_cpu_get(0);
3899 if (policy) {
3900 max_ia_freq = policy->cpuinfo.max_freq;
3901 cpufreq_cpu_put(policy);
3902 } else {
3903 /*
3904 * Default to measured freq if none found, PCU will ensure we
3905 * don't go over
3906 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003907 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03003908 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003909
3910 /* Convert from kHz to MHz */
3911 max_ia_freq /= 1000;
3912
Ben Widawsky153b4b952013-10-22 22:05:09 -07003913 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07003914 /* convert DDR frequency from units of 266.6MHz to bandwidth */
3915 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01003916
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003917 /*
3918 * For each potential GPU frequency, load a ring frequency we'd like
3919 * to use for memory access. We do this by specifying the IA frequency
3920 * the PCU should use as a reference to determine the ring frequency.
3921 */
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003922 for (gpu_freq = dev_priv->rps.max_delay; gpu_freq >= dev_priv->rps.min_delay;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003923 gpu_freq--) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003924 int diff = dev_priv->rps.max_delay - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01003925 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003926
Chris Wilson3ebecd02013-04-12 19:10:13 +01003927 if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07003928 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01003929 ring_freq = max(min_ring_freq, ring_freq);
3930 /* leave ia_freq as the default, chosen by cpufreq */
3931 } else {
3932 /* On older processors, there is no separate ring
3933 * clock domain, so in order to boost the bandwidth
3934 * of the ring, we need to upclock the CPU (ia_freq).
3935 *
3936 * For GPU frequencies less than 750MHz,
3937 * just use the lowest ring freq.
3938 */
3939 if (gpu_freq < min_freq)
3940 ia_freq = 800;
3941 else
3942 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
3943 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
3944 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003945
Ben Widawsky42c05262012-09-26 10:34:00 -07003946 sandybridge_pcode_write(dev_priv,
3947 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01003948 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
3949 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
3950 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003951 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003952}
3953
Jesse Barnes0a073b82013-04-17 15:54:58 -07003954int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
3955{
3956 u32 val, rp0;
3957
Jani Nikula64936252013-05-22 15:36:20 +03003958 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003959
3960 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
3961 /* Clamp to max */
3962 rp0 = min_t(u32, rp0, 0xea);
3963
3964 return rp0;
3965}
3966
3967static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
3968{
3969 u32 val, rpe;
3970
Jani Nikula64936252013-05-22 15:36:20 +03003971 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003972 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03003973 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07003974 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
3975
3976 return rpe;
3977}
3978
3979int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
3980{
Jani Nikula64936252013-05-22 15:36:20 +03003981 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07003982}
3983
Jesse Barnesc9cddff2013-05-08 10:45:13 -07003984static void valleyview_setup_pctx(struct drm_device *dev)
3985{
3986 struct drm_i915_private *dev_priv = dev->dev_private;
3987 struct drm_i915_gem_object *pctx;
3988 unsigned long pctx_paddr;
3989 u32 pcbr;
3990 int pctx_size = 24*1024;
3991
3992 pcbr = I915_READ(VLV_PCBR);
3993 if (pcbr) {
3994 /* BIOS set it up already, grab the pre-alloc'd space */
3995 int pcbr_offset;
3996
3997 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
3998 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
3999 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02004000 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004001 pctx_size);
4002 goto out;
4003 }
4004
4005 /*
4006 * From the Gunit register HAS:
4007 * The Gfx driver is expected to program this register and ensure
4008 * proper allocation within Gfx stolen memory. For example, this
4009 * register should be programmed such than the PCBR range does not
4010 * overlap with other ranges, such as the frame buffer, protected
4011 * memory, or any other relevant ranges.
4012 */
4013 pctx = i915_gem_object_create_stolen(dev, pctx_size);
4014 if (!pctx) {
4015 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
4016 return;
4017 }
4018
4019 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
4020 I915_WRITE(VLV_PCBR, pctx_paddr);
4021
4022out:
4023 dev_priv->vlv_pctx = pctx;
4024}
4025
Jesse Barnes0a073b82013-04-17 15:54:58 -07004026static void valleyview_enable_rps(struct drm_device *dev)
4027{
4028 struct drm_i915_private *dev_priv = dev->dev_private;
4029 struct intel_ring_buffer *ring;
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004030 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004031 int i;
4032
4033 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
4034
4035 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07004036 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
4037 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004038 I915_WRITE(GTFIFODBG, gtfifodbg);
4039 }
4040
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004041 valleyview_setup_pctx(dev);
4042
Jesse Barnes0a073b82013-04-17 15:54:58 -07004043 gen6_gt_force_wake_get(dev_priv);
4044
4045 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
4046 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
4047 I915_WRITE(GEN6_RP_UP_EI, 66000);
4048 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
4049
4050 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
4051
4052 I915_WRITE(GEN6_RP_CONTROL,
4053 GEN6_RP_MEDIA_TURBO |
4054 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4055 GEN6_RP_MEDIA_IS_GFX |
4056 GEN6_RP_ENABLE |
4057 GEN6_RP_UP_BUSY_AVG |
4058 GEN6_RP_DOWN_IDLE_CONT);
4059
4060 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
4061 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4062 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4063
4064 for_each_ring(ring, dev_priv, i)
4065 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4066
4067 I915_WRITE(GEN6_RC6_THRESHOLD, 0xc350);
4068
4069 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07004070 I915_WRITE(VLV_COUNTER_CONTROL,
4071 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
4072 VLV_MEDIA_RC6_COUNT_EN |
4073 VLV_RENDER_RC6_COUNT_EN));
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004074 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4075 rc6_mode = GEN7_RC_CTL_TO_MODE;
Ben Widawskydc39fff2013-10-18 12:32:07 -07004076
4077 intel_print_rc6_info(dev, rc6_mode);
4078
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07004079 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004080
Jani Nikula64936252013-05-22 15:36:20 +03004081 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes24459662013-05-02 10:48:08 -07004082 switch ((val >> 6) & 3) {
4083 case 0:
4084 case 1:
4085 dev_priv->mem_freq = 800;
4086 break;
4087 case 2:
4088 dev_priv->mem_freq = 1066;
4089 break;
4090 case 3:
4091 dev_priv->mem_freq = 1333;
4092 break;
4093 }
Jesse Barnes0a073b82013-04-17 15:54:58 -07004094 DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
4095
4096 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no");
4097 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
4098
Jesse Barnes0a073b82013-04-17 15:54:58 -07004099 dev_priv->rps.cur_delay = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03004100 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
4101 vlv_gpu_freq(dev_priv->mem_freq,
4102 dev_priv->rps.cur_delay),
4103 dev_priv->rps.cur_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004104
4105 dev_priv->rps.max_delay = valleyview_rps_max_freq(dev_priv);
4106 dev_priv->rps.hw_max = dev_priv->rps.max_delay;
Ville Syrjälä73008b92013-06-25 19:21:01 +03004107 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
4108 vlv_gpu_freq(dev_priv->mem_freq,
4109 dev_priv->rps.max_delay),
4110 dev_priv->rps.max_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004111
Ville Syrjälä73008b92013-06-25 19:21:01 +03004112 dev_priv->rps.rpe_delay = valleyview_rps_rpe_freq(dev_priv);
4113 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
4114 vlv_gpu_freq(dev_priv->mem_freq,
4115 dev_priv->rps.rpe_delay),
4116 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004117
Ville Syrjälä73008b92013-06-25 19:21:01 +03004118 dev_priv->rps.min_delay = valleyview_rps_min_freq(dev_priv);
4119 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
4120 vlv_gpu_freq(dev_priv->mem_freq,
4121 dev_priv->rps.min_delay),
4122 dev_priv->rps.min_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004123
Ville Syrjälä73008b92013-06-25 19:21:01 +03004124 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
4125 vlv_gpu_freq(dev_priv->mem_freq,
4126 dev_priv->rps.rpe_delay),
4127 dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004128
Ville Syrjälä73008b92013-06-25 19:21:01 +03004129 valleyview_set_rps(dev_priv->dev, dev_priv->rps.rpe_delay);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004130
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004131 gen6_enable_rps_interrupts(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004132
4133 gen6_gt_force_wake_put(dev_priv);
4134}
4135
Daniel Vetter930ebb42012-06-29 23:32:16 +02004136void ironlake_teardown_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004137{
4138 struct drm_i915_private *dev_priv = dev->dev_private;
4139
Daniel Vetter3e373942012-11-02 19:55:04 +01004140 if (dev_priv->ips.renderctx) {
4141 i915_gem_object_unpin(dev_priv->ips.renderctx);
4142 drm_gem_object_unreference(&dev_priv->ips.renderctx->base);
4143 dev_priv->ips.renderctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004144 }
4145
Daniel Vetter3e373942012-11-02 19:55:04 +01004146 if (dev_priv->ips.pwrctx) {
4147 i915_gem_object_unpin(dev_priv->ips.pwrctx);
4148 drm_gem_object_unreference(&dev_priv->ips.pwrctx->base);
4149 dev_priv->ips.pwrctx = NULL;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004150 }
4151}
4152
Daniel Vetter930ebb42012-06-29 23:32:16 +02004153static void ironlake_disable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004154{
4155 struct drm_i915_private *dev_priv = dev->dev_private;
4156
4157 if (I915_READ(PWRCTXA)) {
4158 /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */
4159 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT);
4160 wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON),
4161 50);
4162
4163 I915_WRITE(PWRCTXA, 0);
4164 POSTING_READ(PWRCTXA);
4165
4166 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
4167 POSTING_READ(RSTDBYCTL);
4168 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004169}
4170
4171static int ironlake_setup_rc6(struct drm_device *dev)
4172{
4173 struct drm_i915_private *dev_priv = dev->dev_private;
4174
Daniel Vetter3e373942012-11-02 19:55:04 +01004175 if (dev_priv->ips.renderctx == NULL)
4176 dev_priv->ips.renderctx = intel_alloc_context_page(dev);
4177 if (!dev_priv->ips.renderctx)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004178 return -ENOMEM;
4179
Daniel Vetter3e373942012-11-02 19:55:04 +01004180 if (dev_priv->ips.pwrctx == NULL)
4181 dev_priv->ips.pwrctx = intel_alloc_context_page(dev);
4182 if (!dev_priv->ips.pwrctx) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004183 ironlake_teardown_rc6(dev);
4184 return -ENOMEM;
4185 }
4186
4187 return 0;
4188}
4189
Daniel Vetter930ebb42012-06-29 23:32:16 +02004190static void ironlake_enable_rc6(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004191{
4192 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +02004193 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Chris Wilson3e960502012-11-27 16:22:54 +00004194 bool was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004195 int ret;
4196
4197 /* rc6 disabled by default due to repeated reports of hanging during
4198 * boot and resume.
4199 */
4200 if (!intel_enable_rc6(dev))
4201 return;
4202
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004203 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4204
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004205 ret = ironlake_setup_rc6(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004206 if (ret)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004207 return;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004208
Chris Wilson3e960502012-11-27 16:22:54 +00004209 was_interruptible = dev_priv->mm.interruptible;
4210 dev_priv->mm.interruptible = false;
4211
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004212 /*
4213 * GPU can automatically power down the render unit if given a page
4214 * to save state.
4215 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02004216 ret = intel_ring_begin(ring, 6);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004217 if (ret) {
4218 ironlake_teardown_rc6(dev);
Chris Wilson3e960502012-11-27 16:22:54 +00004219 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004220 return;
4221 }
4222
Daniel Vetter6d90c952012-04-26 23:28:05 +02004223 intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN);
4224 intel_ring_emit(ring, MI_SET_CONTEXT);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004225 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) |
Daniel Vetter6d90c952012-04-26 23:28:05 +02004226 MI_MM_SPACE_GTT |
4227 MI_SAVE_EXT_STATE_EN |
4228 MI_RESTORE_EXT_STATE_EN |
4229 MI_RESTORE_INHIBIT);
4230 intel_ring_emit(ring, MI_SUSPEND_FLUSH);
4231 intel_ring_emit(ring, MI_NOOP);
4232 intel_ring_emit(ring, MI_FLUSH);
4233 intel_ring_advance(ring);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004234
4235 /*
4236 * Wait for the command parser to advance past MI_SET_CONTEXT. The HW
4237 * does an implicit flush, combined with MI_FLUSH above, it should be
4238 * safe to assume that renderctx is valid
4239 */
Chris Wilson3e960502012-11-27 16:22:54 +00004240 ret = intel_ring_idle(ring);
4241 dev_priv->mm.interruptible = was_interruptible;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004242 if (ret) {
Jani Nikuladef27a52013-03-12 10:49:19 +02004243 DRM_ERROR("failed to enable ironlake power savings\n");
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004244 ironlake_teardown_rc6(dev);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004245 return;
4246 }
4247
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004248 I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004249 I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT);
Ben Widawskydc39fff2013-10-18 12:32:07 -07004250
4251 intel_print_rc6_info(dev, INTEL_RC6_ENABLE);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004252}
4253
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004254static unsigned long intel_pxfreq(u32 vidfreq)
4255{
4256 unsigned long freq;
4257 int div = (vidfreq & 0x3f0000) >> 16;
4258 int post = (vidfreq & 0x3000) >> 12;
4259 int pre = (vidfreq & 0x7);
4260
4261 if (!pre)
4262 return 0;
4263
4264 freq = ((div * 133333) / ((1<<post) * pre));
4265
4266 return freq;
4267}
4268
Daniel Vettereb48eb02012-04-26 23:28:12 +02004269static const struct cparams {
4270 u16 i;
4271 u16 t;
4272 u16 m;
4273 u16 c;
4274} cparams[] = {
4275 { 1, 1333, 301, 28664 },
4276 { 1, 1066, 294, 24460 },
4277 { 1, 800, 294, 25192 },
4278 { 0, 1333, 276, 27605 },
4279 { 0, 1066, 276, 27605 },
4280 { 0, 800, 231, 23784 },
4281};
4282
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004283static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004284{
4285 u64 total_count, diff, ret;
4286 u32 count1, count2, count3, m = 0, c = 0;
4287 unsigned long now = jiffies_to_msecs(jiffies), diff1;
4288 int i;
4289
Daniel Vetter02d71952012-08-09 16:44:54 +02004290 assert_spin_locked(&mchdev_lock);
4291
Daniel Vetter20e4d402012-08-08 23:35:39 +02004292 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004293
4294 /* Prevent division-by-zero if we are asking too fast.
4295 * Also, we don't get interesting results if we are polling
4296 * faster than once in 10ms, so just return the saved value
4297 * in such cases.
4298 */
4299 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02004300 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004301
4302 count1 = I915_READ(DMIEC);
4303 count2 = I915_READ(DDREC);
4304 count3 = I915_READ(CSIEC);
4305
4306 total_count = count1 + count2 + count3;
4307
4308 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004309 if (total_count < dev_priv->ips.last_count1) {
4310 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004311 diff += total_count;
4312 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004313 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004314 }
4315
4316 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004317 if (cparams[i].i == dev_priv->ips.c_m &&
4318 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02004319 m = cparams[i].m;
4320 c = cparams[i].c;
4321 break;
4322 }
4323 }
4324
4325 diff = div_u64(diff, diff1);
4326 ret = ((m * diff) + c);
4327 ret = div_u64(ret, 10);
4328
Daniel Vetter20e4d402012-08-08 23:35:39 +02004329 dev_priv->ips.last_count1 = total_count;
4330 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004331
Daniel Vetter20e4d402012-08-08 23:35:39 +02004332 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004333
4334 return ret;
4335}
4336
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004337unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
4338{
4339 unsigned long val;
4340
4341 if (dev_priv->info->gen != 5)
4342 return 0;
4343
4344 spin_lock_irq(&mchdev_lock);
4345
4346 val = __i915_chipset_val(dev_priv);
4347
4348 spin_unlock_irq(&mchdev_lock);
4349
4350 return val;
4351}
4352
Daniel Vettereb48eb02012-04-26 23:28:12 +02004353unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
4354{
4355 unsigned long m, x, b;
4356 u32 tsfs;
4357
4358 tsfs = I915_READ(TSFS);
4359
4360 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
4361 x = I915_READ8(TR1);
4362
4363 b = tsfs & TSFS_INTR_MASK;
4364
4365 return ((m * x) / 127) - b;
4366}
4367
4368static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
4369{
4370 static const struct v_table {
4371 u16 vd; /* in .1 mil */
4372 u16 vm; /* in .1 mil */
4373 } v_table[] = {
4374 { 0, 0, },
4375 { 375, 0, },
4376 { 500, 0, },
4377 { 625, 0, },
4378 { 750, 0, },
4379 { 875, 0, },
4380 { 1000, 0, },
4381 { 1125, 0, },
4382 { 4125, 3000, },
4383 { 4125, 3000, },
4384 { 4125, 3000, },
4385 { 4125, 3000, },
4386 { 4125, 3000, },
4387 { 4125, 3000, },
4388 { 4125, 3000, },
4389 { 4125, 3000, },
4390 { 4125, 3000, },
4391 { 4125, 3000, },
4392 { 4125, 3000, },
4393 { 4125, 3000, },
4394 { 4125, 3000, },
4395 { 4125, 3000, },
4396 { 4125, 3000, },
4397 { 4125, 3000, },
4398 { 4125, 3000, },
4399 { 4125, 3000, },
4400 { 4125, 3000, },
4401 { 4125, 3000, },
4402 { 4125, 3000, },
4403 { 4125, 3000, },
4404 { 4125, 3000, },
4405 { 4125, 3000, },
4406 { 4250, 3125, },
4407 { 4375, 3250, },
4408 { 4500, 3375, },
4409 { 4625, 3500, },
4410 { 4750, 3625, },
4411 { 4875, 3750, },
4412 { 5000, 3875, },
4413 { 5125, 4000, },
4414 { 5250, 4125, },
4415 { 5375, 4250, },
4416 { 5500, 4375, },
4417 { 5625, 4500, },
4418 { 5750, 4625, },
4419 { 5875, 4750, },
4420 { 6000, 4875, },
4421 { 6125, 5000, },
4422 { 6250, 5125, },
4423 { 6375, 5250, },
4424 { 6500, 5375, },
4425 { 6625, 5500, },
4426 { 6750, 5625, },
4427 { 6875, 5750, },
4428 { 7000, 5875, },
4429 { 7125, 6000, },
4430 { 7250, 6125, },
4431 { 7375, 6250, },
4432 { 7500, 6375, },
4433 { 7625, 6500, },
4434 { 7750, 6625, },
4435 { 7875, 6750, },
4436 { 8000, 6875, },
4437 { 8125, 7000, },
4438 { 8250, 7125, },
4439 { 8375, 7250, },
4440 { 8500, 7375, },
4441 { 8625, 7500, },
4442 { 8750, 7625, },
4443 { 8875, 7750, },
4444 { 9000, 7875, },
4445 { 9125, 8000, },
4446 { 9250, 8125, },
4447 { 9375, 8250, },
4448 { 9500, 8375, },
4449 { 9625, 8500, },
4450 { 9750, 8625, },
4451 { 9875, 8750, },
4452 { 10000, 8875, },
4453 { 10125, 9000, },
4454 { 10250, 9125, },
4455 { 10375, 9250, },
4456 { 10500, 9375, },
4457 { 10625, 9500, },
4458 { 10750, 9625, },
4459 { 10875, 9750, },
4460 { 11000, 9875, },
4461 { 11125, 10000, },
4462 { 11250, 10125, },
4463 { 11375, 10250, },
4464 { 11500, 10375, },
4465 { 11625, 10500, },
4466 { 11750, 10625, },
4467 { 11875, 10750, },
4468 { 12000, 10875, },
4469 { 12125, 11000, },
4470 { 12250, 11125, },
4471 { 12375, 11250, },
4472 { 12500, 11375, },
4473 { 12625, 11500, },
4474 { 12750, 11625, },
4475 { 12875, 11750, },
4476 { 13000, 11875, },
4477 { 13125, 12000, },
4478 { 13250, 12125, },
4479 { 13375, 12250, },
4480 { 13500, 12375, },
4481 { 13625, 12500, },
4482 { 13750, 12625, },
4483 { 13875, 12750, },
4484 { 14000, 12875, },
4485 { 14125, 13000, },
4486 { 14250, 13125, },
4487 { 14375, 13250, },
4488 { 14500, 13375, },
4489 { 14625, 13500, },
4490 { 14750, 13625, },
4491 { 14875, 13750, },
4492 { 15000, 13875, },
4493 { 15125, 14000, },
4494 { 15250, 14125, },
4495 { 15375, 14250, },
4496 { 15500, 14375, },
4497 { 15625, 14500, },
4498 { 15750, 14625, },
4499 { 15875, 14750, },
4500 { 16000, 14875, },
4501 { 16125, 15000, },
4502 };
4503 if (dev_priv->info->is_mobile)
4504 return v_table[pxvid].vm;
4505 else
4506 return v_table[pxvid].vd;
4507}
4508
Daniel Vetter02d71952012-08-09 16:44:54 +02004509static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004510{
4511 struct timespec now, diff1;
4512 u64 diff;
4513 unsigned long diffms;
4514 u32 count;
4515
Daniel Vetter02d71952012-08-09 16:44:54 +02004516 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004517
4518 getrawmonotonic(&now);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004519 diff1 = timespec_sub(now, dev_priv->ips.last_time2);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004520
4521 /* Don't divide by 0 */
4522 diffms = diff1.tv_sec * 1000 + diff1.tv_nsec / 1000000;
4523 if (!diffms)
4524 return;
4525
4526 count = I915_READ(GFXEC);
4527
Daniel Vetter20e4d402012-08-08 23:35:39 +02004528 if (count < dev_priv->ips.last_count2) {
4529 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004530 diff += count;
4531 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02004532 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004533 }
4534
Daniel Vetter20e4d402012-08-08 23:35:39 +02004535 dev_priv->ips.last_count2 = count;
4536 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004537
4538 /* More magic constants... */
4539 diff = diff * 1181;
4540 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004541 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004542}
4543
Daniel Vetter02d71952012-08-09 16:44:54 +02004544void i915_update_gfx_val(struct drm_i915_private *dev_priv)
4545{
4546 if (dev_priv->info->gen != 5)
4547 return;
4548
Daniel Vetter92703882012-08-09 16:46:01 +02004549 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004550
4551 __i915_update_gfx_val(dev_priv);
4552
Daniel Vetter92703882012-08-09 16:46:01 +02004553 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02004554}
4555
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004556static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02004557{
4558 unsigned long t, corr, state1, corr2, state2;
4559 u32 pxvid, ext_v;
4560
Daniel Vetter02d71952012-08-09 16:44:54 +02004561 assert_spin_locked(&mchdev_lock);
4562
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004563 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_delay * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02004564 pxvid = (pxvid >> 24) & 0x7f;
4565 ext_v = pvid_to_extvid(dev_priv, pxvid);
4566
4567 state1 = ext_v;
4568
4569 t = i915_mch_val(dev_priv);
4570
4571 /* Revel in the empirically derived constants */
4572
4573 /* Correction factor in 1/100000 units */
4574 if (t > 80)
4575 corr = ((t * 2349) + 135940);
4576 else if (t >= 50)
4577 corr = ((t * 964) + 29317);
4578 else /* < 50 */
4579 corr = ((t * 301) + 1004);
4580
4581 corr = corr * ((150142 * state1) / 10000 - 78642);
4582 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02004583 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004584
4585 state2 = (corr2 * state1) / 10000;
4586 state2 /= 100; /* convert to mW */
4587
Daniel Vetter02d71952012-08-09 16:44:54 +02004588 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004589
Daniel Vetter20e4d402012-08-08 23:35:39 +02004590 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004591}
4592
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004593unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
4594{
4595 unsigned long val;
4596
4597 if (dev_priv->info->gen != 5)
4598 return 0;
4599
4600 spin_lock_irq(&mchdev_lock);
4601
4602 val = __i915_gfx_val(dev_priv);
4603
4604 spin_unlock_irq(&mchdev_lock);
4605
4606 return val;
4607}
4608
Daniel Vettereb48eb02012-04-26 23:28:12 +02004609/**
4610 * i915_read_mch_val - return value for IPS use
4611 *
4612 * Calculate and return a value for the IPS driver to use when deciding whether
4613 * we have thermal and power headroom to increase CPU or GPU power budget.
4614 */
4615unsigned long i915_read_mch_val(void)
4616{
4617 struct drm_i915_private *dev_priv;
4618 unsigned long chipset_val, graphics_val, ret = 0;
4619
Daniel Vetter92703882012-08-09 16:46:01 +02004620 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004621 if (!i915_mch_dev)
4622 goto out_unlock;
4623 dev_priv = i915_mch_dev;
4624
Chris Wilsonf531dcb2012-09-25 10:16:12 +01004625 chipset_val = __i915_chipset_val(dev_priv);
4626 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004627
4628 ret = chipset_val + graphics_val;
4629
4630out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004631 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004632
4633 return ret;
4634}
4635EXPORT_SYMBOL_GPL(i915_read_mch_val);
4636
4637/**
4638 * i915_gpu_raise - raise GPU frequency limit
4639 *
4640 * Raise the limit; IPS indicates we have thermal headroom.
4641 */
4642bool i915_gpu_raise(void)
4643{
4644 struct drm_i915_private *dev_priv;
4645 bool ret = true;
4646
Daniel Vetter92703882012-08-09 16:46:01 +02004647 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004648 if (!i915_mch_dev) {
4649 ret = false;
4650 goto out_unlock;
4651 }
4652 dev_priv = i915_mch_dev;
4653
Daniel Vetter20e4d402012-08-08 23:35:39 +02004654 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
4655 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004656
4657out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004658 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004659
4660 return ret;
4661}
4662EXPORT_SYMBOL_GPL(i915_gpu_raise);
4663
4664/**
4665 * i915_gpu_lower - lower GPU frequency limit
4666 *
4667 * IPS indicates we're close to a thermal limit, so throttle back the GPU
4668 * frequency maximum.
4669 */
4670bool i915_gpu_lower(void)
4671{
4672 struct drm_i915_private *dev_priv;
4673 bool ret = true;
4674
Daniel Vetter92703882012-08-09 16:46:01 +02004675 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004676 if (!i915_mch_dev) {
4677 ret = false;
4678 goto out_unlock;
4679 }
4680 dev_priv = i915_mch_dev;
4681
Daniel Vetter20e4d402012-08-08 23:35:39 +02004682 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
4683 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004684
4685out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004686 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004687
4688 return ret;
4689}
4690EXPORT_SYMBOL_GPL(i915_gpu_lower);
4691
4692/**
4693 * i915_gpu_busy - indicate GPU business to IPS
4694 *
4695 * Tell the IPS driver whether or not the GPU is busy.
4696 */
4697bool i915_gpu_busy(void)
4698{
4699 struct drm_i915_private *dev_priv;
Chris Wilsonf047e392012-07-21 12:31:41 +01004700 struct intel_ring_buffer *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004701 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01004702 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004703
Daniel Vetter92703882012-08-09 16:46:01 +02004704 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004705 if (!i915_mch_dev)
4706 goto out_unlock;
4707 dev_priv = i915_mch_dev;
4708
Chris Wilsonf047e392012-07-21 12:31:41 +01004709 for_each_ring(ring, dev_priv, i)
4710 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004711
4712out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004713 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004714
4715 return ret;
4716}
4717EXPORT_SYMBOL_GPL(i915_gpu_busy);
4718
4719/**
4720 * i915_gpu_turbo_disable - disable graphics turbo
4721 *
4722 * Disable graphics turbo by resetting the max frequency and setting the
4723 * current frequency to the default.
4724 */
4725bool i915_gpu_turbo_disable(void)
4726{
4727 struct drm_i915_private *dev_priv;
4728 bool ret = true;
4729
Daniel Vetter92703882012-08-09 16:46:01 +02004730 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004731 if (!i915_mch_dev) {
4732 ret = false;
4733 goto out_unlock;
4734 }
4735 dev_priv = i915_mch_dev;
4736
Daniel Vetter20e4d402012-08-08 23:35:39 +02004737 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02004738
Daniel Vetter20e4d402012-08-08 23:35:39 +02004739 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02004740 ret = false;
4741
4742out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02004743 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004744
4745 return ret;
4746}
4747EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
4748
4749/**
4750 * Tells the intel_ips driver that the i915 driver is now loaded, if
4751 * IPS got loaded first.
4752 *
4753 * This awkward dance is so that neither module has to depend on the
4754 * other in order for IPS to do the appropriate communication of
4755 * GPU turbo limits to i915.
4756 */
4757static void
4758ips_ping_for_i915_load(void)
4759{
4760 void (*link)(void);
4761
4762 link = symbol_get(ips_link_to_i915_driver);
4763 if (link) {
4764 link();
4765 symbol_put(ips_link_to_i915_driver);
4766 }
4767}
4768
4769void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
4770{
Daniel Vetter02d71952012-08-09 16:44:54 +02004771 /* We only register the i915 ips part with intel-ips once everything is
4772 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02004773 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004774 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02004775 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004776
4777 ips_ping_for_i915_load();
4778}
4779
4780void intel_gpu_ips_teardown(void)
4781{
Daniel Vetter92703882012-08-09 16:46:01 +02004782 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004783 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02004784 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02004785}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004786static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004787{
4788 struct drm_i915_private *dev_priv = dev->dev_private;
4789 u32 lcfuse;
4790 u8 pxw[16];
4791 int i;
4792
4793 /* Disable to program */
4794 I915_WRITE(ECR, 0);
4795 POSTING_READ(ECR);
4796
4797 /* Program energy weights for various events */
4798 I915_WRITE(SDEW, 0x15040d00);
4799 I915_WRITE(CSIEW0, 0x007f0000);
4800 I915_WRITE(CSIEW1, 0x1e220004);
4801 I915_WRITE(CSIEW2, 0x04000004);
4802
4803 for (i = 0; i < 5; i++)
4804 I915_WRITE(PEW + (i * 4), 0);
4805 for (i = 0; i < 3; i++)
4806 I915_WRITE(DEW + (i * 4), 0);
4807
4808 /* Program P-state weights to account for frequency power adjustment */
4809 for (i = 0; i < 16; i++) {
4810 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
4811 unsigned long freq = intel_pxfreq(pxvidfreq);
4812 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
4813 PXVFREQ_PX_SHIFT;
4814 unsigned long val;
4815
4816 val = vid * vid;
4817 val *= (freq / 1000);
4818 val *= 255;
4819 val /= (127*127*900);
4820 if (val > 0xff)
4821 DRM_ERROR("bad pxval: %ld\n", val);
4822 pxw[i] = val;
4823 }
4824 /* Render standby states get 0 weight */
4825 pxw[14] = 0;
4826 pxw[15] = 0;
4827
4828 for (i = 0; i < 4; i++) {
4829 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
4830 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
4831 I915_WRITE(PXW + (i * 4), val);
4832 }
4833
4834 /* Adjust magic regs to magic values (more experimental results) */
4835 I915_WRITE(OGW0, 0);
4836 I915_WRITE(OGW1, 0);
4837 I915_WRITE(EG0, 0x00007f00);
4838 I915_WRITE(EG1, 0x0000000e);
4839 I915_WRITE(EG2, 0x000e0000);
4840 I915_WRITE(EG3, 0x68000300);
4841 I915_WRITE(EG4, 0x42000000);
4842 I915_WRITE(EG5, 0x00140031);
4843 I915_WRITE(EG6, 0);
4844 I915_WRITE(EG7, 0);
4845
4846 for (i = 0; i < 8; i++)
4847 I915_WRITE(PXWL + (i * 4), 0);
4848
4849 /* Enable PMON + select events */
4850 I915_WRITE(ECR, 0x80000019);
4851
4852 lcfuse = I915_READ(LCFUSE02);
4853
Daniel Vetter20e4d402012-08-08 23:35:39 +02004854 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03004855}
4856
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004857void intel_disable_gt_powersave(struct drm_device *dev)
4858{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004859 struct drm_i915_private *dev_priv = dev->dev_private;
4860
Daniel Vetterfd0c0642013-04-24 11:13:35 +02004861 /* Interrupts should be disabled already to avoid re-arming. */
4862 WARN_ON(dev->irq_enabled);
4863
Daniel Vetter930ebb42012-06-29 23:32:16 +02004864 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004865 ironlake_disable_drps(dev);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004866 ironlake_disable_rc6(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004867 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004868 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
Jesse Barnes250848c2013-04-23 10:09:27 -07004869 cancel_work_sync(&dev_priv->rps.work);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004870 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004871 if (IS_VALLEYVIEW(dev))
4872 valleyview_disable_rps(dev);
4873 else
4874 gen6_disable_rps(dev);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004875 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004876 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02004877 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004878}
4879
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004880static void intel_gen6_powersave_work(struct work_struct *work)
4881{
4882 struct drm_i915_private *dev_priv =
4883 container_of(work, struct drm_i915_private,
4884 rps.delayed_resume_work.work);
4885 struct drm_device *dev = dev_priv->dev;
4886
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004887 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004888
4889 if (IS_VALLEYVIEW(dev)) {
4890 valleyview_enable_rps(dev);
4891 } else {
4892 gen6_enable_rps(dev);
4893 gen6_update_ring_freq(dev);
4894 }
Chris Wilsonc0951f02013-10-10 21:58:50 +01004895 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004896 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004897}
4898
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004899void intel_enable_gt_powersave(struct drm_device *dev)
4900{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004901 struct drm_i915_private *dev_priv = dev->dev_private;
4902
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004903 if (IS_IRONLAKE_M(dev)) {
4904 ironlake_enable_drps(dev);
4905 ironlake_enable_rc6(dev);
4906 intel_init_emon(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004907 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07004908 /*
4909 * PCU communication is slow and this doesn't need to be
4910 * done at any specific time, so do this out of our fast path
4911 * to make resume and init faster.
4912 */
4913 schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
4914 round_jiffies_up_relative(HZ));
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004915 }
4916}
4917
Daniel Vetter3107bd42012-10-31 22:52:31 +01004918static void ibx_init_clock_gating(struct drm_device *dev)
4919{
4920 struct drm_i915_private *dev_priv = dev->dev_private;
4921
4922 /*
4923 * On Ibex Peak and Cougar Point, we need to disable clock
4924 * gating for the panel power sequencer or it will fail to
4925 * start up when no ports are active.
4926 */
4927 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
4928}
4929
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004930static void g4x_disable_trickle_feed(struct drm_device *dev)
4931{
4932 struct drm_i915_private *dev_priv = dev->dev_private;
4933 int pipe;
4934
4935 for_each_pipe(pipe) {
4936 I915_WRITE(DSPCNTR(pipe),
4937 I915_READ(DSPCNTR(pipe)) |
4938 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03004939 intel_flush_primary_plane(dev_priv, pipe);
Ville Syrjälä0e088b82013-06-07 10:47:04 +03004940 }
4941}
4942
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03004943static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004944{
4945 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01004946 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004947
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01004948 /*
4949 * Required for FBC
4950 * WaFbcDisableDpfcClockGating:ilk
4951 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004952 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
4953 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
4954 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004955
4956 I915_WRITE(PCH_3DCGDIS0,
4957 MARIUNIT_CLOCK_GATE_DISABLE |
4958 SVSMUNIT_CLOCK_GATE_DISABLE);
4959 I915_WRITE(PCH_3DCGDIS1,
4960 VFMUNIT_CLOCK_GATE_DISABLE);
4961
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004962 /*
4963 * According to the spec the following bits should be set in
4964 * order to enable memory self-refresh
4965 * The bit 22/21 of 0x42004
4966 * The bit 5 of 0x42020
4967 * The bit 15 of 0x45000
4968 */
4969 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4970 (I915_READ(ILK_DISPLAY_CHICKEN2) |
4971 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004972 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004973 I915_WRITE(DISP_ARB_CTL,
4974 (I915_READ(DISP_ARB_CTL) |
4975 DISP_FBC_WM_DIS));
4976 I915_WRITE(WM3_LP_ILK, 0);
4977 I915_WRITE(WM2_LP_ILK, 0);
4978 I915_WRITE(WM1_LP_ILK, 0);
4979
4980 /*
4981 * Based on the document from hardware guys the following bits
4982 * should be set unconditionally in order to enable FBC.
4983 * The bit 22 of 0x42000
4984 * The bit 22 of 0x42004
4985 * The bit 7,8,9 of 0x42020.
4986 */
4987 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01004988 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004989 I915_WRITE(ILK_DISPLAY_CHICKEN1,
4990 I915_READ(ILK_DISPLAY_CHICKEN1) |
4991 ILK_FBCQ_DIS);
4992 I915_WRITE(ILK_DISPLAY_CHICKEN2,
4993 I915_READ(ILK_DISPLAY_CHICKEN2) |
4994 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004995 }
4996
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01004997 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
4998
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03004999 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5000 I915_READ(ILK_DISPLAY_CHICKEN2) |
5001 ILK_ELPIN_409_SELECT);
5002 I915_WRITE(_3D_CHICKEN2,
5003 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
5004 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02005005
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005006 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02005007 I915_WRITE(CACHE_MODE_0,
5008 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005009
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005010 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03005011
Daniel Vetter3107bd42012-10-31 22:52:31 +01005012 ibx_init_clock_gating(dev);
5013}
5014
5015static void cpt_init_clock_gating(struct drm_device *dev)
5016{
5017 struct drm_i915_private *dev_priv = dev->dev_private;
5018 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005019 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01005020
5021 /*
5022 * On Ibex Peak and Cougar Point, we need to disable clock
5023 * gating for the panel power sequencer or it will fail to
5024 * start up when no ports are active.
5025 */
Jesse Barnescd664072013-10-02 10:34:19 -07005026 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
5027 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
5028 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005029 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
5030 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01005031 /* The below fixes the weird display corruption, a few pixels shifted
5032 * downward, on (only) LVDS of some HP laptops with IVY.
5033 */
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005034 for_each_pipe(pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005035 val = I915_READ(TRANS_CHICKEN2(pipe));
5036 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
5037 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005038 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005039 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005040 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
5041 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
5042 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005043 I915_WRITE(TRANS_CHICKEN2(pipe), val);
5044 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01005045 /* WADP0ClockGatingDisable */
5046 for_each_pipe(pipe) {
5047 I915_WRITE(TRANS_CHICKEN1(pipe),
5048 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
5049 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005050}
5051
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005052static void gen6_check_mch_setup(struct drm_device *dev)
5053{
5054 struct drm_i915_private *dev_priv = dev->dev_private;
5055 uint32_t tmp;
5056
5057 tmp = I915_READ(MCH_SSKPD);
5058 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) {
5059 DRM_INFO("Wrong MCH_SSKPD value: 0x%08x\n", tmp);
5060 DRM_INFO("This can cause pipe underruns and display issues.\n");
5061 DRM_INFO("Please upgrade your BIOS to fix this.\n");
5062 }
5063}
5064
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005065static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005066{
5067 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005068 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005069
Damien Lespiau231e54f2012-10-19 17:55:41 +01005070 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005071
5072 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5073 I915_READ(ILK_DISPLAY_CHICKEN2) |
5074 ILK_ELPIN_409_SELECT);
5075
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005076 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01005077 I915_WRITE(_3D_CHICKEN,
5078 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
5079
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005080 /* WaSetupGtModeTdRowDispatch:snb */
Daniel Vetter6547fbd2012-12-14 23:38:29 +01005081 if (IS_SNB_GT1(dev))
5082 I915_WRITE(GEN6_GT_MODE,
5083 _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE));
5084
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005085 I915_WRITE(WM3_LP_ILK, 0);
5086 I915_WRITE(WM2_LP_ILK, 0);
5087 I915_WRITE(WM1_LP_ILK, 0);
5088
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005089 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02005090 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005091
5092 I915_WRITE(GEN6_UCGCTL1,
5093 I915_READ(GEN6_UCGCTL1) |
5094 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
5095 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
5096
5097 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5098 * gating disable must be set. Failure to set it results in
5099 * flickering pixels due to Z write ordering failures after
5100 * some amount of runtime in the Mesa "fire" demo, and Unigine
5101 * Sanctuary and Tropics, and apparently anything else with
5102 * alpha test or pixel discard.
5103 *
5104 * According to the spec, bit 11 (RCCUNIT) must also be set,
5105 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005106 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005107 * Also apply WaDisableVDSUnitClockGating:snb and
5108 * WaDisableRCPBUnitClockGating:snb.
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005109 */
5110 I915_WRITE(GEN6_UCGCTL2,
Jesse Barnes0f846f82012-06-14 11:04:47 -07005111 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005112 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5113 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5114
5115 /* Bspec says we need to always set all mask bits. */
Kenneth Graunke26b6e442012-10-07 08:51:07 -07005116 I915_WRITE(_3D_CHICKEN3, (0xFFFF << 16) |
5117 _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005118
5119 /*
5120 * According to the spec the following bits should be
5121 * set in order to enable memory self-refresh and fbc:
5122 * The bit21 and bit22 of 0x42000
5123 * The bit21 and bit22 of 0x42004
5124 * The bit5 and bit7 of 0x42020
5125 * The bit14 of 0x70180
5126 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01005127 *
5128 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005129 */
5130 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5131 I915_READ(ILK_DISPLAY_CHICKEN1) |
5132 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
5133 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5134 I915_READ(ILK_DISPLAY_CHICKEN2) |
5135 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01005136 I915_WRITE(ILK_DSPCLK_GATE_D,
5137 I915_READ(ILK_DSPCLK_GATE_D) |
5138 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
5139 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005140
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005141 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07005142
5143 /* The default value should be 0x200 according to docs, but the two
5144 * platforms I checked have a 0 for this. (Maybe BIOS overrides?) */
5145 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_DISABLE(0xffff));
5146 I915_WRITE(GEN6_GT_MODE, _MASKED_BIT_ENABLE(GEN6_GT_MODE_HI));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005147
5148 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005149
5150 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005151}
5152
5153static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
5154{
5155 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
5156
5157 reg &= ~GEN7_FF_SCHED_MASK;
5158 reg |= GEN7_FF_TS_SCHED_HW;
5159 reg |= GEN7_FF_VS_SCHED_HW;
5160 reg |= GEN7_FF_DS_SCHED_HW;
5161
Ben Widawsky41c0b3a2013-01-26 11:52:00 -08005162 if (IS_HASWELL(dev_priv->dev))
5163 reg &= ~GEN7_FF_VS_REF_CNT_FFME;
5164
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005165 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
5166}
5167
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005168static void lpt_init_clock_gating(struct drm_device *dev)
5169{
5170 struct drm_i915_private *dev_priv = dev->dev_private;
5171
5172 /*
5173 * TODO: this bit should only be enabled when really needed, then
5174 * disabled when not needed anymore in order to save power.
5175 */
5176 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
5177 I915_WRITE(SOUTH_DSPCLK_GATE_D,
5178 I915_READ(SOUTH_DSPCLK_GATE_D) |
5179 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03005180
5181 /* WADPOClockGatingDisable:hsw */
5182 I915_WRITE(_TRANSA_CHICKEN1,
5183 I915_READ(_TRANSA_CHICKEN1) |
5184 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005185}
5186
Imre Deak7d708ee2013-04-17 14:04:50 +03005187static void lpt_suspend_hw(struct drm_device *dev)
5188{
5189 struct drm_i915_private *dev_priv = dev->dev_private;
5190
5191 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
5192 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
5193
5194 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
5195 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
5196 }
5197}
5198
Ben Widawsky1020a5c2013-11-02 21:07:06 -07005199static void gen8_init_clock_gating(struct drm_device *dev)
5200{
5201 struct drm_i915_private *dev_priv = dev->dev_private;
5202
5203 I915_WRITE(WM3_LP_ILK, 0);
5204 I915_WRITE(WM2_LP_ILK, 0);
5205 I915_WRITE(WM1_LP_ILK, 0);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07005206
5207 /* FIXME(BDW): Check all the w/a, some might only apply to
5208 * pre-production hw. */
5209
5210 /* WaSwitchSolVfFArbitrationPriority */
5211 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07005212}
5213
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005214static void haswell_init_clock_gating(struct drm_device *dev)
5215{
5216 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005217
5218 I915_WRITE(WM3_LP_ILK, 0);
5219 I915_WRITE(WM2_LP_ILK, 0);
5220 I915_WRITE(WM1_LP_ILK, 0);
5221
5222 /* According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005223 * This implements the WaDisableRCZUnitClockGating:hsw workaround.
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005224 */
5225 I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
5226
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005227 /* Apply the WaDisableRHWOOptimizationForRenderHang:hsw workaround. */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005228 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5229 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5230
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005231 /* WaApplyL3ControlAndL3ChickenMode:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005232 I915_WRITE(GEN7_L3CNTLREG1,
5233 GEN7_WA_FOR_GEN7_L3_CONTROL);
5234 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
5235 GEN7_WA_L3_CHICKEN_MODE);
5236
Francisco Jerezf3fc4882013-10-02 15:53:16 -07005237 /* L3 caching of data atomics doesn't work -- disable it. */
5238 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
5239 I915_WRITE(HSW_ROW_CHICKEN3,
5240 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
5241
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005242 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005243 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5244 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5245 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5246
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005247 /* WaVSRefCountFullforceMissDisable:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005248 gen7_setup_fixed_func_scheduler(dev_priv);
5249
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005250 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005251 I915_WRITE(CACHE_MODE_1,
5252 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03005253
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005254 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07005255 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
5256
Paulo Zanoni90a88642013-05-03 17:23:45 -03005257 /* WaRsPkgCStateDisplayPMReq:hsw */
5258 I915_WRITE(CHICKEN_PAR1_1,
5259 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03005260
Paulo Zanoni17a303e2012-11-20 15:12:07 -02005261 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005262}
5263
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005264static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005265{
5266 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07005267 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005268
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005269 I915_WRITE(WM3_LP_ILK, 0);
5270 I915_WRITE(WM2_LP_ILK, 0);
5271 I915_WRITE(WM1_LP_ILK, 0);
5272
Damien Lespiau231e54f2012-10-19 17:55:41 +01005273 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005274
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005275 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05005276 I915_WRITE(_3D_CHICKEN3,
5277 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5278
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005279 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005280 I915_WRITE(IVB_CHICKEN3,
5281 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5282 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5283
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005284 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07005285 if (IS_IVB_GT1(dev))
5286 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
5287 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5288 else
5289 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1_GT2,
5290 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
5291
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005292 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005293 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5294 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5295
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005296 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005297 I915_WRITE(GEN7_L3CNTLREG1,
5298 GEN7_WA_FOR_GEN7_L3_CONTROL);
5299 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07005300 GEN7_WA_L3_CHICKEN_MODE);
5301 if (IS_IVB_GT1(dev))
5302 I915_WRITE(GEN7_ROW_CHICKEN2,
5303 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5304 else
5305 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
5306 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5307
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005308
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005309 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05005310 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5311 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5312
Jesse Barnes0f846f82012-06-14 11:04:47 -07005313 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5314 * gating disable must be set. Failure to set it results in
5315 * flickering pixels due to Z write ordering failures after
5316 * some amount of runtime in the Mesa "fire" demo, and Unigine
5317 * Sanctuary and Tropics, and apparently anything else with
5318 * alpha test or pixel discard.
5319 *
5320 * According to the spec, bit 11 (RCCUNIT) must also be set,
5321 * but we didn't debug actual testcases to find it out.
5322 *
5323 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005324 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005325 */
5326 I915_WRITE(GEN6_UCGCTL2,
5327 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5328 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5329
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005330 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005331 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5332 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5333 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5334
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005335 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005336
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005337 /* WaVSRefCountFullforceMissDisable:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005338 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02005339
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005340 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02005341 I915_WRITE(CACHE_MODE_1,
5342 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07005343
5344 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
5345 snpcr &= ~GEN6_MBC_SNPCR_MASK;
5346 snpcr |= GEN6_MBC_SNPCR_MED;
5347 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005348
Ben Widawskyab5c6082013-04-05 13:12:41 -07005349 if (!HAS_PCH_NOP(dev))
5350 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005351
5352 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005353}
5354
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005355static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005356{
5357 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005358
Ville Syrjäläd7fe0cc2013-05-21 18:01:50 +03005359 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005360
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005361 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05005362 I915_WRITE(_3D_CHICKEN3,
5363 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
5364
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005365 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005366 I915_WRITE(IVB_CHICKEN3,
5367 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
5368 CHICKEN3_DGMG_DONE_FIX_DISABLE);
5369
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005370 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07005371 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08005372 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
5373 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07005374
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005375 /* Apply the WaDisableRHWOOptimizationForRenderHang:vlv workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005376 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
5377 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
5378
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005379 /* WaApplyL3ControlAndL3ChickenMode:vlv */
Jesse Barnesd0cf5ea2012-10-25 12:15:41 -07005380 I915_WRITE(GEN7_L3CNTLREG1, I915_READ(GEN7_L3CNTLREG1) | GEN7_L3AGDIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005381 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, GEN7_WA_L3_CHICKEN_MODE);
5382
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005383 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05005384 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
5385 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
5386
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005387 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07005388 I915_WRITE(GEN7_ROW_CHICKEN2,
5389 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
5390
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005391 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005392 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
5393 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
5394 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
5395
Jesse Barnes0f846f82012-06-14 11:04:47 -07005396 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5397 * gating disable must be set. Failure to set it results in
5398 * flickering pixels due to Z write ordering failures after
5399 * some amount of runtime in the Mesa "fire" demo, and Unigine
5400 * Sanctuary and Tropics, and apparently anything else with
5401 * alpha test or pixel discard.
5402 *
5403 * According to the spec, bit 11 (RCCUNIT) must also be set,
5404 * but we didn't debug actual testcases to find it out.
5405 *
5406 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005407 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005408 *
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005409 * Also apply WaDisableVDSUnitClockGating:vlv and
5410 * WaDisableRCPBUnitClockGating:vlv.
Jesse Barnes0f846f82012-06-14 11:04:47 -07005411 */
5412 I915_WRITE(GEN6_UCGCTL2,
5413 GEN7_VDSUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes6edaa7f2012-06-14 11:04:49 -07005414 GEN7_TDLUNIT_CLOCK_GATE_DISABLE |
Jesse Barnes0f846f82012-06-14 11:04:47 -07005415 GEN6_RCZUNIT_CLOCK_GATE_DISABLE |
5416 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
5417 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
5418
Jesse Barnese3f33d42012-06-14 11:04:50 -07005419 I915_WRITE(GEN7_UCGCTL4, GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
5420
Ville Syrjäläe0d8d592013-06-12 22:11:18 +03005421 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005422
Daniel Vetter6b26c862012-04-24 14:04:12 +02005423 I915_WRITE(CACHE_MODE_1,
5424 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07005425
5426 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005427 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07005428 * Disable clock gating on th GCFG unit to prevent a delay
5429 * in the reporting of vblank events.
5430 */
Jesse Barnes4e8c84a2013-03-08 10:45:54 -08005431 I915_WRITE(VLV_GUNIT_CLOCK_GATE, 0xffffffff);
5432
5433 /* Conservative clock gating settings for now */
5434 I915_WRITE(0x9400, 0xffffffff);
5435 I915_WRITE(0x9404, 0xffffffff);
5436 I915_WRITE(0x9408, 0xffffffff);
5437 I915_WRITE(0x940c, 0xffffffff);
5438 I915_WRITE(0x9410, 0xffffffff);
5439 I915_WRITE(0x9414, 0xffffffff);
5440 I915_WRITE(0x9418, 0xffffffff);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005441}
5442
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005443static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005444{
5445 struct drm_i915_private *dev_priv = dev->dev_private;
5446 uint32_t dspclk_gate;
5447
5448 I915_WRITE(RENCLK_GATE_D1, 0);
5449 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
5450 GS_UNIT_CLOCK_GATE_DISABLE |
5451 CL_UNIT_CLOCK_GATE_DISABLE);
5452 I915_WRITE(RAMCLK_GATE_D, 0);
5453 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
5454 OVRUNIT_CLOCK_GATE_DISABLE |
5455 OVCUNIT_CLOCK_GATE_DISABLE;
5456 if (IS_GM45(dev))
5457 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
5458 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02005459
5460 /* WaDisableRenderCachePipelinedFlush */
5461 I915_WRITE(CACHE_MODE_0,
5462 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03005463
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005464 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005465}
5466
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005467static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005468{
5469 struct drm_i915_private *dev_priv = dev->dev_private;
5470
5471 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
5472 I915_WRITE(RENCLK_GATE_D2, 0);
5473 I915_WRITE(DSPCLK_GATE_D, 0);
5474 I915_WRITE(RAMCLK_GATE_D, 0);
5475 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005476 I915_WRITE(MI_ARB_STATE,
5477 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005478}
5479
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005480static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005481{
5482 struct drm_i915_private *dev_priv = dev->dev_private;
5483
5484 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
5485 I965_RCC_CLOCK_GATE_DISABLE |
5486 I965_RCPB_CLOCK_GATE_DISABLE |
5487 I965_ISC_CLOCK_GATE_DISABLE |
5488 I965_FBC_CLOCK_GATE_DISABLE);
5489 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03005490 I915_WRITE(MI_ARB_STATE,
5491 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005492}
5493
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005494static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005495{
5496 struct drm_i915_private *dev_priv = dev->dev_private;
5497 u32 dstate = I915_READ(D_STATE);
5498
5499 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
5500 DSTATE_DOT_CLOCK_GATING;
5501 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01005502
5503 if (IS_PINEVIEW(dev))
5504 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02005505
5506 /* IIR "flip pending" means done if this bit is set */
5507 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005508}
5509
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005510static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005511{
5512 struct drm_i915_private *dev_priv = dev->dev_private;
5513
5514 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
5515}
5516
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005517static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005518{
5519 struct drm_i915_private *dev_priv = dev->dev_private;
5520
5521 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
5522}
5523
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005524void intel_init_clock_gating(struct drm_device *dev)
5525{
5526 struct drm_i915_private *dev_priv = dev->dev_private;
5527
5528 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005529}
5530
Imre Deak7d708ee2013-04-17 14:04:50 +03005531void intel_suspend_hw(struct drm_device *dev)
5532{
5533 if (HAS_PCH_LPT(dev))
5534 lpt_suspend_hw(dev);
5535}
5536
Imre Deakbddc7642013-10-16 17:25:49 +03005537static bool is_always_on_power_domain(struct drm_device *dev,
5538 enum intel_display_power_domain domain)
5539{
5540 unsigned long always_on_domains;
5541
5542 BUG_ON(BIT(domain) & ~POWER_DOMAIN_MASK);
5543
Paulo Zanoni6745a2c2013-11-02 21:07:34 -07005544 if (IS_BROADWELL(dev)) {
5545 always_on_domains = BDW_ALWAYS_ON_POWER_DOMAINS;
5546 } else if (IS_HASWELL(dev)) {
Imre Deakbddc7642013-10-16 17:25:49 +03005547 always_on_domains = HSW_ALWAYS_ON_POWER_DOMAINS;
5548 } else {
5549 WARN_ON(1);
5550 return true;
5551 }
5552
5553 return BIT(domain) & always_on_domains;
5554}
5555
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005556/**
5557 * We should only use the power well if we explicitly asked the hardware to
5558 * enable it, so check if it's enabled and also check if we've requested it to
5559 * be enabled.
5560 */
Paulo Zanonib97186f2013-05-03 12:15:36 -03005561bool intel_display_power_enabled(struct drm_device *dev,
5562 enum intel_display_power_domain domain)
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005563{
5564 struct drm_i915_private *dev_priv = dev->dev_private;
5565
Paulo Zanonib97186f2013-05-03 12:15:36 -03005566 if (!HAS_POWER_WELL(dev))
5567 return true;
5568
Imre Deakbddc7642013-10-16 17:25:49 +03005569 if (is_always_on_power_domain(dev, domain))
Paulo Zanonib97186f2013-05-03 12:15:36 -03005570 return true;
Imre Deakbddc7642013-10-16 17:25:49 +03005571
5572 return I915_READ(HSW_PWR_WELL_DRIVER) ==
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005573 (HSW_PWR_WELL_ENABLE_REQUEST | HSW_PWR_WELL_STATE_ENABLED);
Paulo Zanoni15d199e2013-03-22 14:14:13 -03005574}
5575
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005576static void __intel_set_power_well(struct drm_device *dev, bool enable)
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005577{
5578 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonifa42e232013-01-25 16:59:11 -02005579 bool is_enabled, enable_requested;
5580 uint32_t tmp;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005581
Paulo Zanonifa42e232013-01-25 16:59:11 -02005582 tmp = I915_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005583 is_enabled = tmp & HSW_PWR_WELL_STATE_ENABLED;
5584 enable_requested = tmp & HSW_PWR_WELL_ENABLE_REQUEST;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005585
Paulo Zanonifa42e232013-01-25 16:59:11 -02005586 if (enable) {
5587 if (!enable_requested)
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005588 I915_WRITE(HSW_PWR_WELL_DRIVER,
5589 HSW_PWR_WELL_ENABLE_REQUEST);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005590
Paulo Zanonifa42e232013-01-25 16:59:11 -02005591 if (!is_enabled) {
5592 DRM_DEBUG_KMS("Enabling power well\n");
5593 if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005594 HSW_PWR_WELL_STATE_ENABLED), 20))
Paulo Zanonifa42e232013-01-25 16:59:11 -02005595 DRM_ERROR("Timeout enabling power well\n");
5596 }
5597 } else {
5598 if (enable_requested) {
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005599 unsigned long irqflags;
5600 enum pipe p;
5601
Paulo Zanonifa42e232013-01-25 16:59:11 -02005602 I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005603 POSTING_READ(HSW_PWR_WELL_DRIVER);
Paulo Zanonifa42e232013-01-25 16:59:11 -02005604 DRM_DEBUG_KMS("Requesting to disable the power well\n");
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005605
5606 /*
5607 * After this, the registers on the pipes that are part
5608 * of the power well will become zero, so we have to
5609 * adjust our counters according to that.
5610 *
5611 * FIXME: Should we do this in general in
5612 * drm_vblank_post_modeset?
5613 */
5614 spin_lock_irqsave(&dev->vbl_lock, irqflags);
5615 for_each_pipe(p)
5616 if (p != PIPE_A)
Ville Syrjälä5380e922013-10-04 14:53:36 +03005617 dev->vblank[p].last = 0;
Paulo Zanoni9dbd8fe2013-07-23 10:48:11 -03005618 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005619 }
5620 }
Paulo Zanonifa42e232013-01-25 16:59:11 -02005621}
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005622
Imre Deakb4ed4482013-10-25 17:36:49 +03005623static void __intel_power_well_get(struct drm_device *dev,
5624 struct i915_power_well *power_well)
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005625{
5626 if (!power_well->count++)
Imre Deakb4ed4482013-10-25 17:36:49 +03005627 __intel_set_power_well(dev, true);
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005628}
5629
Imre Deakb4ed4482013-10-25 17:36:49 +03005630static void __intel_power_well_put(struct drm_device *dev,
5631 struct i915_power_well *power_well)
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005632{
5633 WARN_ON(!power_well->count);
Imre Deak1ad577a2013-10-29 19:09:50 +02005634 if (!--power_well->count && i915_disable_power_well)
Imre Deakb4ed4482013-10-25 17:36:49 +03005635 __intel_set_power_well(dev, false);
Ville Syrjälä2d66aef2013-09-16 17:38:29 +03005636}
5637
Ville Syrjälä67656252013-09-16 17:38:28 +03005638void intel_display_power_get(struct drm_device *dev,
5639 enum intel_display_power_domain domain)
5640{
5641 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03005642 struct i915_power_domains *power_domains;
Ville Syrjälä67656252013-09-16 17:38:28 +03005643
5644 if (!HAS_POWER_WELL(dev))
5645 return;
5646
Imre Deakbddc7642013-10-16 17:25:49 +03005647 if (is_always_on_power_domain(dev, domain))
Ville Syrjälä67656252013-09-16 17:38:28 +03005648 return;
Imre Deakbddc7642013-10-16 17:25:49 +03005649
Imre Deak83c00f552013-10-25 17:36:47 +03005650 power_domains = &dev_priv->power_domains;
5651
5652 mutex_lock(&power_domains->lock);
Imre Deakb4ed4482013-10-25 17:36:49 +03005653 __intel_power_well_get(dev, &power_domains->power_wells[0]);
Imre Deak83c00f552013-10-25 17:36:47 +03005654 mutex_unlock(&power_domains->lock);
Ville Syrjälä67656252013-09-16 17:38:28 +03005655}
5656
5657void intel_display_power_put(struct drm_device *dev,
5658 enum intel_display_power_domain domain)
5659{
5660 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03005661 struct i915_power_domains *power_domains;
Ville Syrjälä67656252013-09-16 17:38:28 +03005662
5663 if (!HAS_POWER_WELL(dev))
5664 return;
5665
Imre Deakbddc7642013-10-16 17:25:49 +03005666 if (is_always_on_power_domain(dev, domain))
Ville Syrjälä67656252013-09-16 17:38:28 +03005667 return;
Imre Deakbddc7642013-10-16 17:25:49 +03005668
Imre Deak83c00f552013-10-25 17:36:47 +03005669 power_domains = &dev_priv->power_domains;
5670
5671 mutex_lock(&power_domains->lock);
Imre Deakb4ed4482013-10-25 17:36:49 +03005672 __intel_power_well_put(dev, &power_domains->power_wells[0]);
Imre Deak83c00f552013-10-25 17:36:47 +03005673 mutex_unlock(&power_domains->lock);
Ville Syrjälä67656252013-09-16 17:38:28 +03005674}
5675
Imre Deak83c00f552013-10-25 17:36:47 +03005676static struct i915_power_domains *hsw_pwr;
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005677
5678/* Display audio driver power well request */
5679void i915_request_power_well(void)
5680{
Imre Deakb4ed4482013-10-25 17:36:49 +03005681 struct drm_i915_private *dev_priv;
5682
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005683 if (WARN_ON(!hsw_pwr))
5684 return;
5685
Imre Deakb4ed4482013-10-25 17:36:49 +03005686 dev_priv = container_of(hsw_pwr, struct drm_i915_private,
5687 power_domains);
5688
Imre Deak959cbc12013-10-16 17:25:50 +03005689 mutex_lock(&hsw_pwr->lock);
Imre Deakb4ed4482013-10-25 17:36:49 +03005690 __intel_power_well_get(dev_priv->dev, &hsw_pwr->power_wells[0]);
Imre Deak959cbc12013-10-16 17:25:50 +03005691 mutex_unlock(&hsw_pwr->lock);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005692}
5693EXPORT_SYMBOL_GPL(i915_request_power_well);
5694
5695/* Display audio driver power well release */
5696void i915_release_power_well(void)
5697{
Imre Deakb4ed4482013-10-25 17:36:49 +03005698 struct drm_i915_private *dev_priv;
5699
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005700 if (WARN_ON(!hsw_pwr))
5701 return;
5702
Imre Deakb4ed4482013-10-25 17:36:49 +03005703 dev_priv = container_of(hsw_pwr, struct drm_i915_private,
5704 power_domains);
5705
Imre Deak959cbc12013-10-16 17:25:50 +03005706 mutex_lock(&hsw_pwr->lock);
Imre Deakb4ed4482013-10-25 17:36:49 +03005707 __intel_power_well_put(dev_priv->dev, &hsw_pwr->power_wells[0]);
Imre Deak959cbc12013-10-16 17:25:50 +03005708 mutex_unlock(&hsw_pwr->lock);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005709}
5710EXPORT_SYMBOL_GPL(i915_release_power_well);
5711
Imre Deakddb642f2013-10-28 17:20:35 +02005712int intel_power_domains_init(struct drm_device *dev)
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005713{
5714 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03005715 struct i915_power_domains *power_domains = &dev_priv->power_domains;
5716 struct i915_power_well *power_well;
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005717
Imre Deak83c00f552013-10-25 17:36:47 +03005718 mutex_init(&power_domains->lock);
5719 hsw_pwr = power_domains;
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005720
Imre Deak83c00f552013-10-25 17:36:47 +03005721 power_well = &power_domains->power_wells[0];
Imre Deak83c00f552013-10-25 17:36:47 +03005722 power_well->count = 0;
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005723
5724 return 0;
5725}
5726
Imre Deakddb642f2013-10-28 17:20:35 +02005727void intel_power_domains_remove(struct drm_device *dev)
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005728{
5729 hsw_pwr = NULL;
5730}
5731
Imre Deakddb642f2013-10-28 17:20:35 +02005732static void intel_power_domains_resume(struct drm_device *dev)
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005733{
5734 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak83c00f552013-10-25 17:36:47 +03005735 struct i915_power_domains *power_domains = &dev_priv->power_domains;
5736 struct i915_power_well *power_well;
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005737
5738 if (!HAS_POWER_WELL(dev))
5739 return;
5740
Imre Deak83c00f552013-10-25 17:36:47 +03005741 mutex_lock(&power_domains->lock);
5742
5743 power_well = &power_domains->power_wells[0];
Ville Syrjälä9cdb8262013-09-16 17:38:27 +03005744 __intel_set_power_well(dev, power_well->count > 0);
Imre Deak83c00f552013-10-25 17:36:47 +03005745
5746 mutex_unlock(&power_domains->lock);
Wang Xingchaoa38911a2013-05-30 22:07:11 +08005747}
5748
Paulo Zanonifa42e232013-01-25 16:59:11 -02005749/*
5750 * Starting with Haswell, we have a "Power Down Well" that can be turned off
5751 * when not needed anymore. We have 4 registers that can request the power well
5752 * to be enabled, and it will only be disabled if none of the registers is
5753 * requesting it to be enabled.
5754 */
Imre Deakddb642f2013-10-28 17:20:35 +02005755void intel_power_domains_init_hw(struct drm_device *dev)
Paulo Zanonifa42e232013-01-25 16:59:11 -02005756{
5757 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005758
Paulo Zanoni86d52df2013-03-06 20:03:18 -03005759 if (!HAS_POWER_WELL(dev))
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005760 return;
5761
Paulo Zanonifa42e232013-01-25 16:59:11 -02005762 /* For now, we need the power well to be always enabled. */
Imre Deakbaa70702013-10-25 17:36:48 +03005763 intel_display_set_init_power(dev, true);
Imre Deakddb642f2013-10-28 17:20:35 +02005764 intel_power_domains_resume(dev);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005765
Paulo Zanonifa42e232013-01-25 16:59:11 -02005766 /* We're taking over the BIOS, so clear any requests made by it since
5767 * the driver is in charge now. */
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -03005768 if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE_REQUEST)
Paulo Zanonifa42e232013-01-25 16:59:11 -02005769 I915_WRITE(HSW_PWR_WELL_BIOS, 0);
Eugeni Dodonovd0d3e512012-05-09 15:37:16 -03005770}
5771
Paulo Zanonic67a4702013-08-19 13:18:09 -03005772/* Disables PC8 so we can use the GMBUS and DP AUX interrupts. */
5773void intel_aux_display_runtime_get(struct drm_i915_private *dev_priv)
5774{
5775 hsw_disable_package_c8(dev_priv);
5776}
5777
5778void intel_aux_display_runtime_put(struct drm_i915_private *dev_priv)
5779{
5780 hsw_enable_package_c8(dev_priv);
5781}
5782
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005783/* Set up chip specific power management-related functions */
5784void intel_init_pm(struct drm_device *dev)
5785{
5786 struct drm_i915_private *dev_priv = dev->dev_private;
5787
5788 if (I915_HAS_FBC(dev)) {
5789 if (HAS_PCH_SPLIT(dev)) {
5790 dev_priv->display.fbc_enabled = ironlake_fbc_enabled;
Rodrigo Vivi891348b2013-05-06 19:37:36 -03005791 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
Rodrigo Viviabe959c2013-05-06 19:37:33 -03005792 dev_priv->display.enable_fbc =
5793 gen7_enable_fbc;
5794 else
5795 dev_priv->display.enable_fbc =
5796 ironlake_enable_fbc;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005797 dev_priv->display.disable_fbc = ironlake_disable_fbc;
5798 } else if (IS_GM45(dev)) {
5799 dev_priv->display.fbc_enabled = g4x_fbc_enabled;
5800 dev_priv->display.enable_fbc = g4x_enable_fbc;
5801 dev_priv->display.disable_fbc = g4x_disable_fbc;
5802 } else if (IS_CRESTLINE(dev)) {
5803 dev_priv->display.fbc_enabled = i8xx_fbc_enabled;
5804 dev_priv->display.enable_fbc = i8xx_enable_fbc;
5805 dev_priv->display.disable_fbc = i8xx_disable_fbc;
5806 }
5807 /* 855GM needs testing */
5808 }
5809
Daniel Vetterc921aba2012-04-26 23:28:17 +02005810 /* For cxsr */
5811 if (IS_PINEVIEW(dev))
5812 i915_pineview_get_mem_freq(dev);
5813 else if (IS_GEN5(dev))
5814 i915_ironlake_get_mem_freq(dev);
5815
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005816 /* For FIFO watermark updates */
5817 if (HAS_PCH_SPLIT(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005818 intel_setup_wm_latency(dev);
5819
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005820 if (IS_GEN5(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005821 if (dev_priv->wm.pri_latency[1] &&
5822 dev_priv->wm.spr_latency[1] &&
5823 dev_priv->wm.cur_latency[1])
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005824 dev_priv->display.update_wm = ironlake_update_wm;
5825 else {
5826 DRM_DEBUG_KMS("Failed to get proper latency. "
5827 "Disable CxSR\n");
5828 dev_priv->display.update_wm = NULL;
5829 }
5830 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
5831 } else if (IS_GEN6(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005832 if (dev_priv->wm.pri_latency[0] &&
5833 dev_priv->wm.spr_latency[0] &&
5834 dev_priv->wm.cur_latency[0]) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005835 dev_priv->display.update_wm = sandybridge_update_wm;
5836 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5837 } else {
5838 DRM_DEBUG_KMS("Failed to read display plane latency. "
5839 "Disable CxSR\n");
5840 dev_priv->display.update_wm = NULL;
5841 }
5842 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
5843 } else if (IS_IVYBRIDGE(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005844 if (dev_priv->wm.pri_latency[0] &&
5845 dev_priv->wm.spr_latency[0] &&
5846 dev_priv->wm.cur_latency[0]) {
Chris Wilsonc43d0182012-12-11 12:01:42 +00005847 dev_priv->display.update_wm = ivybridge_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005848 dev_priv->display.update_sprite_wm = sandybridge_update_sprite_wm;
5849 } else {
5850 DRM_DEBUG_KMS("Failed to read display plane latency. "
5851 "Disable CxSR\n");
5852 dev_priv->display.update_wm = NULL;
5853 }
5854 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005855 } else if (IS_HASWELL(dev)) {
Ville Syrjälä53615a52013-08-01 16:18:50 +03005856 if (dev_priv->wm.pri_latency[0] &&
5857 dev_priv->wm.spr_latency[0] &&
5858 dev_priv->wm.cur_latency[0]) {
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005859 dev_priv->display.update_wm = haswell_update_wm;
Paulo Zanoni526682e2013-05-24 11:59:18 -03005860 dev_priv->display.update_sprite_wm =
5861 haswell_update_sprite_wm;
Eugeni Dodonov6b8a5ee2012-05-09 15:37:23 -03005862 } else {
5863 DRM_DEBUG_KMS("Failed to read display plane latency. "
5864 "Disable CxSR\n");
5865 dev_priv->display.update_wm = NULL;
5866 }
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03005867 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07005868 } else if (INTEL_INFO(dev)->gen == 8) {
5869 dev_priv->display.init_clock_gating = gen8_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005870 } else
5871 dev_priv->display.update_wm = NULL;
5872 } else if (IS_VALLEYVIEW(dev)) {
5873 dev_priv->display.update_wm = valleyview_update_wm;
5874 dev_priv->display.init_clock_gating =
5875 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005876 } else if (IS_PINEVIEW(dev)) {
5877 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
5878 dev_priv->is_ddr3,
5879 dev_priv->fsb_freq,
5880 dev_priv->mem_freq)) {
5881 DRM_INFO("failed to find known CxSR latency "
5882 "(found ddr%s fsb freq %d, mem freq %d), "
5883 "disabling CxSR\n",
5884 (dev_priv->is_ddr3 == 1) ? "3" : "2",
5885 dev_priv->fsb_freq, dev_priv->mem_freq);
5886 /* Disable CxSR and never update its watermark again */
5887 pineview_disable_cxsr(dev);
5888 dev_priv->display.update_wm = NULL;
5889 } else
5890 dev_priv->display.update_wm = pineview_update_wm;
5891 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5892 } else if (IS_G4X(dev)) {
5893 dev_priv->display.update_wm = g4x_update_wm;
5894 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
5895 } else if (IS_GEN4(dev)) {
5896 dev_priv->display.update_wm = i965_update_wm;
5897 if (IS_CRESTLINE(dev))
5898 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
5899 else if (IS_BROADWATER(dev))
5900 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
5901 } else if (IS_GEN3(dev)) {
5902 dev_priv->display.update_wm = i9xx_update_wm;
5903 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
5904 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
5905 } else if (IS_I865G(dev)) {
5906 dev_priv->display.update_wm = i830_update_wm;
5907 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5908 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5909 } else if (IS_I85X(dev)) {
5910 dev_priv->display.update_wm = i9xx_update_wm;
5911 dev_priv->display.get_fifo_size = i85x_get_fifo_size;
5912 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
5913 } else {
5914 dev_priv->display.update_wm = i830_update_wm;
5915 dev_priv->display.init_clock_gating = i830_init_clock_gating;
5916 if (IS_845G(dev))
5917 dev_priv->display.get_fifo_size = i845_get_fifo_size;
5918 else
5919 dev_priv->display.get_fifo_size = i830_get_fifo_size;
5920 }
5921}
5922
Ben Widawsky42c05262012-09-26 10:34:00 -07005923int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val)
5924{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005925 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005926
5927 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5928 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
5929 return -EAGAIN;
5930 }
5931
5932 I915_WRITE(GEN6_PCODE_DATA, *val);
5933 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5934
5935 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5936 500)) {
5937 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
5938 return -ETIMEDOUT;
5939 }
5940
5941 *val = I915_READ(GEN6_PCODE_DATA);
5942 I915_WRITE(GEN6_PCODE_DATA, 0);
5943
5944 return 0;
5945}
5946
5947int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val)
5948{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005949 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07005950
5951 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
5952 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
5953 return -EAGAIN;
5954 }
5955
5956 I915_WRITE(GEN6_PCODE_DATA, val);
5957 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
5958
5959 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
5960 500)) {
5961 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
5962 return -ETIMEDOUT;
5963 }
5964
5965 I915_WRITE(GEN6_PCODE_DATA, 0);
5966
5967 return 0;
5968}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07005969
Jesse Barnes855ba3b2013-04-17 15:54:57 -07005970int vlv_gpu_freq(int ddr_freq, int val)
5971{
5972 int mult, base;
5973
5974 switch (ddr_freq) {
5975 case 800:
5976 mult = 20;
5977 base = 120;
5978 break;
5979 case 1066:
5980 mult = 22;
5981 base = 133;
5982 break;
5983 case 1333:
5984 mult = 21;
5985 base = 125;
5986 break;
5987 default:
5988 return -1;
5989 }
5990
5991 return ((val - 0xbd) * mult) + base;
5992}
5993
5994int vlv_freq_opcode(int ddr_freq, int val)
5995{
5996 int mult, base;
5997
5998 switch (ddr_freq) {
5999 case 800:
6000 mult = 20;
6001 base = 120;
6002 break;
6003 case 1066:
6004 mult = 22;
6005 base = 133;
6006 break;
6007 case 1333:
6008 mult = 21;
6009 base = 125;
6010 break;
6011 default:
6012 return -1;
6013 }
6014
6015 val /= mult;
6016 val -= base / mult;
6017 val += 0xbd;
6018
6019 if (val > 0xea)
6020 val = 0xea;
6021
6022 return val;
6023}
6024
Chris Wilson907b28c2013-07-19 20:36:52 +01006025void intel_pm_init(struct drm_device *dev)
6026{
6027 struct drm_i915_private *dev_priv = dev->dev_private;
6028
6029 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
6030 intel_gen6_powersave_work);
6031}