blob: 472315fd65a71cb43d7447b398a911bda40ef337 [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>
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -070029#include <drm/drm_plane_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030030#include "i915_drv.h"
31#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020032#include "../../../platform/x86/intel_ips.h"
33#include <linux/module.h>
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +020034#include <drm/drm_atomic_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030035
Ben Widawskydc39fff2013-10-18 12:32:07 -070036/**
Jani Nikula18afd442016-01-18 09:19:48 +020037 * DOC: RC6
38 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070039 * RC6 is a special power stage which allows the GPU to enter an very
40 * low-voltage mode when idle, using down to 0V while at this stage. This
41 * stage is entered automatically when the GPU is idle when RC6 support is
42 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
43 *
44 * There are different RC6 modes available in Intel GPU, which differentiate
45 * among each other with the latency required to enter and leave RC6 and
46 * voltage consumed by the GPU in different states.
47 *
48 * The combination of the following flags define which states GPU is allowed
49 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
50 * RC6pp is deepest RC6. Their support by hardware varies according to the
51 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
52 * which brings the most power savings; deeper states save more power, but
53 * require higher latency to switch to and wake up.
54 */
55#define INTEL_RC6_ENABLE (1<<0)
56#define INTEL_RC6p_ENABLE (1<<1)
57#define INTEL_RC6pp_ENABLE (1<<2)
58
Ville Syrjälä46f16e62016-10-31 22:37:22 +020059static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030060{
Mika Kuoppalab033bb62016-06-07 17:19:04 +030061 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl */
62 I915_WRITE(CHICKEN_PAR1_1,
63 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
64
65 I915_WRITE(GEN8_CONFIG0,
66 I915_READ(GEN8_CONFIG0) | GEN9_DEFAULT_FIXES);
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030067
68 /* WaEnableChickenDCPR:skl,bxt,kbl */
69 I915_WRITE(GEN8_CHICKEN_DCPR_1,
70 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030071
72 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030073 /* WaFbcWakeMemOn:skl,bxt,kbl */
74 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
75 DISP_FBC_WM_DIS |
76 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030077
78 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl */
79 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
80 ILK_DPFC_DISABLE_DUMMY0);
Mika Kuoppalab033bb62016-06-07 17:19:04 +030081}
82
Ville Syrjälä46f16e62016-10-31 22:37:22 +020083static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +020084{
Ville Syrjälä46f16e62016-10-31 22:37:22 +020085 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +020086
Nick Hoatha7546152015-06-29 14:07:32 +010087 /* WaDisableSDEUnitClockGating:bxt */
88 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
89 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
90
Imre Deak32608ca2015-03-11 11:10:27 +020091 /*
92 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020093 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +020094 */
Imre Deak32608ca2015-03-11 11:10:27 +020095 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +020096 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +020097
98 /*
99 * Wa: Backlight PWM may stop in the asserted state, causing backlight
100 * to stay fully on.
101 */
102 if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
103 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
104 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200105}
106
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200107static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200108{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200109 u32 tmp;
110
111 tmp = I915_READ(CLKCFG);
112
113 switch (tmp & CLKCFG_FSB_MASK) {
114 case CLKCFG_FSB_533:
115 dev_priv->fsb_freq = 533; /* 133*4 */
116 break;
117 case CLKCFG_FSB_800:
118 dev_priv->fsb_freq = 800; /* 200*4 */
119 break;
120 case CLKCFG_FSB_667:
121 dev_priv->fsb_freq = 667; /* 167*4 */
122 break;
123 case CLKCFG_FSB_400:
124 dev_priv->fsb_freq = 400; /* 100*4 */
125 break;
126 }
127
128 switch (tmp & CLKCFG_MEM_MASK) {
129 case CLKCFG_MEM_533:
130 dev_priv->mem_freq = 533;
131 break;
132 case CLKCFG_MEM_667:
133 dev_priv->mem_freq = 667;
134 break;
135 case CLKCFG_MEM_800:
136 dev_priv->mem_freq = 800;
137 break;
138 }
139
140 /* detect pineview DDR3 setting */
141 tmp = I915_READ(CSHRDDR3CTL);
142 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
143}
144
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200145static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200146{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200147 u16 ddrpll, csipll;
148
149 ddrpll = I915_READ16(DDRMPLL1);
150 csipll = I915_READ16(CSIPLL0);
151
152 switch (ddrpll & 0xff) {
153 case 0xc:
154 dev_priv->mem_freq = 800;
155 break;
156 case 0x10:
157 dev_priv->mem_freq = 1066;
158 break;
159 case 0x14:
160 dev_priv->mem_freq = 1333;
161 break;
162 case 0x18:
163 dev_priv->mem_freq = 1600;
164 break;
165 default:
166 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
167 ddrpll & 0xff);
168 dev_priv->mem_freq = 0;
169 break;
170 }
171
Daniel Vetter20e4d402012-08-08 23:35:39 +0200172 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200173
174 switch (csipll & 0x3ff) {
175 case 0x00c:
176 dev_priv->fsb_freq = 3200;
177 break;
178 case 0x00e:
179 dev_priv->fsb_freq = 3733;
180 break;
181 case 0x010:
182 dev_priv->fsb_freq = 4266;
183 break;
184 case 0x012:
185 dev_priv->fsb_freq = 4800;
186 break;
187 case 0x014:
188 dev_priv->fsb_freq = 5333;
189 break;
190 case 0x016:
191 dev_priv->fsb_freq = 5866;
192 break;
193 case 0x018:
194 dev_priv->fsb_freq = 6400;
195 break;
196 default:
197 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
198 csipll & 0x3ff);
199 dev_priv->fsb_freq = 0;
200 break;
201 }
202
203 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200204 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200205 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200206 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200207 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200208 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200209 }
210}
211
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300212static const struct cxsr_latency cxsr_latency_table[] = {
213 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
214 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
215 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
216 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
217 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
218
219 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
220 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
221 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
222 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
223 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
224
225 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
226 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
227 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
228 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
229 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
230
231 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
232 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
233 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
234 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
235 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
236
237 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
238 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
239 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
240 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
241 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
242
243 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
244 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
245 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
246 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
247 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
248};
249
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100250static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
251 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300252 int fsb,
253 int mem)
254{
255 const struct cxsr_latency *latency;
256 int i;
257
258 if (fsb == 0 || mem == 0)
259 return NULL;
260
261 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
262 latency = &cxsr_latency_table[i];
263 if (is_desktop == latency->is_desktop &&
264 is_ddr3 == latency->is_ddr3 &&
265 fsb == latency->fsb_freq && mem == latency->mem_freq)
266 return latency;
267 }
268
269 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
270
271 return NULL;
272}
273
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200274static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
275{
276 u32 val;
277
278 mutex_lock(&dev_priv->rps.hw_lock);
279
280 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
281 if (enable)
282 val &= ~FORCE_DDR_HIGH_FREQ;
283 else
284 val |= FORCE_DDR_HIGH_FREQ;
285 val &= ~FORCE_DDR_LOW_FREQ;
286 val |= FORCE_DDR_FREQ_REQ_ACK;
287 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
288
289 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
290 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
291 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
292
293 mutex_unlock(&dev_priv->rps.hw_lock);
294}
295
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200296static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
297{
298 u32 val;
299
300 mutex_lock(&dev_priv->rps.hw_lock);
301
302 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
303 if (enable)
304 val |= DSP_MAXFIFO_PM5_ENABLE;
305 else
306 val &= ~DSP_MAXFIFO_PM5_ENABLE;
307 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
308
309 mutex_unlock(&dev_priv->rps.hw_lock);
310}
311
Ville Syrjäläf4998962015-03-10 17:02:21 +0200312#define FW_WM(value, plane) \
313 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
314
Imre Deak5209b1f2014-07-01 12:36:17 +0300315void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300316{
Imre Deak5209b1f2014-07-01 12:36:17 +0300317 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300318
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100319 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300320 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300321 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300322 dev_priv->wm.vlv.cxsr = enable;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +0100323 } else if (IS_G4X(dev_priv) || IS_CRESTLINE(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300324 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300325 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200326 } else if (IS_PINEVIEW(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300327 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
328 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
329 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300330 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100331 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300332 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
333 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
334 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300335 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100336 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300337 /*
338 * FIXME can't find a bit like this for 915G, and
339 * and yet it does have the related watermark in
340 * FW_BLC_SELF. What's going on?
341 */
Imre Deak5209b1f2014-07-01 12:36:17 +0300342 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
343 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
344 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300345 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300346 } else {
347 return;
348 }
349
Tvrtko Ursulin08c4d7f2016-11-17 12:30:14 +0000350 DRM_DEBUG_KMS("memory self-refresh is %s\n", enableddisabled(enable));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300351}
352
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200353
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300354/*
355 * Latency for FIFO fetches is dependent on several factors:
356 * - memory configuration (speed, channels)
357 * - chipset
358 * - current MCH state
359 * It can be fairly high in some situations, so here we assume a fairly
360 * pessimal value. It's a tradeoff between extra memory fetches (if we
361 * set this value too high, the FIFO will fetch frequently to stay full)
362 * and power consumption (set it too low to save power and we might see
363 * FIFO underruns and display "flicker").
364 *
365 * A value of 5us seems to be a good balance; safe for very low end
366 * platforms but not overly aggressive on lower latency configs.
367 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100368static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300369
Ville Syrjäläb5004722015-03-05 21:19:47 +0200370#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
371 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
372
Ville Syrjälä49845a22016-11-22 18:02:01 +0200373static int vlv_get_fifo_size(struct intel_plane *plane)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200374{
Ville Syrjälä49845a22016-11-22 18:02:01 +0200375 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200376 int sprite0_start, sprite1_start, size;
377
Ville Syrjälä49845a22016-11-22 18:02:01 +0200378 if (plane->id == PLANE_CURSOR)
379 return 63;
380
381 switch (plane->pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200382 uint32_t dsparb, dsparb2, dsparb3;
383 case PIPE_A:
384 dsparb = I915_READ(DSPARB);
385 dsparb2 = I915_READ(DSPARB2);
386 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
387 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
388 break;
389 case PIPE_B:
390 dsparb = I915_READ(DSPARB);
391 dsparb2 = I915_READ(DSPARB2);
392 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
393 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
394 break;
395 case PIPE_C:
396 dsparb2 = I915_READ(DSPARB2);
397 dsparb3 = I915_READ(DSPARB3);
398 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
399 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
400 break;
401 default:
402 return 0;
403 }
404
Ville Syrjälä49845a22016-11-22 18:02:01 +0200405 switch (plane->id) {
406 case PLANE_PRIMARY:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200407 size = sprite0_start;
408 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200409 case PLANE_SPRITE0:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200410 size = sprite1_start - sprite0_start;
411 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200412 case PLANE_SPRITE1:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200413 size = 512 - 1 - sprite1_start;
414 break;
415 default:
416 return 0;
417 }
418
Ville Syrjälä49845a22016-11-22 18:02:01 +0200419 DRM_DEBUG_KMS("%s FIFO size: %d\n", plane->base.name, size);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200420
421 return size;
422}
423
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200424static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300425{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300426 uint32_t dsparb = I915_READ(DSPARB);
427 int size;
428
429 size = dsparb & 0x7f;
430 if (plane)
431 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
432
433 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
434 plane ? "B" : "A", size);
435
436 return size;
437}
438
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200439static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300440{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300441 uint32_t dsparb = I915_READ(DSPARB);
442 int size;
443
444 size = dsparb & 0x1ff;
445 if (plane)
446 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
447 size >>= 1; /* Convert to cachelines */
448
449 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
450 plane ? "B" : "A", size);
451
452 return size;
453}
454
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200455static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300456{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300457 uint32_t dsparb = I915_READ(DSPARB);
458 int size;
459
460 size = dsparb & 0x7f;
461 size >>= 2; /* Convert to cachelines */
462
463 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
464 plane ? "B" : "A",
465 size);
466
467 return size;
468}
469
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300470/* Pineview has different values for various configs */
471static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300472 .fifo_size = PINEVIEW_DISPLAY_FIFO,
473 .max_wm = PINEVIEW_MAX_WM,
474 .default_wm = PINEVIEW_DFT_WM,
475 .guard_size = PINEVIEW_GUARD_WM,
476 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300477};
478static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300479 .fifo_size = PINEVIEW_DISPLAY_FIFO,
480 .max_wm = PINEVIEW_MAX_WM,
481 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
482 .guard_size = PINEVIEW_GUARD_WM,
483 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300484};
485static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300486 .fifo_size = PINEVIEW_CURSOR_FIFO,
487 .max_wm = PINEVIEW_CURSOR_MAX_WM,
488 .default_wm = PINEVIEW_CURSOR_DFT_WM,
489 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
490 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300491};
492static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300493 .fifo_size = PINEVIEW_CURSOR_FIFO,
494 .max_wm = PINEVIEW_CURSOR_MAX_WM,
495 .default_wm = PINEVIEW_CURSOR_DFT_WM,
496 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
497 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300498};
499static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300500 .fifo_size = G4X_FIFO_SIZE,
501 .max_wm = G4X_MAX_WM,
502 .default_wm = G4X_MAX_WM,
503 .guard_size = 2,
504 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300505};
506static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300507 .fifo_size = I965_CURSOR_FIFO,
508 .max_wm = I965_CURSOR_MAX_WM,
509 .default_wm = I965_CURSOR_DFT_WM,
510 .guard_size = 2,
511 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300512};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300513static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300514 .fifo_size = I965_CURSOR_FIFO,
515 .max_wm = I965_CURSOR_MAX_WM,
516 .default_wm = I965_CURSOR_DFT_WM,
517 .guard_size = 2,
518 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300519};
520static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300521 .fifo_size = I945_FIFO_SIZE,
522 .max_wm = I915_MAX_WM,
523 .default_wm = 1,
524 .guard_size = 2,
525 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300526};
527static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300528 .fifo_size = I915_FIFO_SIZE,
529 .max_wm = I915_MAX_WM,
530 .default_wm = 1,
531 .guard_size = 2,
532 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300533};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300534static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300535 .fifo_size = I855GM_FIFO_SIZE,
536 .max_wm = I915_MAX_WM,
537 .default_wm = 1,
538 .guard_size = 2,
539 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300540};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300541static const struct intel_watermark_params i830_bc_wm_info = {
542 .fifo_size = I855GM_FIFO_SIZE,
543 .max_wm = I915_MAX_WM/2,
544 .default_wm = 1,
545 .guard_size = 2,
546 .cacheline_size = I830_FIFO_LINE_SIZE,
547};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200548static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300549 .fifo_size = I830_FIFO_SIZE,
550 .max_wm = I915_MAX_WM,
551 .default_wm = 1,
552 .guard_size = 2,
553 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300554};
555
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300556/**
557 * intel_calculate_wm - calculate watermark level
558 * @clock_in_khz: pixel clock
559 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200560 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300561 * @latency_ns: memory latency for the platform
562 *
563 * Calculate the watermark level (the level at which the display plane will
564 * start fetching from memory again). Each chip has a different display
565 * FIFO size and allocation, so the caller needs to figure that out and pass
566 * in the correct intel_watermark_params structure.
567 *
568 * As the pixel clock runs, the FIFO will be drained at a rate that depends
569 * on the pixel size. When it reaches the watermark level, it'll start
570 * fetching FIFO line sized based chunks from memory until the FIFO fills
571 * past the watermark point. If the FIFO drains completely, a FIFO underrun
572 * will occur, and a display engine hang could result.
573 */
574static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
575 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200576 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300577 unsigned long latency_ns)
578{
579 long entries_required, wm_size;
580
581 /*
582 * Note: we need to make sure we don't overflow for various clock &
583 * latency values.
584 * clocks go from a few thousand to several hundred thousand.
585 * latency is usually a few thousand
586 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200587 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300588 1000;
589 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
590
591 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
592
593 wm_size = fifo_size - (entries_required + wm->guard_size);
594
595 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
596
597 /* Don't promote wm_size to unsigned... */
598 if (wm_size > (long)wm->max_wm)
599 wm_size = wm->max_wm;
600 if (wm_size <= 0)
601 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300602
603 /*
604 * Bspec seems to indicate that the value shouldn't be lower than
605 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
606 * Lets go for 8 which is the burst size since certain platforms
607 * already use a hardcoded 8 (which is what the spec says should be
608 * done).
609 */
610 if (wm_size <= 8)
611 wm_size = 8;
612
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300613 return wm_size;
614}
615
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200616static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300617{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200618 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300619
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200620 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200621 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300622 if (enabled)
623 return NULL;
624 enabled = crtc;
625 }
626 }
627
628 return enabled;
629}
630
Ville Syrjälä432081b2016-10-31 22:37:03 +0200631static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300632{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200633 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200634 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300635 const struct cxsr_latency *latency;
636 u32 reg;
637 unsigned long wm;
638
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100639 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
640 dev_priv->is_ddr3,
641 dev_priv->fsb_freq,
642 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300643 if (!latency) {
644 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300645 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300646 return;
647 }
648
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200649 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300650 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200651 const struct drm_display_mode *adjusted_mode =
652 &crtc->config->base.adjusted_mode;
653 const struct drm_framebuffer *fb =
654 crtc->base.primary->state->fb;
655 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300656 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300657
658 /* Display SR */
659 wm = intel_calculate_wm(clock, &pineview_display_wm,
660 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200661 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662 reg = I915_READ(DSPFW1);
663 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200664 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300665 I915_WRITE(DSPFW1, reg);
666 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
667
668 /* cursor SR */
669 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
670 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200671 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300672 reg = I915_READ(DSPFW3);
673 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200674 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300675 I915_WRITE(DSPFW3, reg);
676
677 /* Display HPLL off SR */
678 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
679 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200680 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300681 reg = I915_READ(DSPFW3);
682 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200683 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300684 I915_WRITE(DSPFW3, reg);
685
686 /* cursor HPLL off SR */
687 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
688 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200689 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300690 reg = I915_READ(DSPFW3);
691 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200692 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300693 I915_WRITE(DSPFW3, reg);
694 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
695
Imre Deak5209b1f2014-07-01 12:36:17 +0300696 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300697 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300698 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300699 }
700}
701
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200702static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300703 int plane,
704 const struct intel_watermark_params *display,
705 int display_latency_ns,
706 const struct intel_watermark_params *cursor,
707 int cursor_latency_ns,
708 int *plane_wm,
709 int *cursor_wm)
710{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200711 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300712 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200713 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200714 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300715 int line_time_us, line_count;
716 int entries, tlb_miss;
717
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200718 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200719 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300720 *cursor_wm = cursor->guard_size;
721 *plane_wm = display->guard_size;
722 return false;
723 }
724
Ville Syrjäläefc26112016-10-31 22:37:04 +0200725 adjusted_mode = &crtc->config->base.adjusted_mode;
726 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100727 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800728 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200729 hdisplay = crtc->config->pipe_src_w;
730 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300731
732 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200733 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300734 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
735 if (tlb_miss > 0)
736 entries += tlb_miss;
737 entries = DIV_ROUND_UP(entries, display->cacheline_size);
738 *plane_wm = entries + display->guard_size;
739 if (*plane_wm > (int)display->max_wm)
740 *plane_wm = display->max_wm;
741
742 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200743 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300744 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200745 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300746 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
747 if (tlb_miss > 0)
748 entries += tlb_miss;
749 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
750 *cursor_wm = entries + cursor->guard_size;
751 if (*cursor_wm > (int)cursor->max_wm)
752 *cursor_wm = (int)cursor->max_wm;
753
754 return true;
755}
756
757/*
758 * Check the wm result.
759 *
760 * If any calculated watermark values is larger than the maximum value that
761 * can be programmed into the associated watermark register, that watermark
762 * must be disabled.
763 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200764static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300765 int display_wm, int cursor_wm,
766 const struct intel_watermark_params *display,
767 const struct intel_watermark_params *cursor)
768{
769 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
770 display_wm, cursor_wm);
771
772 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100773 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774 display_wm, display->max_wm);
775 return false;
776 }
777
778 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100779 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300780 cursor_wm, cursor->max_wm);
781 return false;
782 }
783
784 if (!(display_wm || cursor_wm)) {
785 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
786 return false;
787 }
788
789 return true;
790}
791
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200792static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300793 int plane,
794 int latency_ns,
795 const struct intel_watermark_params *display,
796 const struct intel_watermark_params *cursor,
797 int *display_wm, int *cursor_wm)
798{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200799 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300800 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200801 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200802 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300803 unsigned long line_time_us;
804 int line_count, line_size;
805 int small, large;
806 int entries;
807
808 if (!latency_ns) {
809 *display_wm = *cursor_wm = 0;
810 return false;
811 }
812
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200813 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200814 adjusted_mode = &crtc->config->base.adjusted_mode;
815 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100816 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800817 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200818 hdisplay = crtc->config->pipe_src_w;
819 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300820
Ville Syrjälä922044c2014-02-14 14:18:57 +0200821 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300822 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200823 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300824
825 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200826 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300827 large = line_count * line_size;
828
829 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
830 *display_wm = entries + display->guard_size;
831
832 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200833 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300834 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
835 *cursor_wm = entries + cursor->guard_size;
836
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200837 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300838 *display_wm, *cursor_wm,
839 display, cursor);
840}
841
Ville Syrjälä15665972015-03-10 16:16:28 +0200842#define FW_WM_VLV(value, plane) \
843 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
844
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200845static void vlv_write_wm_values(struct intel_crtc *crtc,
846 const struct vlv_wm_values *wm)
847{
848 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
849 enum pipe pipe = crtc->pipe;
850
851 I915_WRITE(VLV_DDL(pipe),
Ville Syrjälä1b313892016-11-28 19:37:08 +0200852 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
853 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
854 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
855 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200856
Ville Syrjäläae801522015-03-05 21:19:49 +0200857 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200858 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200859 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
860 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
861 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200862 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200863 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
864 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
865 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200866 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200867 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200868
869 if (IS_CHERRYVIEW(dev_priv)) {
870 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200871 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
872 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200873 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200874 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
875 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200876 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200877 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
878 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200879 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200880 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200881 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
882 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
883 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
884 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
885 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
886 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
887 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
888 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
889 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200890 } else {
891 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200892 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
893 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200894 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200895 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200896 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
897 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
898 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
899 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
900 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
901 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200902 }
903
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300904 /* zero (unused) WM1 watermarks */
905 I915_WRITE(DSPFW4, 0);
906 I915_WRITE(DSPFW5, 0);
907 I915_WRITE(DSPFW6, 0);
908 I915_WRITE(DSPHOWM1, 0);
909
Ville Syrjäläae801522015-03-05 21:19:49 +0200910 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200911}
912
Ville Syrjälä15665972015-03-10 16:16:28 +0200913#undef FW_WM_VLV
914
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300915enum vlv_wm_level {
916 VLV_WM_LEVEL_PM2,
917 VLV_WM_LEVEL_PM5,
918 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300919};
920
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300921/* latency must be in 0.1us units. */
922static unsigned int vlv_wm_method2(unsigned int pixel_rate,
923 unsigned int pipe_htotal,
924 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200925 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300926 unsigned int latency)
927{
928 unsigned int ret;
929
930 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200931 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300932 ret = DIV_ROUND_UP(ret, 64);
933
934 return ret;
935}
936
Ville Syrjäläbb726512016-10-31 22:37:24 +0200937static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300938{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300939 /* all latencies in usec */
940 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
941
Ville Syrjälä58590c12015-09-08 21:05:12 +0300942 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
943
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300944 if (IS_CHERRYVIEW(dev_priv)) {
945 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
946 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300947
948 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300949 }
950}
951
952static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
953 struct intel_crtc *crtc,
954 const struct intel_plane_state *state,
955 int level)
956{
957 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläac484962016-01-20 21:05:26 +0200958 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300959
960 if (dev_priv->wm.pri_latency[level] == 0)
961 return USHRT_MAX;
962
Ville Syrjälä936e71e2016-07-26 19:06:59 +0300963 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300964 return 0;
965
Ville Syrjäläac484962016-01-20 21:05:26 +0200966 cpp = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300967 clock = crtc->config->base.adjusted_mode.crtc_clock;
968 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
969 width = crtc->config->pipe_src_w;
970 if (WARN_ON(htotal == 0))
971 htotal = 1;
972
973 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
974 /*
975 * FIXME the formula gives values that are
976 * too big for the cursor FIFO, and hence we
977 * would never be able to use cursors. For
978 * now just hardcode the watermark.
979 */
980 wm = 63;
981 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +0200982 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300983 dev_priv->wm.pri_latency[level] * 10);
984 }
985
986 return min_t(int, wm, USHRT_MAX);
987}
988
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +0300989static void vlv_compute_fifo(struct intel_crtc *crtc)
990{
991 struct drm_device *dev = crtc->base.dev;
992 struct vlv_wm_state *wm_state = &crtc->wm_state;
993 struct intel_plane *plane;
994 unsigned int total_rate = 0;
995 const int fifo_size = 512 - 1;
996 int fifo_extra, fifo_left = fifo_size;
997
998 for_each_intel_plane_on_crtc(dev, crtc, plane) {
999 struct intel_plane_state *state =
1000 to_intel_plane_state(plane->base.state);
1001
1002 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1003 continue;
1004
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001005 if (state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001006 wm_state->num_active_planes++;
1007 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1008 }
1009 }
1010
1011 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1012 struct intel_plane_state *state =
1013 to_intel_plane_state(plane->base.state);
1014 unsigned int rate;
1015
1016 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1017 plane->wm.fifo_size = 63;
1018 continue;
1019 }
1020
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001021 if (!state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001022 plane->wm.fifo_size = 0;
1023 continue;
1024 }
1025
1026 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1027 plane->wm.fifo_size = fifo_size * rate / total_rate;
1028 fifo_left -= plane->wm.fifo_size;
1029 }
1030
1031 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1032
1033 /* spread the remainder evenly */
1034 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1035 int plane_extra;
1036
1037 if (fifo_left == 0)
1038 break;
1039
1040 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1041 continue;
1042
1043 /* give it all to the first plane if none are active */
1044 if (plane->wm.fifo_size == 0 &&
1045 wm_state->num_active_planes)
1046 continue;
1047
1048 plane_extra = min(fifo_extra, fifo_left);
1049 plane->wm.fifo_size += plane_extra;
1050 fifo_left -= plane_extra;
1051 }
1052
1053 WARN_ON(fifo_left != 0);
1054}
1055
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001056static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1057{
1058 if (wm > fifo_size)
1059 return USHRT_MAX;
1060 else
1061 return fifo_size - wm;
1062}
1063
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001064static void vlv_invert_wms(struct intel_crtc *crtc)
1065{
1066 struct vlv_wm_state *wm_state = &crtc->wm_state;
1067 int level;
1068
1069 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001070 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001071 const int sr_fifo_size =
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001072 INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001073 struct intel_plane *plane;
1074
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001075 wm_state->sr[level].plane =
1076 vlv_invert_wm_value(wm_state->sr[level].plane,
1077 sr_fifo_size);
1078 wm_state->sr[level].cursor =
1079 vlv_invert_wm_value(wm_state->sr[level].cursor,
1080 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001081
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001082 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001083 wm_state->wm[level].plane[plane->id] =
1084 vlv_invert_wm_value(wm_state->wm[level].plane[plane->id],
1085 plane->wm.fifo_size);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001086 }
1087 }
1088}
1089
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001090static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001091{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001092 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001093 struct vlv_wm_state *wm_state = &crtc->wm_state;
1094 struct intel_plane *plane;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001095 int level;
1096
1097 memset(wm_state, 0, sizeof(*wm_state));
1098
Ville Syrjälä852eb002015-06-24 22:00:07 +03001099 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001100 wm_state->num_levels = dev_priv->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001101
1102 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001103
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001104 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001105
1106 if (wm_state->num_active_planes != 1)
1107 wm_state->cxsr = false;
1108
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001109 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001110 struct intel_plane_state *state =
1111 to_intel_plane_state(plane->base.state);
Ville Syrjälä1b313892016-11-28 19:37:08 +02001112 int level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001113
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001114 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001115 continue;
1116
1117 /* normal watermarks */
1118 for (level = 0; level < wm_state->num_levels; level++) {
1119 int wm = vlv_compute_wm_level(plane, crtc, state, level);
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001120 int max_wm = plane->wm.fifo_size;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001121
1122 /* hack */
1123 if (WARN_ON(level == 0 && wm > max_wm))
1124 wm = max_wm;
1125
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001126 if (wm > max_wm)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001127 break;
1128
Ville Syrjälä1b313892016-11-28 19:37:08 +02001129 wm_state->wm[level].plane[plane->id] = wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001130 }
1131
1132 wm_state->num_levels = level;
1133
1134 if (!wm_state->cxsr)
1135 continue;
1136
1137 /* maxfifo watermarks */
Ville Syrjälä1b313892016-11-28 19:37:08 +02001138 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139 for (level = 0; level < wm_state->num_levels; level++)
1140 wm_state->sr[level].cursor =
Ville Syrjälä1b313892016-11-28 19:37:08 +02001141 wm_state->wm[level].plane[PLANE_CURSOR];
1142 } else {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001143 for (level = 0; level < wm_state->num_levels; level++)
1144 wm_state->sr[level].plane =
Ville Syrjälä50a9dd32016-11-28 19:37:06 +02001145 max(wm_state->sr[level].plane,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001146 wm_state->wm[level].plane[plane->id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001147 }
1148 }
1149
1150 /* clear any (partially) filled invalid levels */
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001151 for (level = wm_state->num_levels; level < dev_priv->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001152 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1153 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1154 }
1155
1156 vlv_invert_wms(crtc);
1157}
1158
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001159#define VLV_FIFO(plane, value) \
1160 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1161
1162static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1163{
1164 struct drm_device *dev = crtc->base.dev;
1165 struct drm_i915_private *dev_priv = to_i915(dev);
1166 struct intel_plane *plane;
1167 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1168
1169 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjälä49845a22016-11-22 18:02:01 +02001170 switch (plane->id) {
1171 case PLANE_PRIMARY:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001172 sprite0_start = plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001173 break;
1174 case PLANE_SPRITE0:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001175 sprite1_start = sprite0_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001176 break;
1177 case PLANE_SPRITE1:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001178 fifo_size = sprite1_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001179 break;
1180 case PLANE_CURSOR:
1181 WARN_ON(plane->wm.fifo_size != 63);
1182 break;
1183 default:
1184 MISSING_CASE(plane->id);
1185 break;
1186 }
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001187 }
1188
1189 WARN_ON(fifo_size != 512 - 1);
1190
1191 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1192 pipe_name(crtc->pipe), sprite0_start,
1193 sprite1_start, fifo_size);
1194
1195 switch (crtc->pipe) {
1196 uint32_t dsparb, dsparb2, dsparb3;
1197 case PIPE_A:
1198 dsparb = I915_READ(DSPARB);
1199 dsparb2 = I915_READ(DSPARB2);
1200
1201 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1202 VLV_FIFO(SPRITEB, 0xff));
1203 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1204 VLV_FIFO(SPRITEB, sprite1_start));
1205
1206 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1207 VLV_FIFO(SPRITEB_HI, 0x1));
1208 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1209 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1210
1211 I915_WRITE(DSPARB, dsparb);
1212 I915_WRITE(DSPARB2, dsparb2);
1213 break;
1214 case PIPE_B:
1215 dsparb = I915_READ(DSPARB);
1216 dsparb2 = I915_READ(DSPARB2);
1217
1218 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1219 VLV_FIFO(SPRITED, 0xff));
1220 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1221 VLV_FIFO(SPRITED, sprite1_start));
1222
1223 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1224 VLV_FIFO(SPRITED_HI, 0xff));
1225 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1226 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1227
1228 I915_WRITE(DSPARB, dsparb);
1229 I915_WRITE(DSPARB2, dsparb2);
1230 break;
1231 case PIPE_C:
1232 dsparb3 = I915_READ(DSPARB3);
1233 dsparb2 = I915_READ(DSPARB2);
1234
1235 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1236 VLV_FIFO(SPRITEF, 0xff));
1237 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1238 VLV_FIFO(SPRITEF, sprite1_start));
1239
1240 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1241 VLV_FIFO(SPRITEF_HI, 0xff));
1242 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1243 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1244
1245 I915_WRITE(DSPARB3, dsparb3);
1246 I915_WRITE(DSPARB2, dsparb2);
1247 break;
1248 default:
1249 break;
1250 }
1251}
1252
1253#undef VLV_FIFO
1254
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001255static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001256 struct vlv_wm_values *wm)
1257{
1258 struct intel_crtc *crtc;
1259 int num_active_crtcs = 0;
1260
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001261 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001262 wm->cxsr = true;
1263
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001264 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001265 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1266
1267 if (!crtc->active)
1268 continue;
1269
1270 if (!wm_state->cxsr)
1271 wm->cxsr = false;
1272
1273 num_active_crtcs++;
1274 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1275 }
1276
1277 if (num_active_crtcs != 1)
1278 wm->cxsr = false;
1279
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001280 if (num_active_crtcs > 1)
1281 wm->level = VLV_WM_LEVEL_PM2;
1282
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001283 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001284 struct vlv_wm_state *wm_state = &crtc->wm_state;
1285 enum pipe pipe = crtc->pipe;
1286
1287 if (!crtc->active)
1288 continue;
1289
1290 wm->pipe[pipe] = wm_state->wm[wm->level];
1291 if (wm->cxsr)
1292 wm->sr = wm_state->sr[wm->level];
1293
Ville Syrjälä1b313892016-11-28 19:37:08 +02001294 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1295 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1296 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1297 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001298 }
1299}
1300
Ville Syrjälä432081b2016-10-31 22:37:03 +02001301static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001302{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001303 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001304 enum pipe pipe = crtc->pipe;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001305 struct vlv_wm_values wm = {};
1306
Ville Syrjälä432081b2016-10-31 22:37:03 +02001307 vlv_compute_wm(crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001308 vlv_merge_wm(dev_priv, &wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001309
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001310 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1311 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001312 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001313 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001314 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001315
1316 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1317 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1318 chv_set_memory_dvfs(dev_priv, false);
1319
1320 if (wm.level < VLV_WM_LEVEL_PM5 &&
1321 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1322 chv_set_memory_pm5(dev_priv, false);
1323
Ville Syrjälä852eb002015-06-24 22:00:07 +03001324 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001325 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001326
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001327 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001328 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001329
Ville Syrjälä432081b2016-10-31 22:37:03 +02001330 vlv_write_wm_values(crtc, &wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001331
1332 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1333 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
Ville Syrjälä1b313892016-11-28 19:37:08 +02001334 pipe_name(pipe), wm.pipe[pipe].plane[PLANE_PRIMARY], wm.pipe[pipe].plane[PLANE_CURSOR],
1335 wm.pipe[pipe].plane[PLANE_SPRITE0], wm.pipe[pipe].plane[PLANE_SPRITE1],
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001336 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1337
Ville Syrjälä852eb002015-06-24 22:00:07 +03001338 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001339 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001340
1341 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1342 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1343 chv_set_memory_pm5(dev_priv, true);
1344
1345 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1346 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1347 chv_set_memory_dvfs(dev_priv, true);
1348
1349 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001350}
1351
Ville Syrjäläae801522015-03-05 21:19:49 +02001352#define single_plane_enabled(mask) is_power_of_2(mask)
1353
Ville Syrjälä432081b2016-10-31 22:37:03 +02001354static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001355{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001356 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001357 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001358 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1359 int plane_sr, cursor_sr;
1360 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001361 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001362
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001363 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001364 &g4x_wm_info, pessimal_latency_ns,
1365 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001366 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001367 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001368
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001369 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001370 &g4x_wm_info, pessimal_latency_ns,
1371 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001372 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001373 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001374
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001375 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001376 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001377 sr_latency_ns,
1378 &g4x_wm_info,
1379 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001380 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001381 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001382 } else {
Imre Deak98584252014-06-13 14:54:20 +03001383 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001384 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001385 plane_sr = cursor_sr = 0;
1386 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001387
Ville Syrjäläa5043452014-06-28 02:04:18 +03001388 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1389 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001390 planea_wm, cursora_wm,
1391 planeb_wm, cursorb_wm,
1392 plane_sr, cursor_sr);
1393
1394 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001395 FW_WM(plane_sr, SR) |
1396 FW_WM(cursorb_wm, CURSORB) |
1397 FW_WM(planeb_wm, PLANEB) |
1398 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001399 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001400 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001401 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402 /* HPLL off in SR has some issues on G4x... disable it */
1403 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001404 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001405 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001406
1407 if (cxsr_enabled)
1408 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001409}
1410
Ville Syrjälä432081b2016-10-31 22:37:03 +02001411static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001412{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001413 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001414 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001415 int srwm = 1;
1416 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001417 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001418
1419 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001420 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001421 if (crtc) {
1422 /* self-refresh has much higher latency */
1423 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001424 const struct drm_display_mode *adjusted_mode =
1425 &crtc->config->base.adjusted_mode;
1426 const struct drm_framebuffer *fb =
1427 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001428 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001429 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001430 int hdisplay = crtc->config->pipe_src_w;
1431 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432 unsigned long line_time_us;
1433 int entries;
1434
Ville Syrjälä922044c2014-02-14 14:18:57 +02001435 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001436
1437 /* Use ns/us then divide to preserve precision */
1438 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001439 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1441 srwm = I965_FIFO_SIZE - entries;
1442 if (srwm < 0)
1443 srwm = 1;
1444 srwm &= 0x1ff;
1445 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1446 entries, srwm);
1447
1448 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001449 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001450 entries = DIV_ROUND_UP(entries,
1451 i965_cursor_wm_info.cacheline_size);
1452 cursor_sr = i965_cursor_wm_info.fifo_size -
1453 (entries + i965_cursor_wm_info.guard_size);
1454
1455 if (cursor_sr > i965_cursor_wm_info.max_wm)
1456 cursor_sr = i965_cursor_wm_info.max_wm;
1457
1458 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1459 "cursor %d\n", srwm, cursor_sr);
1460
Imre Deak98584252014-06-13 14:54:20 +03001461 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001462 } else {
Imre Deak98584252014-06-13 14:54:20 +03001463 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001465 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001466 }
1467
1468 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1469 srwm);
1470
1471 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001472 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1473 FW_WM(8, CURSORB) |
1474 FW_WM(8, PLANEB) |
1475 FW_WM(8, PLANEA));
1476 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1477 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001478 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001479 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001480
1481 if (cxsr_enabled)
1482 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001483}
1484
Ville Syrjäläf4998962015-03-10 17:02:21 +02001485#undef FW_WM
1486
Ville Syrjälä432081b2016-10-31 22:37:03 +02001487static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001488{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001489 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001490 const struct intel_watermark_params *wm_info;
1491 uint32_t fwater_lo;
1492 uint32_t fwater_hi;
1493 int cwm, srwm = 1;
1494 int fifo_size;
1495 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001496 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001497
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001498 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001499 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001500 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001501 wm_info = &i915_wm_info;
1502 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001503 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001504
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001505 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001506 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001507 if (intel_crtc_active(crtc)) {
1508 const struct drm_display_mode *adjusted_mode =
1509 &crtc->config->base.adjusted_mode;
1510 const struct drm_framebuffer *fb =
1511 crtc->base.primary->state->fb;
1512 int cpp;
1513
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001514 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001515 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001516 else
1517 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001518
Damien Lespiau241bfc32013-09-25 16:45:37 +01001519 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001520 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001521 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001522 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001523 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001524 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001525 if (planea_wm > (long)wm_info->max_wm)
1526 planea_wm = wm_info->max_wm;
1527 }
1528
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001529 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001530 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001531
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001532 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001533 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001534 if (intel_crtc_active(crtc)) {
1535 const struct drm_display_mode *adjusted_mode =
1536 &crtc->config->base.adjusted_mode;
1537 const struct drm_framebuffer *fb =
1538 crtc->base.primary->state->fb;
1539 int cpp;
1540
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001541 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001542 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001543 else
1544 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001545
Damien Lespiau241bfc32013-09-25 16:45:37 +01001546 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001547 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001548 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001549 if (enabled == NULL)
1550 enabled = crtc;
1551 else
1552 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001553 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001554 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001555 if (planeb_wm > (long)wm_info->max_wm)
1556 planeb_wm = wm_info->max_wm;
1557 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001558
1559 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1560
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001561 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001562 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001563
Ville Syrjäläefc26112016-10-31 22:37:04 +02001564 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001565
1566 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001567 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001568 enabled = NULL;
1569 }
1570
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001571 /*
1572 * Overlay gets an aggressive default since video jitter is bad.
1573 */
1574 cwm = 2;
1575
1576 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001577 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001578
1579 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001580 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001581 /* self-refresh has much higher latency */
1582 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001583 const struct drm_display_mode *adjusted_mode =
1584 &enabled->config->base.adjusted_mode;
1585 const struct drm_framebuffer *fb =
1586 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001587 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001588 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001589 int hdisplay = enabled->config->pipe_src_w;
1590 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001591 unsigned long line_time_us;
1592 int entries;
1593
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001594 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001595 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001596 else
1597 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001598
Ville Syrjälä922044c2014-02-14 14:18:57 +02001599 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001600
1601 /* Use ns/us then divide to preserve precision */
1602 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001603 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001604 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1605 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1606 srwm = wm_info->fifo_size - entries;
1607 if (srwm < 0)
1608 srwm = 1;
1609
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001610 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001611 I915_WRITE(FW_BLC_SELF,
1612 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001613 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001614 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1615 }
1616
1617 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1618 planea_wm, planeb_wm, cwm, srwm);
1619
1620 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1621 fwater_hi = (cwm & 0x1f);
1622
1623 /* Set request length to 8 cachelines per fetch */
1624 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1625 fwater_hi = fwater_hi | (1 << 8);
1626
1627 I915_WRITE(FW_BLC, fwater_lo);
1628 I915_WRITE(FW_BLC2, fwater_hi);
1629
Imre Deak5209b1f2014-07-01 12:36:17 +03001630 if (enabled)
1631 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001632}
1633
Ville Syrjälä432081b2016-10-31 22:37:03 +02001634static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001635{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001636 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001637 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001638 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001639 uint32_t fwater_lo;
1640 int planea_wm;
1641
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001642 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001643 if (crtc == NULL)
1644 return;
1645
Ville Syrjäläefc26112016-10-31 22:37:04 +02001646 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001647 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001648 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001649 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001650 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001651 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1652 fwater_lo |= (3<<8) | planea_wm;
1653
1654 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1655
1656 I915_WRITE(FW_BLC, fwater_lo);
1657}
1658
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001659uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001660{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001661 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001662
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001663 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001664
1665 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1666 * adjust the pixel_rate here. */
1667
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001668 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001669 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001670 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001671
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001672 pipe_w = pipe_config->pipe_src_w;
1673 pipe_h = pipe_config->pipe_src_h;
1674
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001675 pfit_w = (pfit_size >> 16) & 0xFFFF;
1676 pfit_h = pfit_size & 0xFFFF;
1677 if (pipe_w < pfit_w)
1678 pipe_w = pfit_w;
1679 if (pipe_h < pfit_h)
1680 pipe_h = pfit_h;
1681
Matt Roper15126882015-12-03 11:37:40 -08001682 if (WARN_ON(!pfit_w || !pfit_h))
1683 return pixel_rate;
1684
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001685 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1686 pfit_w * pfit_h);
1687 }
1688
1689 return pixel_rate;
1690}
1691
Ville Syrjälä37126462013-08-01 16:18:55 +03001692/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001693static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001694{
1695 uint64_t ret;
1696
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001697 if (WARN(latency == 0, "Latency value missing\n"))
1698 return UINT_MAX;
1699
Ville Syrjäläac484962016-01-20 21:05:26 +02001700 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001701 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1702
1703 return ret;
1704}
1705
Ville Syrjälä37126462013-08-01 16:18:55 +03001706/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001707static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001708 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001709 uint32_t latency)
1710{
1711 uint32_t ret;
1712
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001713 if (WARN(latency == 0, "Latency value missing\n"))
1714 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001715 if (WARN_ON(!pipe_htotal))
1716 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001717
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001718 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001719 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001720 ret = DIV_ROUND_UP(ret, 64) + 2;
1721 return ret;
1722}
1723
Ville Syrjälä23297042013-07-05 11:57:17 +03001724static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001725 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001726{
Matt Roper15126882015-12-03 11:37:40 -08001727 /*
1728 * Neither of these should be possible since this function shouldn't be
1729 * called if the CRTC is off or the plane is invisible. But let's be
1730 * extra paranoid to avoid a potential divide-by-zero if we screw up
1731 * elsewhere in the driver.
1732 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001733 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001734 return 0;
1735 if (WARN_ON(!horiz_pixels))
1736 return 0;
1737
Ville Syrjäläac484962016-01-20 21:05:26 +02001738 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001739}
1740
Imre Deak820c1982013-12-17 14:46:36 +02001741struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001742 uint16_t pri;
1743 uint16_t spr;
1744 uint16_t cur;
1745 uint16_t fbc;
1746};
1747
Ville Syrjälä37126462013-08-01 16:18:55 +03001748/*
1749 * For both WM_PIPE and WM_LP.
1750 * mem_value must be in 0.1us units.
1751 */
Matt Roper7221fc32015-09-24 15:53:08 -07001752static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001753 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001754 uint32_t mem_value,
1755 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001756{
Ville Syrjäläac484962016-01-20 21:05:26 +02001757 int cpp = pstate->base.fb ?
1758 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001759 uint32_t method1, method2;
1760
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001761 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001762 return 0;
1763
Ville Syrjäläac484962016-01-20 21:05:26 +02001764 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001765
1766 if (!is_lp)
1767 return method1;
1768
Matt Roper7221fc32015-09-24 15:53:08 -07001769 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1770 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001771 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001772 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001773
1774 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001775}
1776
Ville Syrjälä37126462013-08-01 16:18:55 +03001777/*
1778 * For both WM_PIPE and WM_LP.
1779 * mem_value must be in 0.1us units.
1780 */
Matt Roper7221fc32015-09-24 15:53:08 -07001781static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001782 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001783 uint32_t mem_value)
1784{
Ville Syrjäläac484962016-01-20 21:05:26 +02001785 int cpp = pstate->base.fb ?
1786 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001787 uint32_t method1, method2;
1788
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001789 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001790 return 0;
1791
Ville Syrjäläac484962016-01-20 21:05:26 +02001792 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Matt Roper7221fc32015-09-24 15:53:08 -07001793 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1794 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001795 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001796 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001797 return min(method1, method2);
1798}
1799
Ville Syrjälä37126462013-08-01 16:18:55 +03001800/*
1801 * For both WM_PIPE and WM_LP.
1802 * mem_value must be in 0.1us units.
1803 */
Matt Roper7221fc32015-09-24 15:53:08 -07001804static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001805 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001806 uint32_t mem_value)
1807{
Matt Roperb2435692016-02-02 22:06:51 -08001808 /*
1809 * We treat the cursor plane as always-on for the purposes of watermark
1810 * calculation. Until we have two-stage watermark programming merged,
1811 * this is necessary to avoid flickering.
1812 */
1813 int cpp = 4;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001814 int width = pstate->base.visible ? pstate->base.crtc_w : 64;
Matt Roper43d59ed2015-09-24 15:53:07 -07001815
Matt Roperb2435692016-02-02 22:06:51 -08001816 if (!cstate->base.active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001817 return 0;
1818
Matt Roper7221fc32015-09-24 15:53:08 -07001819 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1820 cstate->base.adjusted_mode.crtc_htotal,
Matt Roperb2435692016-02-02 22:06:51 -08001821 width, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001822}
1823
Paulo Zanonicca32e92013-05-31 11:45:06 -03001824/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001825static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001826 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001827 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001828{
Ville Syrjäläac484962016-01-20 21:05:26 +02001829 int cpp = pstate->base.fb ?
1830 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Matt Roper43d59ed2015-09-24 15:53:07 -07001831
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001832 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001833 return 0;
1834
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001835 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001836}
1837
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001838static unsigned int
1839ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001840{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001841 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07001842 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001843 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001844 return 768;
1845 else
1846 return 512;
1847}
1848
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001849static unsigned int
1850ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
1851 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001852{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001853 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001854 /* BDW primary/sprite plane watermarks */
1855 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001856 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001857 /* IVB/HSW primary/sprite plane watermarks */
1858 return level == 0 ? 127 : 1023;
1859 else if (!is_sprite)
1860 /* ILK/SNB primary plane watermarks */
1861 return level == 0 ? 127 : 511;
1862 else
1863 /* ILK/SNB sprite plane watermarks */
1864 return level == 0 ? 63 : 255;
1865}
1866
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001867static unsigned int
1868ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001869{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001870 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001871 return level == 0 ? 63 : 255;
1872 else
1873 return level == 0 ? 31 : 63;
1874}
1875
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001876static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001877{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001878 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001879 return 31;
1880 else
1881 return 15;
1882}
1883
Ville Syrjälä158ae642013-08-07 13:28:19 +03001884/* Calculate the maximum primary/sprite plane watermark */
1885static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1886 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001887 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001888 enum intel_ddb_partitioning ddb_partitioning,
1889 bool is_sprite)
1890{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001891 struct drm_i915_private *dev_priv = to_i915(dev);
1892 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001893
1894 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001895 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001896 return 0;
1897
1898 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001899 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001900 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03001901
1902 /*
1903 * For some reason the non self refresh
1904 * FIFO size is only half of the self
1905 * refresh FIFO size on ILK/SNB.
1906 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001907 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001908 fifo_size /= 2;
1909 }
1910
Ville Syrjälä240264f2013-08-07 13:29:12 +03001911 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001912 /* level 0 is always calculated with 1:1 split */
1913 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1914 if (is_sprite)
1915 fifo_size *= 5;
1916 fifo_size /= 6;
1917 } else {
1918 fifo_size /= 2;
1919 }
1920 }
1921
1922 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001923 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001924}
1925
1926/* Calculate the maximum cursor plane watermark */
1927static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001928 int level,
1929 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001930{
1931 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001932 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001933 return 64;
1934
1935 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001936 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001937}
1938
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001939static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001940 int level,
1941 const struct intel_wm_config *config,
1942 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001943 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001944{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001945 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1946 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1947 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001948 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001949}
1950
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001951static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001952 int level,
1953 struct ilk_wm_maximums *max)
1954{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001955 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
1956 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
1957 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
1958 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001959}
1960
Ville Syrjäläd9395652013-10-09 19:18:10 +03001961static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001962 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001963 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001964{
1965 bool ret;
1966
1967 /* already determined to be invalid? */
1968 if (!result->enable)
1969 return false;
1970
1971 result->enable = result->pri_val <= max->pri &&
1972 result->spr_val <= max->spr &&
1973 result->cur_val <= max->cur;
1974
1975 ret = result->enable;
1976
1977 /*
1978 * HACK until we can pre-compute everything,
1979 * and thus fail gracefully if LP0 watermarks
1980 * are exceeded...
1981 */
1982 if (level == 0 && !result->enable) {
1983 if (result->pri_val > max->pri)
1984 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1985 level, result->pri_val, max->pri);
1986 if (result->spr_val > max->spr)
1987 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1988 level, result->spr_val, max->spr);
1989 if (result->cur_val > max->cur)
1990 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1991 level, result->cur_val, max->cur);
1992
1993 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1994 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1995 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1996 result->enable = true;
1997 }
1998
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001999 return ret;
2000}
2001
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002002static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002003 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002004 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002005 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002006 struct intel_plane_state *pristate,
2007 struct intel_plane_state *sprstate,
2008 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002009 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002010{
2011 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2012 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2013 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2014
2015 /* WM1+ latency values stored in 0.5us units */
2016 if (level > 0) {
2017 pri_latency *= 5;
2018 spr_latency *= 5;
2019 cur_latency *= 5;
2020 }
2021
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002022 if (pristate) {
2023 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2024 pri_latency, level);
2025 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2026 }
2027
2028 if (sprstate)
2029 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2030
2031 if (curstate)
2032 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2033
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002034 result->enable = true;
2035}
2036
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002037static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002038hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002039{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002040 const struct intel_atomic_state *intel_state =
2041 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002042 const struct drm_display_mode *adjusted_mode =
2043 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002044 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002045
Matt Roperee91a152015-12-03 11:37:39 -08002046 if (!cstate->base.active)
2047 return 0;
2048 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2049 return 0;
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002050 if (WARN_ON(intel_state->cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002051 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002052
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002053 /* The WM are computed with base on how long it takes to fill a single
2054 * row at the given clock rate, multiplied by 8.
2055 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002056 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2057 adjusted_mode->crtc_clock);
2058 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002059 intel_state->cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002060
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002061 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2062 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002063}
2064
Ville Syrjäläbb726512016-10-31 22:37:24 +02002065static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2066 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002067{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002068 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002069 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002070 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002071 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002072
2073 /* read the first set of memory latencies[0:3] */
2074 val = 0; /* data0 to be programmed to 0 for first set */
2075 mutex_lock(&dev_priv->rps.hw_lock);
2076 ret = sandybridge_pcode_read(dev_priv,
2077 GEN9_PCODE_READ_MEM_LATENCY,
2078 &val);
2079 mutex_unlock(&dev_priv->rps.hw_lock);
2080
2081 if (ret) {
2082 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2083 return;
2084 }
2085
2086 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2087 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2088 GEN9_MEM_LATENCY_LEVEL_MASK;
2089 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2090 GEN9_MEM_LATENCY_LEVEL_MASK;
2091 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2092 GEN9_MEM_LATENCY_LEVEL_MASK;
2093
2094 /* read the second set of memory latencies[4:7] */
2095 val = 1; /* data0 to be programmed to 1 for second set */
2096 mutex_lock(&dev_priv->rps.hw_lock);
2097 ret = sandybridge_pcode_read(dev_priv,
2098 GEN9_PCODE_READ_MEM_LATENCY,
2099 &val);
2100 mutex_unlock(&dev_priv->rps.hw_lock);
2101 if (ret) {
2102 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2103 return;
2104 }
2105
2106 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2107 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2108 GEN9_MEM_LATENCY_LEVEL_MASK;
2109 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2110 GEN9_MEM_LATENCY_LEVEL_MASK;
2111 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2112 GEN9_MEM_LATENCY_LEVEL_MASK;
2113
Vandana Kannan367294b2014-11-04 17:06:46 +00002114 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002115 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2116 * need to be disabled. We make sure to sanitize the values out
2117 * of the punit to satisfy this requirement.
2118 */
2119 for (level = 1; level <= max_level; level++) {
2120 if (wm[level] == 0) {
2121 for (i = level + 1; i <= max_level; i++)
2122 wm[i] = 0;
2123 break;
2124 }
2125 }
2126
2127 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002128 * WaWmMemoryReadLatency:skl
2129 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002130 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002131 * to add 2us to the various latency levels we retrieve from the
2132 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002133 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002134 if (wm[0] == 0) {
2135 wm[0] += 2;
2136 for (level = 1; level <= max_level; level++) {
2137 if (wm[level] == 0)
2138 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002139 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002140 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002141 }
2142
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002143 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002144 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2145
2146 wm[0] = (sskpd >> 56) & 0xFF;
2147 if (wm[0] == 0)
2148 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002149 wm[1] = (sskpd >> 4) & 0xFF;
2150 wm[2] = (sskpd >> 12) & 0xFF;
2151 wm[3] = (sskpd >> 20) & 0x1FF;
2152 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002153 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002154 uint32_t sskpd = I915_READ(MCH_SSKPD);
2155
2156 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2157 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2158 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2159 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002160 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002161 uint32_t mltr = I915_READ(MLTR_ILK);
2162
2163 /* ILK primary LP0 latency is 700 ns */
2164 wm[0] = 7;
2165 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2166 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002167 }
2168}
2169
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002170static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2171 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002172{
2173 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002174 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002175 wm[0] = 13;
2176}
2177
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002178static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2179 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002180{
2181 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002182 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002183 wm[0] = 13;
2184
2185 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002186 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002187 wm[3] *= 2;
2188}
2189
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002190int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002191{
2192 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002193 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002194 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002195 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002196 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002197 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002198 return 3;
2199 else
2200 return 2;
2201}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002202
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002203static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002204 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002205 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002206{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002207 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002208
2209 for (level = 0; level <= max_level; level++) {
2210 unsigned int latency = wm[level];
2211
2212 if (latency == 0) {
2213 DRM_ERROR("%s WM%d latency not provided\n",
2214 name, level);
2215 continue;
2216 }
2217
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002218 /*
2219 * - latencies are in us on gen9.
2220 * - before then, WM1+ latency values are in 0.5us units
2221 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002222 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002223 latency *= 10;
2224 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002225 latency *= 5;
2226
2227 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2228 name, level, wm[level],
2229 latency / 10, latency % 10);
2230 }
2231}
2232
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002233static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2234 uint16_t wm[5], uint16_t min)
2235{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002236 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002237
2238 if (wm[0] >= min)
2239 return false;
2240
2241 wm[0] = max(wm[0], min);
2242 for (level = 1; level <= max_level; level++)
2243 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2244
2245 return true;
2246}
2247
Ville Syrjäläbb726512016-10-31 22:37:24 +02002248static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002249{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002250 bool changed;
2251
2252 /*
2253 * The BIOS provided WM memory latency values are often
2254 * inadequate for high resolution displays. Adjust them.
2255 */
2256 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2257 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2258 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2259
2260 if (!changed)
2261 return;
2262
2263 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002264 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2265 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2266 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002267}
2268
Ville Syrjäläbb726512016-10-31 22:37:24 +02002269static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002270{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002271 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002272
2273 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2274 sizeof(dev_priv->wm.pri_latency));
2275 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2276 sizeof(dev_priv->wm.pri_latency));
2277
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002278 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002279 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002280
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002281 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2282 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2283 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002284
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002285 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002286 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002287}
2288
Ville Syrjäläbb726512016-10-31 22:37:24 +02002289static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002290{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002291 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002292 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002293}
2294
Matt Ropered4a6a72016-02-23 17:20:13 -08002295static bool ilk_validate_pipe_wm(struct drm_device *dev,
2296 struct intel_pipe_wm *pipe_wm)
2297{
2298 /* LP0 watermark maximums depend on this pipe alone */
2299 const struct intel_wm_config config = {
2300 .num_pipes_active = 1,
2301 .sprites_enabled = pipe_wm->sprites_enabled,
2302 .sprites_scaled = pipe_wm->sprites_scaled,
2303 };
2304 struct ilk_wm_maximums max;
2305
2306 /* LP0 watermarks always use 1/2 DDB partitioning */
2307 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2308
2309 /* At least LP0 must be valid */
2310 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2311 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2312 return false;
2313 }
2314
2315 return true;
2316}
2317
Matt Roper261a27d2015-10-08 15:28:25 -07002318/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002319static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002320{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002321 struct drm_atomic_state *state = cstate->base.state;
2322 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002323 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002324 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002325 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002326 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002327 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002328 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002329 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002330 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002331 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002332
Matt Ropere8f1f022016-05-12 07:05:55 -07002333 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002334
Matt Roper43d59ed2015-09-24 15:53:07 -07002335 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002336 struct intel_plane_state *ps;
2337
2338 ps = intel_atomic_get_existing_plane_state(state,
2339 intel_plane);
2340 if (!ps)
2341 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002342
2343 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002344 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002345 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002346 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002347 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002348 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002349 }
2350
Matt Ropered4a6a72016-02-23 17:20:13 -08002351 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002352 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002353 pipe_wm->sprites_enabled = sprstate->base.visible;
2354 pipe_wm->sprites_scaled = sprstate->base.visible &&
2355 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2356 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002357 }
2358
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002359 usable_level = max_level;
2360
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002361 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002362 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002363 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002364
2365 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002366 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002367 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002368
Matt Roper86c8bbb2015-09-24 15:53:16 -07002369 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002370 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2371
2372 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2373 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002374
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002375 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002376 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002377
Matt Ropered4a6a72016-02-23 17:20:13 -08002378 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002379 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002380
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002381 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002382
2383 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002384 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002385
Matt Roper86c8bbb2015-09-24 15:53:16 -07002386 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002387 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002388
2389 /*
2390 * Disable any watermark level that exceeds the
2391 * register maximums since such watermarks are
2392 * always invalid.
2393 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002394 if (level > usable_level)
2395 continue;
2396
2397 if (ilk_validate_wm_level(level, &max, wm))
2398 pipe_wm->wm[level] = *wm;
2399 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002400 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002401 }
2402
Matt Roper86c8bbb2015-09-24 15:53:16 -07002403 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002404}
2405
2406/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002407 * Build a set of 'intermediate' watermark values that satisfy both the old
2408 * state and the new state. These can be programmed to the hardware
2409 * immediately.
2410 */
2411static int ilk_compute_intermediate_wm(struct drm_device *dev,
2412 struct intel_crtc *intel_crtc,
2413 struct intel_crtc_state *newstate)
2414{
Matt Ropere8f1f022016-05-12 07:05:55 -07002415 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002416 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002417 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002418
2419 /*
2420 * Start with the final, target watermarks, then combine with the
2421 * currently active watermarks to get values that are safe both before
2422 * and after the vblank.
2423 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002424 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002425 a->pipe_enabled |= b->pipe_enabled;
2426 a->sprites_enabled |= b->sprites_enabled;
2427 a->sprites_scaled |= b->sprites_scaled;
2428
2429 for (level = 0; level <= max_level; level++) {
2430 struct intel_wm_level *a_wm = &a->wm[level];
2431 const struct intel_wm_level *b_wm = &b->wm[level];
2432
2433 a_wm->enable &= b_wm->enable;
2434 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2435 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2436 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2437 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2438 }
2439
2440 /*
2441 * We need to make sure that these merged watermark values are
2442 * actually a valid configuration themselves. If they're not,
2443 * there's no safe way to transition from the old state to
2444 * the new state, so we need to fail the atomic transaction.
2445 */
2446 if (!ilk_validate_pipe_wm(dev, a))
2447 return -EINVAL;
2448
2449 /*
2450 * If our intermediate WM are identical to the final WM, then we can
2451 * omit the post-vblank programming; only update if it's different.
2452 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002453 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002454 newstate->wm.need_postvbl_update = false;
2455
2456 return 0;
2457}
2458
2459/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002460 * Merge the watermarks from all active pipes for a specific level.
2461 */
2462static void ilk_merge_wm_level(struct drm_device *dev,
2463 int level,
2464 struct intel_wm_level *ret_wm)
2465{
2466 const struct intel_crtc *intel_crtc;
2467
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002468 ret_wm->enable = true;
2469
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002470 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002471 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002472 const struct intel_wm_level *wm = &active->wm[level];
2473
2474 if (!active->pipe_enabled)
2475 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002476
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002477 /*
2478 * The watermark values may have been used in the past,
2479 * so we must maintain them in the registers for some
2480 * time even if the level is now disabled.
2481 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002482 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002483 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002484
2485 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2486 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2487 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2488 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2489 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002490}
2491
2492/*
2493 * Merge all low power watermarks for all active pipes.
2494 */
2495static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002496 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002497 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002498 struct intel_pipe_wm *merged)
2499{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002500 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002501 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002502 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002503
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002504 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002505 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002506 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002507 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002508
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002509 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002510 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002511
2512 /* merge each WM1+ level */
2513 for (level = 1; level <= max_level; level++) {
2514 struct intel_wm_level *wm = &merged->wm[level];
2515
2516 ilk_merge_wm_level(dev, level, wm);
2517
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002518 if (level > last_enabled_level)
2519 wm->enable = false;
2520 else if (!ilk_validate_wm_level(level, max, wm))
2521 /* make sure all following levels get disabled */
2522 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002523
2524 /*
2525 * The spec says it is preferred to disable
2526 * FBC WMs instead of disabling a WM level.
2527 */
2528 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002529 if (wm->enable)
2530 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002531 wm->fbc_val = 0;
2532 }
2533 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002534
2535 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2536 /*
2537 * FIXME this is racy. FBC might get enabled later.
2538 * What we should check here is whether FBC can be
2539 * enabled sometime later.
2540 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002541 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002542 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002543 for (level = 2; level <= max_level; level++) {
2544 struct intel_wm_level *wm = &merged->wm[level];
2545
2546 wm->enable = false;
2547 }
2548 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002549}
2550
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002551static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2552{
2553 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2554 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2555}
2556
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002557/* The value we need to program into the WM_LPx latency field */
2558static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2559{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002560 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002561
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002562 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002563 return 2 * level;
2564 else
2565 return dev_priv->wm.pri_latency[level];
2566}
2567
Imre Deak820c1982013-12-17 14:46:36 +02002568static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002569 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002570 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002571 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002572{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002573 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002574 struct intel_crtc *intel_crtc;
2575 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002576
Ville Syrjälä0362c782013-10-09 19:17:57 +03002577 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002578 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002579
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002580 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002581 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002582 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002583
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002584 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002585
Ville Syrjälä0362c782013-10-09 19:17:57 +03002586 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002587
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002588 /*
2589 * Maintain the watermark values even if the level is
2590 * disabled. Doing otherwise could cause underruns.
2591 */
2592 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002593 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002594 (r->pri_val << WM1_LP_SR_SHIFT) |
2595 r->cur_val;
2596
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002597 if (r->enable)
2598 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2599
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002600 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002601 results->wm_lp[wm_lp - 1] |=
2602 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2603 else
2604 results->wm_lp[wm_lp - 1] |=
2605 r->fbc_val << WM1_LP_FBC_SHIFT;
2606
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002607 /*
2608 * Always set WM1S_LP_EN when spr_val != 0, even if the
2609 * level is disabled. Doing otherwise could cause underruns.
2610 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002611 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002612 WARN_ON(wm_lp != 1);
2613 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2614 } else
2615 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002616 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002617
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002618 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002619 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002620 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002621 const struct intel_wm_level *r =
2622 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002623
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002624 if (WARN_ON(!r->enable))
2625 continue;
2626
Matt Ropered4a6a72016-02-23 17:20:13 -08002627 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002628
2629 results->wm_pipe[pipe] =
2630 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2631 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2632 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002633 }
2634}
2635
Paulo Zanoni861f3382013-05-31 10:19:21 -03002636/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2637 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002638static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002639 struct intel_pipe_wm *r1,
2640 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002641{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002642 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002643 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002644
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002645 for (level = 1; level <= max_level; level++) {
2646 if (r1->wm[level].enable)
2647 level1 = level;
2648 if (r2->wm[level].enable)
2649 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002650 }
2651
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002652 if (level1 == level2) {
2653 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002654 return r2;
2655 else
2656 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002657 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002658 return r1;
2659 } else {
2660 return r2;
2661 }
2662}
2663
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002664/* dirty bits used to track which watermarks need changes */
2665#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2666#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2667#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2668#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2669#define WM_DIRTY_FBC (1 << 24)
2670#define WM_DIRTY_DDB (1 << 25)
2671
Damien Lespiau055e3932014-08-18 13:49:10 +01002672static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002673 const struct ilk_wm_values *old,
2674 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002675{
2676 unsigned int dirty = 0;
2677 enum pipe pipe;
2678 int wm_lp;
2679
Damien Lespiau055e3932014-08-18 13:49:10 +01002680 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002681 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2682 dirty |= WM_DIRTY_LINETIME(pipe);
2683 /* Must disable LP1+ watermarks too */
2684 dirty |= WM_DIRTY_LP_ALL;
2685 }
2686
2687 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2688 dirty |= WM_DIRTY_PIPE(pipe);
2689 /* Must disable LP1+ watermarks too */
2690 dirty |= WM_DIRTY_LP_ALL;
2691 }
2692 }
2693
2694 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2695 dirty |= WM_DIRTY_FBC;
2696 /* Must disable LP1+ watermarks too */
2697 dirty |= WM_DIRTY_LP_ALL;
2698 }
2699
2700 if (old->partitioning != new->partitioning) {
2701 dirty |= WM_DIRTY_DDB;
2702 /* Must disable LP1+ watermarks too */
2703 dirty |= WM_DIRTY_LP_ALL;
2704 }
2705
2706 /* LP1+ watermarks already deemed dirty, no need to continue */
2707 if (dirty & WM_DIRTY_LP_ALL)
2708 return dirty;
2709
2710 /* Find the lowest numbered LP1+ watermark in need of an update... */
2711 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2712 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2713 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2714 break;
2715 }
2716
2717 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2718 for (; wm_lp <= 3; wm_lp++)
2719 dirty |= WM_DIRTY_LP(wm_lp);
2720
2721 return dirty;
2722}
2723
Ville Syrjälä8553c182013-12-05 15:51:39 +02002724static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2725 unsigned int dirty)
2726{
Imre Deak820c1982013-12-17 14:46:36 +02002727 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002728 bool changed = false;
2729
2730 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2731 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2732 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2733 changed = true;
2734 }
2735 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2736 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2737 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2738 changed = true;
2739 }
2740 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2741 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2742 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2743 changed = true;
2744 }
2745
2746 /*
2747 * Don't touch WM1S_LP_EN here.
2748 * Doing so could cause underruns.
2749 */
2750
2751 return changed;
2752}
2753
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002754/*
2755 * The spec says we shouldn't write when we don't need, because every write
2756 * causes WMs to be re-evaluated, expending some power.
2757 */
Imre Deak820c1982013-12-17 14:46:36 +02002758static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2759 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002760{
Imre Deak820c1982013-12-17 14:46:36 +02002761 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002762 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002763 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002764
Damien Lespiau055e3932014-08-18 13:49:10 +01002765 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002766 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002767 return;
2768
Ville Syrjälä8553c182013-12-05 15:51:39 +02002769 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002770
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002771 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002772 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002773 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002774 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002775 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002776 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2777
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002778 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002779 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002780 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002781 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002782 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002783 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2784
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002785 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002786 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002787 val = I915_READ(WM_MISC);
2788 if (results->partitioning == INTEL_DDB_PART_1_2)
2789 val &= ~WM_MISC_DATA_PARTITION_5_6;
2790 else
2791 val |= WM_MISC_DATA_PARTITION_5_6;
2792 I915_WRITE(WM_MISC, val);
2793 } else {
2794 val = I915_READ(DISP_ARB_CTL2);
2795 if (results->partitioning == INTEL_DDB_PART_1_2)
2796 val &= ~DISP_DATA_PARTITION_5_6;
2797 else
2798 val |= DISP_DATA_PARTITION_5_6;
2799 I915_WRITE(DISP_ARB_CTL2, val);
2800 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002801 }
2802
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002803 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002804 val = I915_READ(DISP_ARB_CTL);
2805 if (results->enable_fbc_wm)
2806 val &= ~DISP_FBC_WM_DIS;
2807 else
2808 val |= DISP_FBC_WM_DIS;
2809 I915_WRITE(DISP_ARB_CTL, val);
2810 }
2811
Imre Deak954911e2013-12-17 14:46:34 +02002812 if (dirty & WM_DIRTY_LP(1) &&
2813 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2814 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2815
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002816 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002817 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2818 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2819 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2820 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2821 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002822
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002823 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002824 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002825 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002826 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002827 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002828 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002829
2830 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002831}
2832
Matt Ropered4a6a72016-02-23 17:20:13 -08002833bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002834{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002835 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002836
2837 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2838}
2839
Lyude656d1b82016-08-17 15:55:54 -04002840#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002841
Matt Roper024c9042015-09-24 15:53:11 -07002842/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002843 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2844 * so assume we'll always need it in order to avoid underruns.
2845 */
2846static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2847{
2848 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2849
2850 if (IS_SKYLAKE(dev_priv) || IS_BROXTON(dev_priv) ||
2851 IS_KABYLAKE(dev_priv))
2852 return true;
2853
2854 return false;
2855}
2856
Paulo Zanoni56feca92016-09-22 18:00:28 -03002857static bool
2858intel_has_sagv(struct drm_i915_private *dev_priv)
2859{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002860 if (IS_KABYLAKE(dev_priv))
2861 return true;
2862
2863 if (IS_SKYLAKE(dev_priv) &&
2864 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2865 return true;
2866
2867 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002868}
2869
Lyude656d1b82016-08-17 15:55:54 -04002870/*
2871 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2872 * depending on power and performance requirements. The display engine access
2873 * to system memory is blocked during the adjustment time. Because of the
2874 * blocking time, having this enabled can cause full system hangs and/or pipe
2875 * underruns if we don't meet all of the following requirements:
2876 *
2877 * - <= 1 pipe enabled
2878 * - All planes can enable watermarks for latencies >= SAGV engine block time
2879 * - We're not using an interlaced display configuration
2880 */
2881int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002882intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002883{
2884 int ret;
2885
Paulo Zanoni56feca92016-09-22 18:00:28 -03002886 if (!intel_has_sagv(dev_priv))
2887 return 0;
2888
2889 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002890 return 0;
2891
2892 DRM_DEBUG_KMS("Enabling the SAGV\n");
2893 mutex_lock(&dev_priv->rps.hw_lock);
2894
2895 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2896 GEN9_SAGV_ENABLE);
2897
2898 /* We don't need to wait for the SAGV when enabling */
2899 mutex_unlock(&dev_priv->rps.hw_lock);
2900
2901 /*
2902 * Some skl systems, pre-release machines in particular,
2903 * don't actually have an SAGV.
2904 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002905 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002906 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002907 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002908 return 0;
2909 } else if (ret < 0) {
2910 DRM_ERROR("Failed to enable the SAGV\n");
2911 return ret;
2912 }
2913
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002914 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002915 return 0;
2916}
2917
2918static int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002919intel_do_sagv_disable(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002920{
2921 int ret;
2922 uint32_t temp = GEN9_SAGV_DISABLE;
2923
2924 ret = sandybridge_pcode_read(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2925 &temp);
2926 if (ret)
2927 return ret;
2928 else
2929 return temp & GEN9_SAGV_IS_DISABLED;
2930}
2931
2932int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002933intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002934{
2935 int ret, result;
2936
Paulo Zanoni56feca92016-09-22 18:00:28 -03002937 if (!intel_has_sagv(dev_priv))
2938 return 0;
2939
2940 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002941 return 0;
2942
2943 DRM_DEBUG_KMS("Disabling the SAGV\n");
2944 mutex_lock(&dev_priv->rps.hw_lock);
2945
2946 /* bspec says to keep retrying for at least 1 ms */
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002947 ret = wait_for(result = intel_do_sagv_disable(dev_priv), 1);
Lyude656d1b82016-08-17 15:55:54 -04002948 mutex_unlock(&dev_priv->rps.hw_lock);
2949
2950 if (ret == -ETIMEDOUT) {
2951 DRM_ERROR("Request to disable SAGV timed out\n");
2952 return -ETIMEDOUT;
2953 }
2954
2955 /*
2956 * Some skl systems, pre-release machines in particular,
2957 * don't actually have an SAGV.
2958 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002959 if (IS_SKYLAKE(dev_priv) && result == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002960 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002961 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002962 return 0;
2963 } else if (result < 0) {
2964 DRM_ERROR("Failed to disable the SAGV\n");
2965 return result;
2966 }
2967
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002968 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04002969 return 0;
2970}
2971
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002972bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04002973{
2974 struct drm_device *dev = state->dev;
2975 struct drm_i915_private *dev_priv = to_i915(dev);
2976 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002977 struct intel_crtc *crtc;
2978 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002979 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04002980 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002981 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04002982
Paulo Zanoni56feca92016-09-22 18:00:28 -03002983 if (!intel_has_sagv(dev_priv))
2984 return false;
2985
Lyude656d1b82016-08-17 15:55:54 -04002986 /*
2987 * SKL workaround: bspec recommends we disable the SAGV when we have
2988 * more then one pipe enabled
2989 *
2990 * If there are no active CRTCs, no additional checks need be performed
2991 */
2992 if (hweight32(intel_state->active_crtcs) == 0)
2993 return true;
2994 else if (hweight32(intel_state->active_crtcs) > 1)
2995 return false;
2996
2997 /* Since we're now guaranteed to only have one active CRTC... */
2998 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02002999 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003000 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003001
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003002 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003003 return false;
3004
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003005 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003006 struct skl_plane_wm *wm =
3007 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003008
Lyude656d1b82016-08-17 15:55:54 -04003009 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003010 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003011 continue;
3012
3013 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003014 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003015 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003016 { }
3017
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003018 latency = dev_priv->wm.skl_latency[level];
3019
3020 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003021 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003022 I915_FORMAT_MOD_X_TILED)
3023 latency += 15;
3024
Lyude656d1b82016-08-17 15:55:54 -04003025 /*
3026 * If any of the planes on this pipe don't enable wm levels
3027 * that incur memory latencies higher then 30µs we can't enable
3028 * the SAGV
3029 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003030 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003031 return false;
3032 }
3033
3034 return true;
3035}
3036
Damien Lespiaub9cec072014-11-04 17:06:43 +00003037static void
3038skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003039 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003040 struct skl_ddb_entry *alloc, /* out */
3041 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003042{
Matt Roperc107acf2016-05-12 07:06:01 -07003043 struct drm_atomic_state *state = cstate->base.state;
3044 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3045 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003046 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003047 unsigned int pipe_size, ddb_size;
3048 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003049
Matt Ropera6d3460e2016-05-12 07:06:04 -07003050 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003051 alloc->start = 0;
3052 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003053 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003054 return;
3055 }
3056
Matt Ropera6d3460e2016-05-12 07:06:04 -07003057 if (intel_state->active_pipe_changes)
3058 *num_active = hweight32(intel_state->active_crtcs);
3059 else
3060 *num_active = hweight32(dev_priv->active_crtcs);
3061
Deepak M6f3fff62016-09-15 15:01:10 +05303062 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3063 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003064
3065 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3066
Matt Roperc107acf2016-05-12 07:06:01 -07003067 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003068 * If the state doesn't change the active CRTC's, then there's
3069 * no need to recalculate; the existing pipe allocation limits
3070 * should remain unchanged. Note that we're safe from racing
3071 * commits since any racing commit that changes the active CRTC
3072 * list would need to grab _all_ crtc locks, including the one
3073 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003074 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003075 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003076 /*
3077 * alloc may be cleared by clear_intel_crtc_state,
3078 * copy from old state to be sure
3079 */
3080 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003081 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003082 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003083
3084 nth_active_pipe = hweight32(intel_state->active_crtcs &
3085 (drm_crtc_mask(for_crtc) - 1));
3086 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3087 alloc->start = nth_active_pipe * ddb_size / *num_active;
3088 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003089}
3090
Matt Roperc107acf2016-05-12 07:06:01 -07003091static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003092{
Matt Roperc107acf2016-05-12 07:06:01 -07003093 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003094 return 32;
3095
3096 return 8;
3097}
3098
Damien Lespiaua269c582014-11-04 17:06:49 +00003099static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3100{
3101 entry->start = reg & 0x3ff;
3102 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003103 if (entry->end)
3104 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003105}
3106
Damien Lespiau08db6652014-11-04 17:06:52 +00003107void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3108 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003109{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003110 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003111
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003112 memset(ddb, 0, sizeof(*ddb));
3113
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003114 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003115 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003116 enum plane_id plane_id;
3117 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003118
3119 power_domain = POWER_DOMAIN_PIPE(pipe);
3120 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003121 continue;
3122
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003123 for_each_plane_id_on_crtc(crtc, plane_id) {
3124 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003125
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003126 if (plane_id != PLANE_CURSOR)
3127 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3128 else
3129 val = I915_READ(CUR_BUF_CFG(pipe));
3130
3131 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3132 }
Imre Deak4d800032016-02-17 16:31:29 +02003133
3134 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003135 }
3136}
3137
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003138/*
3139 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3140 * The bspec defines downscale amount as:
3141 *
3142 * """
3143 * Horizontal down scale amount = maximum[1, Horizontal source size /
3144 * Horizontal destination size]
3145 * Vertical down scale amount = maximum[1, Vertical source size /
3146 * Vertical destination size]
3147 * Total down scale amount = Horizontal down scale amount *
3148 * Vertical down scale amount
3149 * """
3150 *
3151 * Return value is provided in 16.16 fixed point form to retain fractional part.
3152 * Caller should take care of dividing & rounding off the value.
3153 */
3154static uint32_t
3155skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3156{
3157 uint32_t downscale_h, downscale_w;
3158 uint32_t src_w, src_h, dst_w, dst_h;
3159
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003160 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003161 return DRM_PLANE_HELPER_NO_SCALING;
3162
3163 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003164 src_w = drm_rect_width(&pstate->base.src);
3165 src_h = drm_rect_height(&pstate->base.src);
3166 dst_w = drm_rect_width(&pstate->base.dst);
3167 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003168 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003169 swap(dst_w, dst_h);
3170
3171 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3172 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3173
3174 /* Provide result in 16.16 fixed point */
3175 return (uint64_t)downscale_w * downscale_h >> 16;
3176}
3177
Damien Lespiaub9cec072014-11-04 17:06:43 +00003178static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003179skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3180 const struct drm_plane_state *pstate,
3181 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003182{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003183 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Matt Roper024c9042015-09-24 15:53:11 -07003184 struct drm_framebuffer *fb = pstate->fb;
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003185 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003186 uint32_t width = 0, height = 0;
Matt Ropera1de91e2016-05-12 07:05:57 -07003187 unsigned format = fb ? fb->pixel_format : DRM_FORMAT_XRGB8888;
3188
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003189 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003190 return 0;
3191 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3192 return 0;
3193 if (y && format != DRM_FORMAT_NV12)
3194 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003195
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003196 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3197 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003198
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003199 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003200 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003201
3202 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003203 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003204 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003205 data_rate = width * height *
Matt Ropera1de91e2016-05-12 07:05:57 -07003206 drm_format_plane_cpp(format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003207 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003208 data_rate = (width / 2) * (height / 2) *
Matt Ropera1de91e2016-05-12 07:05:57 -07003209 drm_format_plane_cpp(format, 1);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003210 } else {
3211 /* for packed formats */
3212 data_rate = width * height * drm_format_plane_cpp(format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003213 }
3214
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003215 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3216
3217 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003218}
3219
3220/*
3221 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3222 * a 8192x4096@32bpp framebuffer:
3223 * 3 * 4096 * 8192 * 4 < 2^32
3224 */
3225static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003226skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3227 unsigned *plane_data_rate,
3228 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003229{
Matt Roper9c74d822016-05-12 07:05:58 -07003230 struct drm_crtc_state *cstate = &intel_cstate->base;
3231 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003232 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003233 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003234 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003235
3236 if (WARN_ON(!state))
3237 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003238
Matt Ropera1de91e2016-05-12 07:05:57 -07003239 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003240 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003241 enum plane_id plane_id = to_intel_plane(plane)->id;
3242 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003243
Matt Ropera6d3460e2016-05-12 07:06:04 -07003244 /* packed/uv */
3245 rate = skl_plane_relative_data_rate(intel_cstate,
3246 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003247 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003248
3249 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003250
Matt Ropera6d3460e2016-05-12 07:06:04 -07003251 /* y-plane */
3252 rate = skl_plane_relative_data_rate(intel_cstate,
3253 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003254 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003255
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003256 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003257 }
3258
3259 return total_data_rate;
3260}
3261
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003262static uint16_t
3263skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3264 const int y)
3265{
3266 struct drm_framebuffer *fb = pstate->fb;
3267 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3268 uint32_t src_w, src_h;
3269 uint32_t min_scanlines = 8;
3270 uint8_t plane_bpp;
3271
3272 if (WARN_ON(!fb))
3273 return 0;
3274
3275 /* For packed formats, no y-plane, return 0 */
3276 if (y && fb->pixel_format != DRM_FORMAT_NV12)
3277 return 0;
3278
3279 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003280 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3281 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003282 return 8;
3283
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003284 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3285 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003286
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003287 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003288 swap(src_w, src_h);
3289
3290 /* Halve UV plane width and height for NV12 */
3291 if (fb->pixel_format == DRM_FORMAT_NV12 && !y) {
3292 src_w /= 2;
3293 src_h /= 2;
3294 }
3295
3296 if (fb->pixel_format == DRM_FORMAT_NV12 && !y)
3297 plane_bpp = drm_format_plane_cpp(fb->pixel_format, 1);
3298 else
3299 plane_bpp = drm_format_plane_cpp(fb->pixel_format, 0);
3300
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003301 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003302 switch (plane_bpp) {
3303 case 1:
3304 min_scanlines = 32;
3305 break;
3306 case 2:
3307 min_scanlines = 16;
3308 break;
3309 case 4:
3310 min_scanlines = 8;
3311 break;
3312 case 8:
3313 min_scanlines = 4;
3314 break;
3315 default:
3316 WARN(1, "Unsupported pixel depth %u for rotation",
3317 plane_bpp);
3318 min_scanlines = 32;
3319 }
3320 }
3321
3322 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3323}
3324
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003325static void
3326skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3327 uint16_t *minimum, uint16_t *y_minimum)
3328{
3329 const struct drm_plane_state *pstate;
3330 struct drm_plane *plane;
3331
3332 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003333 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003334
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003335 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003336 continue;
3337
3338 if (!pstate->visible)
3339 continue;
3340
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003341 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3342 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003343 }
3344
3345 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3346}
3347
Matt Roperc107acf2016-05-12 07:06:01 -07003348static int
Matt Roper024c9042015-09-24 15:53:11 -07003349skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003350 struct skl_ddb_allocation *ddb /* out */)
3351{
Matt Roperc107acf2016-05-12 07:06:01 -07003352 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003353 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003354 struct drm_device *dev = crtc->dev;
3355 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3356 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003357 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003358 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003359 uint16_t minimum[I915_MAX_PLANES] = {};
3360 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003361 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003362 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003363 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003364 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3365 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003366
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003367 /* Clear the partitioning for disabled planes. */
3368 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3369 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3370
Matt Ropera6d3460e2016-05-12 07:06:04 -07003371 if (WARN_ON(!state))
3372 return 0;
3373
Matt Roperc107acf2016-05-12 07:06:01 -07003374 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003375 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003376 return 0;
3377 }
3378
Matt Ropera6d3460e2016-05-12 07:06:04 -07003379 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003380 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003381 if (alloc_size == 0) {
3382 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003383 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003384 }
3385
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003386 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003387
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003388 /*
3389 * 1. Allocate the mininum required blocks for each active plane
3390 * and allocate the cursor, it doesn't require extra allocation
3391 * proportional to the data rate.
3392 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003393
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003394 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3395 alloc_size -= minimum[plane_id];
3396 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003397 }
3398
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003399 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3400 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3401
Damien Lespiaub9cec072014-11-04 17:06:43 +00003402 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003403 * 2. Distribute the remaining space in proportion to the amount of
3404 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003405 *
3406 * FIXME: we may not allocate every single block here.
3407 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003408 total_data_rate = skl_get_total_relative_data_rate(cstate,
3409 plane_data_rate,
3410 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003411 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003412 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003413
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003414 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003415 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003416 unsigned int data_rate, y_data_rate;
3417 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003418
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003419 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003420 continue;
3421
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003422 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003423
3424 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003425 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003426 * promote the expression to 64 bits to avoid overflowing, the
3427 * result is < available as data_rate / total_data_rate < 1
3428 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003429 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003430 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3431 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003432
Matt Roperc107acf2016-05-12 07:06:01 -07003433 /* Leave disabled planes at (0,0) */
3434 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003435 ddb->plane[pipe][plane_id].start = start;
3436 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003437 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003438
3439 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003440
3441 /*
3442 * allocation for y_plane part of planar format:
3443 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003444 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003445
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003446 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003447 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3448 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003449
Matt Roperc107acf2016-05-12 07:06:01 -07003450 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003451 ddb->y_plane[pipe][plane_id].start = start;
3452 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003453 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003454
Matt Ropera1de91e2016-05-12 07:05:57 -07003455 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003456 }
3457
Matt Roperc107acf2016-05-12 07:06:01 -07003458 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003459}
3460
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003461/*
3462 * The max latency should be 257 (max the punit can code is 255 and we add 2us
Ville Syrjäläac484962016-01-20 21:05:26 +02003463 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003464 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3465 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3466*/
Ville Syrjäläac484962016-01-20 21:05:26 +02003467static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003468{
3469 uint32_t wm_intermediate_val, ret;
3470
3471 if (latency == 0)
3472 return UINT_MAX;
3473
Ville Syrjäläac484962016-01-20 21:05:26 +02003474 wm_intermediate_val = latency * pixel_rate * cpp / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003475 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3476
3477 return ret;
3478}
3479
3480static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003481 uint32_t latency, uint32_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003482{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003483 uint32_t ret;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003484 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003485
3486 if (latency == 0)
3487 return UINT_MAX;
3488
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003489 wm_intermediate_val = latency * pixel_rate;
3490 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003491 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003492
3493 return ret;
3494}
3495
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003496static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3497 struct intel_plane_state *pstate)
3498{
3499 uint64_t adjusted_pixel_rate;
3500 uint64_t downscale_amount;
3501 uint64_t pixel_rate;
3502
3503 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003504 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003505 return 0;
3506
3507 /*
3508 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3509 * with additional adjustments for plane-specific scaling.
3510 */
Paulo Zanonicfd7e3a2016-10-07 17:28:57 -03003511 adjusted_pixel_rate = ilk_pipe_pixel_rate(cstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003512 downscale_amount = skl_plane_downscale_amount(pstate);
3513
3514 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3515 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3516
3517 return pixel_rate;
3518}
3519
Matt Roper55994c22016-05-12 07:06:08 -07003520static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3521 struct intel_crtc_state *cstate,
3522 struct intel_plane_state *intel_pstate,
3523 uint16_t ddb_allocation,
3524 int level,
3525 uint16_t *out_blocks, /* out */
3526 uint8_t *out_lines, /* out */
3527 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003528{
Matt Roper33815fa2016-05-12 07:06:05 -07003529 struct drm_plane_state *pstate = &intel_pstate->base;
3530 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003531 uint32_t latency = dev_priv->wm.skl_latency[level];
3532 uint32_t method1, method2;
3533 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3534 uint32_t res_blocks, res_lines;
3535 uint32_t selected_result;
Ville Syrjäläac484962016-01-20 21:05:26 +02003536 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003537 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003538 uint32_t plane_pixel_rate;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003539 uint32_t y_tile_minimum, y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003540 struct intel_atomic_state *state =
3541 to_intel_atomic_state(cstate->base.state);
3542 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003543
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003544 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003545 *enabled = false;
3546 return 0;
3547 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003548
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003549 if (apply_memory_bw_wa && fb->modifier == I915_FORMAT_MOD_X_TILED)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003550 latency += 15;
3551
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003552 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3553 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003554
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003555 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003556 swap(width, height);
3557
Ville Syrjäläac484962016-01-20 21:05:26 +02003558 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003559 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3560
Dave Airlie61d0a042016-10-25 16:35:20 +10003561 if (drm_rotation_90_or_270(pstate->rotation)) {
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003562 int cpp = (fb->pixel_format == DRM_FORMAT_NV12) ?
3563 drm_format_plane_cpp(fb->pixel_format, 1) :
3564 drm_format_plane_cpp(fb->pixel_format, 0);
3565
3566 switch (cpp) {
3567 case 1:
3568 y_min_scanlines = 16;
3569 break;
3570 case 2:
3571 y_min_scanlines = 8;
3572 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003573 case 4:
3574 y_min_scanlines = 4;
3575 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003576 default:
3577 MISSING_CASE(cpp);
3578 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003579 }
3580 } else {
3581 y_min_scanlines = 4;
3582 }
3583
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003584 if (apply_memory_bw_wa)
3585 y_min_scanlines *= 2;
3586
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003587 plane_bytes_per_line = width * cpp;
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003588 if (fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3589 fb->modifier == I915_FORMAT_MOD_Yf_TILED) {
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003590 plane_blocks_per_line =
3591 DIV_ROUND_UP(plane_bytes_per_line * y_min_scanlines, 512);
3592 plane_blocks_per_line /= y_min_scanlines;
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003593 } else if (fb->modifier == DRM_FORMAT_MOD_NONE) {
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003594 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512)
3595 + 1;
3596 } else {
3597 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3598 }
3599
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003600 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3601 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003602 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003603 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003604 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003605
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003606 y_tile_minimum = plane_blocks_per_line * y_min_scanlines;
3607
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003608 if (fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3609 fb->modifier == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003610 selected_result = max(method2, y_tile_minimum);
3611 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003612 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3613 (plane_bytes_per_line / 512 < 1))
3614 selected_result = method2;
3615 else if ((ddb_allocation / plane_blocks_per_line) >= 1)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003616 selected_result = min(method1, method2);
3617 else
3618 selected_result = method1;
3619 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003620
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003621 res_blocks = selected_result + 1;
3622 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003623
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003624 if (level >= 1 && level <= 7) {
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003625 if (fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3626 fb->modifier == I915_FORMAT_MOD_Yf_TILED) {
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003627 res_blocks += y_tile_minimum;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003628 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003629 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003630 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003631 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003632 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003633
Matt Roper55994c22016-05-12 07:06:08 -07003634 if (res_blocks >= ddb_allocation || res_lines > 31) {
3635 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003636
3637 /*
3638 * If there are no valid level 0 watermarks, then we can't
3639 * support this display configuration.
3640 */
3641 if (level) {
3642 return 0;
3643 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003644 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003645
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003646 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3647 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3648 plane->base.id, plane->name,
3649 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003650 return -EINVAL;
3651 }
Matt Roper55994c22016-05-12 07:06:08 -07003652 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003653
3654 *out_blocks = res_blocks;
3655 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003656 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003657
Matt Roper55994c22016-05-12 07:06:08 -07003658 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003659}
3660
Matt Roperf4a96752016-05-12 07:06:06 -07003661static int
3662skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3663 struct skl_ddb_allocation *ddb,
3664 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003665 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003666 int level,
3667 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003668{
Matt Roperf4a96752016-05-12 07:06:06 -07003669 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003670 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003671 struct drm_plane *plane = &intel_plane->base;
3672 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003673 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003674 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003675 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003676
3677 if (state)
3678 intel_pstate =
3679 intel_atomic_get_existing_plane_state(state,
3680 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003681
Matt Roperf4a96752016-05-12 07:06:06 -07003682 /*
Lyudea62163e2016-10-04 14:28:20 -04003683 * Note: If we start supporting multiple pending atomic commits against
3684 * the same planes/CRTC's in the future, plane->state will no longer be
3685 * the correct pre-state to use for the calculations here and we'll
3686 * need to change where we get the 'unchanged' plane data from.
3687 *
3688 * For now this is fine because we only allow one queued commit against
3689 * a CRTC. Even if the plane isn't modified by this transaction and we
3690 * don't have a plane lock, we still have the CRTC's lock, so we know
3691 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003692 */
Lyudea62163e2016-10-04 14:28:20 -04003693 if (!intel_pstate)
3694 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003695
Lyudea62163e2016-10-04 14:28:20 -04003696 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003697
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003698 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003699
Lyudea62163e2016-10-04 14:28:20 -04003700 ret = skl_compute_plane_wm(dev_priv,
3701 cstate,
3702 intel_pstate,
3703 ddb_blocks,
3704 level,
3705 &result->plane_res_b,
3706 &result->plane_res_l,
3707 &result->plane_en);
3708 if (ret)
3709 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003710
3711 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003712}
3713
Damien Lespiau407b50f2014-11-04 17:06:57 +00003714static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003715skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003716{
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003717 uint32_t pixel_rate;
3718
Matt Roper024c9042015-09-24 15:53:11 -07003719 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003720 return 0;
3721
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003722 pixel_rate = ilk_pipe_pixel_rate(cstate);
3723
3724 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003725 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003726
Matt Roper024c9042015-09-24 15:53:11 -07003727 return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000,
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003728 pixel_rate);
Damien Lespiau407b50f2014-11-04 17:06:57 +00003729}
3730
Matt Roper024c9042015-09-24 15:53:11 -07003731static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003732 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003733{
Matt Roper024c9042015-09-24 15:53:11 -07003734 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003735 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003736
3737 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003738 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003739}
3740
Matt Roper55994c22016-05-12 07:06:08 -07003741static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3742 struct skl_ddb_allocation *ddb,
3743 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003744{
Matt Roper024c9042015-09-24 15:53:11 -07003745 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003746 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003747 struct intel_plane *intel_plane;
3748 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003749 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003750 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003751
Lyudea62163e2016-10-04 14:28:20 -04003752 /*
3753 * We'll only calculate watermarks for planes that are actually
3754 * enabled, so make sure all other planes are set as disabled.
3755 */
3756 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3757
3758 for_each_intel_plane_mask(&dev_priv->drm,
3759 intel_plane,
3760 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003761 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003762
3763 for (level = 0; level <= max_level; level++) {
3764 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3765 intel_plane, level,
3766 &wm->wm[level]);
3767 if (ret)
3768 return ret;
3769 }
3770 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003771 }
Matt Roper024c9042015-09-24 15:53:11 -07003772 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003773
Matt Roper55994c22016-05-12 07:06:08 -07003774 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003775}
3776
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003777static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3778 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003779 const struct skl_ddb_entry *entry)
3780{
3781 if (entry->end)
3782 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3783 else
3784 I915_WRITE(reg, 0);
3785}
3786
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003787static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3788 i915_reg_t reg,
3789 const struct skl_wm_level *level)
3790{
3791 uint32_t val = 0;
3792
3793 if (level->plane_en) {
3794 val |= PLANE_WM_EN;
3795 val |= level->plane_res_b;
3796 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3797 }
3798
3799 I915_WRITE(reg, val);
3800}
3801
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003802static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3803 const struct skl_plane_wm *wm,
3804 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003805 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003806{
3807 struct drm_crtc *crtc = &intel_crtc->base;
3808 struct drm_device *dev = crtc->dev;
3809 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003810 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003811 enum pipe pipe = intel_crtc->pipe;
3812
3813 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003814 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003815 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003816 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003817 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003818 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003819
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003820 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
3821 &ddb->plane[pipe][plane_id]);
3822 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
3823 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04003824}
3825
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003826static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
3827 const struct skl_plane_wm *wm,
3828 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003829{
3830 struct drm_crtc *crtc = &intel_crtc->base;
3831 struct drm_device *dev = crtc->dev;
3832 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003833 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003834 enum pipe pipe = intel_crtc->pipe;
3835
3836 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003837 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3838 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003839 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003840 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003841
3842 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003843 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003844}
3845
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003846bool skl_wm_level_equals(const struct skl_wm_level *l1,
3847 const struct skl_wm_level *l2)
3848{
3849 if (l1->plane_en != l2->plane_en)
3850 return false;
3851
3852 /* If both planes aren't enabled, the rest shouldn't matter */
3853 if (!l1->plane_en)
3854 return true;
3855
3856 return (l1->plane_res_l == l2->plane_res_l &&
3857 l1->plane_res_b == l2->plane_res_b);
3858}
3859
Lyude27082492016-08-24 07:48:10 +02003860static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3861 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003862{
Lyude27082492016-08-24 07:48:10 +02003863 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003864}
3865
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003866bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
3867 const struct skl_ddb_entry *ddb,
3868 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003869{
Lyudece0ba282016-09-15 10:46:35 -04003870 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003871
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003872 for (i = 0; i < I915_MAX_PIPES; i++)
3873 if (i != ignore && entries[i] &&
3874 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02003875 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003876
Lyude27082492016-08-24 07:48:10 +02003877 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003878}
3879
Matt Roper55994c22016-05-12 07:06:08 -07003880static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003881 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003882 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003883 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003884 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003885{
Matt Roperf4a96752016-05-12 07:06:06 -07003886 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003887 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003888
Matt Roper55994c22016-05-12 07:06:08 -07003889 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3890 if (ret)
3891 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003892
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003893 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003894 *changed = false;
3895 else
3896 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003897
Matt Roper55994c22016-05-12 07:06:08 -07003898 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003899}
3900
Matt Roper9b613022016-06-27 16:42:44 -07003901static uint32_t
3902pipes_modified(struct drm_atomic_state *state)
3903{
3904 struct drm_crtc *crtc;
3905 struct drm_crtc_state *cstate;
3906 uint32_t i, ret = 0;
3907
3908 for_each_crtc_in_state(state, crtc, cstate, i)
3909 ret |= drm_crtc_mask(crtc);
3910
3911 return ret;
3912}
3913
Jani Nikulabb7791b2016-10-04 12:29:17 +03003914static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003915skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3916{
3917 struct drm_atomic_state *state = cstate->base.state;
3918 struct drm_device *dev = state->dev;
3919 struct drm_crtc *crtc = cstate->base.crtc;
3920 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3921 struct drm_i915_private *dev_priv = to_i915(dev);
3922 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3923 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3924 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3925 struct drm_plane_state *plane_state;
3926 struct drm_plane *plane;
3927 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003928
3929 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
3930
Maarten Lankhorst220b0962016-10-26 15:41:30 +02003931 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003932 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003933
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003934 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
3935 &new_ddb->plane[pipe][plane_id]) &&
3936 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
3937 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003938 continue;
3939
3940 plane_state = drm_atomic_get_plane_state(state, plane);
3941 if (IS_ERR(plane_state))
3942 return PTR_ERR(plane_state);
3943 }
3944
3945 return 0;
3946}
3947
Matt Roper98d39492016-05-12 07:06:03 -07003948static int
3949skl_compute_ddb(struct drm_atomic_state *state)
3950{
3951 struct drm_device *dev = state->dev;
3952 struct drm_i915_private *dev_priv = to_i915(dev);
3953 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3954 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07003955 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07003956 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07003957 int ret;
3958
3959 /*
3960 * If this is our first atomic update following hardware readout,
3961 * we can't trust the DDB that the BIOS programmed for us. Let's
3962 * pretend that all pipes switched active status so that we'll
3963 * ensure a full DDB recompute.
3964 */
Matt Roper1b54a882016-06-17 13:42:18 -07003965 if (dev_priv->wm.distrust_bios_wm) {
3966 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
3967 state->acquire_ctx);
3968 if (ret)
3969 return ret;
3970
Matt Roper98d39492016-05-12 07:06:03 -07003971 intel_state->active_pipe_changes = ~0;
3972
Matt Roper1b54a882016-06-17 13:42:18 -07003973 /*
3974 * We usually only initialize intel_state->active_crtcs if we
3975 * we're doing a modeset; make sure this field is always
3976 * initialized during the sanitization process that happens
3977 * on the first commit too.
3978 */
3979 if (!intel_state->modeset)
3980 intel_state->active_crtcs = dev_priv->active_crtcs;
3981 }
3982
Matt Roper98d39492016-05-12 07:06:03 -07003983 /*
3984 * If the modeset changes which CRTC's are active, we need to
3985 * recompute the DDB allocation for *all* active pipes, even
3986 * those that weren't otherwise being modified in any way by this
3987 * atomic commit. Due to the shrinking of the per-pipe allocations
3988 * when new active CRTC's are added, it's possible for a pipe that
3989 * we were already using and aren't changing at all here to suddenly
3990 * become invalid if its DDB needs exceeds its new allocation.
3991 *
3992 * Note that if we wind up doing a full DDB recompute, we can't let
3993 * any other display updates race with this transaction, so we need
3994 * to grab the lock on *all* CRTC's.
3995 */
Matt Roper734fa012016-05-12 15:11:40 -07003996 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07003997 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07003998 intel_state->wm_results.dirty_pipes = ~0;
3999 }
Matt Roper98d39492016-05-12 07:06:03 -07004000
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004001 /*
4002 * We're not recomputing for the pipes not included in the commit, so
4003 * make sure we start with the current state.
4004 */
4005 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4006
Matt Roper98d39492016-05-12 07:06:03 -07004007 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4008 struct intel_crtc_state *cstate;
4009
4010 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4011 if (IS_ERR(cstate))
4012 return PTR_ERR(cstate);
4013
Matt Roper734fa012016-05-12 15:11:40 -07004014 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004015 if (ret)
4016 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004017
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004018 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004019 if (ret)
4020 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004021 }
4022
4023 return 0;
4024}
4025
Matt Roper2722efb2016-08-17 15:55:55 -04004026static void
4027skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4028 struct skl_wm_values *src,
4029 enum pipe pipe)
4030{
Matt Roper2722efb2016-08-17 15:55:55 -04004031 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4032 sizeof(dst->ddb.y_plane[pipe]));
4033 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4034 sizeof(dst->ddb.plane[pipe]));
4035}
4036
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004037static void
4038skl_print_wm_changes(const struct drm_atomic_state *state)
4039{
4040 const struct drm_device *dev = state->dev;
4041 const struct drm_i915_private *dev_priv = to_i915(dev);
4042 const struct intel_atomic_state *intel_state =
4043 to_intel_atomic_state(state);
4044 const struct drm_crtc *crtc;
4045 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004046 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004047 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4048 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004049 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004050
4051 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004052 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4053 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004054
Maarten Lankhorst75704982016-11-01 12:04:10 +01004055 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004056 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004057 const struct skl_ddb_entry *old, *new;
4058
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004059 old = &old_ddb->plane[pipe][plane_id];
4060 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004061
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004062 if (skl_ddb_entry_equal(old, new))
4063 continue;
4064
Maarten Lankhorst75704982016-11-01 12:04:10 +01004065 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4066 intel_plane->base.base.id,
4067 intel_plane->base.name,
4068 old->start, old->end,
4069 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004070 }
4071 }
4072}
4073
Matt Roper98d39492016-05-12 07:06:03 -07004074static int
4075skl_compute_wm(struct drm_atomic_state *state)
4076{
4077 struct drm_crtc *crtc;
4078 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004079 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4080 struct skl_wm_values *results = &intel_state->wm_results;
4081 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004082 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004083 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004084
4085 /*
4086 * If this transaction isn't actually touching any CRTC's, don't
4087 * bother with watermark calculation. Note that if we pass this
4088 * test, we're guaranteed to hold at least one CRTC state mutex,
4089 * which means we can safely use values like dev_priv->active_crtcs
4090 * since any racing commits that want to update them would need to
4091 * hold _all_ CRTC state mutexes.
4092 */
4093 for_each_crtc_in_state(state, crtc, cstate, i)
4094 changed = true;
4095 if (!changed)
4096 return 0;
4097
Matt Roper734fa012016-05-12 15:11:40 -07004098 /* Clear all dirty flags */
4099 results->dirty_pipes = 0;
4100
Matt Roper98d39492016-05-12 07:06:03 -07004101 ret = skl_compute_ddb(state);
4102 if (ret)
4103 return ret;
4104
Matt Roper734fa012016-05-12 15:11:40 -07004105 /*
4106 * Calculate WM's for all pipes that are part of this transaction.
4107 * Note that the DDB allocation above may have added more CRTC's that
4108 * weren't otherwise being modified (and set bits in dirty_pipes) if
4109 * pipe allocations had to change.
4110 *
4111 * FIXME: Now that we're doing this in the atomic check phase, we
4112 * should allow skl_update_pipe_wm() to return failure in cases where
4113 * no suitable watermark values can be found.
4114 */
4115 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004116 struct intel_crtc_state *intel_cstate =
4117 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004118 const struct skl_pipe_wm *old_pipe_wm =
4119 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004120
4121 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004122 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4123 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004124 if (ret)
4125 return ret;
4126
4127 if (changed)
4128 results->dirty_pipes |= drm_crtc_mask(crtc);
4129
4130 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4131 /* This pipe's WM's did not change */
4132 continue;
4133
4134 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004135 }
4136
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004137 skl_print_wm_changes(state);
4138
Matt Roper98d39492016-05-12 07:06:03 -07004139 return 0;
4140}
4141
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004142static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4143 struct intel_crtc_state *cstate)
4144{
4145 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4146 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4147 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004148 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004149 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004150 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004151
4152 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4153 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004154
4155 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004156
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004157 for_each_plane_id_on_crtc(crtc, plane_id) {
4158 if (plane_id != PLANE_CURSOR)
4159 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4160 ddb, plane_id);
4161 else
4162 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4163 ddb);
4164 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004165}
4166
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004167static void skl_initial_wm(struct intel_atomic_state *state,
4168 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004169{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004170 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004171 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004172 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004173 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004174 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004175 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004176
Ville Syrjälä432081b2016-10-31 22:37:03 +02004177 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004178 return;
4179
Matt Roper734fa012016-05-12 15:11:40 -07004180 mutex_lock(&dev_priv->wm.wm_mutex);
4181
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004182 if (cstate->base.active_changed)
4183 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004184
4185 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004186
4187 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004188}
4189
Ville Syrjäläd8905652016-01-14 14:53:35 +02004190static void ilk_compute_wm_config(struct drm_device *dev,
4191 struct intel_wm_config *config)
4192{
4193 struct intel_crtc *crtc;
4194
4195 /* Compute the currently _active_ config */
4196 for_each_intel_crtc(dev, crtc) {
4197 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4198
4199 if (!wm->pipe_enabled)
4200 continue;
4201
4202 config->sprites_enabled |= wm->sprites_enabled;
4203 config->sprites_scaled |= wm->sprites_scaled;
4204 config->num_pipes_active++;
4205 }
4206}
4207
Matt Ropered4a6a72016-02-23 17:20:13 -08004208static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004209{
Chris Wilson91c8a322016-07-05 10:40:23 +01004210 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004211 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004212 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004213 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004214 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004215 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004216
Ville Syrjäläd8905652016-01-14 14:53:35 +02004217 ilk_compute_wm_config(dev, &config);
4218
4219 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4220 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004221
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004222 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004223 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004224 config.num_pipes_active == 1 && config.sprites_enabled) {
4225 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4226 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004227
Imre Deak820c1982013-12-17 14:46:36 +02004228 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004229 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004230 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004231 }
4232
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004233 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004234 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004235
Imre Deak820c1982013-12-17 14:46:36 +02004236 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004237
Imre Deak820c1982013-12-17 14:46:36 +02004238 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004239}
4240
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004241static void ilk_initial_watermarks(struct intel_atomic_state *state,
4242 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004243{
Matt Ropered4a6a72016-02-23 17:20:13 -08004244 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4245 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004246
Matt Ropered4a6a72016-02-23 17:20:13 -08004247 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004248 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004249 ilk_program_watermarks(dev_priv);
4250 mutex_unlock(&dev_priv->wm.wm_mutex);
4251}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004252
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004253static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4254 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004255{
4256 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4257 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4258
4259 mutex_lock(&dev_priv->wm.wm_mutex);
4260 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004261 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004262 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004263 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004264 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004265}
4266
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004267static inline void skl_wm_level_from_reg_val(uint32_t val,
4268 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004269{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004270 level->plane_en = val & PLANE_WM_EN;
4271 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4272 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4273 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004274}
4275
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004276void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4277 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004278{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004279 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004280 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004281 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004282 int level, max_level;
4283 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004284 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004285
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004286 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004287
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004288 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4289 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004290
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004291 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004292 if (plane_id != PLANE_CURSOR)
4293 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004294 else
4295 val = I915_READ(CUR_WM(pipe, level));
4296
4297 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4298 }
4299
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004300 if (plane_id != PLANE_CURSOR)
4301 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004302 else
4303 val = I915_READ(CUR_WM_TRANS(pipe));
4304
4305 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4306 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004307
Matt Roper3ef00282015-03-09 10:19:24 -07004308 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004309 return;
4310
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004311 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004312}
4313
4314void skl_wm_get_hw_state(struct drm_device *dev)
4315{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004316 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004317 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004318 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004319 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004320 struct intel_crtc *intel_crtc;
4321 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004322
Damien Lespiaua269c582014-11-04 17:06:49 +00004323 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004324 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4325 intel_crtc = to_intel_crtc(crtc);
4326 cstate = to_intel_crtc_state(crtc->state);
4327
4328 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4329
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004330 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004331 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004332 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004333
Matt Roper279e99d2016-05-12 07:06:02 -07004334 if (dev_priv->active_crtcs) {
4335 /* Fully recompute DDB on first atomic commit */
4336 dev_priv->wm.distrust_bios_wm = true;
4337 } else {
4338 /* Easy/common case; just sanitize DDB now if everything off */
4339 memset(ddb, 0, sizeof(*ddb));
4340 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004341}
4342
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004343static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4344{
4345 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004346 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004347 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004348 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004349 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004350 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004351 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004352 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004353 [PIPE_A] = WM0_PIPEA_ILK,
4354 [PIPE_B] = WM0_PIPEB_ILK,
4355 [PIPE_C] = WM0_PIPEC_IVB,
4356 };
4357
4358 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004359 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004360 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004361
Ville Syrjälä15606532016-05-13 17:55:17 +03004362 memset(active, 0, sizeof(*active));
4363
Matt Roper3ef00282015-03-09 10:19:24 -07004364 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004365
4366 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004367 u32 tmp = hw->wm_pipe[pipe];
4368
4369 /*
4370 * For active pipes LP0 watermark is marked as
4371 * enabled, and LP1+ watermaks as disabled since
4372 * we can't really reverse compute them in case
4373 * multiple pipes are active.
4374 */
4375 active->wm[0].enable = true;
4376 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4377 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4378 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4379 active->linetime = hw->wm_linetime[pipe];
4380 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004381 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004382
4383 /*
4384 * For inactive pipes, all watermark levels
4385 * should be marked as enabled but zeroed,
4386 * which is what we'd compute them to.
4387 */
4388 for (level = 0; level <= max_level; level++)
4389 active->wm[level].enable = true;
4390 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004391
4392 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004393}
4394
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004395#define _FW_WM(value, plane) \
4396 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4397#define _FW_WM_VLV(value, plane) \
4398 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4399
4400static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4401 struct vlv_wm_values *wm)
4402{
4403 enum pipe pipe;
4404 uint32_t tmp;
4405
4406 for_each_pipe(dev_priv, pipe) {
4407 tmp = I915_READ(VLV_DDL(pipe));
4408
Ville Syrjälä1b313892016-11-28 19:37:08 +02004409 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004410 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004411 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004412 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004413 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004414 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004415 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004416 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4417 }
4418
4419 tmp = I915_READ(DSPFW1);
4420 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004421 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4422 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4423 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004424
4425 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004426 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4427 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4428 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004429
4430 tmp = I915_READ(DSPFW3);
4431 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4432
4433 if (IS_CHERRYVIEW(dev_priv)) {
4434 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004435 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4436 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004437
4438 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004439 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4440 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004441
4442 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004443 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4444 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004445
4446 tmp = I915_READ(DSPHOWM);
4447 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004448 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4449 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4450 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4451 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4452 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4453 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4454 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4455 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4456 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004457 } else {
4458 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004459 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4460 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004461
4462 tmp = I915_READ(DSPHOWM);
4463 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004464 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4465 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4466 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4467 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4468 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4469 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004470 }
4471}
4472
4473#undef _FW_WM
4474#undef _FW_WM_VLV
4475
4476void vlv_wm_get_hw_state(struct drm_device *dev)
4477{
4478 struct drm_i915_private *dev_priv = to_i915(dev);
4479 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4480 struct intel_plane *plane;
4481 enum pipe pipe;
4482 u32 val;
4483
4484 vlv_read_wm_values(dev_priv, wm);
4485
Ville Syrjälä49845a22016-11-22 18:02:01 +02004486 for_each_intel_plane(dev, plane)
4487 plane->wm.fifo_size = vlv_get_fifo_size(plane);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004488
4489 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4490 wm->level = VLV_WM_LEVEL_PM2;
4491
4492 if (IS_CHERRYVIEW(dev_priv)) {
4493 mutex_lock(&dev_priv->rps.hw_lock);
4494
4495 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4496 if (val & DSP_MAXFIFO_PM5_ENABLE)
4497 wm->level = VLV_WM_LEVEL_PM5;
4498
Ville Syrjälä58590c12015-09-08 21:05:12 +03004499 /*
4500 * If DDR DVFS is disabled in the BIOS, Punit
4501 * will never ack the request. So if that happens
4502 * assume we don't have to enable/disable DDR DVFS
4503 * dynamically. To test that just set the REQ_ACK
4504 * bit to poke the Punit, but don't change the
4505 * HIGH/LOW bits so that we don't actually change
4506 * the current state.
4507 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004508 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004509 val |= FORCE_DDR_FREQ_REQ_ACK;
4510 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4511
4512 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4513 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4514 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4515 "assuming DDR DVFS is disabled\n");
4516 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4517 } else {
4518 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4519 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4520 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4521 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004522
4523 mutex_unlock(&dev_priv->rps.hw_lock);
4524 }
4525
4526 for_each_pipe(dev_priv, pipe)
4527 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
Ville Syrjälä1b313892016-11-28 19:37:08 +02004528 pipe_name(pipe),
4529 wm->pipe[pipe].plane[PLANE_PRIMARY],
4530 wm->pipe[pipe].plane[PLANE_CURSOR],
4531 wm->pipe[pipe].plane[PLANE_SPRITE0],
4532 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004533
4534 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4535 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4536}
4537
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004538void ilk_wm_get_hw_state(struct drm_device *dev)
4539{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004540 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004541 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004542 struct drm_crtc *crtc;
4543
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004544 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004545 ilk_pipe_wm_get_hw_state(crtc);
4546
4547 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4548 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4549 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4550
4551 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004552 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004553 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4554 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4555 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004556
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004557 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004558 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4559 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004560 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004561 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4562 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004563
4564 hw->enable_fbc_wm =
4565 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4566}
4567
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004568/**
4569 * intel_update_watermarks - update FIFO watermark values based on current modes
4570 *
4571 * Calculate watermark values for the various WM regs based on current mode
4572 * and plane configuration.
4573 *
4574 * There are several cases to deal with here:
4575 * - normal (i.e. non-self-refresh)
4576 * - self-refresh (SR) mode
4577 * - lines are large relative to FIFO size (buffer can hold up to 2)
4578 * - lines are small relative to FIFO size (buffer can hold more than 2
4579 * lines), so need to account for TLB latency
4580 *
4581 * The normal calculation is:
4582 * watermark = dotclock * bytes per pixel * latency
4583 * where latency is platform & configuration dependent (we assume pessimal
4584 * values here).
4585 *
4586 * The SR calculation is:
4587 * watermark = (trunc(latency/line time)+1) * surface width *
4588 * bytes per pixel
4589 * where
4590 * line time = htotal / dotclock
4591 * surface width = hdisplay for normal plane and 64 for cursor
4592 * and latency is assumed to be high, as above.
4593 *
4594 * The final value programmed to the register should always be rounded up,
4595 * and include an extra 2 entries to account for clock crossings.
4596 *
4597 * We don't use the sprite, so we can ignore that. And on Crestline we have
4598 * to set the non-SR watermarks to 8.
4599 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004600void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004601{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004602 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004603
4604 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004605 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004606}
4607
Jani Nikulae2828912016-01-18 09:19:47 +02004608/*
Daniel Vetter92703882012-08-09 16:46:01 +02004609 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004610 */
4611DEFINE_SPINLOCK(mchdev_lock);
4612
4613/* Global for IPS driver to get at the current i915 device. Protected by
4614 * mchdev_lock. */
4615static struct drm_i915_private *i915_mch_dev;
4616
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004617bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004618{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004619 u16 rgvswctl;
4620
Daniel Vetter92703882012-08-09 16:46:01 +02004621 assert_spin_locked(&mchdev_lock);
4622
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004623 rgvswctl = I915_READ16(MEMSWCTL);
4624 if (rgvswctl & MEMCTL_CMD_STS) {
4625 DRM_DEBUG("gpu busy, RCS change rejected\n");
4626 return false; /* still busy with another command */
4627 }
4628
4629 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4630 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4631 I915_WRITE16(MEMSWCTL, rgvswctl);
4632 POSTING_READ16(MEMSWCTL);
4633
4634 rgvswctl |= MEMCTL_CMD_STS;
4635 I915_WRITE16(MEMSWCTL, rgvswctl);
4636
4637 return true;
4638}
4639
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004640static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004641{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004642 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004643 u8 fmax, fmin, fstart, vstart;
4644
Daniel Vetter92703882012-08-09 16:46:01 +02004645 spin_lock_irq(&mchdev_lock);
4646
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004647 rgvmodectl = I915_READ(MEMMODECTL);
4648
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004649 /* Enable temp reporting */
4650 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4651 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4652
4653 /* 100ms RC evaluation intervals */
4654 I915_WRITE(RCUPEI, 100000);
4655 I915_WRITE(RCDNEI, 100000);
4656
4657 /* Set max/min thresholds to 90ms and 80ms respectively */
4658 I915_WRITE(RCBMAXAVG, 90000);
4659 I915_WRITE(RCBMINAVG, 80000);
4660
4661 I915_WRITE(MEMIHYST, 1);
4662
4663 /* Set up min, max, and cur for interrupt handling */
4664 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4665 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4666 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4667 MEMMODE_FSTART_SHIFT;
4668
Ville Syrjälä616847e2015-09-18 20:03:19 +03004669 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004670 PXVFREQ_PX_SHIFT;
4671
Daniel Vetter20e4d402012-08-08 23:35:39 +02004672 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4673 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004674
Daniel Vetter20e4d402012-08-08 23:35:39 +02004675 dev_priv->ips.max_delay = fstart;
4676 dev_priv->ips.min_delay = fmin;
4677 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004678
4679 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4680 fmax, fmin, fstart);
4681
4682 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4683
4684 /*
4685 * Interrupts will be enabled in ironlake_irq_postinstall
4686 */
4687
4688 I915_WRITE(VIDSTART, vstart);
4689 POSTING_READ(VIDSTART);
4690
4691 rgvmodectl |= MEMMODE_SWMODE_EN;
4692 I915_WRITE(MEMMODECTL, rgvmodectl);
4693
Daniel Vetter92703882012-08-09 16:46:01 +02004694 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004695 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004696 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004697
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004698 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004699
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004700 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4701 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004702 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004703 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004704 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004705
4706 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004707}
4708
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004709static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004710{
Daniel Vetter92703882012-08-09 16:46:01 +02004711 u16 rgvswctl;
4712
4713 spin_lock_irq(&mchdev_lock);
4714
4715 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004716
4717 /* Ack interrupts, disable EFC interrupt */
4718 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4719 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4720 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4721 I915_WRITE(DEIIR, DE_PCU_EVENT);
4722 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4723
4724 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004725 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004726 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004727 rgvswctl |= MEMCTL_CMD_STS;
4728 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004729 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004730
Daniel Vetter92703882012-08-09 16:46:01 +02004731 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004732}
4733
Daniel Vetteracbe9472012-07-26 11:50:05 +02004734/* There's a funny hw issue where the hw returns all 0 when reading from
4735 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4736 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4737 * all limits and the gpu stuck at whatever frequency it is at atm).
4738 */
Akash Goel74ef1172015-03-06 11:07:19 +05304739static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004740{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004741 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004742
Daniel Vetter20b46e52012-07-26 11:16:14 +02004743 /* Only set the down limit when we've reached the lowest level to avoid
4744 * getting more interrupts, otherwise leave this clear. This prevents a
4745 * race in the hw when coming out of rc6: There's a tiny window where
4746 * the hw runs at the minimal clock before selecting the desired
4747 * frequency, if the down threshold expires in that window we will not
4748 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004749 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304750 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4751 if (val <= dev_priv->rps.min_freq_softlimit)
4752 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4753 } else {
4754 limits = dev_priv->rps.max_freq_softlimit << 24;
4755 if (val <= dev_priv->rps.min_freq_softlimit)
4756 limits |= dev_priv->rps.min_freq_softlimit << 16;
4757 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004758
4759 return limits;
4760}
4761
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004762static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4763{
4764 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304765 u32 threshold_up = 0, threshold_down = 0; /* in % */
4766 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004767
4768 new_power = dev_priv->rps.power;
4769 switch (dev_priv->rps.power) {
4770 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004771 if (val > dev_priv->rps.efficient_freq + 1 &&
4772 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004773 new_power = BETWEEN;
4774 break;
4775
4776 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004777 if (val <= dev_priv->rps.efficient_freq &&
4778 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004779 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004780 else if (val >= dev_priv->rps.rp0_freq &&
4781 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004782 new_power = HIGH_POWER;
4783 break;
4784
4785 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004786 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4787 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004788 new_power = BETWEEN;
4789 break;
4790 }
4791 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004792 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004793 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004794 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004795 new_power = HIGH_POWER;
4796 if (new_power == dev_priv->rps.power)
4797 return;
4798
4799 /* Note the units here are not exactly 1us, but 1280ns. */
4800 switch (new_power) {
4801 case LOW_POWER:
4802 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304803 ei_up = 16000;
4804 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004805
4806 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304807 ei_down = 32000;
4808 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004809 break;
4810
4811 case BETWEEN:
4812 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304813 ei_up = 13000;
4814 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004815
4816 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304817 ei_down = 32000;
4818 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004819 break;
4820
4821 case HIGH_POWER:
4822 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304823 ei_up = 10000;
4824 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004825
4826 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304827 ei_down = 32000;
4828 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004829 break;
4830 }
4831
Akash Goel8a586432015-03-06 11:07:18 +05304832 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004833 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304834 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004835 GT_INTERVAL_FROM_US(dev_priv,
4836 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304837
4838 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004839 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304840 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004841 GT_INTERVAL_FROM_US(dev_priv,
4842 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304843
Chris Wilsona72b5622016-07-02 15:35:59 +01004844 I915_WRITE(GEN6_RP_CONTROL,
4845 GEN6_RP_MEDIA_TURBO |
4846 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4847 GEN6_RP_MEDIA_IS_GFX |
4848 GEN6_RP_ENABLE |
4849 GEN6_RP_UP_BUSY_AVG |
4850 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304851
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004852 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004853 dev_priv->rps.up_threshold = threshold_up;
4854 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004855 dev_priv->rps.last_adj = 0;
4856}
4857
Chris Wilson2876ce72014-03-28 08:03:34 +00004858static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4859{
4860 u32 mask = 0;
4861
4862 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004863 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004864 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004865 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004866
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004867 mask &= dev_priv->pm_rps_events;
4868
Imre Deak59d02a12014-12-19 19:33:26 +02004869 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004870}
4871
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004872/* gen6_set_rps is called to update the frequency request, but should also be
4873 * called when the range (min_delay and max_delay) is modified so that we can
4874 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilsondc979972016-05-10 14:10:04 +01004875static void gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004876{
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304877 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Chris Wilsondc979972016-05-10 14:10:04 +01004878 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304879 return;
4880
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004881 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004882 WARN_ON(val > dev_priv->rps.max_freq);
4883 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004884
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004885 /* min/max delay may still have been modified so be sure to
4886 * write the limits value.
4887 */
4888 if (val != dev_priv->rps.cur_freq) {
4889 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004890
Chris Wilsondc979972016-05-10 14:10:04 +01004891 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304892 I915_WRITE(GEN6_RPNSWREQ,
4893 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004894 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004895 I915_WRITE(GEN6_RPNSWREQ,
4896 HSW_FREQUENCY(val));
4897 else
4898 I915_WRITE(GEN6_RPNSWREQ,
4899 GEN6_FREQUENCY(val) |
4900 GEN6_OFFSET(0) |
4901 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004902 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004903
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004904 /* Make sure we continue to get interrupts
4905 * until we hit the minimum or maximum frequencies.
4906 */
Akash Goel74ef1172015-03-06 11:07:19 +05304907 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004908 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004909
Ben Widawskyd5570a72012-09-07 19:43:41 -07004910 POSTING_READ(GEN6_RPNSWREQ);
4911
Ben Widawskyb39fb292014-03-19 18:31:11 -07004912 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004913 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004914}
4915
Chris Wilsondc979972016-05-10 14:10:04 +01004916static void valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004917{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004918 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004919 WARN_ON(val > dev_priv->rps.max_freq);
4920 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004921
Chris Wilsondc979972016-05-10 14:10:04 +01004922 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004923 "Odd GPU freq value\n"))
4924 val &= ~1;
4925
Deepak Scd25dd52015-07-10 18:31:40 +05304926 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4927
Chris Wilson8fb55192015-04-07 16:20:28 +01004928 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004929 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004930 if (!IS_CHERRYVIEW(dev_priv))
4931 gen6_set_rps_thresholds(dev_priv, val);
4932 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004933
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004934 dev_priv->rps.cur_freq = val;
4935 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4936}
4937
Deepak Sa7f6e232015-05-09 18:04:44 +05304938/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304939 *
4940 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304941 * 1. Forcewake Media well.
4942 * 2. Request idle freq.
4943 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304944*/
4945static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4946{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004947 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304948
Chris Wilsonaed242f2015-03-18 09:48:21 +00004949 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304950 return;
4951
Deepak Sa7f6e232015-05-09 18:04:44 +05304952 /* Wake up the media well, as that takes a lot less
4953 * power than the Render well. */
4954 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilsondc979972016-05-10 14:10:04 +01004955 valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05304956 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304957}
4958
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004959void gen6_rps_busy(struct drm_i915_private *dev_priv)
4960{
4961 mutex_lock(&dev_priv->rps.hw_lock);
4962 if (dev_priv->rps.enabled) {
4963 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4964 gen6_rps_reset_ei(dev_priv);
4965 I915_WRITE(GEN6_PMINTRMSK,
4966 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02004967
Chris Wilsonc33d2472016-07-04 08:08:36 +01004968 gen6_enable_rps_interrupts(dev_priv);
4969
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02004970 /* Ensure we start at the user's desired frequency */
4971 intel_set_rps(dev_priv,
4972 clamp(dev_priv->rps.cur_freq,
4973 dev_priv->rps.min_freq_softlimit,
4974 dev_priv->rps.max_freq_softlimit));
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004975 }
4976 mutex_unlock(&dev_priv->rps.hw_lock);
4977}
4978
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004979void gen6_rps_idle(struct drm_i915_private *dev_priv)
4980{
Chris Wilsonc33d2472016-07-04 08:08:36 +01004981 /* Flush our bottom-half so that it does not race with us
4982 * setting the idle frequency and so that it is bounded by
4983 * our rpm wakeref. And then disable the interrupts to stop any
4984 * futher RPS reclocking whilst we are asleep.
4985 */
4986 gen6_disable_rps_interrupts(dev_priv);
4987
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004988 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004989 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01004990 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05304991 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004992 else
Chris Wilsondc979972016-05-10 14:10:04 +01004993 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004994 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03004995 I915_WRITE(GEN6_PMINTRMSK,
4996 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01004997 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004998 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004999
Chris Wilson8d3afd72015-05-21 21:01:47 +01005000 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005001 while (!list_empty(&dev_priv->rps.clients))
5002 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005003 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005004}
5005
Chris Wilson1854d5c2015-04-07 16:20:32 +01005006void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005007 struct intel_rps_client *rps,
5008 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005009{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005010 /* This is intentionally racy! We peek at the state here, then
5011 * validate inside the RPS worker.
5012 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005013 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005014 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005015 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005016 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005017
Chris Wilsone61b9952015-04-27 13:41:24 +01005018 /* Force a RPS boost (and don't count it against the client) if
5019 * the GPU is severely congested.
5020 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005021 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005022 rps = NULL;
5023
Chris Wilson8d3afd72015-05-21 21:01:47 +01005024 spin_lock(&dev_priv->rps.client_lock);
5025 if (rps == NULL || list_empty(&rps->link)) {
5026 spin_lock_irq(&dev_priv->irq_lock);
5027 if (dev_priv->rps.interrupts_enabled) {
5028 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005029 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005030 }
5031 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005032
Chris Wilson2e1b8732015-04-27 13:41:22 +01005033 if (rps != NULL) {
5034 list_add(&rps->link, &dev_priv->rps.clients);
5035 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005036 } else
5037 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005038 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005039 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005040}
5041
Chris Wilsondc979972016-05-10 14:10:04 +01005042void intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005043{
Chris Wilsondc979972016-05-10 14:10:04 +01005044 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5045 valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005046 else
Chris Wilsondc979972016-05-10 14:10:04 +01005047 gen6_set_rps(dev_priv, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005048}
5049
Chris Wilsondc979972016-05-10 14:10:04 +01005050static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005051{
Zhe Wang20e49362014-11-04 17:07:05 +00005052 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005053 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005054}
5055
Chris Wilsondc979972016-05-10 14:10:04 +01005056static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305057{
Akash Goel2030d682016-04-23 00:05:45 +05305058 I915_WRITE(GEN6_RP_CONTROL, 0);
5059}
5060
Chris Wilsondc979972016-05-10 14:10:04 +01005061static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005062{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005063 I915_WRITE(GEN6_RC_CONTROL, 0);
5064 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305065 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005066}
5067
Chris Wilsondc979972016-05-10 14:10:04 +01005068static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305069{
Deepak S38807742014-05-23 21:00:15 +05305070 I915_WRITE(GEN6_RC_CONTROL, 0);
5071}
5072
Chris Wilsondc979972016-05-10 14:10:04 +01005073static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005074{
Deepak S98a2e5f2014-08-18 10:35:27 -07005075 /* we're doing forcewake before Disabling RC6,
5076 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005077 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005078
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005079 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005080
Mika Kuoppala59bad942015-01-16 11:34:40 +02005081 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005082}
5083
Chris Wilsondc979972016-05-10 14:10:04 +01005084static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005085{
Chris Wilsondc979972016-05-10 14:10:04 +01005086 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005087 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5088 mode = GEN6_RC_CTL_RC6_ENABLE;
5089 else
5090 mode = 0;
5091 }
Chris Wilsondc979972016-05-10 14:10:04 +01005092 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005093 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5094 "RC6 %s RC6p %s RC6pp %s\n",
5095 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5096 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5097 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005098
5099 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005100 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5101 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005102}
5103
Chris Wilsondc979972016-05-10 14:10:04 +01005104static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305105{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005106 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305107 bool enable_rc6 = true;
5108 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005109 u32 rc_ctl;
5110 int rc_sw_target;
5111
5112 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5113 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5114 RC_SW_TARGET_STATE_SHIFT;
5115 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5116 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5117 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5118 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5119 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305120
5121 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005122 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305123 enable_rc6 = false;
5124 }
5125
5126 /*
5127 * The exact context size is not known for BXT, so assume a page size
5128 * for this check.
5129 */
5130 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005131 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5132 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5133 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005134 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305135 enable_rc6 = false;
5136 }
5137
5138 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5139 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5140 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5141 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005142 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305143 enable_rc6 = false;
5144 }
5145
Imre Deakfc619842016-06-29 19:13:55 +03005146 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5147 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5148 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5149 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5150 enable_rc6 = false;
5151 }
5152
5153 if (!I915_READ(GEN6_GFXPAUSE)) {
5154 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5155 enable_rc6 = false;
5156 }
5157
5158 if (!I915_READ(GEN8_MISC_CTRL0)) {
5159 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305160 enable_rc6 = false;
5161 }
5162
5163 return enable_rc6;
5164}
5165
Chris Wilsondc979972016-05-10 14:10:04 +01005166int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005167{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005168 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005169 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005170 return 0;
5171
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305172 if (!enable_rc6)
5173 return 0;
5174
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005175 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305176 DRM_INFO("RC6 disabled by BIOS\n");
5177 return 0;
5178 }
5179
Daniel Vetter456470e2012-08-08 23:35:40 +02005180 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005181 if (enable_rc6 >= 0) {
5182 int mask;
5183
Chris Wilsondc979972016-05-10 14:10:04 +01005184 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005185 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5186 INTEL_RC6pp_ENABLE;
5187 else
5188 mask = INTEL_RC6_ENABLE;
5189
5190 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005191 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5192 "(requested %d, valid %d)\n",
5193 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005194
5195 return enable_rc6 & mask;
5196 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005197
Chris Wilsondc979972016-05-10 14:10:04 +01005198 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005199 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005200
5201 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005202}
5203
Chris Wilsondc979972016-05-10 14:10:04 +01005204static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005205{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005206 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005207
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005208 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005209 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005210 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005211 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5212 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5213 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5214 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005215 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005216 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5217 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5218 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5219 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005220 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005221 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005222
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005223 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005224 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
5225 IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005226 u32 ddcc_status = 0;
5227
5228 if (sandybridge_pcode_read(dev_priv,
5229 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5230 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005231 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005232 clamp_t(u8,
5233 ((ddcc_status >> 8) & 0xff),
5234 dev_priv->rps.min_freq,
5235 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005236 }
5237
Chris Wilsondc979972016-05-10 14:10:04 +01005238 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305239 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005240 * the natural hardware unit for SKL
5241 */
Akash Goelc5e06882015-06-29 14:50:19 +05305242 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5243 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5244 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5245 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5246 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5247 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005248}
5249
Chris Wilson3a45b052016-07-13 09:10:32 +01005250static void reset_rps(struct drm_i915_private *dev_priv,
5251 void (*set)(struct drm_i915_private *, u8))
5252{
5253 u8 freq = dev_priv->rps.cur_freq;
5254
5255 /* force a reset */
5256 dev_priv->rps.power = -1;
5257 dev_priv->rps.cur_freq = -1;
5258
5259 set(dev_priv, freq);
5260}
5261
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005262/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005263static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005264{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005265 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5266
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05305267 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Chris Wilsondc979972016-05-10 14:10:04 +01005268 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Akash Goel2030d682016-04-23 00:05:45 +05305269 /*
5270 * BIOS could leave the Hw Turbo enabled, so need to explicitly
5271 * clear out the Control register just to avoid inconsitency
5272 * with debugfs interface, which will show Turbo as enabled
5273 * only and that is not expected by the User after adding the
5274 * WaGsvDisableTurbo. Apart from this there is no problem even
5275 * if the Turbo is left enabled in the Control register, as the
5276 * Up/Down interrupts would remain masked.
5277 */
Chris Wilsondc979972016-05-10 14:10:04 +01005278 gen9_disable_rps(dev_priv);
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05305279 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5280 return;
5281 }
5282
Akash Goel0beb0592015-03-06 11:07:20 +05305283 /* Program defaults and thresholds for RPS*/
5284 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5285 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005286
Akash Goel0beb0592015-03-06 11:07:20 +05305287 /* 1 second timeout*/
5288 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5289 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5290
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005291 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005292
Akash Goel0beb0592015-03-06 11:07:20 +05305293 /* Leaning on the below call to gen6_set_rps to program/setup the
5294 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5295 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005296 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005297
5298 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5299}
5300
Chris Wilsondc979972016-05-10 14:10:04 +01005301static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005302{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005303 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305304 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005305 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005306
5307 /* 1a: Software RC state - RC0 */
5308 I915_WRITE(GEN6_RC_STATE, 0);
5309
5310 /* 1b: Get forcewake during program sequence. Although the driver
5311 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005312 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005313
5314 /* 2a: Disable RC states. */
5315 I915_WRITE(GEN6_RC_CONTROL, 0);
5316
5317 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305318
5319 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005320 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305321 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5322 else
5323 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005324 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5325 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305326 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005327 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305328
Dave Gordon1a3d1892016-05-13 15:36:30 +01005329 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305330 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5331
Zhe Wang20e49362014-11-04 17:07:05 +00005332 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005333
Zhe Wang38c23522015-01-20 12:23:04 +00005334 /* 2c: Program Coarse Power Gating Policies. */
5335 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5336 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5337
Zhe Wang20e49362014-11-04 17:07:05 +00005338 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005339 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005340 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005341 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Jani Nikula4ff40a42016-09-26 15:07:51 +03005342 /* WaRsUseTimeoutMode:bxt */
Jani Nikula9fc736e2016-09-16 16:59:46 +03005343 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305344 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05305345 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5346 GEN7_RC_CTL_TO_MODE |
5347 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305348 } else {
5349 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05305350 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5351 GEN6_RC_CTL_EI_MODE(1) |
5352 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305353 }
Zhe Wang20e49362014-11-04 17:07:05 +00005354
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305355 /*
5356 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305357 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305358 */
Chris Wilsondc979972016-05-10 14:10:04 +01005359 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305360 I915_WRITE(GEN9_PG_ENABLE, 0);
5361 else
5362 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5363 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005364
Mika Kuoppala59bad942015-01-16 11:34:40 +02005365 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005366}
5367
Chris Wilsondc979972016-05-10 14:10:04 +01005368static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005369{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005370 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305371 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005372 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005373
5374 /* 1a: Software RC state - RC0 */
5375 I915_WRITE(GEN6_RC_STATE, 0);
5376
5377 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5378 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005379 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005380
5381 /* 2a: Disable RC states. */
5382 I915_WRITE(GEN6_RC_CONTROL, 0);
5383
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005384 /* 2b: Program RC6 thresholds.*/
5385 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5386 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5387 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305388 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005389 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005390 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005391 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005392 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5393 else
5394 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005395
5396 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005397 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005398 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005399 intel_print_rc6_info(dev_priv, rc6_mask);
5400 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005401 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5402 GEN7_RC_CTL_TO_MODE |
5403 rc6_mask);
5404 else
5405 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5406 GEN6_RC_CTL_EI_MODE(1) |
5407 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005408
5409 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005410 I915_WRITE(GEN6_RPNSWREQ,
5411 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5412 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5413 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005414 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5415 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005416
Daniel Vetter7526ed72014-09-29 15:07:19 +02005417 /* Docs recommend 900MHz, and 300 MHz respectively */
5418 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5419 dev_priv->rps.max_freq_softlimit << 24 |
5420 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005421
Daniel Vetter7526ed72014-09-29 15:07:19 +02005422 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5423 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5424 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5425 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005426
Daniel Vetter7526ed72014-09-29 15:07:19 +02005427 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005428
5429 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005430 I915_WRITE(GEN6_RP_CONTROL,
5431 GEN6_RP_MEDIA_TURBO |
5432 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5433 GEN6_RP_MEDIA_IS_GFX |
5434 GEN6_RP_ENABLE |
5435 GEN6_RP_UP_BUSY_AVG |
5436 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005437
Daniel Vetter7526ed72014-09-29 15:07:19 +02005438 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005439
Chris Wilson3a45b052016-07-13 09:10:32 +01005440 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005441
Mika Kuoppala59bad942015-01-16 11:34:40 +02005442 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005443}
5444
Chris Wilsondc979972016-05-10 14:10:04 +01005445static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005446{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005447 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305448 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005449 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005450 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005451 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005452 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005453
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005454 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005455
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005456 /* Here begins a magic sequence of register writes to enable
5457 * auto-downclocking.
5458 *
5459 * Perhaps there might be some value in exposing these to
5460 * userspace...
5461 */
5462 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005463
5464 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005465 gtfifodbg = I915_READ(GTFIFODBG);
5466 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005467 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5468 I915_WRITE(GTFIFODBG, gtfifodbg);
5469 }
5470
Mika Kuoppala59bad942015-01-16 11:34:40 +02005471 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005472
5473 /* disable the counters and set deterministic thresholds */
5474 I915_WRITE(GEN6_RC_CONTROL, 0);
5475
5476 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5477 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5478 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5479 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5480 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5481
Akash Goel3b3f1652016-10-13 22:44:48 +05305482 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005483 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005484
5485 I915_WRITE(GEN6_RC_SLEEP, 0);
5486 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005487 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005488 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5489 else
5490 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005491 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005492 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5493
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005494 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005495 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005496 if (rc6_mode & INTEL_RC6_ENABLE)
5497 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5498
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005499 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005500 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005501 if (rc6_mode & INTEL_RC6p_ENABLE)
5502 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005503
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005504 if (rc6_mode & INTEL_RC6pp_ENABLE)
5505 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5506 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005507
Chris Wilsondc979972016-05-10 14:10:04 +01005508 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005509
5510 I915_WRITE(GEN6_RC_CONTROL,
5511 rc6_mask |
5512 GEN6_RC_CTL_EI_MODE(1) |
5513 GEN6_RC_CTL_HW_ENABLE);
5514
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005515 /* Power down if completely idle for over 50ms */
5516 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005517 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005518
Chris Wilson3a45b052016-07-13 09:10:32 +01005519 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005520
Ben Widawsky31643d52012-09-26 10:34:01 -07005521 rc6vids = 0;
5522 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005523 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005524 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005525 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005526 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5527 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5528 rc6vids &= 0xffff00;
5529 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5530 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5531 if (ret)
5532 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5533 }
5534
Mika Kuoppala59bad942015-01-16 11:34:40 +02005535 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005536}
5537
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005538static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005539{
5540 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005541 unsigned int gpu_freq;
5542 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305543 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005544 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005545 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005546
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005547 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005548
Ben Widawskyeda79642013-10-07 17:15:48 -03005549 policy = cpufreq_cpu_get(0);
5550 if (policy) {
5551 max_ia_freq = policy->cpuinfo.max_freq;
5552 cpufreq_cpu_put(policy);
5553 } else {
5554 /*
5555 * Default to measured freq if none found, PCU will ensure we
5556 * don't go over
5557 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005558 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005559 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005560
5561 /* Convert from kHz to MHz */
5562 max_ia_freq /= 1000;
5563
Ben Widawsky153b4b952013-10-22 22:05:09 -07005564 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005565 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5566 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005567
Chris Wilsondc979972016-05-10 14:10:04 +01005568 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305569 /* Convert GT frequency to 50 HZ units */
5570 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5571 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5572 } else {
5573 min_gpu_freq = dev_priv->rps.min_freq;
5574 max_gpu_freq = dev_priv->rps.max_freq;
5575 }
5576
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005577 /*
5578 * For each potential GPU frequency, load a ring frequency we'd like
5579 * to use for memory access. We do this by specifying the IA frequency
5580 * the PCU should use as a reference to determine the ring frequency.
5581 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305582 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5583 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005584 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005585
Chris Wilsondc979972016-05-10 14:10:04 +01005586 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305587 /*
5588 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5589 * No floor required for ring frequency on SKL.
5590 */
5591 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005592 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005593 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5594 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005595 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005596 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005597 ring_freq = max(min_ring_freq, ring_freq);
5598 /* leave ia_freq as the default, chosen by cpufreq */
5599 } else {
5600 /* On older processors, there is no separate ring
5601 * clock domain, so in order to boost the bandwidth
5602 * of the ring, we need to upclock the CPU (ia_freq).
5603 *
5604 * For GPU frequencies less than 750MHz,
5605 * just use the lowest ring freq.
5606 */
5607 if (gpu_freq < min_freq)
5608 ia_freq = 800;
5609 else
5610 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5611 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5612 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005613
Ben Widawsky42c05262012-09-26 10:34:00 -07005614 sandybridge_pcode_write(dev_priv,
5615 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005616 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5617 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5618 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005619 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005620}
5621
Ville Syrjälä03af2042014-06-28 02:03:53 +03005622static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305623{
5624 u32 val, rp0;
5625
Jani Nikula5b5929c2015-10-07 11:17:46 +03005626 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305627
Imre Deak43b67992016-08-31 19:13:02 +03005628 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005629 case 8:
5630 /* (2 * 4) config */
5631 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5632 break;
5633 case 12:
5634 /* (2 * 6) config */
5635 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5636 break;
5637 case 16:
5638 /* (2 * 8) config */
5639 default:
5640 /* Setting (2 * 8) Min RP0 for any other combination */
5641 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5642 break;
Deepak S095acd52015-01-17 11:05:59 +05305643 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005644
5645 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5646
Deepak S2b6b3a02014-05-27 15:59:30 +05305647 return rp0;
5648}
5649
5650static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5651{
5652 u32 val, rpe;
5653
5654 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5655 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5656
5657 return rpe;
5658}
5659
Deepak S7707df42014-07-12 18:46:14 +05305660static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5661{
5662 u32 val, rp1;
5663
Jani Nikula5b5929c2015-10-07 11:17:46 +03005664 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5665 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5666
Deepak S7707df42014-07-12 18:46:14 +05305667 return rp1;
5668}
5669
Deepak Sf8f2b002014-07-10 13:16:21 +05305670static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5671{
5672 u32 val, rp1;
5673
5674 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5675
5676 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5677
5678 return rp1;
5679}
5680
Ville Syrjälä03af2042014-06-28 02:03:53 +03005681static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005682{
5683 u32 val, rp0;
5684
Jani Nikula64936252013-05-22 15:36:20 +03005685 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005686
5687 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5688 /* Clamp to max */
5689 rp0 = min_t(u32, rp0, 0xea);
5690
5691 return rp0;
5692}
5693
5694static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5695{
5696 u32 val, rpe;
5697
Jani Nikula64936252013-05-22 15:36:20 +03005698 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005699 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005700 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005701 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5702
5703 return rpe;
5704}
5705
Ville Syrjälä03af2042014-06-28 02:03:53 +03005706static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005707{
Imre Deak36146032014-12-04 18:39:35 +02005708 u32 val;
5709
5710 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5711 /*
5712 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5713 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5714 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5715 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5716 * to make sure it matches what Punit accepts.
5717 */
5718 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005719}
5720
Imre Deakae484342014-03-31 15:10:44 +03005721/* Check that the pctx buffer wasn't move under us. */
5722static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5723{
5724 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5725
5726 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5727 dev_priv->vlv_pctx->stolen->start);
5728}
5729
Deepak S38807742014-05-23 21:00:15 +05305730
5731/* Check that the pcbr address is not empty. */
5732static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5733{
5734 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5735
5736 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5737}
5738
Chris Wilsondc979972016-05-10 14:10:04 +01005739static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305740{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005741 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005742 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305743 u32 pcbr;
5744 int pctx_size = 32*1024;
5745
Deepak S38807742014-05-23 21:00:15 +05305746 pcbr = I915_READ(VLV_PCBR);
5747 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005748 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305749 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005750 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305751
5752 pctx_paddr = (paddr & (~4095));
5753 I915_WRITE(VLV_PCBR, pctx_paddr);
5754 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005755
5756 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305757}
5758
Chris Wilsondc979972016-05-10 14:10:04 +01005759static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005760{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005761 struct drm_i915_gem_object *pctx;
5762 unsigned long pctx_paddr;
5763 u32 pcbr;
5764 int pctx_size = 24*1024;
5765
5766 pcbr = I915_READ(VLV_PCBR);
5767 if (pcbr) {
5768 /* BIOS set it up already, grab the pre-alloc'd space */
5769 int pcbr_offset;
5770
5771 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005772 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005773 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005774 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005775 pctx_size);
5776 goto out;
5777 }
5778
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005779 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5780
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005781 /*
5782 * From the Gunit register HAS:
5783 * The Gfx driver is expected to program this register and ensure
5784 * proper allocation within Gfx stolen memory. For example, this
5785 * register should be programmed such than the PCBR range does not
5786 * overlap with other ranges, such as the frame buffer, protected
5787 * memory, or any other relevant ranges.
5788 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005789 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005790 if (!pctx) {
5791 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005792 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005793 }
5794
5795 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5796 I915_WRITE(VLV_PCBR, pctx_paddr);
5797
5798out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005799 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005800 dev_priv->vlv_pctx = pctx;
5801}
5802
Chris Wilsondc979972016-05-10 14:10:04 +01005803static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005804{
Imre Deakae484342014-03-31 15:10:44 +03005805 if (WARN_ON(!dev_priv->vlv_pctx))
5806 return;
5807
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005808 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005809 dev_priv->vlv_pctx = NULL;
5810}
5811
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005812static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5813{
5814 dev_priv->rps.gpll_ref_freq =
5815 vlv_get_cck_clock(dev_priv, "GPLL ref",
5816 CCK_GPLL_CLOCK_CONTROL,
5817 dev_priv->czclk_freq);
5818
5819 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5820 dev_priv->rps.gpll_ref_freq);
5821}
5822
Chris Wilsondc979972016-05-10 14:10:04 +01005823static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005824{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005825 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005826
Chris Wilsondc979972016-05-10 14:10:04 +01005827 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005828
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005829 vlv_init_gpll_ref_freq(dev_priv);
5830
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005831 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5832 switch ((val >> 6) & 3) {
5833 case 0:
5834 case 1:
5835 dev_priv->mem_freq = 800;
5836 break;
5837 case 2:
5838 dev_priv->mem_freq = 1066;
5839 break;
5840 case 3:
5841 dev_priv->mem_freq = 1333;
5842 break;
5843 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005844 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005845
Imre Deak4e805192014-04-14 20:24:41 +03005846 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5847 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5848 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005849 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005850 dev_priv->rps.max_freq);
5851
5852 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5853 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005854 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005855 dev_priv->rps.efficient_freq);
5856
Deepak Sf8f2b002014-07-10 13:16:21 +05305857 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5858 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005859 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305860 dev_priv->rps.rp1_freq);
5861
Imre Deak4e805192014-04-14 20:24:41 +03005862 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5863 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005864 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005865 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005866}
5867
Chris Wilsondc979972016-05-10 14:10:04 +01005868static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305869{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005870 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305871
Chris Wilsondc979972016-05-10 14:10:04 +01005872 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305873
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005874 vlv_init_gpll_ref_freq(dev_priv);
5875
Ville Syrjäläa5805162015-05-26 20:42:30 +03005876 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005877 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005878 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005879
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005880 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005881 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005882 dev_priv->mem_freq = 2000;
5883 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005884 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005885 dev_priv->mem_freq = 1600;
5886 break;
5887 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005888 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005889
Deepak S2b6b3a02014-05-27 15:59:30 +05305890 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5891 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5892 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005893 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305894 dev_priv->rps.max_freq);
5895
5896 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5897 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005898 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305899 dev_priv->rps.efficient_freq);
5900
Deepak S7707df42014-07-12 18:46:14 +05305901 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5902 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005903 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305904 dev_priv->rps.rp1_freq);
5905
Deepak S5b7c91b2015-05-09 18:15:46 +05305906 /* PUnit validated range is only [RPe, RP0] */
5907 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305908 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005909 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305910 dev_priv->rps.min_freq);
5911
Ville Syrjälä1c147622014-08-18 14:42:43 +03005912 WARN_ONCE((dev_priv->rps.max_freq |
5913 dev_priv->rps.efficient_freq |
5914 dev_priv->rps.rp1_freq |
5915 dev_priv->rps.min_freq) & 1,
5916 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305917}
5918
Chris Wilsondc979972016-05-10 14:10:04 +01005919static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005920{
Chris Wilsondc979972016-05-10 14:10:04 +01005921 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005922}
5923
Chris Wilsondc979972016-05-10 14:10:04 +01005924static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305925{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005926 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305927 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05305928 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305929
5930 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5931
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005932 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
5933 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05305934 if (gtfifodbg) {
5935 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5936 gtfifodbg);
5937 I915_WRITE(GTFIFODBG, gtfifodbg);
5938 }
5939
5940 cherryview_check_pctx(dev_priv);
5941
5942 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5943 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005944 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305945
Ville Syrjälä160614a2015-01-19 13:50:47 +02005946 /* Disable RC states. */
5947 I915_WRITE(GEN6_RC_CONTROL, 0);
5948
Deepak S38807742014-05-23 21:00:15 +05305949 /* 2a: Program RC6 thresholds.*/
5950 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5951 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5952 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5953
Akash Goel3b3f1652016-10-13 22:44:48 +05305954 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005955 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05305956 I915_WRITE(GEN6_RC_SLEEP, 0);
5957
Deepak Sf4f71c72015-03-28 15:23:35 +05305958 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5959 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305960
5961 /* allows RC6 residency counter to work */
5962 I915_WRITE(VLV_COUNTER_CONTROL,
5963 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5964 VLV_MEDIA_RC6_COUNT_EN |
5965 VLV_RENDER_RC6_COUNT_EN));
5966
5967 /* For now we assume BIOS is allocating and populating the PCBR */
5968 pcbr = I915_READ(VLV_PCBR);
5969
Deepak S38807742014-05-23 21:00:15 +05305970 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005971 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
5972 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005973 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305974
5975 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5976
Deepak S2b6b3a02014-05-27 15:59:30 +05305977 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005978 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305979 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5980 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5981 I915_WRITE(GEN6_RP_UP_EI, 66000);
5982 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5983
5984 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5985
5986 /* 5: Enable RPS */
5987 I915_WRITE(GEN6_RP_CONTROL,
5988 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005989 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305990 GEN6_RP_ENABLE |
5991 GEN6_RP_UP_BUSY_AVG |
5992 GEN6_RP_DOWN_IDLE_AVG);
5993
Deepak S3ef62342015-04-29 08:36:24 +05305994 /* Setting Fixed Bias */
5995 val = VLV_OVERRIDE_EN |
5996 VLV_SOC_TDP_EN |
5997 CHV_BIAS_CPU_50_SOC_50;
5998 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5999
Deepak S2b6b3a02014-05-27 15:59:30 +05306000 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6001
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006002 /* RPS code assumes GPLL is used */
6003 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6004
Jani Nikula742f4912015-09-03 11:16:09 +03006005 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306006 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6007
Chris Wilson3a45b052016-07-13 09:10:32 +01006008 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306009
Mika Kuoppala59bad942015-01-16 11:34:40 +02006010 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306011}
6012
Chris Wilsondc979972016-05-10 14:10:04 +01006013static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006014{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006015 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306016 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006017 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006018
6019 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6020
Imre Deakae484342014-03-31 15:10:44 +03006021 valleyview_check_pctx(dev_priv);
6022
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006023 gtfifodbg = I915_READ(GTFIFODBG);
6024 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006025 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6026 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006027 I915_WRITE(GTFIFODBG, gtfifodbg);
6028 }
6029
Deepak Sc8d9a592013-11-23 14:55:42 +05306030 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006031 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006032
Ville Syrjälä160614a2015-01-19 13:50:47 +02006033 /* Disable RC states. */
6034 I915_WRITE(GEN6_RC_CONTROL, 0);
6035
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006036 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006037 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6038 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6039 I915_WRITE(GEN6_RP_UP_EI, 66000);
6040 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6041
6042 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6043
6044 I915_WRITE(GEN6_RP_CONTROL,
6045 GEN6_RP_MEDIA_TURBO |
6046 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6047 GEN6_RP_MEDIA_IS_GFX |
6048 GEN6_RP_ENABLE |
6049 GEN6_RP_UP_BUSY_AVG |
6050 GEN6_RP_DOWN_IDLE_CONT);
6051
6052 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6053 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6054 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6055
Akash Goel3b3f1652016-10-13 22:44:48 +05306056 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006057 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006058
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006059 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006060
6061 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006062 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006063 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6064 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006065 VLV_MEDIA_RC6_COUNT_EN |
6066 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006067
Chris Wilsondc979972016-05-10 14:10:04 +01006068 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006069 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006070
Chris Wilsondc979972016-05-10 14:10:04 +01006071 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006072
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006073 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006074
Deepak S3ef62342015-04-29 08:36:24 +05306075 /* Setting Fixed Bias */
6076 val = VLV_OVERRIDE_EN |
6077 VLV_SOC_TDP_EN |
6078 VLV_BIAS_CPU_125_SOC_875;
6079 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6080
Jani Nikula64936252013-05-22 15:36:20 +03006081 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006082
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006083 /* RPS code assumes GPLL is used */
6084 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6085
Jani Nikula742f4912015-09-03 11:16:09 +03006086 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006087 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6088
Chris Wilson3a45b052016-07-13 09:10:32 +01006089 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006090
Mika Kuoppala59bad942015-01-16 11:34:40 +02006091 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006092}
6093
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006094static unsigned long intel_pxfreq(u32 vidfreq)
6095{
6096 unsigned long freq;
6097 int div = (vidfreq & 0x3f0000) >> 16;
6098 int post = (vidfreq & 0x3000) >> 12;
6099 int pre = (vidfreq & 0x7);
6100
6101 if (!pre)
6102 return 0;
6103
6104 freq = ((div * 133333) / ((1<<post) * pre));
6105
6106 return freq;
6107}
6108
Daniel Vettereb48eb02012-04-26 23:28:12 +02006109static const struct cparams {
6110 u16 i;
6111 u16 t;
6112 u16 m;
6113 u16 c;
6114} cparams[] = {
6115 { 1, 1333, 301, 28664 },
6116 { 1, 1066, 294, 24460 },
6117 { 1, 800, 294, 25192 },
6118 { 0, 1333, 276, 27605 },
6119 { 0, 1066, 276, 27605 },
6120 { 0, 800, 231, 23784 },
6121};
6122
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006123static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006124{
6125 u64 total_count, diff, ret;
6126 u32 count1, count2, count3, m = 0, c = 0;
6127 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6128 int i;
6129
Daniel Vetter02d71952012-08-09 16:44:54 +02006130 assert_spin_locked(&mchdev_lock);
6131
Daniel Vetter20e4d402012-08-08 23:35:39 +02006132 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006133
6134 /* Prevent division-by-zero if we are asking too fast.
6135 * Also, we don't get interesting results if we are polling
6136 * faster than once in 10ms, so just return the saved value
6137 * in such cases.
6138 */
6139 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006140 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006141
6142 count1 = I915_READ(DMIEC);
6143 count2 = I915_READ(DDREC);
6144 count3 = I915_READ(CSIEC);
6145
6146 total_count = count1 + count2 + count3;
6147
6148 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006149 if (total_count < dev_priv->ips.last_count1) {
6150 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006151 diff += total_count;
6152 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006153 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006154 }
6155
6156 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006157 if (cparams[i].i == dev_priv->ips.c_m &&
6158 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006159 m = cparams[i].m;
6160 c = cparams[i].c;
6161 break;
6162 }
6163 }
6164
6165 diff = div_u64(diff, diff1);
6166 ret = ((m * diff) + c);
6167 ret = div_u64(ret, 10);
6168
Daniel Vetter20e4d402012-08-08 23:35:39 +02006169 dev_priv->ips.last_count1 = total_count;
6170 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006171
Daniel Vetter20e4d402012-08-08 23:35:39 +02006172 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006173
6174 return ret;
6175}
6176
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006177unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6178{
6179 unsigned long val;
6180
Chris Wilsondc979972016-05-10 14:10:04 +01006181 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006182 return 0;
6183
6184 spin_lock_irq(&mchdev_lock);
6185
6186 val = __i915_chipset_val(dev_priv);
6187
6188 spin_unlock_irq(&mchdev_lock);
6189
6190 return val;
6191}
6192
Daniel Vettereb48eb02012-04-26 23:28:12 +02006193unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6194{
6195 unsigned long m, x, b;
6196 u32 tsfs;
6197
6198 tsfs = I915_READ(TSFS);
6199
6200 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6201 x = I915_READ8(TR1);
6202
6203 b = tsfs & TSFS_INTR_MASK;
6204
6205 return ((m * x) / 127) - b;
6206}
6207
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006208static int _pxvid_to_vd(u8 pxvid)
6209{
6210 if (pxvid == 0)
6211 return 0;
6212
6213 if (pxvid >= 8 && pxvid < 31)
6214 pxvid = 31;
6215
6216 return (pxvid + 2) * 125;
6217}
6218
6219static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006220{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006221 const int vd = _pxvid_to_vd(pxvid);
6222 const int vm = vd - 1125;
6223
Chris Wilsondc979972016-05-10 14:10:04 +01006224 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006225 return vm > 0 ? vm : 0;
6226
6227 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006228}
6229
Daniel Vetter02d71952012-08-09 16:44:54 +02006230static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006231{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006232 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006233 u32 count;
6234
Daniel Vetter02d71952012-08-09 16:44:54 +02006235 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006236
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006237 now = ktime_get_raw_ns();
6238 diffms = now - dev_priv->ips.last_time2;
6239 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006240
6241 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006242 if (!diffms)
6243 return;
6244
6245 count = I915_READ(GFXEC);
6246
Daniel Vetter20e4d402012-08-08 23:35:39 +02006247 if (count < dev_priv->ips.last_count2) {
6248 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006249 diff += count;
6250 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006251 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006252 }
6253
Daniel Vetter20e4d402012-08-08 23:35:39 +02006254 dev_priv->ips.last_count2 = count;
6255 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006256
6257 /* More magic constants... */
6258 diff = diff * 1181;
6259 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006260 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006261}
6262
Daniel Vetter02d71952012-08-09 16:44:54 +02006263void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6264{
Chris Wilsondc979972016-05-10 14:10:04 +01006265 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006266 return;
6267
Daniel Vetter92703882012-08-09 16:46:01 +02006268 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006269
6270 __i915_update_gfx_val(dev_priv);
6271
Daniel Vetter92703882012-08-09 16:46:01 +02006272 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006273}
6274
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006275static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006276{
6277 unsigned long t, corr, state1, corr2, state2;
6278 u32 pxvid, ext_v;
6279
Daniel Vetter02d71952012-08-09 16:44:54 +02006280 assert_spin_locked(&mchdev_lock);
6281
Ville Syrjälä616847e2015-09-18 20:03:19 +03006282 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006283 pxvid = (pxvid >> 24) & 0x7f;
6284 ext_v = pvid_to_extvid(dev_priv, pxvid);
6285
6286 state1 = ext_v;
6287
6288 t = i915_mch_val(dev_priv);
6289
6290 /* Revel in the empirically derived constants */
6291
6292 /* Correction factor in 1/100000 units */
6293 if (t > 80)
6294 corr = ((t * 2349) + 135940);
6295 else if (t >= 50)
6296 corr = ((t * 964) + 29317);
6297 else /* < 50 */
6298 corr = ((t * 301) + 1004);
6299
6300 corr = corr * ((150142 * state1) / 10000 - 78642);
6301 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006302 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006303
6304 state2 = (corr2 * state1) / 10000;
6305 state2 /= 100; /* convert to mW */
6306
Daniel Vetter02d71952012-08-09 16:44:54 +02006307 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006308
Daniel Vetter20e4d402012-08-08 23:35:39 +02006309 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006310}
6311
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006312unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6313{
6314 unsigned long val;
6315
Chris Wilsondc979972016-05-10 14:10:04 +01006316 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006317 return 0;
6318
6319 spin_lock_irq(&mchdev_lock);
6320
6321 val = __i915_gfx_val(dev_priv);
6322
6323 spin_unlock_irq(&mchdev_lock);
6324
6325 return val;
6326}
6327
Daniel Vettereb48eb02012-04-26 23:28:12 +02006328/**
6329 * i915_read_mch_val - return value for IPS use
6330 *
6331 * Calculate and return a value for the IPS driver to use when deciding whether
6332 * we have thermal and power headroom to increase CPU or GPU power budget.
6333 */
6334unsigned long i915_read_mch_val(void)
6335{
6336 struct drm_i915_private *dev_priv;
6337 unsigned long chipset_val, graphics_val, ret = 0;
6338
Daniel Vetter92703882012-08-09 16:46:01 +02006339 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006340 if (!i915_mch_dev)
6341 goto out_unlock;
6342 dev_priv = i915_mch_dev;
6343
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006344 chipset_val = __i915_chipset_val(dev_priv);
6345 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006346
6347 ret = chipset_val + graphics_val;
6348
6349out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006350 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006351
6352 return ret;
6353}
6354EXPORT_SYMBOL_GPL(i915_read_mch_val);
6355
6356/**
6357 * i915_gpu_raise - raise GPU frequency limit
6358 *
6359 * Raise the limit; IPS indicates we have thermal headroom.
6360 */
6361bool i915_gpu_raise(void)
6362{
6363 struct drm_i915_private *dev_priv;
6364 bool ret = true;
6365
Daniel Vetter92703882012-08-09 16:46:01 +02006366 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006367 if (!i915_mch_dev) {
6368 ret = false;
6369 goto out_unlock;
6370 }
6371 dev_priv = i915_mch_dev;
6372
Daniel Vetter20e4d402012-08-08 23:35:39 +02006373 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6374 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006375
6376out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006377 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006378
6379 return ret;
6380}
6381EXPORT_SYMBOL_GPL(i915_gpu_raise);
6382
6383/**
6384 * i915_gpu_lower - lower GPU frequency limit
6385 *
6386 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6387 * frequency maximum.
6388 */
6389bool i915_gpu_lower(void)
6390{
6391 struct drm_i915_private *dev_priv;
6392 bool ret = true;
6393
Daniel Vetter92703882012-08-09 16:46:01 +02006394 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006395 if (!i915_mch_dev) {
6396 ret = false;
6397 goto out_unlock;
6398 }
6399 dev_priv = i915_mch_dev;
6400
Daniel Vetter20e4d402012-08-08 23:35:39 +02006401 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6402 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006403
6404out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006405 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006406
6407 return ret;
6408}
6409EXPORT_SYMBOL_GPL(i915_gpu_lower);
6410
6411/**
6412 * i915_gpu_busy - indicate GPU business to IPS
6413 *
6414 * Tell the IPS driver whether or not the GPU is busy.
6415 */
6416bool i915_gpu_busy(void)
6417{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006418 bool ret = false;
6419
Daniel Vetter92703882012-08-09 16:46:01 +02006420 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006421 if (i915_mch_dev)
6422 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006423 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006424
6425 return ret;
6426}
6427EXPORT_SYMBOL_GPL(i915_gpu_busy);
6428
6429/**
6430 * i915_gpu_turbo_disable - disable graphics turbo
6431 *
6432 * Disable graphics turbo by resetting the max frequency and setting the
6433 * current frequency to the default.
6434 */
6435bool i915_gpu_turbo_disable(void)
6436{
6437 struct drm_i915_private *dev_priv;
6438 bool ret = true;
6439
Daniel Vetter92703882012-08-09 16:46:01 +02006440 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006441 if (!i915_mch_dev) {
6442 ret = false;
6443 goto out_unlock;
6444 }
6445 dev_priv = i915_mch_dev;
6446
Daniel Vetter20e4d402012-08-08 23:35:39 +02006447 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006448
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006449 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006450 ret = false;
6451
6452out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006453 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006454
6455 return ret;
6456}
6457EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6458
6459/**
6460 * Tells the intel_ips driver that the i915 driver is now loaded, if
6461 * IPS got loaded first.
6462 *
6463 * This awkward dance is so that neither module has to depend on the
6464 * other in order for IPS to do the appropriate communication of
6465 * GPU turbo limits to i915.
6466 */
6467static void
6468ips_ping_for_i915_load(void)
6469{
6470 void (*link)(void);
6471
6472 link = symbol_get(ips_link_to_i915_driver);
6473 if (link) {
6474 link();
6475 symbol_put(ips_link_to_i915_driver);
6476 }
6477}
6478
6479void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6480{
Daniel Vetter02d71952012-08-09 16:44:54 +02006481 /* We only register the i915 ips part with intel-ips once everything is
6482 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006483 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006484 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006485 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006486
6487 ips_ping_for_i915_load();
6488}
6489
6490void intel_gpu_ips_teardown(void)
6491{
Daniel Vetter92703882012-08-09 16:46:01 +02006492 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006493 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006494 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006495}
Deepak S76c3552f2014-01-30 23:08:16 +05306496
Chris Wilsondc979972016-05-10 14:10:04 +01006497static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006498{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006499 u32 lcfuse;
6500 u8 pxw[16];
6501 int i;
6502
6503 /* Disable to program */
6504 I915_WRITE(ECR, 0);
6505 POSTING_READ(ECR);
6506
6507 /* Program energy weights for various events */
6508 I915_WRITE(SDEW, 0x15040d00);
6509 I915_WRITE(CSIEW0, 0x007f0000);
6510 I915_WRITE(CSIEW1, 0x1e220004);
6511 I915_WRITE(CSIEW2, 0x04000004);
6512
6513 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006514 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006515 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006516 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006517
6518 /* Program P-state weights to account for frequency power adjustment */
6519 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006520 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006521 unsigned long freq = intel_pxfreq(pxvidfreq);
6522 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6523 PXVFREQ_PX_SHIFT;
6524 unsigned long val;
6525
6526 val = vid * vid;
6527 val *= (freq / 1000);
6528 val *= 255;
6529 val /= (127*127*900);
6530 if (val > 0xff)
6531 DRM_ERROR("bad pxval: %ld\n", val);
6532 pxw[i] = val;
6533 }
6534 /* Render standby states get 0 weight */
6535 pxw[14] = 0;
6536 pxw[15] = 0;
6537
6538 for (i = 0; i < 4; i++) {
6539 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6540 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006541 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006542 }
6543
6544 /* Adjust magic regs to magic values (more experimental results) */
6545 I915_WRITE(OGW0, 0);
6546 I915_WRITE(OGW1, 0);
6547 I915_WRITE(EG0, 0x00007f00);
6548 I915_WRITE(EG1, 0x0000000e);
6549 I915_WRITE(EG2, 0x000e0000);
6550 I915_WRITE(EG3, 0x68000300);
6551 I915_WRITE(EG4, 0x42000000);
6552 I915_WRITE(EG5, 0x00140031);
6553 I915_WRITE(EG6, 0);
6554 I915_WRITE(EG7, 0);
6555
6556 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006557 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006558
6559 /* Enable PMON + select events */
6560 I915_WRITE(ECR, 0x80000019);
6561
6562 lcfuse = I915_READ(LCFUSE02);
6563
Daniel Vetter20e4d402012-08-08 23:35:39 +02006564 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006565}
6566
Chris Wilsondc979972016-05-10 14:10:04 +01006567void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006568{
Imre Deakb268c692015-12-15 20:10:31 +02006569 /*
6570 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6571 * requirement.
6572 */
6573 if (!i915.enable_rc6) {
6574 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6575 intel_runtime_pm_get(dev_priv);
6576 }
Imre Deake6069ca2014-04-18 16:01:02 +03006577
Chris Wilsonb5163db2016-08-10 13:58:24 +01006578 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006579 mutex_lock(&dev_priv->rps.hw_lock);
6580
6581 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006582 if (IS_CHERRYVIEW(dev_priv))
6583 cherryview_init_gt_powersave(dev_priv);
6584 else if (IS_VALLEYVIEW(dev_priv))
6585 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006586 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006587 gen6_init_rps_frequencies(dev_priv);
6588
6589 /* Derive initial user preferences/limits from the hardware limits */
6590 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6591 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6592
6593 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6594 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6595
6596 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6597 dev_priv->rps.min_freq_softlimit =
6598 max_t(int,
6599 dev_priv->rps.efficient_freq,
6600 intel_freq_opcode(dev_priv, 450));
6601
Chris Wilson99ac9612016-07-13 09:10:34 +01006602 /* After setting max-softlimit, find the overclock max freq */
6603 if (IS_GEN6(dev_priv) ||
6604 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6605 u32 params = 0;
6606
6607 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6608 if (params & BIT(31)) { /* OC supported */
6609 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6610 (dev_priv->rps.max_freq & 0xff) * 50,
6611 (params & 0xff) * 50);
6612 dev_priv->rps.max_freq = params & 0xff;
6613 }
6614 }
6615
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006616 /* Finally allow us to boost to max by default */
6617 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6618
Chris Wilson773ea9a2016-07-13 09:10:33 +01006619 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006620 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006621
6622 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006623}
6624
Chris Wilsondc979972016-05-10 14:10:04 +01006625void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006626{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006627 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006628 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006629
6630 if (!i915.enable_rc6)
6631 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006632}
6633
Chris Wilson54b4f682016-07-21 21:16:19 +01006634/**
6635 * intel_suspend_gt_powersave - suspend PM work and helper threads
6636 * @dev_priv: i915 device
6637 *
6638 * We don't want to disable RC6 or other features here, we just want
6639 * to make sure any work we've queued has finished and won't bother
6640 * us while we're suspended.
6641 */
6642void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6643{
6644 if (INTEL_GEN(dev_priv) < 6)
6645 return;
6646
6647 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6648 intel_runtime_pm_put(dev_priv);
6649
6650 /* gen6_rps_idle() will be called later to disable interrupts */
6651}
6652
Chris Wilsonb7137e02016-07-13 09:10:37 +01006653void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6654{
6655 dev_priv->rps.enabled = true; /* force disabling */
6656 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006657
6658 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006659}
6660
Chris Wilsondc979972016-05-10 14:10:04 +01006661void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006662{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006663 if (!READ_ONCE(dev_priv->rps.enabled))
6664 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006665
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006666 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006667
Chris Wilsonb7137e02016-07-13 09:10:37 +01006668 if (INTEL_GEN(dev_priv) >= 9) {
6669 gen9_disable_rc6(dev_priv);
6670 gen9_disable_rps(dev_priv);
6671 } else if (IS_CHERRYVIEW(dev_priv)) {
6672 cherryview_disable_rps(dev_priv);
6673 } else if (IS_VALLEYVIEW(dev_priv)) {
6674 valleyview_disable_rps(dev_priv);
6675 } else if (INTEL_GEN(dev_priv) >= 6) {
6676 gen6_disable_rps(dev_priv);
6677 } else if (IS_IRONLAKE_M(dev_priv)) {
6678 ironlake_disable_drps(dev_priv);
6679 }
6680
6681 dev_priv->rps.enabled = false;
6682 mutex_unlock(&dev_priv->rps.hw_lock);
6683}
6684
6685void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6686{
Chris Wilson54b4f682016-07-21 21:16:19 +01006687 /* We shouldn't be disabling as we submit, so this should be less
6688 * racy than it appears!
6689 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006690 if (READ_ONCE(dev_priv->rps.enabled))
6691 return;
6692
6693 /* Powersaving is controlled by the host when inside a VM */
6694 if (intel_vgpu_active(dev_priv))
6695 return;
6696
6697 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006698
Chris Wilsondc979972016-05-10 14:10:04 +01006699 if (IS_CHERRYVIEW(dev_priv)) {
6700 cherryview_enable_rps(dev_priv);
6701 } else if (IS_VALLEYVIEW(dev_priv)) {
6702 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006703 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006704 gen9_enable_rc6(dev_priv);
6705 gen9_enable_rps(dev_priv);
6706 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006707 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006708 } else if (IS_BROADWELL(dev_priv)) {
6709 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006710 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006711 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006712 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006713 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006714 } else if (IS_IRONLAKE_M(dev_priv)) {
6715 ironlake_enable_drps(dev_priv);
6716 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006717 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006718
6719 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6720 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6721
6722 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6723 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6724
Chris Wilson54b4f682016-07-21 21:16:19 +01006725 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006726 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006727}
Imre Deakc6df39b2014-04-14 20:24:29 +03006728
Chris Wilson54b4f682016-07-21 21:16:19 +01006729static void __intel_autoenable_gt_powersave(struct work_struct *work)
6730{
6731 struct drm_i915_private *dev_priv =
6732 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6733 struct intel_engine_cs *rcs;
6734 struct drm_i915_gem_request *req;
6735
6736 if (READ_ONCE(dev_priv->rps.enabled))
6737 goto out;
6738
Akash Goel3b3f1652016-10-13 22:44:48 +05306739 rcs = dev_priv->engine[RCS];
Chris Wilson54b4f682016-07-21 21:16:19 +01006740 if (rcs->last_context)
6741 goto out;
6742
6743 if (!rcs->init_context)
6744 goto out;
6745
6746 mutex_lock(&dev_priv->drm.struct_mutex);
6747
6748 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6749 if (IS_ERR(req))
6750 goto unlock;
6751
6752 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6753 rcs->init_context(req);
6754
6755 /* Mark the device busy, calling intel_enable_gt_powersave() */
6756 i915_add_request_no_flush(req);
6757
6758unlock:
6759 mutex_unlock(&dev_priv->drm.struct_mutex);
6760out:
6761 intel_runtime_pm_put(dev_priv);
6762}
6763
6764void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6765{
6766 if (READ_ONCE(dev_priv->rps.enabled))
6767 return;
6768
6769 if (IS_IRONLAKE_M(dev_priv)) {
6770 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006771 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006772 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6773 /*
6774 * PCU communication is slow and this doesn't need to be
6775 * done at any specific time, so do this out of our fast path
6776 * to make resume and init faster.
6777 *
6778 * We depend on the HW RC6 power context save/restore
6779 * mechanism when entering D3 through runtime PM suspend. So
6780 * disable RPM until RPS/RC6 is properly setup. We can only
6781 * get here via the driver load/system resume/runtime resume
6782 * paths, so the _noresume version is enough (and in case of
6783 * runtime resume it's necessary).
6784 */
6785 if (queue_delayed_work(dev_priv->wq,
6786 &dev_priv->rps.autoenable_work,
6787 round_jiffies_up_relative(HZ)))
6788 intel_runtime_pm_get_noresume(dev_priv);
6789 }
6790}
6791
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006792static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006793{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006794 /*
6795 * On Ibex Peak and Cougar Point, we need to disable clock
6796 * gating for the panel power sequencer or it will fail to
6797 * start up when no ports are active.
6798 */
6799 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6800}
6801
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006802static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006803{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006804 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006805
Damien Lespiau055e3932014-08-18 13:49:10 +01006806 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006807 I915_WRITE(DSPCNTR(pipe),
6808 I915_READ(DSPCNTR(pipe)) |
6809 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006810
6811 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6812 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006813 }
6814}
6815
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006816static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006817{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006818 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6819 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6820 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6821
6822 /*
6823 * Don't touch WM1S_LP_EN here.
6824 * Doing so could cause underruns.
6825 */
6826}
6827
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006828static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006829{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006830 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006831
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006832 /*
6833 * Required for FBC
6834 * WaFbcDisableDpfcClockGating:ilk
6835 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006836 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6837 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6838 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006839
6840 I915_WRITE(PCH_3DCGDIS0,
6841 MARIUNIT_CLOCK_GATE_DISABLE |
6842 SVSMUNIT_CLOCK_GATE_DISABLE);
6843 I915_WRITE(PCH_3DCGDIS1,
6844 VFMUNIT_CLOCK_GATE_DISABLE);
6845
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006846 /*
6847 * According to the spec the following bits should be set in
6848 * order to enable memory self-refresh
6849 * The bit 22/21 of 0x42004
6850 * The bit 5 of 0x42020
6851 * The bit 15 of 0x45000
6852 */
6853 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6854 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6855 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006856 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006857 I915_WRITE(DISP_ARB_CTL,
6858 (I915_READ(DISP_ARB_CTL) |
6859 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006860
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006861 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006862
6863 /*
6864 * Based on the document from hardware guys the following bits
6865 * should be set unconditionally in order to enable FBC.
6866 * The bit 22 of 0x42000
6867 * The bit 22 of 0x42004
6868 * The bit 7,8,9 of 0x42020.
6869 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006870 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006871 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006872 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6873 I915_READ(ILK_DISPLAY_CHICKEN1) |
6874 ILK_FBCQ_DIS);
6875 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6876 I915_READ(ILK_DISPLAY_CHICKEN2) |
6877 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006878 }
6879
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006880 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6881
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006882 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6883 I915_READ(ILK_DISPLAY_CHICKEN2) |
6884 ILK_ELPIN_409_SELECT);
6885 I915_WRITE(_3D_CHICKEN2,
6886 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6887 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006888
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006889 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006890 I915_WRITE(CACHE_MODE_0,
6891 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006892
Akash Goel4e046322014-04-04 17:14:38 +05306893 /* WaDisable_RenderCache_OperationalFlush:ilk */
6894 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6895
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006896 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006897
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006898 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006899}
6900
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006901static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006902{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006903 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006904 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006905
6906 /*
6907 * On Ibex Peak and Cougar Point, we need to disable clock
6908 * gating for the panel power sequencer or it will fail to
6909 * start up when no ports are active.
6910 */
Jesse Barnescd664072013-10-02 10:34:19 -07006911 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6912 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6913 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006914 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6915 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006916 /* The below fixes the weird display corruption, a few pixels shifted
6917 * downward, on (only) LVDS of some HP laptops with IVY.
6918 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006919 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006920 val = I915_READ(TRANS_CHICKEN2(pipe));
6921 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6922 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006923 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006924 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006925 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6926 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6927 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006928 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6929 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006930 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006931 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006932 I915_WRITE(TRANS_CHICKEN1(pipe),
6933 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6934 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006935}
6936
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006937static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006938{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006939 uint32_t tmp;
6940
6941 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006942 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6943 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6944 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006945}
6946
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006947static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006948{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006949 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006950
Damien Lespiau231e54f2012-10-19 17:55:41 +01006951 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006952
6953 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6954 I915_READ(ILK_DISPLAY_CHICKEN2) |
6955 ILK_ELPIN_409_SELECT);
6956
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006957 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006958 I915_WRITE(_3D_CHICKEN,
6959 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6960
Akash Goel4e046322014-04-04 17:14:38 +05306961 /* WaDisable_RenderCache_OperationalFlush:snb */
6962 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6963
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006964 /*
6965 * BSpec recoomends 8x4 when MSAA is used,
6966 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006967 *
6968 * Note that PS/WM thread counts depend on the WIZ hashing
6969 * disable bit, which we don't touch here, but it's good
6970 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006971 */
6972 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006973 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006974
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006975 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006976
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006977 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006978 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006979
6980 I915_WRITE(GEN6_UCGCTL1,
6981 I915_READ(GEN6_UCGCTL1) |
6982 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6983 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6984
6985 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6986 * gating disable must be set. Failure to set it results in
6987 * flickering pixels due to Z write ordering failures after
6988 * some amount of runtime in the Mesa "fire" demo, and Unigine
6989 * Sanctuary and Tropics, and apparently anything else with
6990 * alpha test or pixel discard.
6991 *
6992 * According to the spec, bit 11 (RCCUNIT) must also be set,
6993 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006994 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006995 * WaDisableRCCUnitClockGating:snb
6996 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006997 */
6998 I915_WRITE(GEN6_UCGCTL2,
6999 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7000 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7001
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007002 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007003 I915_WRITE(_3D_CHICKEN3,
7004 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007005
7006 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007007 * Bspec says:
7008 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7009 * 3DSTATE_SF number of SF output attributes is more than 16."
7010 */
7011 I915_WRITE(_3D_CHICKEN3,
7012 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7013
7014 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007015 * According to the spec the following bits should be
7016 * set in order to enable memory self-refresh and fbc:
7017 * The bit21 and bit22 of 0x42000
7018 * The bit21 and bit22 of 0x42004
7019 * The bit5 and bit7 of 0x42020
7020 * The bit14 of 0x70180
7021 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007022 *
7023 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007024 */
7025 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7026 I915_READ(ILK_DISPLAY_CHICKEN1) |
7027 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7028 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7029 I915_READ(ILK_DISPLAY_CHICKEN2) |
7030 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007031 I915_WRITE(ILK_DSPCLK_GATE_D,
7032 I915_READ(ILK_DSPCLK_GATE_D) |
7033 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7034 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007035
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007036 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007037
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007038 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007039
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007040 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007041}
7042
7043static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7044{
7045 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7046
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007047 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007048 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007049 *
7050 * This actually overrides the dispatch
7051 * mode for all thread types.
7052 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007053 reg &= ~GEN7_FF_SCHED_MASK;
7054 reg |= GEN7_FF_TS_SCHED_HW;
7055 reg |= GEN7_FF_VS_SCHED_HW;
7056 reg |= GEN7_FF_DS_SCHED_HW;
7057
7058 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7059}
7060
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007061static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007062{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007063 /*
7064 * TODO: this bit should only be enabled when really needed, then
7065 * disabled when not needed anymore in order to save power.
7066 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007067 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007068 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7069 I915_READ(SOUTH_DSPCLK_GATE_D) |
7070 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007071
7072 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007073 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7074 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007075 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007076}
7077
Ville Syrjälä712bf362016-10-31 22:37:23 +02007078static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007079{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007080 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007081 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7082
7083 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7084 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7085 }
7086}
7087
Imre Deak450174f2016-05-03 15:54:21 +03007088static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7089 int general_prio_credits,
7090 int high_prio_credits)
7091{
7092 u32 misccpctl;
7093
7094 /* WaTempDisableDOPClkGating:bdw */
7095 misccpctl = I915_READ(GEN7_MISCCPCTL);
7096 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7097
7098 I915_WRITE(GEN8_L3SQCREG1,
7099 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7100 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7101
7102 /*
7103 * Wait at least 100 clocks before re-enabling clock gating.
7104 * See the definition of L3SQCREG1 in BSpec.
7105 */
7106 POSTING_READ(GEN8_L3SQCREG1);
7107 udelay(1);
7108 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7109}
7110
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007111static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007112{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007113 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007114
7115 /* WaDisableSDEUnitClockGating:kbl */
7116 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7117 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7118 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007119
7120 /* WaDisableGamClockGating:kbl */
7121 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7122 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7123 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007124
7125 /* WaFbcNukeOnHostModify:kbl */
7126 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7127 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007128}
7129
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007130static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007131{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007132 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007133
7134 /* WAC6entrylatency:skl */
7135 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7136 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007137
7138 /* WaFbcNukeOnHostModify:skl */
7139 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7140 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007141}
7142
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007143static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007144{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007145 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007146
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007147 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007148
Ben Widawskyab57fff2013-12-12 15:28:04 -08007149 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007150 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007151
Ben Widawskyab57fff2013-12-12 15:28:04 -08007152 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007153 I915_WRITE(CHICKEN_PAR1_1,
7154 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7155
Ben Widawskyab57fff2013-12-12 15:28:04 -08007156 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007157 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007158 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007159 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007160 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007161 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007162
Ben Widawskyab57fff2013-12-12 15:28:04 -08007163 /* WaVSRefCountFullforceMissDisable:bdw */
7164 /* WaDSRefCountFullforceMissDisable:bdw */
7165 I915_WRITE(GEN7_FF_THREAD_MODE,
7166 I915_READ(GEN7_FF_THREAD_MODE) &
7167 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007168
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007169 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7170 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007171
7172 /* WaDisableSDEUnitClockGating:bdw */
7173 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7174 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007175
Imre Deak450174f2016-05-03 15:54:21 +03007176 /* WaProgramL3SqcReg1Default:bdw */
7177 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007178
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007179 /*
7180 * WaGttCachingOffByDefault:bdw
7181 * GTT cache may not work with big pages, so if those
7182 * are ever enabled GTT cache may need to be disabled.
7183 */
7184 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7185
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007186 /* WaKVMNotificationOnConfigChange:bdw */
7187 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7188 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7189
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007190 lpt_init_clock_gating(dev_priv);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007191}
7192
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007193static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007194{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007195 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007196
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007197 /* L3 caching of data atomics doesn't work -- disable it. */
7198 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7199 I915_WRITE(HSW_ROW_CHICKEN3,
7200 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7201
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007202 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007203 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7204 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7205 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7206
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007207 /* WaVSRefCountFullforceMissDisable:hsw */
7208 I915_WRITE(GEN7_FF_THREAD_MODE,
7209 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007210
Akash Goel4e046322014-04-04 17:14:38 +05307211 /* WaDisable_RenderCache_OperationalFlush:hsw */
7212 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7213
Chia-I Wufe27c602014-01-28 13:29:33 +08007214 /* enable HiZ Raw Stall Optimization */
7215 I915_WRITE(CACHE_MODE_0_GEN7,
7216 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7217
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007218 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007219 I915_WRITE(CACHE_MODE_1,
7220 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007221
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007222 /*
7223 * BSpec recommends 8x4 when MSAA is used,
7224 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007225 *
7226 * Note that PS/WM thread counts depend on the WIZ hashing
7227 * disable bit, which we don't touch here, but it's good
7228 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007229 */
7230 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007231 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007232
Kenneth Graunke94411592014-12-31 16:23:00 -08007233 /* WaSampleCChickenBitEnable:hsw */
7234 I915_WRITE(HALF_SLICE_CHICKEN3,
7235 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7236
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007237 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007238 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7239
Paulo Zanoni90a88642013-05-03 17:23:45 -03007240 /* WaRsPkgCStateDisplayPMReq:hsw */
7241 I915_WRITE(CHICKEN_PAR1_1,
7242 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007243
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007244 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007245}
7246
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007247static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007248{
Ben Widawsky20848222012-05-04 18:58:59 -07007249 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007250
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007251 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007252
Damien Lespiau231e54f2012-10-19 17:55:41 +01007253 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007254
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007255 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007256 I915_WRITE(_3D_CHICKEN3,
7257 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7258
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007259 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007260 I915_WRITE(IVB_CHICKEN3,
7261 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7262 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7263
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007264 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007265 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007266 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7267 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007268
Akash Goel4e046322014-04-04 17:14:38 +05307269 /* WaDisable_RenderCache_OperationalFlush:ivb */
7270 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7271
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007272 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007273 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7274 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7275
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007276 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007277 I915_WRITE(GEN7_L3CNTLREG1,
7278 GEN7_WA_FOR_GEN7_L3_CONTROL);
7279 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007280 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007281 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007282 I915_WRITE(GEN7_ROW_CHICKEN2,
7283 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007284 else {
7285 /* must write both registers */
7286 I915_WRITE(GEN7_ROW_CHICKEN2,
7287 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007288 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7289 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007290 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007291
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007292 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007293 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7294 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7295
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007296 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007297 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007298 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007299 */
7300 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007301 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007302
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007303 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007304 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7305 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7306 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7307
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007308 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007309
7310 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007311
Chris Wilson22721342014-03-04 09:41:43 +00007312 if (0) { /* causes HiZ corruption on ivb:gt1 */
7313 /* enable HiZ Raw Stall Optimization */
7314 I915_WRITE(CACHE_MODE_0_GEN7,
7315 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7316 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007317
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007318 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007319 I915_WRITE(CACHE_MODE_1,
7320 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007321
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007322 /*
7323 * BSpec recommends 8x4 when MSAA is used,
7324 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007325 *
7326 * Note that PS/WM thread counts depend on the WIZ hashing
7327 * disable bit, which we don't touch here, but it's good
7328 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007329 */
7330 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007331 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007332
Ben Widawsky20848222012-05-04 18:58:59 -07007333 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7334 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7335 snpcr |= GEN6_MBC_SNPCR_MED;
7336 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007337
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007338 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007339 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007340
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007341 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007342}
7343
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007344static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007345{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007346 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007347 I915_WRITE(_3D_CHICKEN3,
7348 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7349
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007350 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007351 I915_WRITE(IVB_CHICKEN3,
7352 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7353 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7354
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007355 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007356 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007357 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007358 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7359 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007360
Akash Goel4e046322014-04-04 17:14:38 +05307361 /* WaDisable_RenderCache_OperationalFlush:vlv */
7362 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7363
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007364 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007365 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7366 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7367
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007368 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007369 I915_WRITE(GEN7_ROW_CHICKEN2,
7370 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7371
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007372 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007373 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7374 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7375 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7376
Ville Syrjälä46680e02014-01-22 21:33:01 +02007377 gen7_setup_fixed_func_scheduler(dev_priv);
7378
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007379 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007380 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007381 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007382 */
7383 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007384 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007385
Akash Goelc98f5062014-03-24 23:00:07 +05307386 /* WaDisableL3Bank2xClockGate:vlv
7387 * Disabling L3 clock gating- MMIO 940c[25] = 1
7388 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7389 I915_WRITE(GEN7_UCGCTL4,
7390 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007391
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007392 /*
7393 * BSpec says this must be set, even though
7394 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7395 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007396 I915_WRITE(CACHE_MODE_1,
7397 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007398
7399 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007400 * BSpec recommends 8x4 when MSAA is used,
7401 * however in practice 16x4 seems fastest.
7402 *
7403 * Note that PS/WM thread counts depend on the WIZ hashing
7404 * disable bit, which we don't touch here, but it's good
7405 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7406 */
7407 I915_WRITE(GEN7_GT_MODE,
7408 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7409
7410 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007411 * WaIncreaseL3CreditsForVLVB0:vlv
7412 * This is the hardware default actually.
7413 */
7414 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7415
7416 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007417 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007418 * Disable clock gating on th GCFG unit to prevent a delay
7419 * in the reporting of vblank events.
7420 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007421 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007422}
7423
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007424static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007425{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007426 /* WaVSRefCountFullforceMissDisable:chv */
7427 /* WaDSRefCountFullforceMissDisable:chv */
7428 I915_WRITE(GEN7_FF_THREAD_MODE,
7429 I915_READ(GEN7_FF_THREAD_MODE) &
7430 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007431
7432 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7433 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7434 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007435
7436 /* WaDisableCSUnitClockGating:chv */
7437 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7438 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007439
7440 /* WaDisableSDEUnitClockGating:chv */
7441 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7442 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007443
7444 /*
Imre Deak450174f2016-05-03 15:54:21 +03007445 * WaProgramL3SqcReg1Default:chv
7446 * See gfxspecs/Related Documents/Performance Guide/
7447 * LSQC Setting Recommendations.
7448 */
7449 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7450
7451 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007452 * GTT cache may not work with big pages, so if those
7453 * are ever enabled GTT cache may need to be disabled.
7454 */
7455 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007456}
7457
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007458static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007459{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007460 uint32_t dspclk_gate;
7461
7462 I915_WRITE(RENCLK_GATE_D1, 0);
7463 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7464 GS_UNIT_CLOCK_GATE_DISABLE |
7465 CL_UNIT_CLOCK_GATE_DISABLE);
7466 I915_WRITE(RAMCLK_GATE_D, 0);
7467 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7468 OVRUNIT_CLOCK_GATE_DISABLE |
7469 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007470 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007471 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7472 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007473
7474 /* WaDisableRenderCachePipelinedFlush */
7475 I915_WRITE(CACHE_MODE_0,
7476 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007477
Akash Goel4e046322014-04-04 17:14:38 +05307478 /* WaDisable_RenderCache_OperationalFlush:g4x */
7479 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7480
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007481 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007482}
7483
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007484static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007485{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007486 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7487 I915_WRITE(RENCLK_GATE_D2, 0);
7488 I915_WRITE(DSPCLK_GATE_D, 0);
7489 I915_WRITE(RAMCLK_GATE_D, 0);
7490 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007491 I915_WRITE(MI_ARB_STATE,
7492 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307493
7494 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7495 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007496}
7497
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007498static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007499{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007500 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7501 I965_RCC_CLOCK_GATE_DISABLE |
7502 I965_RCPB_CLOCK_GATE_DISABLE |
7503 I965_ISC_CLOCK_GATE_DISABLE |
7504 I965_FBC_CLOCK_GATE_DISABLE);
7505 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007506 I915_WRITE(MI_ARB_STATE,
7507 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307508
7509 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7510 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007511}
7512
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007513static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007514{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007515 u32 dstate = I915_READ(D_STATE);
7516
7517 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7518 DSTATE_DOT_CLOCK_GATING;
7519 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007520
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007521 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007522 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007523
7524 /* IIR "flip pending" means done if this bit is set */
7525 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007526
7527 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007528 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007529
7530 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7531 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007532
7533 I915_WRITE(MI_ARB_STATE,
7534 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007535}
7536
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007537static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007538{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007539 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007540
7541 /* interrupts should cause a wake up from C3 */
7542 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7543 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007544
7545 I915_WRITE(MEM_MODE,
7546 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007547}
7548
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007549static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007550{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007551 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007552
7553 I915_WRITE(MEM_MODE,
7554 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7555 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007556}
7557
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007558void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007559{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007560 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007561}
7562
Ville Syrjälä712bf362016-10-31 22:37:23 +02007563void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007564{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007565 if (HAS_PCH_LPT(dev_priv))
7566 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007567}
7568
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007569static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007570{
7571 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7572}
7573
7574/**
7575 * intel_init_clock_gating_hooks - setup the clock gating hooks
7576 * @dev_priv: device private
7577 *
7578 * Setup the hooks that configure which clocks of a given platform can be
7579 * gated and also apply various GT and display specific workarounds for these
7580 * platforms. Note that some GT specific workarounds are applied separately
7581 * when GPU contexts or batchbuffers start their execution.
7582 */
7583void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7584{
7585 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007586 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007587 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007588 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02007589 else if (IS_GEN9_LP(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007590 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
7591 else if (IS_BROADWELL(dev_priv))
7592 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7593 else if (IS_CHERRYVIEW(dev_priv))
7594 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7595 else if (IS_HASWELL(dev_priv))
7596 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7597 else if (IS_IVYBRIDGE(dev_priv))
7598 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7599 else if (IS_VALLEYVIEW(dev_priv))
7600 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7601 else if (IS_GEN6(dev_priv))
7602 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7603 else if (IS_GEN5(dev_priv))
7604 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7605 else if (IS_G4X(dev_priv))
7606 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7607 else if (IS_CRESTLINE(dev_priv))
7608 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7609 else if (IS_BROADWATER(dev_priv))
7610 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7611 else if (IS_GEN3(dev_priv))
7612 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7613 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7614 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7615 else if (IS_GEN2(dev_priv))
7616 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7617 else {
7618 MISSING_CASE(INTEL_DEVID(dev_priv));
7619 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7620 }
7621}
7622
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007623/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007624void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007625{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007626 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007627
Daniel Vetterc921aba2012-04-26 23:28:17 +02007628 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007629 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007630 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007631 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007632 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007633
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007634 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007635 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007636 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007637 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007638 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007639 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007640 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007641 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007642
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007643 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007644 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007645 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007646 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007647 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007648 dev_priv->display.compute_intermediate_wm =
7649 ilk_compute_intermediate_wm;
7650 dev_priv->display.initial_watermarks =
7651 ilk_initial_watermarks;
7652 dev_priv->display.optimize_watermarks =
7653 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007654 } else {
7655 DRM_DEBUG_KMS("Failed to read display plane latency. "
7656 "Disable CxSR\n");
7657 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007658 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007659 vlv_setup_wm_latency(dev_priv);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007660 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007661 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007662 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007663 dev_priv->is_ddr3,
7664 dev_priv->fsb_freq,
7665 dev_priv->mem_freq)) {
7666 DRM_INFO("failed to find known CxSR latency "
7667 "(found ddr%s fsb freq %d, mem freq %d), "
7668 "disabling CxSR\n",
7669 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7670 dev_priv->fsb_freq, dev_priv->mem_freq);
7671 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007672 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007673 dev_priv->display.update_wm = NULL;
7674 } else
7675 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007676 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007677 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007678 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007679 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007680 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007681 dev_priv->display.update_wm = i9xx_update_wm;
7682 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007683 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007684 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007685 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007686 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007687 } else {
7688 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007689 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007690 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007691 } else {
7692 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007693 }
7694}
7695
Lyude87660502016-08-17 15:55:53 -04007696static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7697{
7698 uint32_t flags =
7699 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7700
7701 switch (flags) {
7702 case GEN6_PCODE_SUCCESS:
7703 return 0;
7704 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7705 case GEN6_PCODE_ILLEGAL_CMD:
7706 return -ENXIO;
7707 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007708 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007709 return -EOVERFLOW;
7710 case GEN6_PCODE_TIMEOUT:
7711 return -ETIMEDOUT;
7712 default:
7713 MISSING_CASE(flags)
7714 return 0;
7715 }
7716}
7717
7718static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7719{
7720 uint32_t flags =
7721 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7722
7723 switch (flags) {
7724 case GEN6_PCODE_SUCCESS:
7725 return 0;
7726 case GEN6_PCODE_ILLEGAL_CMD:
7727 return -ENXIO;
7728 case GEN7_PCODE_TIMEOUT:
7729 return -ETIMEDOUT;
7730 case GEN7_PCODE_ILLEGAL_DATA:
7731 return -EINVAL;
7732 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7733 return -EOVERFLOW;
7734 default:
7735 MISSING_CASE(flags);
7736 return 0;
7737 }
7738}
7739
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007740int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007741{
Lyude87660502016-08-17 15:55:53 -04007742 int status;
7743
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007744 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007745
Chris Wilson3f5582d2016-06-30 15:32:45 +01007746 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7747 * use te fw I915_READ variants to reduce the amount of work
7748 * required when reading/writing.
7749 */
7750
7751 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007752 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7753 return -EAGAIN;
7754 }
7755
Chris Wilson3f5582d2016-06-30 15:32:45 +01007756 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7757 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7758 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007759
Chris Wilson3f5582d2016-06-30 15:32:45 +01007760 if (intel_wait_for_register_fw(dev_priv,
7761 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7762 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007763 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7764 return -ETIMEDOUT;
7765 }
7766
Chris Wilson3f5582d2016-06-30 15:32:45 +01007767 *val = I915_READ_FW(GEN6_PCODE_DATA);
7768 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007769
Lyude87660502016-08-17 15:55:53 -04007770 if (INTEL_GEN(dev_priv) > 6)
7771 status = gen7_check_mailbox_status(dev_priv);
7772 else
7773 status = gen6_check_mailbox_status(dev_priv);
7774
7775 if (status) {
7776 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7777 status);
7778 return status;
7779 }
7780
Ben Widawsky42c05262012-09-26 10:34:00 -07007781 return 0;
7782}
7783
Chris Wilson3f5582d2016-06-30 15:32:45 +01007784int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007785 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007786{
Lyude87660502016-08-17 15:55:53 -04007787 int status;
7788
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007789 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007790
Chris Wilson3f5582d2016-06-30 15:32:45 +01007791 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7792 * use te fw I915_READ variants to reduce the amount of work
7793 * required when reading/writing.
7794 */
7795
7796 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007797 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7798 return -EAGAIN;
7799 }
7800
Chris Wilson3f5582d2016-06-30 15:32:45 +01007801 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02007802 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01007803 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007804
Chris Wilson3f5582d2016-06-30 15:32:45 +01007805 if (intel_wait_for_register_fw(dev_priv,
7806 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7807 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007808 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7809 return -ETIMEDOUT;
7810 }
7811
Chris Wilson3f5582d2016-06-30 15:32:45 +01007812 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007813
Lyude87660502016-08-17 15:55:53 -04007814 if (INTEL_GEN(dev_priv) > 6)
7815 status = gen7_check_mailbox_status(dev_priv);
7816 else
7817 status = gen6_check_mailbox_status(dev_priv);
7818
7819 if (status) {
7820 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7821 status);
7822 return status;
7823 }
7824
Ben Widawsky42c05262012-09-26 10:34:00 -07007825 return 0;
7826}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007827
Ville Syrjälädd06f882014-11-10 22:55:12 +02007828static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7829{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007830 /*
7831 * N = val - 0xb7
7832 * Slow = Fast = GPLL ref * N
7833 */
7834 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007835}
7836
Fengguang Wub55dd642014-07-12 11:21:39 +02007837static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007838{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007839 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007840}
7841
Fengguang Wub55dd642014-07-12 11:21:39 +02007842static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307843{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007844 /*
7845 * N = val / 2
7846 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7847 */
7848 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307849}
7850
Fengguang Wub55dd642014-07-12 11:21:39 +02007851static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307852{
Ville Syrjälä1c147622014-08-18 14:42:43 +03007853 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007854 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307855}
7856
Ville Syrjälä616bc822015-01-23 21:04:25 +02007857int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7858{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007859 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007860 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7861 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007862 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007863 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007864 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007865 return byt_gpu_freq(dev_priv, val);
7866 else
7867 return val * GT_FREQUENCY_MULTIPLIER;
7868}
7869
Ville Syrjälä616bc822015-01-23 21:04:25 +02007870int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7871{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007872 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007873 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
7874 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007875 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007876 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007877 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007878 return byt_freq_opcode(dev_priv, val);
7879 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007880 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05307881}
7882
Chris Wilson6ad790c2015-04-07 16:20:31 +01007883struct request_boost {
7884 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007885 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007886};
7887
7888static void __intel_rps_boost_work(struct work_struct *work)
7889{
7890 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007891 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007892
Chris Wilsonf69a02c2016-07-01 17:23:16 +01007893 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01007894 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007895
Chris Wilsone8a261e2016-07-20 13:31:49 +01007896 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007897 kfree(boost);
7898}
7899
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007900void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007901{
7902 struct request_boost *boost;
7903
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007904 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007905 return;
7906
Chris Wilsonf69a02c2016-07-01 17:23:16 +01007907 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01007908 return;
7909
Chris Wilson6ad790c2015-04-07 16:20:31 +01007910 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7911 if (boost == NULL)
7912 return;
7913
Chris Wilsone8a261e2016-07-20 13:31:49 +01007914 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007915
7916 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007917 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007918}
7919
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00007920void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01007921{
Daniel Vetterf742a552013-12-06 10:17:53 +01007922 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007923 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007924
Chris Wilson54b4f682016-07-21 21:16:19 +01007925 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
7926 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007927 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007928
Paulo Zanoni33688d92014-03-07 20:08:19 -03007929 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02007930 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007931}