blob: 0b92ea1dbd40b477e0efe52668f3ba96c8de98b7 [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 */
Ben Widawskydc39fff2013-10-18 12:32:07 -070055
Ville Syrjälä46f16e62016-10-31 22:37:22 +020056static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030057{
Ville Syrjälä93564042017-08-24 22:10:51 +030058 if (HAS_LLC(dev_priv)) {
59 /*
60 * WaCompressedResourceDisplayNewHashMode:skl,kbl
Lucas De Marchie0403cb2017-12-05 11:01:17 -080061 * Display WA #0390: skl,kbl
Ville Syrjälä93564042017-08-24 22:10:51 +030062 *
63 * Must match Sampler, Pixel Back End, and Media. See
64 * WaCompressedResourceSamplerPbeMediaNewHashMode.
65 */
66 I915_WRITE(CHICKEN_PAR1_1,
67 I915_READ(CHICKEN_PAR1_1) |
68 SKL_DE_COMPRESSED_HASH_MODE);
69 }
70
Rodrigo Vivi82525c12017-06-08 08:50:00 -070071 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
Mika Kuoppalab033bb62016-06-07 17:19:04 +030072 I915_WRITE(CHICKEN_PAR1_1,
73 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
74
Rodrigo Vivi82525c12017-06-08 08:50:00 -070075 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030076 I915_WRITE(GEN8_CHICKEN_DCPR_1,
77 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030078
Rodrigo Vivi82525c12017-06-08 08:50:00 -070079 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
80 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030081 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
82 DISP_FBC_WM_DIS |
83 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030084
Rodrigo Vivi82525c12017-06-08 08:50:00 -070085 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030086 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
87 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +053088
89 if (IS_SKYLAKE(dev_priv)) {
90 /* WaDisableDopClockGating */
91 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
92 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
93 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +030094}
95
Ville Syrjälä46f16e62016-10-31 22:37:22 +020096static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +020097{
Ville Syrjälä46f16e62016-10-31 22:37:22 +020098 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +020099
Nick Hoatha7546152015-06-29 14:07:32 +0100100 /* WaDisableSDEUnitClockGating:bxt */
101 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
102 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
103
Imre Deak32608ca2015-03-11 11:10:27 +0200104 /*
105 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200106 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200107 */
Imre Deak32608ca2015-03-11 11:10:27 +0200108 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200109 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200110
111 /*
112 * Wa: Backlight PWM may stop in the asserted state, causing backlight
113 * to stay fully on.
114 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200115 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
116 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200117}
118
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200119static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
120{
121 gen9_init_clock_gating(dev_priv);
122
123 /*
124 * WaDisablePWMClockGating:glk
125 * Backlight PWM may stop in the asserted state, causing backlight
126 * to stay fully on.
127 */
128 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
129 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200130
131 /* WaDDIIOTimeout:glk */
132 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
133 u32 val = I915_READ(CHICKEN_MISC_2);
134 val &= ~(GLK_CL0_PWR_DOWN |
135 GLK_CL1_PWR_DOWN |
136 GLK_CL2_PWR_DOWN);
137 I915_WRITE(CHICKEN_MISC_2, val);
138 }
139
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200140}
141
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200142static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200143{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200144 u32 tmp;
145
146 tmp = I915_READ(CLKCFG);
147
148 switch (tmp & CLKCFG_FSB_MASK) {
149 case CLKCFG_FSB_533:
150 dev_priv->fsb_freq = 533; /* 133*4 */
151 break;
152 case CLKCFG_FSB_800:
153 dev_priv->fsb_freq = 800; /* 200*4 */
154 break;
155 case CLKCFG_FSB_667:
156 dev_priv->fsb_freq = 667; /* 167*4 */
157 break;
158 case CLKCFG_FSB_400:
159 dev_priv->fsb_freq = 400; /* 100*4 */
160 break;
161 }
162
163 switch (tmp & CLKCFG_MEM_MASK) {
164 case CLKCFG_MEM_533:
165 dev_priv->mem_freq = 533;
166 break;
167 case CLKCFG_MEM_667:
168 dev_priv->mem_freq = 667;
169 break;
170 case CLKCFG_MEM_800:
171 dev_priv->mem_freq = 800;
172 break;
173 }
174
175 /* detect pineview DDR3 setting */
176 tmp = I915_READ(CSHRDDR3CTL);
177 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
178}
179
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200180static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200181{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200182 u16 ddrpll, csipll;
183
184 ddrpll = I915_READ16(DDRMPLL1);
185 csipll = I915_READ16(CSIPLL0);
186
187 switch (ddrpll & 0xff) {
188 case 0xc:
189 dev_priv->mem_freq = 800;
190 break;
191 case 0x10:
192 dev_priv->mem_freq = 1066;
193 break;
194 case 0x14:
195 dev_priv->mem_freq = 1333;
196 break;
197 case 0x18:
198 dev_priv->mem_freq = 1600;
199 break;
200 default:
201 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
202 ddrpll & 0xff);
203 dev_priv->mem_freq = 0;
204 break;
205 }
206
Daniel Vetter20e4d402012-08-08 23:35:39 +0200207 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200208
209 switch (csipll & 0x3ff) {
210 case 0x00c:
211 dev_priv->fsb_freq = 3200;
212 break;
213 case 0x00e:
214 dev_priv->fsb_freq = 3733;
215 break;
216 case 0x010:
217 dev_priv->fsb_freq = 4266;
218 break;
219 case 0x012:
220 dev_priv->fsb_freq = 4800;
221 break;
222 case 0x014:
223 dev_priv->fsb_freq = 5333;
224 break;
225 case 0x016:
226 dev_priv->fsb_freq = 5866;
227 break;
228 case 0x018:
229 dev_priv->fsb_freq = 6400;
230 break;
231 default:
232 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
233 csipll & 0x3ff);
234 dev_priv->fsb_freq = 0;
235 break;
236 }
237
238 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200239 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200240 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200241 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200242 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200243 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200244 }
245}
246
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300247static const struct cxsr_latency cxsr_latency_table[] = {
248 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
249 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
250 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
251 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
252 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
253
254 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
255 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
256 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
257 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
258 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
259
260 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
261 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
262 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
263 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
264 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
265
266 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
267 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
268 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
269 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
270 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
271
272 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
273 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
274 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
275 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
276 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
277
278 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
279 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
280 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
281 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
282 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
283};
284
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100285static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
286 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300287 int fsb,
288 int mem)
289{
290 const struct cxsr_latency *latency;
291 int i;
292
293 if (fsb == 0 || mem == 0)
294 return NULL;
295
296 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
297 latency = &cxsr_latency_table[i];
298 if (is_desktop == latency->is_desktop &&
299 is_ddr3 == latency->is_ddr3 &&
300 fsb == latency->fsb_freq && mem == latency->mem_freq)
301 return latency;
302 }
303
304 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
305
306 return NULL;
307}
308
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200309static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
310{
311 u32 val;
312
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100313 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200314
315 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
316 if (enable)
317 val &= ~FORCE_DDR_HIGH_FREQ;
318 else
319 val |= FORCE_DDR_HIGH_FREQ;
320 val &= ~FORCE_DDR_LOW_FREQ;
321 val |= FORCE_DDR_FREQ_REQ_ACK;
322 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
323
324 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
325 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
326 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
327
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100328 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200329}
330
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200331static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
332{
333 u32 val;
334
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100335 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200336
337 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
338 if (enable)
339 val |= DSP_MAXFIFO_PM5_ENABLE;
340 else
341 val &= ~DSP_MAXFIFO_PM5_ENABLE;
342 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
343
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100344 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200345}
346
Ville Syrjäläf4998962015-03-10 17:02:21 +0200347#define FW_WM(value, plane) \
348 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
349
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200350static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300351{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200352 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300353 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300354
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100355 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200356 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300357 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300358 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200359 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200360 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300361 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300362 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200363 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200364 val = I915_READ(DSPFW3);
365 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
366 if (enable)
367 val |= PINEVIEW_SELF_REFRESH_EN;
368 else
369 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300370 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300371 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100372 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200373 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300374 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
375 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
376 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300377 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100378 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300379 /*
380 * FIXME can't find a bit like this for 915G, and
381 * and yet it does have the related watermark in
382 * FW_BLC_SELF. What's going on?
383 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200384 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300385 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
386 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
387 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300388 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300389 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200390 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300391 }
392
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200393 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
394
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200395 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
396 enableddisabled(enable),
397 enableddisabled(was_enabled));
398
399 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300400}
401
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300402/**
403 * intel_set_memory_cxsr - Configure CxSR state
404 * @dev_priv: i915 device
405 * @enable: Allow vs. disallow CxSR
406 *
407 * Allow or disallow the system to enter a special CxSR
408 * (C-state self refresh) state. What typically happens in CxSR mode
409 * is that several display FIFOs may get combined into a single larger
410 * FIFO for a particular plane (so called max FIFO mode) to allow the
411 * system to defer memory fetches longer, and the memory will enter
412 * self refresh.
413 *
414 * Note that enabling CxSR does not guarantee that the system enter
415 * this special mode, nor does it guarantee that the system stays
416 * in that mode once entered. So this just allows/disallows the system
417 * to autonomously utilize the CxSR mode. Other factors such as core
418 * C-states will affect when/if the system actually enters/exits the
419 * CxSR mode.
420 *
421 * Note that on VLV/CHV this actually only controls the max FIFO mode,
422 * and the system is free to enter/exit memory self refresh at any time
423 * even when the use of CxSR has been disallowed.
424 *
425 * While the system is actually in the CxSR/max FIFO mode, some plane
426 * control registers will not get latched on vblank. Thus in order to
427 * guarantee the system will respond to changes in the plane registers
428 * we must always disallow CxSR prior to making changes to those registers.
429 * Unfortunately the system will re-evaluate the CxSR conditions at
430 * frame start which happens after vblank start (which is when the plane
431 * registers would get latched), so we can't proceed with the plane update
432 * during the same frame where we disallowed CxSR.
433 *
434 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
435 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
436 * the hardware w.r.t. HPLL SR when writing to plane registers.
437 * Disallowing just CxSR is sufficient.
438 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200439bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200440{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200441 bool ret;
442
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200443 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200444 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300445 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
446 dev_priv->wm.vlv.cxsr = enable;
447 else if (IS_G4X(dev_priv))
448 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200449 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200450
451 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200452}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200453
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300454/*
455 * Latency for FIFO fetches is dependent on several factors:
456 * - memory configuration (speed, channels)
457 * - chipset
458 * - current MCH state
459 * It can be fairly high in some situations, so here we assume a fairly
460 * pessimal value. It's a tradeoff between extra memory fetches (if we
461 * set this value too high, the FIFO will fetch frequently to stay full)
462 * and power consumption (set it too low to save power and we might see
463 * FIFO underruns and display "flicker").
464 *
465 * A value of 5us seems to be a good balance; safe for very low end
466 * platforms but not overly aggressive on lower latency configs.
467 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100468static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300469
Ville Syrjäläb5004722015-03-05 21:19:47 +0200470#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
471 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
472
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200473static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200474{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200475 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200476 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200477 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200478 enum pipe pipe = crtc->pipe;
479 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200480
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200481 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200482 uint32_t dsparb, dsparb2, dsparb3;
483 case PIPE_A:
484 dsparb = I915_READ(DSPARB);
485 dsparb2 = I915_READ(DSPARB2);
486 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
487 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
488 break;
489 case PIPE_B:
490 dsparb = I915_READ(DSPARB);
491 dsparb2 = I915_READ(DSPARB2);
492 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
493 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
494 break;
495 case PIPE_C:
496 dsparb2 = I915_READ(DSPARB2);
497 dsparb3 = I915_READ(DSPARB3);
498 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
499 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
500 break;
501 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200502 MISSING_CASE(pipe);
503 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200504 }
505
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200506 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
507 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
508 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
509 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200510}
511
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200512static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv,
513 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300514{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515 uint32_t dsparb = I915_READ(DSPARB);
516 int size;
517
518 size = dsparb & 0x7f;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200519 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
521
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200522 DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n",
523 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300524
525 return size;
526}
527
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200528static int i830_get_fifo_size(struct drm_i915_private *dev_priv,
529 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300530{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531 uint32_t dsparb = I915_READ(DSPARB);
532 int size;
533
534 size = dsparb & 0x1ff;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200535 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300536 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
537 size >>= 1; /* Convert to cachelines */
538
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200539 DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n",
540 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541
542 return size;
543}
544
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200545static int i845_get_fifo_size(struct drm_i915_private *dev_priv,
546 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300547{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548 uint32_t dsparb = I915_READ(DSPARB);
549 int size;
550
551 size = dsparb & 0x7f;
552 size >>= 2; /* Convert to cachelines */
553
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200554 DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n",
555 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300556
557 return size;
558}
559
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300560/* Pineview has different values for various configs */
561static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300562 .fifo_size = PINEVIEW_DISPLAY_FIFO,
563 .max_wm = PINEVIEW_MAX_WM,
564 .default_wm = PINEVIEW_DFT_WM,
565 .guard_size = PINEVIEW_GUARD_WM,
566 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300567};
568static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300569 .fifo_size = PINEVIEW_DISPLAY_FIFO,
570 .max_wm = PINEVIEW_MAX_WM,
571 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
572 .guard_size = PINEVIEW_GUARD_WM,
573 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300574};
575static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300576 .fifo_size = PINEVIEW_CURSOR_FIFO,
577 .max_wm = PINEVIEW_CURSOR_MAX_WM,
578 .default_wm = PINEVIEW_CURSOR_DFT_WM,
579 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
580 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300581};
582static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300583 .fifo_size = PINEVIEW_CURSOR_FIFO,
584 .max_wm = PINEVIEW_CURSOR_MAX_WM,
585 .default_wm = PINEVIEW_CURSOR_DFT_WM,
586 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
587 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300588};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300589static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300590 .fifo_size = I965_CURSOR_FIFO,
591 .max_wm = I965_CURSOR_MAX_WM,
592 .default_wm = I965_CURSOR_DFT_WM,
593 .guard_size = 2,
594 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300595};
596static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300597 .fifo_size = I945_FIFO_SIZE,
598 .max_wm = I915_MAX_WM,
599 .default_wm = 1,
600 .guard_size = 2,
601 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300602};
603static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300604 .fifo_size = I915_FIFO_SIZE,
605 .max_wm = I915_MAX_WM,
606 .default_wm = 1,
607 .guard_size = 2,
608 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300609};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300610static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300611 .fifo_size = I855GM_FIFO_SIZE,
612 .max_wm = I915_MAX_WM,
613 .default_wm = 1,
614 .guard_size = 2,
615 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300616};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300617static const struct intel_watermark_params i830_bc_wm_info = {
618 .fifo_size = I855GM_FIFO_SIZE,
619 .max_wm = I915_MAX_WM/2,
620 .default_wm = 1,
621 .guard_size = 2,
622 .cacheline_size = I830_FIFO_LINE_SIZE,
623};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200624static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300625 .fifo_size = I830_FIFO_SIZE,
626 .max_wm = I915_MAX_WM,
627 .default_wm = 1,
628 .guard_size = 2,
629 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300630};
631
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300632/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300633 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
634 * @pixel_rate: Pipe pixel rate in kHz
635 * @cpp: Plane bytes per pixel
636 * @latency: Memory wakeup latency in 0.1us units
637 *
638 * Compute the watermark using the method 1 or "small buffer"
639 * formula. The caller may additonally add extra cachelines
640 * to account for TLB misses and clock crossings.
641 *
642 * This method is concerned with the short term drain rate
643 * of the FIFO, ie. it does not account for blanking periods
644 * which would effectively reduce the average drain rate across
645 * a longer period. The name "small" refers to the fact the
646 * FIFO is relatively small compared to the amount of data
647 * fetched.
648 *
649 * The FIFO level vs. time graph might look something like:
650 *
651 * |\ |\
652 * | \ | \
653 * __---__---__ (- plane active, _ blanking)
654 * -> time
655 *
656 * or perhaps like this:
657 *
658 * |\|\ |\|\
659 * __----__----__ (- plane active, _ blanking)
660 * -> time
661 *
662 * Returns:
663 * The watermark in bytes
664 */
665static unsigned int intel_wm_method1(unsigned int pixel_rate,
666 unsigned int cpp,
667 unsigned int latency)
668{
669 uint64_t ret;
670
671 ret = (uint64_t) pixel_rate * cpp * latency;
672 ret = DIV_ROUND_UP_ULL(ret, 10000);
673
674 return ret;
675}
676
677/**
678 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
679 * @pixel_rate: Pipe pixel rate in kHz
680 * @htotal: Pipe horizontal total
681 * @width: Plane width in pixels
682 * @cpp: Plane bytes per pixel
683 * @latency: Memory wakeup latency in 0.1us units
684 *
685 * Compute the watermark using the method 2 or "large buffer"
686 * formula. The caller may additonally add extra cachelines
687 * to account for TLB misses and clock crossings.
688 *
689 * This method is concerned with the long term drain rate
690 * of the FIFO, ie. it does account for blanking periods
691 * which effectively reduce the average drain rate across
692 * a longer period. The name "large" refers to the fact the
693 * FIFO is relatively large compared to the amount of data
694 * fetched.
695 *
696 * The FIFO level vs. time graph might look something like:
697 *
698 * |\___ |\___
699 * | \___ | \___
700 * | \ | \
701 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
702 * -> time
703 *
704 * Returns:
705 * The watermark in bytes
706 */
707static unsigned int intel_wm_method2(unsigned int pixel_rate,
708 unsigned int htotal,
709 unsigned int width,
710 unsigned int cpp,
711 unsigned int latency)
712{
713 unsigned int ret;
714
715 /*
716 * FIXME remove once all users are computing
717 * watermarks in the correct place.
718 */
719 if (WARN_ON_ONCE(htotal == 0))
720 htotal = 1;
721
722 ret = (latency * pixel_rate) / (htotal * 10000);
723 ret = (ret + 1) * width * cpp;
724
725 return ret;
726}
727
728/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300729 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300730 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300731 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200732 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 * @latency_ns: memory latency for the platform
734 *
735 * Calculate the watermark level (the level at which the display plane will
736 * start fetching from memory again). Each chip has a different display
737 * FIFO size and allocation, so the caller needs to figure that out and pass
738 * in the correct intel_watermark_params structure.
739 *
740 * As the pixel clock runs, the FIFO will be drained at a rate that depends
741 * on the pixel size. When it reaches the watermark level, it'll start
742 * fetching FIFO line sized based chunks from memory until the FIFO fills
743 * past the watermark point. If the FIFO drains completely, a FIFO underrun
744 * will occur, and a display engine hang could result.
745 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300746static unsigned int intel_calculate_wm(int pixel_rate,
747 const struct intel_watermark_params *wm,
748 int fifo_size, int cpp,
749 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300750{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300751 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300752
753 /*
754 * Note: we need to make sure we don't overflow for various clock &
755 * latency values.
756 * clocks go from a few thousand to several hundred thousand.
757 * latency is usually a few thousand
758 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300759 entries = intel_wm_method1(pixel_rate, cpp,
760 latency_ns / 100);
761 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
762 wm->guard_size;
763 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300764
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300765 wm_size = fifo_size - entries;
766 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300767
768 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300769 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300770 wm_size = wm->max_wm;
771 if (wm_size <= 0)
772 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300773
774 /*
775 * Bspec seems to indicate that the value shouldn't be lower than
776 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
777 * Lets go for 8 which is the burst size since certain platforms
778 * already use a hardcoded 8 (which is what the spec says should be
779 * done).
780 */
781 if (wm_size <= 8)
782 wm_size = 8;
783
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300784 return wm_size;
785}
786
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300787static bool is_disabling(int old, int new, int threshold)
788{
789 return old >= threshold && new < threshold;
790}
791
792static bool is_enabling(int old, int new, int threshold)
793{
794 return old < threshold && new >= threshold;
795}
796
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300797static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
798{
799 return dev_priv->wm.max_level + 1;
800}
801
Ville Syrjälä24304d812017-03-14 17:10:49 +0200802static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
803 const struct intel_plane_state *plane_state)
804{
805 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
806
807 /* FIXME check the 'enable' instead */
808 if (!crtc_state->base.active)
809 return false;
810
811 /*
812 * Treat cursor with fb as always visible since cursor updates
813 * can happen faster than the vrefresh rate, and the current
814 * watermark code doesn't handle that correctly. Cursor updates
815 * which set/clear the fb or change the cursor size are going
816 * to get throttled by intel_legacy_cursor_update() to work
817 * around this problem with the watermark code.
818 */
819 if (plane->id == PLANE_CURSOR)
820 return plane_state->base.fb != NULL;
821 else
822 return plane_state->base.visible;
823}
824
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200825static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300826{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200827 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300828
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200829 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200830 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300831 if (enabled)
832 return NULL;
833 enabled = crtc;
834 }
835 }
836
837 return enabled;
838}
839
Ville Syrjälä432081b2016-10-31 22:37:03 +0200840static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300841{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200842 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200843 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300844 const struct cxsr_latency *latency;
845 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300846 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300847
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100848 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
849 dev_priv->is_ddr3,
850 dev_priv->fsb_freq,
851 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300852 if (!latency) {
853 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300854 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300855 return;
856 }
857
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200858 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300859 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200860 const struct drm_display_mode *adjusted_mode =
861 &crtc->config->base.adjusted_mode;
862 const struct drm_framebuffer *fb =
863 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200864 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300865 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300866
867 /* Display SR */
868 wm = intel_calculate_wm(clock, &pineview_display_wm,
869 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200870 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300871 reg = I915_READ(DSPFW1);
872 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200873 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300874 I915_WRITE(DSPFW1, reg);
875 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
876
877 /* cursor SR */
878 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
879 pineview_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300880 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300881 reg = I915_READ(DSPFW3);
882 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200883 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300884 I915_WRITE(DSPFW3, reg);
885
886 /* Display HPLL off SR */
887 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
888 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200889 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300890 reg = I915_READ(DSPFW3);
891 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200892 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300893 I915_WRITE(DSPFW3, reg);
894
895 /* cursor HPLL off SR */
896 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
897 pineview_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300898 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300899 reg = I915_READ(DSPFW3);
900 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200901 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300902 I915_WRITE(DSPFW3, reg);
903 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
904
Imre Deak5209b1f2014-07-01 12:36:17 +0300905 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300906 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300907 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300908 }
909}
910
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300911/*
912 * Documentation says:
913 * "If the line size is small, the TLB fetches can get in the way of the
914 * data fetches, causing some lag in the pixel data return which is not
915 * accounted for in the above formulas. The following adjustment only
916 * needs to be applied if eight whole lines fit in the buffer at once.
917 * The WM is adjusted upwards by the difference between the FIFO size
918 * and the size of 8 whole lines. This adjustment is always performed
919 * in the actual pixel depth regardless of whether FBC is enabled or not."
920 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000921static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300922{
923 int tlb_miss = fifo_size * 64 - width * cpp * 8;
924
925 return max(0, tlb_miss);
926}
927
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300928static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
929 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300930{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300931 enum pipe pipe;
932
933 for_each_pipe(dev_priv, pipe)
934 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
935
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300936 I915_WRITE(DSPFW1,
937 FW_WM(wm->sr.plane, SR) |
938 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
939 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
940 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
941 I915_WRITE(DSPFW2,
942 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
943 FW_WM(wm->sr.fbc, FBC_SR) |
944 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
945 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
946 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
947 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
948 I915_WRITE(DSPFW3,
949 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
950 FW_WM(wm->sr.cursor, CURSOR_SR) |
951 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
952 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300953
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300954 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300955}
956
Ville Syrjälä15665972015-03-10 16:16:28 +0200957#define FW_WM_VLV(value, plane) \
958 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
959
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200960static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200961 const struct vlv_wm_values *wm)
962{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200963 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200964
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200965 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200966 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
967
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200968 I915_WRITE(VLV_DDL(pipe),
969 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
970 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
971 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
972 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
973 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200974
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200975 /*
976 * Zero the (unused) WM1 watermarks, and also clear all the
977 * high order bits so that there are no out of bounds values
978 * present in the registers during the reprogramming.
979 */
980 I915_WRITE(DSPHOWM, 0);
981 I915_WRITE(DSPHOWM1, 0);
982 I915_WRITE(DSPFW4, 0);
983 I915_WRITE(DSPFW5, 0);
984 I915_WRITE(DSPFW6, 0);
985
Ville Syrjäläae801522015-03-05 21:19:49 +0200986 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200987 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200988 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
989 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
990 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200991 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200992 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
993 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
994 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200995 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200996 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200997
998 if (IS_CHERRYVIEW(dev_priv)) {
999 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001000 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1001 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001002 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001003 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1004 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001005 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001006 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1007 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001008 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001009 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001010 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1011 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1012 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1013 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1014 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1015 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1016 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1017 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1018 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001019 } else {
1020 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001021 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1022 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001023 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001024 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001025 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1026 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1027 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1028 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1029 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1030 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001031 }
1032
1033 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001034}
1035
Ville Syrjälä15665972015-03-10 16:16:28 +02001036#undef FW_WM_VLV
1037
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001038static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1039{
1040 /* all latencies in usec */
1041 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1042 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001043 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001044
Ville Syrjälä79d94302017-04-21 21:14:30 +03001045 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001046}
1047
1048static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1049{
1050 /*
1051 * DSPCNTR[13] supposedly controls whether the
1052 * primary plane can use the FIFO space otherwise
1053 * reserved for the sprite plane. It's not 100% clear
1054 * what the actual FIFO size is, but it looks like we
1055 * can happily set both primary and sprite watermarks
1056 * up to 127 cachelines. So that would seem to mean
1057 * that either DSPCNTR[13] doesn't do anything, or that
1058 * the total FIFO is >= 256 cachelines in size. Either
1059 * way, we don't seem to have to worry about this
1060 * repartitioning as the maximum watermark value the
1061 * register can hold for each plane is lower than the
1062 * minimum FIFO size.
1063 */
1064 switch (plane_id) {
1065 case PLANE_CURSOR:
1066 return 63;
1067 case PLANE_PRIMARY:
1068 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1069 case PLANE_SPRITE0:
1070 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1071 default:
1072 MISSING_CASE(plane_id);
1073 return 0;
1074 }
1075}
1076
1077static int g4x_fbc_fifo_size(int level)
1078{
1079 switch (level) {
1080 case G4X_WM_LEVEL_SR:
1081 return 7;
1082 case G4X_WM_LEVEL_HPLL:
1083 return 15;
1084 default:
1085 MISSING_CASE(level);
1086 return 0;
1087 }
1088}
1089
1090static uint16_t g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1091 const struct intel_plane_state *plane_state,
1092 int level)
1093{
1094 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1095 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1096 const struct drm_display_mode *adjusted_mode =
1097 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001098 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1099 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001100
1101 if (latency == 0)
1102 return USHRT_MAX;
1103
1104 if (!intel_wm_plane_visible(crtc_state, plane_state))
1105 return 0;
1106
1107 /*
1108 * Not 100% sure which way ELK should go here as the
1109 * spec only says CL/CTG should assume 32bpp and BW
1110 * doesn't need to. But as these things followed the
1111 * mobile vs. desktop lines on gen3 as well, let's
1112 * assume ELK doesn't need this.
1113 *
1114 * The spec also fails to list such a restriction for
1115 * the HPLL watermark, which seems a little strange.
1116 * Let's use 32bpp for the HPLL watermark as well.
1117 */
1118 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1119 level != G4X_WM_LEVEL_NORMAL)
1120 cpp = 4;
1121 else
1122 cpp = plane_state->base.fb->format->cpp[0];
1123
1124 clock = adjusted_mode->crtc_clock;
1125 htotal = adjusted_mode->crtc_htotal;
1126
1127 if (plane->id == PLANE_CURSOR)
1128 width = plane_state->base.crtc_w;
1129 else
1130 width = drm_rect_width(&plane_state->base.dst);
1131
1132 if (plane->id == PLANE_CURSOR) {
1133 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1134 } else if (plane->id == PLANE_PRIMARY &&
1135 level == G4X_WM_LEVEL_NORMAL) {
1136 wm = intel_wm_method1(clock, cpp, latency);
1137 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001138 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001139
1140 small = intel_wm_method1(clock, cpp, latency);
1141 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1142
1143 wm = min(small, large);
1144 }
1145
1146 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1147 width, cpp);
1148
1149 wm = DIV_ROUND_UP(wm, 64) + 2;
1150
Chris Wilson1a1f1282017-11-07 14:03:38 +00001151 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001152}
1153
1154static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1155 int level, enum plane_id plane_id, u16 value)
1156{
1157 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1158 bool dirty = false;
1159
1160 for (; level < intel_wm_num_levels(dev_priv); level++) {
1161 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1162
1163 dirty |= raw->plane[plane_id] != value;
1164 raw->plane[plane_id] = value;
1165 }
1166
1167 return dirty;
1168}
1169
1170static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1171 int level, u16 value)
1172{
1173 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1174 bool dirty = false;
1175
1176 /* NORMAL level doesn't have an FBC watermark */
1177 level = max(level, G4X_WM_LEVEL_SR);
1178
1179 for (; level < intel_wm_num_levels(dev_priv); level++) {
1180 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1181
1182 dirty |= raw->fbc != value;
1183 raw->fbc = value;
1184 }
1185
1186 return dirty;
1187}
1188
1189static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
1190 const struct intel_plane_state *pstate,
1191 uint32_t pri_val);
1192
1193static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1194 const struct intel_plane_state *plane_state)
1195{
1196 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1197 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1198 enum plane_id plane_id = plane->id;
1199 bool dirty = false;
1200 int level;
1201
1202 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1203 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1204 if (plane_id == PLANE_PRIMARY)
1205 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1206 goto out;
1207 }
1208
1209 for (level = 0; level < num_levels; level++) {
1210 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1211 int wm, max_wm;
1212
1213 wm = g4x_compute_wm(crtc_state, plane_state, level);
1214 max_wm = g4x_plane_fifo_size(plane_id, level);
1215
1216 if (wm > max_wm)
1217 break;
1218
1219 dirty |= raw->plane[plane_id] != wm;
1220 raw->plane[plane_id] = wm;
1221
1222 if (plane_id != PLANE_PRIMARY ||
1223 level == G4X_WM_LEVEL_NORMAL)
1224 continue;
1225
1226 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1227 raw->plane[plane_id]);
1228 max_wm = g4x_fbc_fifo_size(level);
1229
1230 /*
1231 * FBC wm is not mandatory as we
1232 * can always just disable its use.
1233 */
1234 if (wm > max_wm)
1235 wm = USHRT_MAX;
1236
1237 dirty |= raw->fbc != wm;
1238 raw->fbc = wm;
1239 }
1240
1241 /* mark watermarks as invalid */
1242 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1243
1244 if (plane_id == PLANE_PRIMARY)
1245 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1246
1247 out:
1248 if (dirty) {
1249 DRM_DEBUG_KMS("%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1250 plane->base.name,
1251 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1252 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1253 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
1254
1255 if (plane_id == PLANE_PRIMARY)
1256 DRM_DEBUG_KMS("FBC watermarks: SR=%d, HPLL=%d\n",
1257 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1258 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
1259 }
1260
1261 return dirty;
1262}
1263
1264static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1265 enum plane_id plane_id, int level)
1266{
1267 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1268
1269 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1270}
1271
1272static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1273 int level)
1274{
1275 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1276
1277 if (level > dev_priv->wm.max_level)
1278 return false;
1279
1280 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1281 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1282 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1283}
1284
1285/* mark all levels starting from 'level' as invalid */
1286static void g4x_invalidate_wms(struct intel_crtc *crtc,
1287 struct g4x_wm_state *wm_state, int level)
1288{
1289 if (level <= G4X_WM_LEVEL_NORMAL) {
1290 enum plane_id plane_id;
1291
1292 for_each_plane_id_on_crtc(crtc, plane_id)
1293 wm_state->wm.plane[plane_id] = USHRT_MAX;
1294 }
1295
1296 if (level <= G4X_WM_LEVEL_SR) {
1297 wm_state->cxsr = false;
1298 wm_state->sr.cursor = USHRT_MAX;
1299 wm_state->sr.plane = USHRT_MAX;
1300 wm_state->sr.fbc = USHRT_MAX;
1301 }
1302
1303 if (level <= G4X_WM_LEVEL_HPLL) {
1304 wm_state->hpll_en = false;
1305 wm_state->hpll.cursor = USHRT_MAX;
1306 wm_state->hpll.plane = USHRT_MAX;
1307 wm_state->hpll.fbc = USHRT_MAX;
1308 }
1309}
1310
1311static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1312{
1313 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1314 struct intel_atomic_state *state =
1315 to_intel_atomic_state(crtc_state->base.state);
1316 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
1317 int num_active_planes = hweight32(crtc_state->active_planes &
1318 ~BIT(PLANE_CURSOR));
1319 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001320 const struct intel_plane_state *old_plane_state;
1321 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001322 struct intel_plane *plane;
1323 enum plane_id plane_id;
1324 int i, level;
1325 unsigned int dirty = 0;
1326
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001327 for_each_oldnew_intel_plane_in_state(state, plane,
1328 old_plane_state,
1329 new_plane_state, i) {
1330 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001331 old_plane_state->base.crtc != &crtc->base)
1332 continue;
1333
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001334 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001335 dirty |= BIT(plane->id);
1336 }
1337
1338 if (!dirty)
1339 return 0;
1340
1341 level = G4X_WM_LEVEL_NORMAL;
1342 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1343 goto out;
1344
1345 raw = &crtc_state->wm.g4x.raw[level];
1346 for_each_plane_id_on_crtc(crtc, plane_id)
1347 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1348
1349 level = G4X_WM_LEVEL_SR;
1350
1351 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1352 goto out;
1353
1354 raw = &crtc_state->wm.g4x.raw[level];
1355 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1356 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1357 wm_state->sr.fbc = raw->fbc;
1358
1359 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1360
1361 level = G4X_WM_LEVEL_HPLL;
1362
1363 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1364 goto out;
1365
1366 raw = &crtc_state->wm.g4x.raw[level];
1367 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1368 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1369 wm_state->hpll.fbc = raw->fbc;
1370
1371 wm_state->hpll_en = wm_state->cxsr;
1372
1373 level++;
1374
1375 out:
1376 if (level == G4X_WM_LEVEL_NORMAL)
1377 return -EINVAL;
1378
1379 /* invalidate the higher levels */
1380 g4x_invalidate_wms(crtc, wm_state, level);
1381
1382 /*
1383 * Determine if the FBC watermark(s) can be used. IF
1384 * this isn't the case we prefer to disable the FBC
1385 ( watermark(s) rather than disable the SR/HPLL
1386 * level(s) entirely.
1387 */
1388 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1389
1390 if (level >= G4X_WM_LEVEL_SR &&
1391 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1392 wm_state->fbc_en = false;
1393 else if (level >= G4X_WM_LEVEL_HPLL &&
1394 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1395 wm_state->fbc_en = false;
1396
1397 return 0;
1398}
1399
1400static int g4x_compute_intermediate_wm(struct drm_device *dev,
1401 struct intel_crtc *crtc,
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001402 struct intel_crtc_state *new_crtc_state)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001403{
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001404 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1405 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1406 struct intel_atomic_state *intel_state =
1407 to_intel_atomic_state(new_crtc_state->base.state);
1408 const struct intel_crtc_state *old_crtc_state =
1409 intel_atomic_get_old_crtc_state(intel_state, crtc);
1410 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001411 enum plane_id plane_id;
1412
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001413 if (!new_crtc_state->base.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->base)) {
1414 *intermediate = *optimal;
1415
1416 intermediate->cxsr = false;
1417 intermediate->hpll_en = false;
1418 goto out;
1419 }
1420
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001421 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001422 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001423 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001424 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001425 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1426
1427 for_each_plane_id_on_crtc(crtc, plane_id) {
1428 intermediate->wm.plane[plane_id] =
1429 max(optimal->wm.plane[plane_id],
1430 active->wm.plane[plane_id]);
1431
1432 WARN_ON(intermediate->wm.plane[plane_id] >
1433 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1434 }
1435
1436 intermediate->sr.plane = max(optimal->sr.plane,
1437 active->sr.plane);
1438 intermediate->sr.cursor = max(optimal->sr.cursor,
1439 active->sr.cursor);
1440 intermediate->sr.fbc = max(optimal->sr.fbc,
1441 active->sr.fbc);
1442
1443 intermediate->hpll.plane = max(optimal->hpll.plane,
1444 active->hpll.plane);
1445 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1446 active->hpll.cursor);
1447 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1448 active->hpll.fbc);
1449
1450 WARN_ON((intermediate->sr.plane >
1451 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1452 intermediate->sr.cursor >
1453 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1454 intermediate->cxsr);
1455 WARN_ON((intermediate->sr.plane >
1456 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1457 intermediate->sr.cursor >
1458 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1459 intermediate->hpll_en);
1460
1461 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1462 intermediate->fbc_en && intermediate->cxsr);
1463 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1464 intermediate->fbc_en && intermediate->hpll_en);
1465
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001466out:
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001467 /*
1468 * If our intermediate WM are identical to the final WM, then we can
1469 * omit the post-vblank programming; only update if it's different.
1470 */
1471 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001472 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001473
1474 return 0;
1475}
1476
1477static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1478 struct g4x_wm_values *wm)
1479{
1480 struct intel_crtc *crtc;
1481 int num_active_crtcs = 0;
1482
1483 wm->cxsr = true;
1484 wm->hpll_en = true;
1485 wm->fbc_en = true;
1486
1487 for_each_intel_crtc(&dev_priv->drm, crtc) {
1488 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1489
1490 if (!crtc->active)
1491 continue;
1492
1493 if (!wm_state->cxsr)
1494 wm->cxsr = false;
1495 if (!wm_state->hpll_en)
1496 wm->hpll_en = false;
1497 if (!wm_state->fbc_en)
1498 wm->fbc_en = false;
1499
1500 num_active_crtcs++;
1501 }
1502
1503 if (num_active_crtcs != 1) {
1504 wm->cxsr = false;
1505 wm->hpll_en = false;
1506 wm->fbc_en = false;
1507 }
1508
1509 for_each_intel_crtc(&dev_priv->drm, crtc) {
1510 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1511 enum pipe pipe = crtc->pipe;
1512
1513 wm->pipe[pipe] = wm_state->wm;
1514 if (crtc->active && wm->cxsr)
1515 wm->sr = wm_state->sr;
1516 if (crtc->active && wm->hpll_en)
1517 wm->hpll = wm_state->hpll;
1518 }
1519}
1520
1521static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1522{
1523 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1524 struct g4x_wm_values new_wm = {};
1525
1526 g4x_merge_wm(dev_priv, &new_wm);
1527
1528 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1529 return;
1530
1531 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1532 _intel_set_memory_cxsr(dev_priv, false);
1533
1534 g4x_write_wm_values(dev_priv, &new_wm);
1535
1536 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1537 _intel_set_memory_cxsr(dev_priv, true);
1538
1539 *old_wm = new_wm;
1540}
1541
1542static void g4x_initial_watermarks(struct intel_atomic_state *state,
1543 struct intel_crtc_state *crtc_state)
1544{
1545 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1546 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1547
1548 mutex_lock(&dev_priv->wm.wm_mutex);
1549 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1550 g4x_program_watermarks(dev_priv);
1551 mutex_unlock(&dev_priv->wm.wm_mutex);
1552}
1553
1554static void g4x_optimize_watermarks(struct intel_atomic_state *state,
1555 struct intel_crtc_state *crtc_state)
1556{
1557 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1559
1560 if (!crtc_state->wm.need_postvbl_update)
1561 return;
1562
1563 mutex_lock(&dev_priv->wm.wm_mutex);
1564 intel_crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
1565 g4x_program_watermarks(dev_priv);
1566 mutex_unlock(&dev_priv->wm.wm_mutex);
1567}
1568
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001569/* latency must be in 0.1us units. */
1570static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001571 unsigned int htotal,
1572 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001573 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001574 unsigned int latency)
1575{
1576 unsigned int ret;
1577
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001578 ret = intel_wm_method2(pixel_rate, htotal,
1579 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001580 ret = DIV_ROUND_UP(ret, 64);
1581
1582 return ret;
1583}
1584
Ville Syrjäläbb726512016-10-31 22:37:24 +02001585static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001586{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001587 /* all latencies in usec */
1588 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1589
Ville Syrjälä58590c12015-09-08 21:05:12 +03001590 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1591
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001592 if (IS_CHERRYVIEW(dev_priv)) {
1593 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1594 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001595
1596 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001597 }
1598}
1599
Ville Syrjäläe339d672016-11-28 19:37:17 +02001600static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1601 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001602 int level)
1603{
Ville Syrjäläe339d672016-11-28 19:37:17 +02001604 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001605 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001606 const struct drm_display_mode *adjusted_mode =
1607 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001608 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001609
1610 if (dev_priv->wm.pri_latency[level] == 0)
1611 return USHRT_MAX;
1612
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001613 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001614 return 0;
1615
Daniel Vetteref426c12017-01-04 11:41:10 +01001616 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001617 clock = adjusted_mode->crtc_clock;
1618 htotal = adjusted_mode->crtc_htotal;
1619 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001620
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001621 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001622 /*
1623 * FIXME the formula gives values that are
1624 * too big for the cursor FIFO, and hence we
1625 * would never be able to use cursors. For
1626 * now just hardcode the watermark.
1627 */
1628 wm = 63;
1629 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001630 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001631 dev_priv->wm.pri_latency[level] * 10);
1632 }
1633
Chris Wilson1a1f1282017-11-07 14:03:38 +00001634 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001635}
1636
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001637static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1638{
1639 return (active_planes & (BIT(PLANE_SPRITE0) |
1640 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1641}
1642
Ville Syrjälä5012e602017-03-02 19:14:56 +02001643static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001644{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001645 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001646 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001647 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001648 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001649 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1650 int num_active_planes = hweight32(active_planes);
1651 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001652 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001653 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001654 unsigned int total_rate;
1655 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001656
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001657 /*
1658 * When enabling sprite0 after sprite1 has already been enabled
1659 * we tend to get an underrun unless sprite0 already has some
1660 * FIFO space allcoated. Hence we always allocate at least one
1661 * cacheline for sprite0 whenever sprite1 is enabled.
1662 *
1663 * All other plane enable sequences appear immune to this problem.
1664 */
1665 if (vlv_need_sprite0_fifo_workaround(active_planes))
1666 sprite0_fifo_extra = 1;
1667
Ville Syrjälä5012e602017-03-02 19:14:56 +02001668 total_rate = raw->plane[PLANE_PRIMARY] +
1669 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001670 raw->plane[PLANE_SPRITE1] +
1671 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001672
Ville Syrjälä5012e602017-03-02 19:14:56 +02001673 if (total_rate > fifo_size)
1674 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001675
Ville Syrjälä5012e602017-03-02 19:14:56 +02001676 if (total_rate == 0)
1677 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001678
Ville Syrjälä5012e602017-03-02 19:14:56 +02001679 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001680 unsigned int rate;
1681
Ville Syrjälä5012e602017-03-02 19:14:56 +02001682 if ((active_planes & BIT(plane_id)) == 0) {
1683 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001684 continue;
1685 }
1686
Ville Syrjälä5012e602017-03-02 19:14:56 +02001687 rate = raw->plane[plane_id];
1688 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1689 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001690 }
1691
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001692 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1693 fifo_left -= sprite0_fifo_extra;
1694
Ville Syrjälä5012e602017-03-02 19:14:56 +02001695 fifo_state->plane[PLANE_CURSOR] = 63;
1696
1697 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001698
1699 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001700 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001701 int plane_extra;
1702
1703 if (fifo_left == 0)
1704 break;
1705
Ville Syrjälä5012e602017-03-02 19:14:56 +02001706 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001707 continue;
1708
1709 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001710 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001711 fifo_left -= plane_extra;
1712 }
1713
Ville Syrjälä5012e602017-03-02 19:14:56 +02001714 WARN_ON(active_planes != 0 && fifo_left != 0);
1715
1716 /* give it all to the first plane if none are active */
1717 if (active_planes == 0) {
1718 WARN_ON(fifo_left != fifo_size);
1719 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1720 }
1721
1722 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001723}
1724
Ville Syrjäläff32c542017-03-02 19:14:57 +02001725/* mark all levels starting from 'level' as invalid */
1726static void vlv_invalidate_wms(struct intel_crtc *crtc,
1727 struct vlv_wm_state *wm_state, int level)
1728{
1729 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1730
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001731 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001732 enum plane_id plane_id;
1733
1734 for_each_plane_id_on_crtc(crtc, plane_id)
1735 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1736
1737 wm_state->sr[level].cursor = USHRT_MAX;
1738 wm_state->sr[level].plane = USHRT_MAX;
1739 }
1740}
1741
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001742static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1743{
1744 if (wm > fifo_size)
1745 return USHRT_MAX;
1746 else
1747 return fifo_size - wm;
1748}
1749
Ville Syrjäläff32c542017-03-02 19:14:57 +02001750/*
1751 * Starting from 'level' set all higher
1752 * levels to 'value' in the "raw" watermarks.
1753 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001754static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001755 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001756{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001757 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001758 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001759 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001760
Ville Syrjäläff32c542017-03-02 19:14:57 +02001761 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001762 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001763
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001764 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001765 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001766 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001767
1768 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001769}
1770
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001771static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1772 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001773{
1774 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1775 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001776 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001777 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001778 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001779
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001780 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001781 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1782 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001783 }
1784
1785 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001786 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001787 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1788 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1789
Ville Syrjäläff32c542017-03-02 19:14:57 +02001790 if (wm > max_wm)
1791 break;
1792
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001793 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001794 raw->plane[plane_id] = wm;
1795 }
1796
1797 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001798 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001799
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001800out:
1801 if (dirty)
Ville Syrjälä57a65282017-04-21 21:14:22 +03001802 DRM_DEBUG_KMS("%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001803 plane->base.name,
1804 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1805 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1806 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1807
1808 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001809}
1810
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001811static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1812 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001813{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001814 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001815 &crtc_state->wm.vlv.raw[level];
1816 const struct vlv_fifo_state *fifo_state =
1817 &crtc_state->wm.vlv.fifo_state;
1818
1819 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1820}
1821
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001822static bool vlv_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001823{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001824 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1825 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1826 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1827 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001828}
1829
1830static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001831{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001832 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001833 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001834 struct intel_atomic_state *state =
1835 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001836 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001837 const struct vlv_fifo_state *fifo_state =
1838 &crtc_state->wm.vlv.fifo_state;
1839 int num_active_planes = hweight32(crtc_state->active_planes &
1840 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001841 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001842 const struct intel_plane_state *old_plane_state;
1843 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001844 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001845 enum plane_id plane_id;
1846 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001847 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001848
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001849 for_each_oldnew_intel_plane_in_state(state, plane,
1850 old_plane_state,
1851 new_plane_state, i) {
1852 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjäläff32c542017-03-02 19:14:57 +02001853 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001854 continue;
1855
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001856 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001857 dirty |= BIT(plane->id);
1858 }
1859
1860 /*
1861 * DSPARB registers may have been reset due to the
1862 * power well being turned off. Make sure we restore
1863 * them to a consistent state even if no primary/sprite
1864 * planes are initially active.
1865 */
1866 if (needs_modeset)
1867 crtc_state->fifo_changed = true;
1868
1869 if (!dirty)
1870 return 0;
1871
1872 /* cursor changes don't warrant a FIFO recompute */
1873 if (dirty & ~BIT(PLANE_CURSOR)) {
1874 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001875 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001876 const struct vlv_fifo_state *old_fifo_state =
1877 &old_crtc_state->wm.vlv.fifo_state;
1878
1879 ret = vlv_compute_fifo(crtc_state);
1880 if (ret)
1881 return ret;
1882
1883 if (needs_modeset ||
1884 memcmp(old_fifo_state, fifo_state,
1885 sizeof(*fifo_state)) != 0)
1886 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001887 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001888
Ville Syrjäläff32c542017-03-02 19:14:57 +02001889 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001890 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001891 /*
1892 * Note that enabling cxsr with no primary/sprite planes
1893 * enabled can wedge the pipe. Hence we only allow cxsr
1894 * with exactly one enabled primary/sprite plane.
1895 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001896 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001897
Ville Syrjälä5012e602017-03-02 19:14:56 +02001898 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001899 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001900 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001901
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001902 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001903 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001904
Ville Syrjäläff32c542017-03-02 19:14:57 +02001905 for_each_plane_id_on_crtc(crtc, plane_id) {
1906 wm_state->wm[level].plane[plane_id] =
1907 vlv_invert_wm_value(raw->plane[plane_id],
1908 fifo_state->plane[plane_id]);
1909 }
1910
1911 wm_state->sr[level].plane =
1912 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001913 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001914 raw->plane[PLANE_SPRITE1]),
1915 sr_fifo_size);
1916
1917 wm_state->sr[level].cursor =
1918 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1919 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001920 }
1921
Ville Syrjäläff32c542017-03-02 19:14:57 +02001922 if (level == 0)
1923 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001924
Ville Syrjäläff32c542017-03-02 19:14:57 +02001925 /* limit to only levels we can actually handle */
1926 wm_state->num_levels = level;
1927
1928 /* invalidate the higher levels */
1929 vlv_invalidate_wms(crtc, wm_state, level);
1930
1931 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001932}
1933
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001934#define VLV_FIFO(plane, value) \
1935 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1936
Ville Syrjäläff32c542017-03-02 19:14:57 +02001937static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1938 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001939{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001940 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001941 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001942 const struct vlv_fifo_state *fifo_state =
1943 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001944 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001945
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001946 if (!crtc_state->fifo_changed)
1947 return;
1948
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001949 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1950 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1951 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001952
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001953 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1954 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001955
Ville Syrjäläc137d662017-03-02 19:15:06 +02001956 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1957
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001958 /*
1959 * uncore.lock serves a double purpose here. It allows us to
1960 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1961 * it protects the DSPARB registers from getting clobbered by
1962 * parallel updates from multiple pipes.
1963 *
1964 * intel_pipe_update_start() has already disabled interrupts
1965 * for us, so a plain spin_lock() is sufficient here.
1966 */
1967 spin_lock(&dev_priv->uncore.lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001968
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001969 switch (crtc->pipe) {
1970 uint32_t dsparb, dsparb2, dsparb3;
1971 case PIPE_A:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001972 dsparb = I915_READ_FW(DSPARB);
1973 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001974
1975 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1976 VLV_FIFO(SPRITEB, 0xff));
1977 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1978 VLV_FIFO(SPRITEB, sprite1_start));
1979
1980 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1981 VLV_FIFO(SPRITEB_HI, 0x1));
1982 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1983 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1984
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001985 I915_WRITE_FW(DSPARB, dsparb);
1986 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001987 break;
1988 case PIPE_B:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001989 dsparb = I915_READ_FW(DSPARB);
1990 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001991
1992 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1993 VLV_FIFO(SPRITED, 0xff));
1994 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1995 VLV_FIFO(SPRITED, sprite1_start));
1996
1997 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1998 VLV_FIFO(SPRITED_HI, 0xff));
1999 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2000 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2001
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002002 I915_WRITE_FW(DSPARB, dsparb);
2003 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002004 break;
2005 case PIPE_C:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002006 dsparb3 = I915_READ_FW(DSPARB3);
2007 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002008
2009 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2010 VLV_FIFO(SPRITEF, 0xff));
2011 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2012 VLV_FIFO(SPRITEF, sprite1_start));
2013
2014 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2015 VLV_FIFO(SPRITEF_HI, 0xff));
2016 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2017 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2018
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002019 I915_WRITE_FW(DSPARB3, dsparb3);
2020 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002021 break;
2022 default:
2023 break;
2024 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002025
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002026 POSTING_READ_FW(DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002027
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002028 spin_unlock(&dev_priv->uncore.lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002029}
2030
2031#undef VLV_FIFO
2032
Ville Syrjälä4841da52017-03-02 19:14:59 +02002033static int vlv_compute_intermediate_wm(struct drm_device *dev,
2034 struct intel_crtc *crtc,
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002035 struct intel_crtc_state *new_crtc_state)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002036{
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002037 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2038 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2039 struct intel_atomic_state *intel_state =
2040 to_intel_atomic_state(new_crtc_state->base.state);
2041 const struct intel_crtc_state *old_crtc_state =
2042 intel_atomic_get_old_crtc_state(intel_state, crtc);
2043 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002044 int level;
2045
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002046 if (!new_crtc_state->base.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->base)) {
2047 *intermediate = *optimal;
2048
2049 intermediate->cxsr = false;
2050 goto out;
2051 }
2052
Ville Syrjälä4841da52017-03-02 19:14:59 +02002053 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002054 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002055 !new_crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002056
2057 for (level = 0; level < intermediate->num_levels; level++) {
2058 enum plane_id plane_id;
2059
2060 for_each_plane_id_on_crtc(crtc, plane_id) {
2061 intermediate->wm[level].plane[plane_id] =
2062 min(optimal->wm[level].plane[plane_id],
2063 active->wm[level].plane[plane_id]);
2064 }
2065
2066 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2067 active->sr[level].plane);
2068 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2069 active->sr[level].cursor);
2070 }
2071
2072 vlv_invalidate_wms(crtc, intermediate, level);
2073
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002074out:
Ville Syrjälä4841da52017-03-02 19:14:59 +02002075 /*
2076 * If our intermediate WM are identical to the final WM, then we can
2077 * omit the post-vblank programming; only update if it's different.
2078 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002079 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002080 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002081
2082 return 0;
2083}
2084
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002085static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002086 struct vlv_wm_values *wm)
2087{
2088 struct intel_crtc *crtc;
2089 int num_active_crtcs = 0;
2090
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002091 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002092 wm->cxsr = true;
2093
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002094 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002095 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002096
2097 if (!crtc->active)
2098 continue;
2099
2100 if (!wm_state->cxsr)
2101 wm->cxsr = false;
2102
2103 num_active_crtcs++;
2104 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2105 }
2106
2107 if (num_active_crtcs != 1)
2108 wm->cxsr = false;
2109
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002110 if (num_active_crtcs > 1)
2111 wm->level = VLV_WM_LEVEL_PM2;
2112
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002113 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002114 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002115 enum pipe pipe = crtc->pipe;
2116
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002117 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002118 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002119 wm->sr = wm_state->sr[wm->level];
2120
Ville Syrjälä1b313892016-11-28 19:37:08 +02002121 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2122 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2123 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2124 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002125 }
2126}
2127
Ville Syrjäläff32c542017-03-02 19:14:57 +02002128static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002129{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002130 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2131 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002132
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002133 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002134
Ville Syrjäläff32c542017-03-02 19:14:57 +02002135 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002136 return;
2137
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002138 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002139 chv_set_memory_dvfs(dev_priv, false);
2140
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002141 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002142 chv_set_memory_pm5(dev_priv, false);
2143
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002144 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002145 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002146
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002147 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002148
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002149 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002150 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002151
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002152 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002153 chv_set_memory_pm5(dev_priv, true);
2154
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002155 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002156 chv_set_memory_dvfs(dev_priv, true);
2157
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002158 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002159}
2160
Ville Syrjäläff32c542017-03-02 19:14:57 +02002161static void vlv_initial_watermarks(struct intel_atomic_state *state,
2162 struct intel_crtc_state *crtc_state)
2163{
2164 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2165 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
2166
2167 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002168 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2169 vlv_program_watermarks(dev_priv);
2170 mutex_unlock(&dev_priv->wm.wm_mutex);
2171}
2172
2173static void vlv_optimize_watermarks(struct intel_atomic_state *state,
2174 struct intel_crtc_state *crtc_state)
2175{
2176 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2177 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2178
2179 if (!crtc_state->wm.need_postvbl_update)
2180 return;
2181
2182 mutex_lock(&dev_priv->wm.wm_mutex);
2183 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002184 vlv_program_watermarks(dev_priv);
2185 mutex_unlock(&dev_priv->wm.wm_mutex);
2186}
2187
Ville Syrjälä432081b2016-10-31 22:37:03 +02002188static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002189{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002190 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002191 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002192 int srwm = 1;
2193 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002194 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002195
2196 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002197 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002198 if (crtc) {
2199 /* self-refresh has much higher latency */
2200 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002201 const struct drm_display_mode *adjusted_mode =
2202 &crtc->config->base.adjusted_mode;
2203 const struct drm_framebuffer *fb =
2204 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002205 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002206 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002207 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002208 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002209 int entries;
2210
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002211 entries = intel_wm_method2(clock, htotal,
2212 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002213 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2214 srwm = I965_FIFO_SIZE - entries;
2215 if (srwm < 0)
2216 srwm = 1;
2217 srwm &= 0x1ff;
2218 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
2219 entries, srwm);
2220
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002221 entries = intel_wm_method2(clock, htotal,
2222 crtc->base.cursor->state->crtc_w, 4,
2223 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002224 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002225 i965_cursor_wm_info.cacheline_size) +
2226 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002227
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002228 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002229 if (cursor_sr > i965_cursor_wm_info.max_wm)
2230 cursor_sr = i965_cursor_wm_info.max_wm;
2231
2232 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
2233 "cursor %d\n", srwm, cursor_sr);
2234
Imre Deak98584252014-06-13 14:54:20 +03002235 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002236 } else {
Imre Deak98584252014-06-13 14:54:20 +03002237 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002238 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002239 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002240 }
2241
2242 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2243 srwm);
2244
2245 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002246 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2247 FW_WM(8, CURSORB) |
2248 FW_WM(8, PLANEB) |
2249 FW_WM(8, PLANEA));
2250 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2251 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002252 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002253 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002254
2255 if (cxsr_enabled)
2256 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002257}
2258
Ville Syrjäläf4998962015-03-10 17:02:21 +02002259#undef FW_WM
2260
Ville Syrjälä432081b2016-10-31 22:37:03 +02002261static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002262{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002263 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002264 const struct intel_watermark_params *wm_info;
2265 uint32_t fwater_lo;
2266 uint32_t fwater_hi;
2267 int cwm, srwm = 1;
2268 int fifo_size;
2269 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002270 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002271
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002272 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002273 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002274 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002275 wm_info = &i915_wm_info;
2276 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002277 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002278
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002279 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A);
2280 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002281 if (intel_crtc_active(crtc)) {
2282 const struct drm_display_mode *adjusted_mode =
2283 &crtc->config->base.adjusted_mode;
2284 const struct drm_framebuffer *fb =
2285 crtc->base.primary->state->fb;
2286 int cpp;
2287
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002288 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002289 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002290 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002291 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002292
Damien Lespiau241bfc32013-09-25 16:45:37 +01002293 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002294 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002295 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002296 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002297 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002298 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002299 if (planea_wm > (long)wm_info->max_wm)
2300 planea_wm = wm_info->max_wm;
2301 }
2302
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002303 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002304 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002305
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002306 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B);
2307 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002308 if (intel_crtc_active(crtc)) {
2309 const struct drm_display_mode *adjusted_mode =
2310 &crtc->config->base.adjusted_mode;
2311 const struct drm_framebuffer *fb =
2312 crtc->base.primary->state->fb;
2313 int cpp;
2314
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002315 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002316 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002317 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002318 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002319
Damien Lespiau241bfc32013-09-25 16:45:37 +01002320 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002321 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002322 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002323 if (enabled == NULL)
2324 enabled = crtc;
2325 else
2326 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002327 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002328 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002329 if (planeb_wm > (long)wm_info->max_wm)
2330 planeb_wm = wm_info->max_wm;
2331 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002332
2333 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2334
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002335 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002336 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002337
Ville Syrjäläefc26112016-10-31 22:37:04 +02002338 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002339
2340 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002341 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002342 enabled = NULL;
2343 }
2344
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002345 /*
2346 * Overlay gets an aggressive default since video jitter is bad.
2347 */
2348 cwm = 2;
2349
2350 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002351 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002352
2353 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002354 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002355 /* self-refresh has much higher latency */
2356 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002357 const struct drm_display_mode *adjusted_mode =
2358 &enabled->config->base.adjusted_mode;
2359 const struct drm_framebuffer *fb =
2360 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002361 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002362 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002363 int hdisplay = enabled->config->pipe_src_w;
2364 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002365 int entries;
2366
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002367 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002368 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002369 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002370 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002371
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002372 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2373 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002374 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
2375 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
2376 srwm = wm_info->fifo_size - entries;
2377 if (srwm < 0)
2378 srwm = 1;
2379
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002380 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002381 I915_WRITE(FW_BLC_SELF,
2382 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002383 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002384 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2385 }
2386
2387 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2388 planea_wm, planeb_wm, cwm, srwm);
2389
2390 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2391 fwater_hi = (cwm & 0x1f);
2392
2393 /* Set request length to 8 cachelines per fetch */
2394 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2395 fwater_hi = fwater_hi | (1 << 8);
2396
2397 I915_WRITE(FW_BLC, fwater_lo);
2398 I915_WRITE(FW_BLC2, fwater_hi);
2399
Imre Deak5209b1f2014-07-01 12:36:17 +03002400 if (enabled)
2401 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002402}
2403
Ville Syrjälä432081b2016-10-31 22:37:03 +02002404static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002405{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002406 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002407 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002408 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002409 uint32_t fwater_lo;
2410 int planea_wm;
2411
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002412 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002413 if (crtc == NULL)
2414 return;
2415
Ville Syrjäläefc26112016-10-31 22:37:04 +02002416 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002417 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002418 &i845_wm_info,
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002419 dev_priv->display.get_fifo_size(dev_priv, PLANE_A),
Chris Wilson5aef6002014-09-03 11:56:07 +01002420 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002421 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2422 fwater_lo |= (3<<8) | planea_wm;
2423
2424 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
2425
2426 I915_WRITE(FW_BLC, fwater_lo);
2427}
2428
Ville Syrjälä37126462013-08-01 16:18:55 +03002429/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002430static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2431 unsigned int cpp,
2432 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002433{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002434 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002435
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002436 ret = intel_wm_method1(pixel_rate, cpp, latency);
2437 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002438
2439 return ret;
2440}
2441
Ville Syrjälä37126462013-08-01 16:18:55 +03002442/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002443static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2444 unsigned int htotal,
2445 unsigned int width,
2446 unsigned int cpp,
2447 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002448{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002449 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002450
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002451 ret = intel_wm_method2(pixel_rate, htotal,
2452 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002453 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002454
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002455 return ret;
2456}
2457
Ville Syrjälä23297042013-07-05 11:57:17 +03002458static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02002459 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002460{
Matt Roper15126882015-12-03 11:37:40 -08002461 /*
2462 * Neither of these should be possible since this function shouldn't be
2463 * called if the CRTC is off or the plane is invisible. But let's be
2464 * extra paranoid to avoid a potential divide-by-zero if we screw up
2465 * elsewhere in the driver.
2466 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002467 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002468 return 0;
2469 if (WARN_ON(!horiz_pixels))
2470 return 0;
2471
Ville Syrjäläac484962016-01-20 21:05:26 +02002472 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002473}
2474
Imre Deak820c1982013-12-17 14:46:36 +02002475struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002476 uint16_t pri;
2477 uint16_t spr;
2478 uint16_t cur;
2479 uint16_t fbc;
2480};
2481
Ville Syrjälä37126462013-08-01 16:18:55 +03002482/*
2483 * For both WM_PIPE and WM_LP.
2484 * mem_value must be in 0.1us units.
2485 */
Matt Roper7221fc32015-09-24 15:53:08 -07002486static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002487 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002488 uint32_t mem_value,
2489 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002490{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002491 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002492 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002493
Ville Syrjälä24304d812017-03-14 17:10:49 +02002494 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002495 return 0;
2496
Ville Syrjälä353c8592016-12-14 23:30:57 +02002497 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002498
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002499 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002500
2501 if (!is_lp)
2502 return method1;
2503
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002504 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002505 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002506 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002507 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002508
2509 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002510}
2511
Ville Syrjälä37126462013-08-01 16:18:55 +03002512/*
2513 * For both WM_PIPE and WM_LP.
2514 * mem_value must be in 0.1us units.
2515 */
Matt Roper7221fc32015-09-24 15:53:08 -07002516static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002517 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002518 uint32_t mem_value)
2519{
2520 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002521 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002522
Ville Syrjälä24304d812017-03-14 17:10:49 +02002523 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002524 return 0;
2525
Ville Syrjälä353c8592016-12-14 23:30:57 +02002526 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002527
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002528 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
2529 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002530 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002531 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002532 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002533 return min(method1, method2);
2534}
2535
Ville Syrjälä37126462013-08-01 16:18:55 +03002536/*
2537 * For both WM_PIPE and WM_LP.
2538 * mem_value must be in 0.1us units.
2539 */
Matt Roper7221fc32015-09-24 15:53:08 -07002540static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002541 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002542 uint32_t mem_value)
2543{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002544 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002545
Ville Syrjälä24304d812017-03-14 17:10:49 +02002546 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002547 return 0;
2548
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002549 cpp = pstate->base.fb->format->cpp[0];
2550
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002551 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002552 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002553 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002554}
2555
Paulo Zanonicca32e92013-05-31 11:45:06 -03002556/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002557static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002558 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002559 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002560{
Ville Syrjälä83054942016-11-18 21:53:00 +02002561 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002562
Ville Syrjälä24304d812017-03-14 17:10:49 +02002563 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002564 return 0;
2565
Ville Syrjälä353c8592016-12-14 23:30:57 +02002566 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002567
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002568 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002569}
2570
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002571static unsigned int
2572ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002573{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002574 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002575 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002576 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002577 return 768;
2578 else
2579 return 512;
2580}
2581
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002582static unsigned int
2583ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2584 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002585{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002586 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002587 /* BDW primary/sprite plane watermarks */
2588 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002589 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002590 /* IVB/HSW primary/sprite plane watermarks */
2591 return level == 0 ? 127 : 1023;
2592 else if (!is_sprite)
2593 /* ILK/SNB primary plane watermarks */
2594 return level == 0 ? 127 : 511;
2595 else
2596 /* ILK/SNB sprite plane watermarks */
2597 return level == 0 ? 63 : 255;
2598}
2599
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002600static unsigned int
2601ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002602{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002603 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002604 return level == 0 ? 63 : 255;
2605 else
2606 return level == 0 ? 31 : 63;
2607}
2608
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002609static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002610{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002611 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002612 return 31;
2613 else
2614 return 15;
2615}
2616
Ville Syrjälä158ae642013-08-07 13:28:19 +03002617/* Calculate the maximum primary/sprite plane watermark */
2618static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2619 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002620 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002621 enum intel_ddb_partitioning ddb_partitioning,
2622 bool is_sprite)
2623{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002624 struct drm_i915_private *dev_priv = to_i915(dev);
2625 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002626
2627 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002628 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002629 return 0;
2630
2631 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002632 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002633 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002634
2635 /*
2636 * For some reason the non self refresh
2637 * FIFO size is only half of the self
2638 * refresh FIFO size on ILK/SNB.
2639 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002640 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002641 fifo_size /= 2;
2642 }
2643
Ville Syrjälä240264f2013-08-07 13:29:12 +03002644 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002645 /* level 0 is always calculated with 1:1 split */
2646 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2647 if (is_sprite)
2648 fifo_size *= 5;
2649 fifo_size /= 6;
2650 } else {
2651 fifo_size /= 2;
2652 }
2653 }
2654
2655 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002656 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002657}
2658
2659/* Calculate the maximum cursor plane watermark */
2660static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002661 int level,
2662 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002663{
2664 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002665 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002666 return 64;
2667
2668 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002669 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002670}
2671
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002672static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002673 int level,
2674 const struct intel_wm_config *config,
2675 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002676 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002677{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002678 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2679 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2680 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002681 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002682}
2683
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002684static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002685 int level,
2686 struct ilk_wm_maximums *max)
2687{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002688 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2689 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2690 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2691 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002692}
2693
Ville Syrjäläd9395652013-10-09 19:18:10 +03002694static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002695 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002696 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002697{
2698 bool ret;
2699
2700 /* already determined to be invalid? */
2701 if (!result->enable)
2702 return false;
2703
2704 result->enable = result->pri_val <= max->pri &&
2705 result->spr_val <= max->spr &&
2706 result->cur_val <= max->cur;
2707
2708 ret = result->enable;
2709
2710 /*
2711 * HACK until we can pre-compute everything,
2712 * and thus fail gracefully if LP0 watermarks
2713 * are exceeded...
2714 */
2715 if (level == 0 && !result->enable) {
2716 if (result->pri_val > max->pri)
2717 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2718 level, result->pri_val, max->pri);
2719 if (result->spr_val > max->spr)
2720 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2721 level, result->spr_val, max->spr);
2722 if (result->cur_val > max->cur)
2723 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2724 level, result->cur_val, max->cur);
2725
2726 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2727 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2728 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2729 result->enable = true;
2730 }
2731
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002732 return ret;
2733}
2734
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002735static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002736 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002737 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002738 struct intel_crtc_state *cstate,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002739 const struct intel_plane_state *pristate,
2740 const struct intel_plane_state *sprstate,
2741 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002742 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002743{
2744 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2745 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2746 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2747
2748 /* WM1+ latency values stored in 0.5us units */
2749 if (level > 0) {
2750 pri_latency *= 5;
2751 spr_latency *= 5;
2752 cur_latency *= 5;
2753 }
2754
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002755 if (pristate) {
2756 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2757 pri_latency, level);
2758 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2759 }
2760
2761 if (sprstate)
2762 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2763
2764 if (curstate)
2765 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2766
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002767 result->enable = true;
2768}
2769
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002770static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002771hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002772{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002773 const struct intel_atomic_state *intel_state =
2774 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002775 const struct drm_display_mode *adjusted_mode =
2776 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002777 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002778
Matt Roperee91a152015-12-03 11:37:39 -08002779 if (!cstate->base.active)
2780 return 0;
2781 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2782 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002783 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002784 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002785
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002786 /* The WM are computed with base on how long it takes to fill a single
2787 * row at the given clock rate, multiplied by 8.
2788 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002789 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2790 adjusted_mode->crtc_clock);
2791 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002792 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002793
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002794 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2795 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002796}
2797
Ville Syrjäläbb726512016-10-31 22:37:24 +02002798static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2799 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002800{
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002801 if (INTEL_GEN(dev_priv) >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002802 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002803 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002804 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002805
2806 /* read the first set of memory latencies[0:3] */
2807 val = 0; /* data0 to be programmed to 0 for first set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002808 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002809 ret = sandybridge_pcode_read(dev_priv,
2810 GEN9_PCODE_READ_MEM_LATENCY,
2811 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002812 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002813
2814 if (ret) {
2815 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2816 return;
2817 }
2818
2819 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2820 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2821 GEN9_MEM_LATENCY_LEVEL_MASK;
2822 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2823 GEN9_MEM_LATENCY_LEVEL_MASK;
2824 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2825 GEN9_MEM_LATENCY_LEVEL_MASK;
2826
2827 /* read the second set of memory latencies[4:7] */
2828 val = 1; /* data0 to be programmed to 1 for second set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002829 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002830 ret = sandybridge_pcode_read(dev_priv,
2831 GEN9_PCODE_READ_MEM_LATENCY,
2832 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002833 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002834 if (ret) {
2835 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2836 return;
2837 }
2838
2839 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2840 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2841 GEN9_MEM_LATENCY_LEVEL_MASK;
2842 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2843 GEN9_MEM_LATENCY_LEVEL_MASK;
2844 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2845 GEN9_MEM_LATENCY_LEVEL_MASK;
2846
Vandana Kannan367294b2014-11-04 17:06:46 +00002847 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002848 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2849 * need to be disabled. We make sure to sanitize the values out
2850 * of the punit to satisfy this requirement.
2851 */
2852 for (level = 1; level <= max_level; level++) {
2853 if (wm[level] == 0) {
2854 for (i = level + 1; i <= max_level; i++)
2855 wm[i] = 0;
2856 break;
2857 }
2858 }
2859
2860 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002861 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002862 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002863 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002864 * to add 2us to the various latency levels we retrieve from the
2865 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002866 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002867 if (wm[0] == 0) {
2868 wm[0] += 2;
2869 for (level = 1; level <= max_level; level++) {
2870 if (wm[level] == 0)
2871 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002872 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002873 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002874 }
2875
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002876 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002877 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2878
2879 wm[0] = (sskpd >> 56) & 0xFF;
2880 if (wm[0] == 0)
2881 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002882 wm[1] = (sskpd >> 4) & 0xFF;
2883 wm[2] = (sskpd >> 12) & 0xFF;
2884 wm[3] = (sskpd >> 20) & 0x1FF;
2885 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002886 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002887 uint32_t sskpd = I915_READ(MCH_SSKPD);
2888
2889 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2890 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2891 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2892 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002893 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002894 uint32_t mltr = I915_READ(MLTR_ILK);
2895
2896 /* ILK primary LP0 latency is 700 ns */
2897 wm[0] = 7;
2898 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2899 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002900 } else {
2901 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002902 }
2903}
2904
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002905static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2906 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002907{
2908 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002909 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002910 wm[0] = 13;
2911}
2912
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002913static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2914 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002915{
2916 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002917 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002918 wm[0] = 13;
2919
2920 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002921 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002922 wm[3] *= 2;
2923}
2924
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002925int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002926{
2927 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002928 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002929 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002930 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002931 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002932 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002933 return 3;
2934 else
2935 return 2;
2936}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002937
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002938static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002939 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002940 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002941{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002942 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002943
2944 for (level = 0; level <= max_level; level++) {
2945 unsigned int latency = wm[level];
2946
2947 if (latency == 0) {
2948 DRM_ERROR("%s WM%d latency not provided\n",
2949 name, level);
2950 continue;
2951 }
2952
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002953 /*
2954 * - latencies are in us on gen9.
2955 * - before then, WM1+ latency values are in 0.5us units
2956 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002957 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002958 latency *= 10;
2959 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002960 latency *= 5;
2961
2962 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2963 name, level, wm[level],
2964 latency / 10, latency % 10);
2965 }
2966}
2967
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002968static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2969 uint16_t wm[5], uint16_t min)
2970{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002971 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002972
2973 if (wm[0] >= min)
2974 return false;
2975
2976 wm[0] = max(wm[0], min);
2977 for (level = 1; level <= max_level; level++)
2978 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2979
2980 return true;
2981}
2982
Ville Syrjäläbb726512016-10-31 22:37:24 +02002983static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002984{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002985 bool changed;
2986
2987 /*
2988 * The BIOS provided WM memory latency values are often
2989 * inadequate for high resolution displays. Adjust them.
2990 */
2991 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2992 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2993 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2994
2995 if (!changed)
2996 return;
2997
2998 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002999 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3000 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3001 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003002}
3003
Ville Syrjäläbb726512016-10-31 22:37:24 +02003004static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03003005{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003006 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003007
3008 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
3009 sizeof(dev_priv->wm.pri_latency));
3010 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
3011 sizeof(dev_priv->wm.pri_latency));
3012
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003013 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003014 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003015
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003016 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3017 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3018 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003019
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003020 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02003021 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003022}
3023
Ville Syrjäläbb726512016-10-31 22:37:24 +02003024static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003025{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003026 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003027 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003028}
3029
Matt Ropered4a6a72016-02-23 17:20:13 -08003030static bool ilk_validate_pipe_wm(struct drm_device *dev,
3031 struct intel_pipe_wm *pipe_wm)
3032{
3033 /* LP0 watermark maximums depend on this pipe alone */
3034 const struct intel_wm_config config = {
3035 .num_pipes_active = 1,
3036 .sprites_enabled = pipe_wm->sprites_enabled,
3037 .sprites_scaled = pipe_wm->sprites_scaled,
3038 };
3039 struct ilk_wm_maximums max;
3040
3041 /* LP0 watermarks always use 1/2 DDB partitioning */
3042 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
3043
3044 /* At least LP0 must be valid */
3045 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
3046 DRM_DEBUG_KMS("LP0 watermark invalid\n");
3047 return false;
3048 }
3049
3050 return true;
3051}
3052
Matt Roper261a27d2015-10-08 15:28:25 -07003053/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003054static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07003055{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003056 struct drm_atomic_state *state = cstate->base.state;
3057 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003058 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003059 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003060 const struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003061 struct drm_plane *plane;
3062 const struct drm_plane_state *plane_state;
3063 const struct intel_plane_state *pristate = NULL;
3064 const struct intel_plane_state *sprstate = NULL;
3065 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003066 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003067 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003068
Matt Ropere8f1f022016-05-12 07:05:55 -07003069 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003070
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003071 drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, &cstate->base) {
3072 const struct intel_plane_state *ps = to_intel_plane_state(plane_state);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003073
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003074 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003075 pristate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003076 else if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003077 sprstate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003078 else if (plane->type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003079 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07003080 }
3081
Matt Ropered4a6a72016-02-23 17:20:13 -08003082 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003083 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003084 pipe_wm->sprites_enabled = sprstate->base.visible;
3085 pipe_wm->sprites_scaled = sprstate->base.visible &&
3086 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
3087 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003088 }
3089
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003090 usable_level = max_level;
3091
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003092 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003093 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003094 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003095
3096 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003097 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003098 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003099
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003100 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003101 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
3102 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003103
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003104 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03003105 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003106
Matt Ropered4a6a72016-02-23 17:20:13 -08003107 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003108 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003109
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003110 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003111
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003112 for (level = 1; level <= usable_level; level++) {
3113 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003114
Matt Roper86c8bbb2015-09-24 15:53:16 -07003115 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003116 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003117
3118 /*
3119 * Disable any watermark level that exceeds the
3120 * register maximums since such watermarks are
3121 * always invalid.
3122 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003123 if (!ilk_validate_wm_level(level, &max, wm)) {
3124 memset(wm, 0, sizeof(*wm));
3125 break;
3126 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003127 }
3128
Matt Roper86c8bbb2015-09-24 15:53:16 -07003129 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003130}
3131
3132/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003133 * Build a set of 'intermediate' watermark values that satisfy both the old
3134 * state and the new state. These can be programmed to the hardware
3135 * immediately.
3136 */
3137static int ilk_compute_intermediate_wm(struct drm_device *dev,
3138 struct intel_crtc *intel_crtc,
3139 struct intel_crtc_state *newstate)
3140{
Matt Ropere8f1f022016-05-12 07:05:55 -07003141 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003142 struct intel_atomic_state *intel_state =
3143 to_intel_atomic_state(newstate->base.state);
3144 const struct intel_crtc_state *oldstate =
3145 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3146 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003147 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08003148
3149 /*
3150 * Start with the final, target watermarks, then combine with the
3151 * currently active watermarks to get values that are safe both before
3152 * and after the vblank.
3153 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003154 *a = newstate->wm.ilk.optimal;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003155 if (!newstate->base.active || drm_atomic_crtc_needs_modeset(&newstate->base))
3156 return 0;
3157
Matt Ropered4a6a72016-02-23 17:20:13 -08003158 a->pipe_enabled |= b->pipe_enabled;
3159 a->sprites_enabled |= b->sprites_enabled;
3160 a->sprites_scaled |= b->sprites_scaled;
3161
3162 for (level = 0; level <= max_level; level++) {
3163 struct intel_wm_level *a_wm = &a->wm[level];
3164 const struct intel_wm_level *b_wm = &b->wm[level];
3165
3166 a_wm->enable &= b_wm->enable;
3167 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3168 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3169 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3170 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3171 }
3172
3173 /*
3174 * We need to make sure that these merged watermark values are
3175 * actually a valid configuration themselves. If they're not,
3176 * there's no safe way to transition from the old state to
3177 * the new state, so we need to fail the atomic transaction.
3178 */
3179 if (!ilk_validate_pipe_wm(dev, a))
3180 return -EINVAL;
3181
3182 /*
3183 * If our intermediate WM are identical to the final WM, then we can
3184 * omit the post-vblank programming; only update if it's different.
3185 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003186 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3187 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003188
3189 return 0;
3190}
3191
3192/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003193 * Merge the watermarks from all active pipes for a specific level.
3194 */
3195static void ilk_merge_wm_level(struct drm_device *dev,
3196 int level,
3197 struct intel_wm_level *ret_wm)
3198{
3199 const struct intel_crtc *intel_crtc;
3200
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003201 ret_wm->enable = true;
3202
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003203 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003204 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003205 const struct intel_wm_level *wm = &active->wm[level];
3206
3207 if (!active->pipe_enabled)
3208 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003209
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003210 /*
3211 * The watermark values may have been used in the past,
3212 * so we must maintain them in the registers for some
3213 * time even if the level is now disabled.
3214 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003215 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003216 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003217
3218 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3219 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3220 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3221 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3222 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003223}
3224
3225/*
3226 * Merge all low power watermarks for all active pipes.
3227 */
3228static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003229 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003230 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003231 struct intel_pipe_wm *merged)
3232{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003233 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003234 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003235 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003236
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003237 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003238 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003239 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003240 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003241
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003242 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003243 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003244
3245 /* merge each WM1+ level */
3246 for (level = 1; level <= max_level; level++) {
3247 struct intel_wm_level *wm = &merged->wm[level];
3248
3249 ilk_merge_wm_level(dev, level, wm);
3250
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003251 if (level > last_enabled_level)
3252 wm->enable = false;
3253 else if (!ilk_validate_wm_level(level, max, wm))
3254 /* make sure all following levels get disabled */
3255 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003256
3257 /*
3258 * The spec says it is preferred to disable
3259 * FBC WMs instead of disabling a WM level.
3260 */
3261 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003262 if (wm->enable)
3263 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003264 wm->fbc_val = 0;
3265 }
3266 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003267
3268 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3269 /*
3270 * FIXME this is racy. FBC might get enabled later.
3271 * What we should check here is whether FBC can be
3272 * enabled sometime later.
3273 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003274 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003275 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003276 for (level = 2; level <= max_level; level++) {
3277 struct intel_wm_level *wm = &merged->wm[level];
3278
3279 wm->enable = false;
3280 }
3281 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003282}
3283
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003284static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3285{
3286 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3287 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3288}
3289
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003290/* The value we need to program into the WM_LPx latency field */
3291static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
3292{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003293 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003294
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003295 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003296 return 2 * level;
3297 else
3298 return dev_priv->wm.pri_latency[level];
3299}
3300
Imre Deak820c1982013-12-17 14:46:36 +02003301static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003302 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003303 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003304 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003305{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003306 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003307 struct intel_crtc *intel_crtc;
3308 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003309
Ville Syrjälä0362c782013-10-09 19:17:57 +03003310 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003311 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003312
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003313 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003314 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003315 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003316
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003317 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003318
Ville Syrjälä0362c782013-10-09 19:17:57 +03003319 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003320
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003321 /*
3322 * Maintain the watermark values even if the level is
3323 * disabled. Doing otherwise could cause underruns.
3324 */
3325 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003326 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003327 (r->pri_val << WM1_LP_SR_SHIFT) |
3328 r->cur_val;
3329
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003330 if (r->enable)
3331 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3332
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003333 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003334 results->wm_lp[wm_lp - 1] |=
3335 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3336 else
3337 results->wm_lp[wm_lp - 1] |=
3338 r->fbc_val << WM1_LP_FBC_SHIFT;
3339
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003340 /*
3341 * Always set WM1S_LP_EN when spr_val != 0, even if the
3342 * level is disabled. Doing otherwise could cause underruns.
3343 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003344 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003345 WARN_ON(wm_lp != 1);
3346 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3347 } else
3348 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003349 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003350
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003351 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003352 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003353 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08003354 const struct intel_wm_level *r =
3355 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003356
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003357 if (WARN_ON(!r->enable))
3358 continue;
3359
Matt Ropered4a6a72016-02-23 17:20:13 -08003360 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003361
3362 results->wm_pipe[pipe] =
3363 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3364 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3365 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003366 }
3367}
3368
Paulo Zanoni861f3382013-05-31 10:19:21 -03003369/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3370 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02003371static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003372 struct intel_pipe_wm *r1,
3373 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003374{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003375 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003376 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003377
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003378 for (level = 1; level <= max_level; level++) {
3379 if (r1->wm[level].enable)
3380 level1 = level;
3381 if (r2->wm[level].enable)
3382 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003383 }
3384
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003385 if (level1 == level2) {
3386 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003387 return r2;
3388 else
3389 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003390 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003391 return r1;
3392 } else {
3393 return r2;
3394 }
3395}
3396
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003397/* dirty bits used to track which watermarks need changes */
3398#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3399#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
3400#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3401#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3402#define WM_DIRTY_FBC (1 << 24)
3403#define WM_DIRTY_DDB (1 << 25)
3404
Damien Lespiau055e3932014-08-18 13:49:10 +01003405static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003406 const struct ilk_wm_values *old,
3407 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003408{
3409 unsigned int dirty = 0;
3410 enum pipe pipe;
3411 int wm_lp;
3412
Damien Lespiau055e3932014-08-18 13:49:10 +01003413 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003414 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
3415 dirty |= WM_DIRTY_LINETIME(pipe);
3416 /* Must disable LP1+ watermarks too */
3417 dirty |= WM_DIRTY_LP_ALL;
3418 }
3419
3420 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3421 dirty |= WM_DIRTY_PIPE(pipe);
3422 /* Must disable LP1+ watermarks too */
3423 dirty |= WM_DIRTY_LP_ALL;
3424 }
3425 }
3426
3427 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3428 dirty |= WM_DIRTY_FBC;
3429 /* Must disable LP1+ watermarks too */
3430 dirty |= WM_DIRTY_LP_ALL;
3431 }
3432
3433 if (old->partitioning != new->partitioning) {
3434 dirty |= WM_DIRTY_DDB;
3435 /* Must disable LP1+ watermarks too */
3436 dirty |= WM_DIRTY_LP_ALL;
3437 }
3438
3439 /* LP1+ watermarks already deemed dirty, no need to continue */
3440 if (dirty & WM_DIRTY_LP_ALL)
3441 return dirty;
3442
3443 /* Find the lowest numbered LP1+ watermark in need of an update... */
3444 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3445 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3446 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3447 break;
3448 }
3449
3450 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3451 for (; wm_lp <= 3; wm_lp++)
3452 dirty |= WM_DIRTY_LP(wm_lp);
3453
3454 return dirty;
3455}
3456
Ville Syrjälä8553c182013-12-05 15:51:39 +02003457static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3458 unsigned int dirty)
3459{
Imre Deak820c1982013-12-17 14:46:36 +02003460 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003461 bool changed = false;
3462
3463 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3464 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3465 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3466 changed = true;
3467 }
3468 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3469 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3470 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3471 changed = true;
3472 }
3473 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3474 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3475 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3476 changed = true;
3477 }
3478
3479 /*
3480 * Don't touch WM1S_LP_EN here.
3481 * Doing so could cause underruns.
3482 */
3483
3484 return changed;
3485}
3486
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003487/*
3488 * The spec says we shouldn't write when we don't need, because every write
3489 * causes WMs to be re-evaluated, expending some power.
3490 */
Imre Deak820c1982013-12-17 14:46:36 +02003491static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3492 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003493{
Imre Deak820c1982013-12-17 14:46:36 +02003494 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003495 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003496 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003497
Damien Lespiau055e3932014-08-18 13:49:10 +01003498 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003499 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003500 return;
3501
Ville Syrjälä8553c182013-12-05 15:51:39 +02003502 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003503
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003504 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003505 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003506 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003507 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003508 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003509 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3510
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003511 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003512 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003513 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003514 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003515 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003516 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
3517
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003518 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003519 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003520 val = I915_READ(WM_MISC);
3521 if (results->partitioning == INTEL_DDB_PART_1_2)
3522 val &= ~WM_MISC_DATA_PARTITION_5_6;
3523 else
3524 val |= WM_MISC_DATA_PARTITION_5_6;
3525 I915_WRITE(WM_MISC, val);
3526 } else {
3527 val = I915_READ(DISP_ARB_CTL2);
3528 if (results->partitioning == INTEL_DDB_PART_1_2)
3529 val &= ~DISP_DATA_PARTITION_5_6;
3530 else
3531 val |= DISP_DATA_PARTITION_5_6;
3532 I915_WRITE(DISP_ARB_CTL2, val);
3533 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003534 }
3535
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003536 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003537 val = I915_READ(DISP_ARB_CTL);
3538 if (results->enable_fbc_wm)
3539 val &= ~DISP_FBC_WM_DIS;
3540 else
3541 val |= DISP_FBC_WM_DIS;
3542 I915_WRITE(DISP_ARB_CTL, val);
3543 }
3544
Imre Deak954911e2013-12-17 14:46:34 +02003545 if (dirty & WM_DIRTY_LP(1) &&
3546 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3547 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3548
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003549 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003550 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3551 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3552 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3553 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3554 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003555
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003556 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003557 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003558 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003559 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003560 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003561 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003562
3563 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003564}
3565
Matt Ropered4a6a72016-02-23 17:20:13 -08003566bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003567{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003568 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003569
3570 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3571}
3572
Matt Roper024c9042015-09-24 15:53:11 -07003573/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003574 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3575 * so assume we'll always need it in order to avoid underruns.
3576 */
3577static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3578{
3579 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3580
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003581 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003582 return true;
3583
3584 return false;
3585}
3586
Paulo Zanoni56feca92016-09-22 18:00:28 -03003587static bool
3588intel_has_sagv(struct drm_i915_private *dev_priv)
3589{
Rodrigo Vivi01971812017-08-09 13:52:44 -07003590 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
3591 IS_CANNONLAKE(dev_priv))
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003592 return true;
3593
3594 if (IS_SKYLAKE(dev_priv) &&
3595 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3596 return true;
3597
3598 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003599}
3600
Lyude656d1b82016-08-17 15:55:54 -04003601/*
3602 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3603 * depending on power and performance requirements. The display engine access
3604 * to system memory is blocked during the adjustment time. Because of the
3605 * blocking time, having this enabled can cause full system hangs and/or pipe
3606 * underruns if we don't meet all of the following requirements:
3607 *
3608 * - <= 1 pipe enabled
3609 * - All planes can enable watermarks for latencies >= SAGV engine block time
3610 * - We're not using an interlaced display configuration
3611 */
3612int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003613intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003614{
3615 int ret;
3616
Paulo Zanoni56feca92016-09-22 18:00:28 -03003617 if (!intel_has_sagv(dev_priv))
3618 return 0;
3619
3620 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003621 return 0;
3622
3623 DRM_DEBUG_KMS("Enabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003624 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003625
3626 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3627 GEN9_SAGV_ENABLE);
3628
3629 /* We don't need to wait for the SAGV when enabling */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003630 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003631
3632 /*
3633 * Some skl systems, pre-release machines in particular,
3634 * don't actually have an SAGV.
3635 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003636 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003637 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003638 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003639 return 0;
3640 } else if (ret < 0) {
3641 DRM_ERROR("Failed to enable the SAGV\n");
3642 return ret;
3643 }
3644
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003645 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003646 return 0;
3647}
3648
Lyude656d1b82016-08-17 15:55:54 -04003649int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003650intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003651{
Imre Deakb3b8e992016-12-05 18:27:38 +02003652 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003653
Paulo Zanoni56feca92016-09-22 18:00:28 -03003654 if (!intel_has_sagv(dev_priv))
3655 return 0;
3656
3657 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003658 return 0;
3659
3660 DRM_DEBUG_KMS("Disabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003661 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003662
3663 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003664 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3665 GEN9_SAGV_DISABLE,
3666 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3667 1);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003668 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003669
Lyude656d1b82016-08-17 15:55:54 -04003670 /*
3671 * Some skl systems, pre-release machines in particular,
3672 * don't actually have an SAGV.
3673 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003674 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003675 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003676 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003677 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003678 } else if (ret < 0) {
3679 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3680 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003681 }
3682
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003683 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003684 return 0;
3685}
3686
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003687bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003688{
3689 struct drm_device *dev = state->dev;
3690 struct drm_i915_private *dev_priv = to_i915(dev);
3691 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003692 struct intel_crtc *crtc;
3693 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003694 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003695 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003696 int level, latency;
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003697 int sagv_block_time_us = IS_GEN9(dev_priv) ? 30 : 20;
Lyude656d1b82016-08-17 15:55:54 -04003698
Paulo Zanoni56feca92016-09-22 18:00:28 -03003699 if (!intel_has_sagv(dev_priv))
3700 return false;
3701
Lyude656d1b82016-08-17 15:55:54 -04003702 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003703 * SKL+ workaround: bspec recommends we disable the SAGV when we have
Lyude656d1b82016-08-17 15:55:54 -04003704 * more then one pipe enabled
3705 *
3706 * If there are no active CRTCs, no additional checks need be performed
3707 */
3708 if (hweight32(intel_state->active_crtcs) == 0)
3709 return true;
3710 else if (hweight32(intel_state->active_crtcs) > 1)
3711 return false;
3712
3713 /* Since we're now guaranteed to only have one active CRTC... */
3714 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003715 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003716 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003717
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003718 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003719 return false;
3720
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003721 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003722 struct skl_plane_wm *wm =
3723 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003724
Lyude656d1b82016-08-17 15:55:54 -04003725 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003726 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003727 continue;
3728
3729 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003730 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003731 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003732 { }
3733
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003734 latency = dev_priv->wm.skl_latency[level];
3735
3736 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003737 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003738 I915_FORMAT_MOD_X_TILED)
3739 latency += 15;
3740
Lyude656d1b82016-08-17 15:55:54 -04003741 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003742 * If any of the planes on this pipe don't enable wm levels that
3743 * incur memory latencies higher than sagv_block_time_us we
3744 * can't enable the SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003745 */
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003746 if (latency < sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003747 return false;
3748 }
3749
3750 return true;
3751}
3752
Damien Lespiaub9cec072014-11-04 17:06:43 +00003753static void
3754skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003755 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003756 struct skl_ddb_entry *alloc, /* out */
3757 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003758{
Matt Roperc107acf2016-05-12 07:06:01 -07003759 struct drm_atomic_state *state = cstate->base.state;
3760 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3761 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003762 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003763 unsigned int pipe_size, ddb_size;
3764 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003765
Matt Ropera6d3460e2016-05-12 07:06:04 -07003766 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003767 alloc->start = 0;
3768 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003769 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003770 return;
3771 }
3772
Matt Ropera6d3460e2016-05-12 07:06:04 -07003773 if (intel_state->active_pipe_changes)
3774 *num_active = hweight32(intel_state->active_crtcs);
3775 else
3776 *num_active = hweight32(dev_priv->active_crtcs);
3777
Deepak M6f3fff62016-09-15 15:01:10 +05303778 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3779 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003780
3781 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3782
Matt Roperc107acf2016-05-12 07:06:01 -07003783 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003784 * If the state doesn't change the active CRTC's, then there's
3785 * no need to recalculate; the existing pipe allocation limits
3786 * should remain unchanged. Note that we're safe from racing
3787 * commits since any racing commit that changes the active CRTC
3788 * list would need to grab _all_ crtc locks, including the one
3789 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003790 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003791 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003792 /*
3793 * alloc may be cleared by clear_intel_crtc_state,
3794 * copy from old state to be sure
3795 */
3796 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003797 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003798 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003799
3800 nth_active_pipe = hweight32(intel_state->active_crtcs &
3801 (drm_crtc_mask(for_crtc) - 1));
3802 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3803 alloc->start = nth_active_pipe * ddb_size / *num_active;
3804 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003805}
3806
Matt Roperc107acf2016-05-12 07:06:01 -07003807static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003808{
Matt Roperc107acf2016-05-12 07:06:01 -07003809 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003810 return 32;
3811
3812 return 8;
3813}
3814
Damien Lespiaua269c582014-11-04 17:06:49 +00003815static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3816{
3817 entry->start = reg & 0x3ff;
3818 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003819 if (entry->end)
3820 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003821}
3822
Damien Lespiau08db6652014-11-04 17:06:52 +00003823void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3824 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003825{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003826 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003827
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003828 memset(ddb, 0, sizeof(*ddb));
3829
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003830 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003831 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003832 enum plane_id plane_id;
3833 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003834
3835 power_domain = POWER_DOMAIN_PIPE(pipe);
3836 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003837 continue;
3838
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003839 for_each_plane_id_on_crtc(crtc, plane_id) {
3840 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003841
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003842 if (plane_id != PLANE_CURSOR)
3843 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3844 else
3845 val = I915_READ(CUR_BUF_CFG(pipe));
3846
3847 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3848 }
Imre Deak4d800032016-02-17 16:31:29 +02003849
3850 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003851 }
3852}
3853
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003854/*
3855 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3856 * The bspec defines downscale amount as:
3857 *
3858 * """
3859 * Horizontal down scale amount = maximum[1, Horizontal source size /
3860 * Horizontal destination size]
3861 * Vertical down scale amount = maximum[1, Vertical source size /
3862 * Vertical destination size]
3863 * Total down scale amount = Horizontal down scale amount *
3864 * Vertical down scale amount
3865 * """
3866 *
3867 * Return value is provided in 16.16 fixed point form to retain fractional part.
3868 * Caller should take care of dividing & rounding off the value.
3869 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303870static uint_fixed_16_16_t
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003871skl_plane_downscale_amount(const struct intel_crtc_state *cstate,
3872 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003873{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003874 struct intel_plane *plane = to_intel_plane(pstate->base.plane);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003875 uint32_t src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303876 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3877 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003878
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003879 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303880 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003881
3882 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003883 if (plane->id == PLANE_CURSOR) {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003884 /*
3885 * Cursors only support 0/180 degree rotation,
3886 * hence no need to account for rotation here.
3887 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303888 src_w = pstate->base.src_w >> 16;
3889 src_h = pstate->base.src_h >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003890 dst_w = pstate->base.crtc_w;
3891 dst_h = pstate->base.crtc_h;
3892 } else {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003893 /*
3894 * Src coordinates are already rotated by 270 degrees for
3895 * the 90/270 degree plane rotation cases (to match the
3896 * GTT mapping), hence no need to account for rotation here.
3897 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303898 src_w = drm_rect_width(&pstate->base.src) >> 16;
3899 src_h = drm_rect_height(&pstate->base.src) >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003900 dst_w = drm_rect_width(&pstate->base.dst);
3901 dst_h = drm_rect_height(&pstate->base.dst);
3902 }
3903
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303904 fp_w_ratio = div_fixed16(src_w, dst_w);
3905 fp_h_ratio = div_fixed16(src_h, dst_h);
3906 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3907 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003908
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303909 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003910}
3911
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303912static uint_fixed_16_16_t
3913skl_pipe_downscale_amount(const struct intel_crtc_state *crtc_state)
3914{
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303915 uint_fixed_16_16_t pipe_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303916
3917 if (!crtc_state->base.enable)
3918 return pipe_downscale;
3919
3920 if (crtc_state->pch_pfit.enabled) {
3921 uint32_t src_w, src_h, dst_w, dst_h;
3922 uint32_t pfit_size = crtc_state->pch_pfit.size;
3923 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3924 uint_fixed_16_16_t downscale_h, downscale_w;
3925
3926 src_w = crtc_state->pipe_src_w;
3927 src_h = crtc_state->pipe_src_h;
3928 dst_w = pfit_size >> 16;
3929 dst_h = pfit_size & 0xffff;
3930
3931 if (!dst_w || !dst_h)
3932 return pipe_downscale;
3933
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303934 fp_w_ratio = div_fixed16(src_w, dst_w);
3935 fp_h_ratio = div_fixed16(src_h, dst_h);
3936 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3937 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303938
3939 pipe_downscale = mul_fixed16(downscale_w, downscale_h);
3940 }
3941
3942 return pipe_downscale;
3943}
3944
3945int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
3946 struct intel_crtc_state *cstate)
3947{
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003948 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303949 struct drm_crtc_state *crtc_state = &cstate->base;
3950 struct drm_atomic_state *state = crtc_state->state;
3951 struct drm_plane *plane;
3952 const struct drm_plane_state *pstate;
3953 struct intel_plane_state *intel_pstate;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003954 int crtc_clock, dotclk;
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303955 uint32_t pipe_max_pixel_rate;
3956 uint_fixed_16_16_t pipe_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303957 uint_fixed_16_16_t max_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303958
3959 if (!cstate->base.enable)
3960 return 0;
3961
3962 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
3963 uint_fixed_16_16_t plane_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303964 uint_fixed_16_16_t fp_9_div_8 = div_fixed16(9, 8);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303965 int bpp;
3966
3967 if (!intel_wm_plane_visible(cstate,
3968 to_intel_plane_state(pstate)))
3969 continue;
3970
3971 if (WARN_ON(!pstate->fb))
3972 return -EINVAL;
3973
3974 intel_pstate = to_intel_plane_state(pstate);
3975 plane_downscale = skl_plane_downscale_amount(cstate,
3976 intel_pstate);
3977 bpp = pstate->fb->format->cpp[0] * 8;
3978 if (bpp == 64)
3979 plane_downscale = mul_fixed16(plane_downscale,
3980 fp_9_div_8);
3981
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303982 max_downscale = max_fixed16(plane_downscale, max_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303983 }
3984 pipe_downscale = skl_pipe_downscale_amount(cstate);
3985
3986 pipe_downscale = mul_fixed16(pipe_downscale, max_downscale);
3987
3988 crtc_clock = crtc_state->adjusted_mode.crtc_clock;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003989 dotclk = to_intel_atomic_state(state)->cdclk.logical.cdclk;
3990
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003991 if (IS_GEMINILAKE(dev_priv) || INTEL_GEN(dev_priv) >= 10)
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003992 dotclk *= 2;
3993
3994 pipe_max_pixel_rate = div_round_up_u32_fixed16(dotclk, pipe_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303995
3996 if (pipe_max_pixel_rate < crtc_clock) {
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003997 DRM_DEBUG_KMS("Max supported pixel clock with scaling exceeded\n");
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303998 return -EINVAL;
3999 }
4000
4001 return 0;
4002}
4003
Damien Lespiaub9cec072014-11-04 17:06:43 +00004004static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07004005skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
4006 const struct drm_plane_state *pstate,
4007 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004008{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004009 struct intel_plane *plane = to_intel_plane(pstate->plane);
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004010 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304011 uint32_t data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004012 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004013 struct drm_framebuffer *fb;
4014 u32 format;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304015 uint_fixed_16_16_t down_scale_amount;
Matt Ropera1de91e2016-05-12 07:05:57 -07004016
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004017 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004018 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004019
4020 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004021 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02004022
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004023 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004024 return 0;
4025 if (y && format != DRM_FORMAT_NV12)
4026 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004027
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004028 /*
4029 * Src coordinates are already rotated by 270 degrees for
4030 * the 90/270 degree plane rotation cases (to match the
4031 * GTT mapping), hence no need to account for rotation here.
4032 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004033 width = drm_rect_width(&intel_pstate->base.src) >> 16;
4034 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004035
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004036 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07004037 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004038 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004039 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004040 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004041 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004042 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004043 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004044 } else {
4045 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02004046 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004047 }
4048
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004049 down_scale_amount = skl_plane_downscale_amount(cstate, intel_pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004050
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304051 return mul_round_up_u32_fixed16(data_rate, down_scale_amount);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004052}
4053
4054/*
4055 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
4056 * a 8192x4096@32bpp framebuffer:
4057 * 3 * 4096 * 8192 * 4 < 2^32
4058 */
4059static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004060skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
4061 unsigned *plane_data_rate,
4062 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004063{
Matt Roper9c74d822016-05-12 07:05:58 -07004064 struct drm_crtc_state *cstate = &intel_cstate->base;
4065 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004066 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004067 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004068 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004069
4070 if (WARN_ON(!state))
4071 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004072
Matt Ropera1de91e2016-05-12 07:05:57 -07004073 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004074 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004075 enum plane_id plane_id = to_intel_plane(plane)->id;
4076 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07004077
Matt Ropera6d3460e2016-05-12 07:06:04 -07004078 /* packed/uv */
4079 rate = skl_plane_relative_data_rate(intel_cstate,
4080 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004081 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004082
4083 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004084
Matt Ropera6d3460e2016-05-12 07:06:04 -07004085 /* y-plane */
4086 rate = skl_plane_relative_data_rate(intel_cstate,
4087 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004088 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004089
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004090 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004091 }
4092
4093 return total_data_rate;
4094}
4095
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004096static uint16_t
4097skl_ddb_min_alloc(const struct drm_plane_state *pstate,
4098 const int y)
4099{
4100 struct drm_framebuffer *fb = pstate->fb;
4101 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
4102 uint32_t src_w, src_h;
4103 uint32_t min_scanlines = 8;
4104 uint8_t plane_bpp;
4105
4106 if (WARN_ON(!fb))
4107 return 0;
4108
4109 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004110 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004111 return 0;
4112
4113 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02004114 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004115 fb->modifier != I915_FORMAT_MOD_Yf_TILED &&
4116 fb->modifier != I915_FORMAT_MOD_Y_TILED_CCS &&
4117 fb->modifier != I915_FORMAT_MOD_Yf_TILED_CCS)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004118 return 8;
4119
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004120 /*
4121 * Src coordinates are already rotated by 270 degrees for
4122 * the 90/270 degree plane rotation cases (to match the
4123 * GTT mapping), hence no need to account for rotation here.
4124 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004125 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
4126 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004127
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004128 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004129 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004130 src_w /= 2;
4131 src_h /= 2;
4132 }
4133
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004134 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02004135 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004136 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02004137 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004138
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03004139 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004140 switch (plane_bpp) {
4141 case 1:
4142 min_scanlines = 32;
4143 break;
4144 case 2:
4145 min_scanlines = 16;
4146 break;
4147 case 4:
4148 min_scanlines = 8;
4149 break;
4150 case 8:
4151 min_scanlines = 4;
4152 break;
4153 default:
4154 WARN(1, "Unsupported pixel depth %u for rotation",
4155 plane_bpp);
4156 min_scanlines = 32;
4157 }
4158 }
4159
4160 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
4161}
4162
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004163static void
4164skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
4165 uint16_t *minimum, uint16_t *y_minimum)
4166{
4167 const struct drm_plane_state *pstate;
4168 struct drm_plane *plane;
4169
4170 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004171 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004172
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004173 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004174 continue;
4175
4176 if (!pstate->visible)
4177 continue;
4178
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004179 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
4180 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004181 }
4182
4183 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
4184}
4185
Matt Roperc107acf2016-05-12 07:06:01 -07004186static int
Matt Roper024c9042015-09-24 15:53:11 -07004187skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00004188 struct skl_ddb_allocation *ddb /* out */)
4189{
Matt Roperc107acf2016-05-12 07:06:01 -07004190 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07004191 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004192 struct drm_device *dev = crtc->dev;
4193 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4194 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04004195 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004196 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02004197 uint16_t minimum[I915_MAX_PLANES] = {};
4198 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00004199 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004200 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004201 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004202 unsigned plane_data_rate[I915_MAX_PLANES] = {};
4203 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304204 uint16_t total_min_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004205
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004206 /* Clear the partitioning for disabled planes. */
4207 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
4208 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
4209
Matt Ropera6d3460e2016-05-12 07:06:04 -07004210 if (WARN_ON(!state))
4211 return 0;
4212
Matt Roperc107acf2016-05-12 07:06:01 -07004213 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04004214 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004215 return 0;
4216 }
4217
Matt Ropera6d3460e2016-05-12 07:06:04 -07004218 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004219 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304220 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004221 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004222
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004223 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004224
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004225 /*
4226 * 1. Allocate the mininum required blocks for each active plane
4227 * and allocate the cursor, it doesn't require extra allocation
4228 * proportional to the data rate.
4229 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00004230
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004231 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304232 total_min_blocks += minimum[plane_id];
4233 total_min_blocks += y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00004234 }
4235
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304236 if (total_min_blocks > alloc_size) {
4237 DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations");
4238 DRM_DEBUG_KMS("minimum required %d/%d\n", total_min_blocks,
4239 alloc_size);
4240 return -EINVAL;
4241 }
4242
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004243 alloc_size -= total_min_blocks;
4244 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004245 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
4246
Damien Lespiaub9cec072014-11-04 17:06:43 +00004247 /*
Damien Lespiau80958152015-02-09 13:35:10 +00004248 * 2. Distribute the remaining space in proportion to the amount of
4249 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004250 *
4251 * FIXME: we may not allocate every single block here.
4252 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004253 total_data_rate = skl_get_total_relative_data_rate(cstate,
4254 plane_data_rate,
4255 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07004256 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004257 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004258
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004259 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004260 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004261 unsigned int data_rate, y_data_rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004262 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004263
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004264 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004265 continue;
4266
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004267 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00004268
4269 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004270 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00004271 * promote the expression to 64 bits to avoid overflowing, the
4272 * result is < available as data_rate / total_data_rate < 1
4273 */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004274 plane_blocks = minimum[plane_id];
4275 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
4276 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004277
Matt Roperc107acf2016-05-12 07:06:01 -07004278 /* Leave disabled planes at (0,0) */
4279 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004280 ddb->plane[pipe][plane_id].start = start;
4281 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004282 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00004283
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004284 start += plane_blocks;
4285
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004286 /*
4287 * allocation for y_plane part of planar format:
4288 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004289 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004290
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004291 y_plane_blocks = y_minimum[plane_id];
4292 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
4293 total_data_rate);
4294
Matt Roperc107acf2016-05-12 07:06:01 -07004295 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004296 ddb->y_plane[pipe][plane_id].start = start;
4297 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004298 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004299
4300 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004301 }
4302
Matt Roperc107acf2016-05-12 07:06:01 -07004303 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004304}
4305
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004306/*
4307 * 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 +02004308 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004309 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4310 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4311*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004312static uint_fixed_16_16_t
4313skl_wm_method1(const struct drm_i915_private *dev_priv, uint32_t pixel_rate,
4314 uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004315{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304316 uint32_t wm_intermediate_val;
4317 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004318
4319 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304320 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004321
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304322 wm_intermediate_val = latency * pixel_rate * cpp;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304323 ret = div_fixed16(wm_intermediate_val, 1000 * 512);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004324
4325 if (INTEL_GEN(dev_priv) >= 10)
4326 ret = add_fixed16_u32(ret, 1);
4327
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004328 return ret;
4329}
4330
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304331static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
4332 uint32_t pipe_htotal,
4333 uint32_t latency,
4334 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004335{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004336 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304337 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004338
4339 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304340 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004341
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004342 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304343 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4344 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304345 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004346 return ret;
4347}
4348
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304349static uint_fixed_16_16_t
4350intel_get_linetime_us(struct intel_crtc_state *cstate)
4351{
4352 uint32_t pixel_rate;
4353 uint32_t crtc_htotal;
4354 uint_fixed_16_16_t linetime_us;
4355
4356 if (!cstate->base.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304357 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304358
4359 pixel_rate = cstate->pixel_rate;
4360
4361 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304362 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304363
4364 crtc_htotal = cstate->base.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304365 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304366
4367 return linetime_us;
4368}
4369
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304370static uint32_t
4371skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
4372 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004373{
4374 uint64_t adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304375 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004376
4377 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004378 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004379 return 0;
4380
4381 /*
4382 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4383 * with additional adjustments for plane-specific scaling.
4384 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02004385 adjusted_pixel_rate = cstate->pixel_rate;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004386 downscale_amount = skl_plane_downscale_amount(cstate, pstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004387
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304388 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4389 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004390}
4391
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304392static int
4393skl_compute_plane_wm_params(const struct drm_i915_private *dev_priv,
4394 struct intel_crtc_state *cstate,
4395 const struct intel_plane_state *intel_pstate,
4396 struct skl_wm_params *wp)
4397{
4398 struct intel_plane *plane = to_intel_plane(intel_pstate->base.plane);
4399 const struct drm_plane_state *pstate = &intel_pstate->base;
4400 const struct drm_framebuffer *fb = pstate->fb;
4401 uint32_t interm_pbpl;
4402 struct intel_atomic_state *state =
4403 to_intel_atomic_state(cstate->base.state);
4404 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
4405
4406 if (!intel_wm_plane_visible(cstate, intel_pstate))
4407 return 0;
4408
4409 wp->y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
4410 fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
4411 fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4412 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4413 wp->x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
4414 wp->rc_surface = fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4415 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4416
4417 if (plane->id == PLANE_CURSOR) {
4418 wp->width = intel_pstate->base.crtc_w;
4419 } else {
4420 /*
4421 * Src coordinates are already rotated by 270 degrees for
4422 * the 90/270 degree plane rotation cases (to match the
4423 * GTT mapping), hence no need to account for rotation here.
4424 */
4425 wp->width = drm_rect_width(&intel_pstate->base.src) >> 16;
4426 }
4427
4428 wp->cpp = (fb->format->format == DRM_FORMAT_NV12) ? fb->format->cpp[1] :
4429 fb->format->cpp[0];
4430 wp->plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate,
4431 intel_pstate);
4432
4433 if (drm_rotation_90_or_270(pstate->rotation)) {
4434
4435 switch (wp->cpp) {
4436 case 1:
4437 wp->y_min_scanlines = 16;
4438 break;
4439 case 2:
4440 wp->y_min_scanlines = 8;
4441 break;
4442 case 4:
4443 wp->y_min_scanlines = 4;
4444 break;
4445 default:
4446 MISSING_CASE(wp->cpp);
4447 return -EINVAL;
4448 }
4449 } else {
4450 wp->y_min_scanlines = 4;
4451 }
4452
4453 if (apply_memory_bw_wa)
4454 wp->y_min_scanlines *= 2;
4455
4456 wp->plane_bytes_per_line = wp->width * wp->cpp;
4457 if (wp->y_tiled) {
4458 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
4459 wp->y_min_scanlines, 512);
4460
4461 if (INTEL_GEN(dev_priv) >= 10)
4462 interm_pbpl++;
4463
4464 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4465 wp->y_min_scanlines);
4466 } else if (wp->x_tiled && IS_GEN9(dev_priv)) {
4467 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512);
4468 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4469 } else {
4470 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512) + 1;
4471 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4472 }
4473
4474 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4475 wp->plane_blocks_per_line);
4476 wp->linetime_us = fixed16_to_u32_round_up(
4477 intel_get_linetime_us(cstate));
4478
4479 return 0;
4480}
4481
Matt Roper55994c22016-05-12 07:06:08 -07004482static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
4483 struct intel_crtc_state *cstate,
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304484 const struct intel_plane_state *intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004485 uint16_t ddb_allocation,
Matt Roper55994c22016-05-12 07:06:08 -07004486 int level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304487 const struct skl_wm_params *wp,
Matt Roper55994c22016-05-12 07:06:08 -07004488 uint16_t *out_blocks, /* out */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004489 uint8_t *out_lines, /* out */
4490 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004491{
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304492 const struct drm_plane_state *pstate = &intel_pstate->base;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004493 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304494 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304495 uint_fixed_16_16_t selected_result;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004496 uint32_t res_blocks, res_lines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004497 struct intel_atomic_state *state =
4498 to_intel_atomic_state(cstate->base.state);
4499 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004500
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004501 if (latency == 0 ||
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004502 !intel_wm_plane_visible(cstate, intel_pstate)) {
4503 *enabled = false;
Matt Roper55994c22016-05-12 07:06:08 -07004504 return 0;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004505 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004506
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004507 /* Display WA #1141: kbl,cfl */
Kumar, Maheshd86ba622017-08-17 19:15:26 +05304508 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
4509 IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) &&
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004510 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304511 latency += 4;
4512
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304513 if (apply_memory_bw_wa && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004514 latency += 15;
4515
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304516 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
4517 wp->cpp, latency);
4518 method2 = skl_wm_method2(wp->plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07004519 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004520 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304521 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004522
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304523 if (wp->y_tiled) {
4524 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004525 } else {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304526 if ((wp->cpp * cstate->base.adjusted_mode.crtc_htotal /
4527 512 < 1) && (wp->plane_bytes_per_line / 512 < 1))
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004528 selected_result = method2;
Maarten Lankhorst54d20ed2017-07-17 14:02:30 +02004529 else if (ddb_allocation >=
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304530 fixed16_to_u32_round_up(wp->plane_blocks_per_line))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304531 selected_result = min_fixed16(method1, method2);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304532 else if (latency >= wp->linetime_us)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304533 selected_result = min_fixed16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004534 else
4535 selected_result = method1;
4536 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004537
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304538 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05304539 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304540 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00004541
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004542 /* Display WA #1125: skl,bxt,kbl,glk */
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304543 if (level == 0 && wp->rc_surface)
4544 res_blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004545
4546 /* Display WA #1126: skl,bxt,kbl,glk */
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004547 if (level >= 1 && level <= 7) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304548 if (wp->y_tiled) {
4549 res_blocks += fixed16_to_u32_round_up(
4550 wp->y_tile_minimum);
4551 res_lines += wp->y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004552 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004553 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004554 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004555 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004556
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004557 if (res_blocks >= ddb_allocation || res_lines > 31) {
4558 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07004559
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004560 /*
4561 * If there are no valid level 0 watermarks, then we can't
4562 * support this display configuration.
4563 */
4564 if (level) {
4565 return 0;
4566 } else {
4567 struct drm_plane *plane = pstate->plane;
4568
4569 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
4570 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
4571 plane->base.id, plane->name,
4572 res_blocks, ddb_allocation, res_lines);
4573 return -EINVAL;
4574 }
Matt Roper55994c22016-05-12 07:06:08 -07004575 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00004576
4577 *out_blocks = res_blocks;
4578 *out_lines = res_lines;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004579 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004580
Matt Roper55994c22016-05-12 07:06:08 -07004581 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004582}
4583
Matt Roperf4a96752016-05-12 07:06:06 -07004584static int
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304585skl_compute_wm_levels(const struct drm_i915_private *dev_priv,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004586 struct skl_ddb_allocation *ddb,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304587 struct intel_crtc_state *cstate,
4588 const struct intel_plane_state *intel_pstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304589 const struct skl_wm_params *wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304590 struct skl_plane_wm *wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004591{
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004592 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4593 struct drm_plane *plane = intel_pstate->base.plane;
4594 struct intel_plane *intel_plane = to_intel_plane(plane);
4595 uint16_t ddb_blocks;
4596 enum pipe pipe = intel_crtc->pipe;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304597 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07004598 int ret;
Lyudea62163e2016-10-04 14:28:20 -04004599
Kumar, Mahesh7b751192017-05-17 17:28:24 +05304600 if (WARN_ON(!intel_pstate->base.fb))
4601 return -EINVAL;
Matt Roper024c9042015-09-24 15:53:11 -07004602
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004603 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
4604
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304605 for (level = 0; level <= max_level; level++) {
4606 struct skl_wm_level *result = &wm->wm[level];
4607
4608 ret = skl_compute_plane_wm(dev_priv,
4609 cstate,
4610 intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004611 ddb_blocks,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304612 level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304613 wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304614 &result->plane_res_b,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004615 &result->plane_res_l,
4616 &result->plane_en);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304617 if (ret)
4618 return ret;
4619 }
Matt Roperf4a96752016-05-12 07:06:06 -07004620
4621 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004622}
4623
Damien Lespiau407b50f2014-11-04 17:06:57 +00004624static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07004625skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004626{
Mahesh Kumara3a89862016-12-01 21:19:34 +05304627 struct drm_atomic_state *state = cstate->base.state;
4628 struct drm_i915_private *dev_priv = to_i915(state->dev);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304629 uint_fixed_16_16_t linetime_us;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304630 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03004631
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304632 linetime_us = intel_get_linetime_us(cstate);
4633
4634 if (is_fixed16_zero(linetime_us))
Damien Lespiau407b50f2014-11-04 17:06:57 +00004635 return 0;
4636
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304637 linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us));
Mahesh Kumara3a89862016-12-01 21:19:34 +05304638
Kumar, Mahesh446e8502017-08-17 19:15:25 +05304639 /* Display WA #1135: bxt:ALL GLK:ALL */
4640 if ((IS_BROXTON(dev_priv) || IS_GEMINILAKE(dev_priv)) &&
4641 dev_priv->ipc_enabled)
4642 linetime_wm /= 2;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304643
4644 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004645}
4646
Matt Roper024c9042015-09-24 15:53:11 -07004647static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Kumar, Maheshca476672017-08-17 19:15:24 +05304648 struct skl_wm_params *wp,
4649 struct skl_wm_level *wm_l0,
4650 uint16_t ddb_allocation,
Damien Lespiau9414f562014-11-04 17:06:58 +00004651 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004652{
Kumar, Maheshca476672017-08-17 19:15:24 +05304653 struct drm_device *dev = cstate->base.crtc->dev;
4654 const struct drm_i915_private *dev_priv = to_i915(dev);
4655 uint16_t trans_min, trans_y_tile_min;
4656 const uint16_t trans_amount = 10; /* This is configurable amount */
4657 uint16_t trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00004658
Kumar, Maheshca476672017-08-17 19:15:24 +05304659 if (!cstate->base.active)
4660 goto exit;
4661
4662 /* Transition WM are not recommended by HW team for GEN9 */
4663 if (INTEL_GEN(dev_priv) <= 9)
4664 goto exit;
4665
4666 /* Transition WM don't make any sense if ipc is disabled */
4667 if (!dev_priv->ipc_enabled)
4668 goto exit;
4669
4670 if (INTEL_GEN(dev_priv) >= 10)
4671 trans_min = 4;
4672
4673 trans_offset_b = trans_min + trans_amount;
4674
4675 if (wp->y_tiled) {
4676 trans_y_tile_min = (uint16_t) mul_round_up_u32_fixed16(2,
4677 wp->y_tile_minimum);
4678 res_blocks = max(wm_l0->plane_res_b, trans_y_tile_min) +
4679 trans_offset_b;
4680 } else {
4681 res_blocks = wm_l0->plane_res_b + trans_offset_b;
4682
4683 /* WA BUG:1938466 add one block for non y-tile planes */
4684 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
4685 res_blocks += 1;
4686
4687 }
4688
4689 res_blocks += 1;
4690
4691 if (res_blocks < ddb_allocation) {
4692 trans_wm->plane_res_b = res_blocks;
4693 trans_wm->plane_en = true;
4694 return;
4695 }
4696
4697exit:
Lyudea62163e2016-10-04 14:28:20 -04004698 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004699}
4700
Matt Roper55994c22016-05-12 07:06:08 -07004701static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
4702 struct skl_ddb_allocation *ddb,
4703 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004704{
Matt Roper024c9042015-09-24 15:53:11 -07004705 struct drm_device *dev = cstate->base.crtc->dev;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304706 struct drm_crtc_state *crtc_state = &cstate->base;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004707 const struct drm_i915_private *dev_priv = to_i915(dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304708 struct drm_plane *plane;
4709 const struct drm_plane_state *pstate;
Lyudea62163e2016-10-04 14:28:20 -04004710 struct skl_plane_wm *wm;
Matt Roper55994c22016-05-12 07:06:08 -07004711 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004712
Lyudea62163e2016-10-04 14:28:20 -04004713 /*
4714 * We'll only calculate watermarks for planes that are actually
4715 * enabled, so make sure all other planes are set as disabled.
4716 */
4717 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
4718
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304719 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
4720 const struct intel_plane_state *intel_pstate =
4721 to_intel_plane_state(pstate);
4722 enum plane_id plane_id = to_intel_plane(plane)->id;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304723 struct skl_wm_params wm_params;
Kumar, Maheshca476672017-08-17 19:15:24 +05304724 enum pipe pipe = to_intel_crtc(cstate->base.crtc)->pipe;
4725 uint16_t ddb_blocks;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304726
4727 wm = &pipe_wm->planes[plane_id];
Kumar, Maheshca476672017-08-17 19:15:24 +05304728 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][plane_id]);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304729 memset(&wm_params, 0, sizeof(struct skl_wm_params));
4730
4731 ret = skl_compute_plane_wm_params(dev_priv, cstate,
4732 intel_pstate, &wm_params);
4733 if (ret)
4734 return ret;
Lyudea62163e2016-10-04 14:28:20 -04004735
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004736 ret = skl_compute_wm_levels(dev_priv, ddb, cstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304737 intel_pstate, &wm_params, wm);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304738 if (ret)
4739 return ret;
Kumar, Maheshca476672017-08-17 19:15:24 +05304740 skl_compute_transition_wm(cstate, &wm_params, &wm->wm[0],
4741 ddb_blocks, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004742 }
Matt Roper024c9042015-09-24 15:53:11 -07004743 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004744
Matt Roper55994c22016-05-12 07:06:08 -07004745 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004746}
4747
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004748static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
4749 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00004750 const struct skl_ddb_entry *entry)
4751{
4752 if (entry->end)
4753 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
4754 else
4755 I915_WRITE(reg, 0);
4756}
4757
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004758static void skl_write_wm_level(struct drm_i915_private *dev_priv,
4759 i915_reg_t reg,
4760 const struct skl_wm_level *level)
4761{
4762 uint32_t val = 0;
4763
4764 if (level->plane_en) {
4765 val |= PLANE_WM_EN;
4766 val |= level->plane_res_b;
4767 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
4768 }
4769
4770 I915_WRITE(reg, val);
4771}
4772
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004773static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
4774 const struct skl_plane_wm *wm,
4775 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004776 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04004777{
4778 struct drm_crtc *crtc = &intel_crtc->base;
4779 struct drm_device *dev = crtc->dev;
4780 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004781 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004782 enum pipe pipe = intel_crtc->pipe;
4783
4784 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004785 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004786 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004787 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004788 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004789 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004790
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004791 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4792 &ddb->plane[pipe][plane_id]);
4793 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4794 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004795}
4796
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004797static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4798 const struct skl_plane_wm *wm,
4799 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004800{
4801 struct drm_crtc *crtc = &intel_crtc->base;
4802 struct drm_device *dev = crtc->dev;
4803 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004804 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004805 enum pipe pipe = intel_crtc->pipe;
4806
4807 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004808 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4809 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004810 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004811 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004812
4813 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004814 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004815}
4816
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004817bool skl_wm_level_equals(const struct skl_wm_level *l1,
4818 const struct skl_wm_level *l2)
4819{
4820 if (l1->plane_en != l2->plane_en)
4821 return false;
4822
4823 /* If both planes aren't enabled, the rest shouldn't matter */
4824 if (!l1->plane_en)
4825 return true;
4826
4827 return (l1->plane_res_l == l2->plane_res_l &&
4828 l1->plane_res_b == l2->plane_res_b);
4829}
4830
Lyude27082492016-08-24 07:48:10 +02004831static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4832 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004833{
Lyude27082492016-08-24 07:48:10 +02004834 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004835}
4836
Mika Kahola2b685042017-10-10 13:17:03 +03004837bool skl_ddb_allocation_overlaps(struct drm_i915_private *dev_priv,
4838 const struct skl_ddb_entry **entries,
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004839 const struct skl_ddb_entry *ddb,
4840 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004841{
Mika Kahola2b685042017-10-10 13:17:03 +03004842 enum pipe pipe;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004843
Mika Kahola2b685042017-10-10 13:17:03 +03004844 for_each_pipe(dev_priv, pipe) {
4845 if (pipe != ignore && entries[pipe] &&
4846 skl_ddb_entries_overlap(ddb, entries[pipe]))
Lyude27082492016-08-24 07:48:10 +02004847 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03004848 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004849
Lyude27082492016-08-24 07:48:10 +02004850 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004851}
4852
Matt Roper55994c22016-05-12 07:06:08 -07004853static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004854 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004855 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004856 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004857 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004858{
Matt Roperf4a96752016-05-12 07:06:06 -07004859 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004860 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004861
Matt Roper55994c22016-05-12 07:06:08 -07004862 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4863 if (ret)
4864 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004865
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004866 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004867 *changed = false;
4868 else
4869 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004870
Matt Roper55994c22016-05-12 07:06:08 -07004871 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004872}
4873
Matt Roper9b613022016-06-27 16:42:44 -07004874static uint32_t
4875pipes_modified(struct drm_atomic_state *state)
4876{
4877 struct drm_crtc *crtc;
4878 struct drm_crtc_state *cstate;
4879 uint32_t i, ret = 0;
4880
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01004881 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper9b613022016-06-27 16:42:44 -07004882 ret |= drm_crtc_mask(crtc);
4883
4884 return ret;
4885}
4886
Jani Nikulabb7791b2016-10-04 12:29:17 +03004887static int
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004888skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4889{
4890 struct drm_atomic_state *state = cstate->base.state;
4891 struct drm_device *dev = state->dev;
4892 struct drm_crtc *crtc = cstate->base.crtc;
4893 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4894 struct drm_i915_private *dev_priv = to_i915(dev);
4895 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4896 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4897 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4898 struct drm_plane_state *plane_state;
4899 struct drm_plane *plane;
4900 enum pipe pipe = intel_crtc->pipe;
4901
4902 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4903
4904 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
4905 enum plane_id plane_id = to_intel_plane(plane)->id;
4906
4907 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4908 &new_ddb->plane[pipe][plane_id]) &&
4909 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4910 &new_ddb->y_plane[pipe][plane_id]))
4911 continue;
4912
4913 plane_state = drm_atomic_get_plane_state(state, plane);
4914 if (IS_ERR(plane_state))
4915 return PTR_ERR(plane_state);
4916 }
4917
4918 return 0;
4919}
4920
4921static int
4922skl_compute_ddb(struct drm_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07004923{
4924 struct drm_device *dev = state->dev;
4925 struct drm_i915_private *dev_priv = to_i915(dev);
4926 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4927 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004928 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004929 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004930 int ret;
4931
4932 /*
4933 * If this is our first atomic update following hardware readout,
4934 * we can't trust the DDB that the BIOS programmed for us. Let's
4935 * pretend that all pipes switched active status so that we'll
4936 * ensure a full DDB recompute.
4937 */
Matt Roper1b54a882016-06-17 13:42:18 -07004938 if (dev_priv->wm.distrust_bios_wm) {
4939 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4940 state->acquire_ctx);
4941 if (ret)
4942 return ret;
4943
Matt Roper98d39492016-05-12 07:06:03 -07004944 intel_state->active_pipe_changes = ~0;
4945
Matt Roper1b54a882016-06-17 13:42:18 -07004946 /*
4947 * We usually only initialize intel_state->active_crtcs if we
4948 * we're doing a modeset; make sure this field is always
4949 * initialized during the sanitization process that happens
4950 * on the first commit too.
4951 */
4952 if (!intel_state->modeset)
4953 intel_state->active_crtcs = dev_priv->active_crtcs;
4954 }
4955
Matt Roper98d39492016-05-12 07:06:03 -07004956 /*
4957 * If the modeset changes which CRTC's are active, we need to
4958 * recompute the DDB allocation for *all* active pipes, even
4959 * those that weren't otherwise being modified in any way by this
4960 * atomic commit. Due to the shrinking of the per-pipe allocations
4961 * when new active CRTC's are added, it's possible for a pipe that
4962 * we were already using and aren't changing at all here to suddenly
4963 * become invalid if its DDB needs exceeds its new allocation.
4964 *
4965 * Note that if we wind up doing a full DDB recompute, we can't let
4966 * any other display updates race with this transaction, so we need
4967 * to grab the lock on *all* CRTC's.
4968 */
Matt Roper734fa012016-05-12 15:11:40 -07004969 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004970 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004971 intel_state->wm_results.dirty_pipes = ~0;
4972 }
Matt Roper98d39492016-05-12 07:06:03 -07004973
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004974 /*
4975 * We're not recomputing for the pipes not included in the commit, so
4976 * make sure we start with the current state.
4977 */
4978 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4979
Matt Roper98d39492016-05-12 07:06:03 -07004980 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4981 struct intel_crtc_state *cstate;
4982
4983 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4984 if (IS_ERR(cstate))
4985 return PTR_ERR(cstate);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004986
4987 ret = skl_allocate_pipe_ddb(cstate, ddb);
4988 if (ret)
4989 return ret;
4990
4991 ret = skl_ddb_add_affected_planes(cstate);
4992 if (ret)
4993 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004994 }
4995
4996 return 0;
4997}
4998
Matt Roper2722efb2016-08-17 15:55:55 -04004999static void
5000skl_copy_wm_for_pipe(struct skl_wm_values *dst,
5001 struct skl_wm_values *src,
5002 enum pipe pipe)
5003{
Matt Roper2722efb2016-08-17 15:55:55 -04005004 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
5005 sizeof(dst->ddb.y_plane[pipe]));
5006 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
5007 sizeof(dst->ddb.plane[pipe]));
5008}
5009
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005010static void
5011skl_print_wm_changes(const struct drm_atomic_state *state)
5012{
5013 const struct drm_device *dev = state->dev;
5014 const struct drm_i915_private *dev_priv = to_i915(dev);
5015 const struct intel_atomic_state *intel_state =
5016 to_intel_atomic_state(state);
5017 const struct drm_crtc *crtc;
5018 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005019 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005020 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
5021 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005022 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005023
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005024 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01005025 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5026 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005027
Maarten Lankhorst75704982016-11-01 12:04:10 +01005028 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005029 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005030 const struct skl_ddb_entry *old, *new;
5031
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005032 old = &old_ddb->plane[pipe][plane_id];
5033 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005034
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005035 if (skl_ddb_entry_equal(old, new))
5036 continue;
5037
Maarten Lankhorst75704982016-11-01 12:04:10 +01005038 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
5039 intel_plane->base.base.id,
5040 intel_plane->base.name,
5041 old->start, old->end,
5042 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005043 }
5044 }
5045}
5046
Matt Roper98d39492016-05-12 07:06:03 -07005047static int
5048skl_compute_wm(struct drm_atomic_state *state)
5049{
5050 struct drm_crtc *crtc;
5051 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07005052 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
5053 struct skl_wm_values *results = &intel_state->wm_results;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005054 struct drm_device *dev = state->dev;
Matt Roper734fa012016-05-12 15:11:40 -07005055 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07005056 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07005057 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005058
5059 /*
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005060 * When we distrust bios wm we always need to recompute to set the
5061 * expected DDB allocations for each CRTC.
5062 */
5063 if (to_i915(dev)->wm.distrust_bios_wm)
5064 changed = true;
5065
5066 /*
Matt Roper98d39492016-05-12 07:06:03 -07005067 * If this transaction isn't actually touching any CRTC's, don't
5068 * bother with watermark calculation. Note that if we pass this
5069 * test, we're guaranteed to hold at least one CRTC state mutex,
5070 * which means we can safely use values like dev_priv->active_crtcs
5071 * since any racing commits that want to update them would need to
5072 * hold _all_ CRTC state mutexes.
5073 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005074 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper98d39492016-05-12 07:06:03 -07005075 changed = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005076
Matt Roper98d39492016-05-12 07:06:03 -07005077 if (!changed)
5078 return 0;
5079
Matt Roper734fa012016-05-12 15:11:40 -07005080 /* Clear all dirty flags */
5081 results->dirty_pipes = 0;
5082
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005083 ret = skl_compute_ddb(state);
Matt Roper98d39492016-05-12 07:06:03 -07005084 if (ret)
5085 return ret;
5086
Matt Roper734fa012016-05-12 15:11:40 -07005087 /*
5088 * Calculate WM's for all pipes that are part of this transaction.
5089 * Note that the DDB allocation above may have added more CRTC's that
5090 * weren't otherwise being modified (and set bits in dirty_pipes) if
5091 * pipe allocations had to change.
5092 *
5093 * FIXME: Now that we're doing this in the atomic check phase, we
5094 * should allow skl_update_pipe_wm() to return failure in cases where
5095 * no suitable watermark values can be found.
5096 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005097 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07005098 struct intel_crtc_state *intel_cstate =
5099 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005100 const struct skl_pipe_wm *old_pipe_wm =
5101 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07005102
5103 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005104 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
5105 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07005106 if (ret)
5107 return ret;
5108
5109 if (changed)
5110 results->dirty_pipes |= drm_crtc_mask(crtc);
5111
5112 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
5113 /* This pipe's WM's did not change */
5114 continue;
5115
5116 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07005117 }
5118
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005119 skl_print_wm_changes(state);
5120
Matt Roper98d39492016-05-12 07:06:03 -07005121 return 0;
5122}
5123
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005124static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
5125 struct intel_crtc_state *cstate)
5126{
5127 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
5128 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5129 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005130 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005131 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005132 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005133
5134 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
5135 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005136
5137 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005138
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005139 for_each_plane_id_on_crtc(crtc, plane_id) {
5140 if (plane_id != PLANE_CURSOR)
5141 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
5142 ddb, plane_id);
5143 else
5144 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
5145 ddb);
5146 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005147}
5148
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005149static void skl_initial_wm(struct intel_atomic_state *state,
5150 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005151{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005152 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02005153 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005154 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005155 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04005156 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02005157 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07005158
Ville Syrjälä432081b2016-10-31 22:37:03 +02005159 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005160 return;
5161
Matt Roper734fa012016-05-12 15:11:40 -07005162 mutex_lock(&dev_priv->wm.wm_mutex);
5163
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005164 if (cstate->base.active_changed)
5165 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02005166
5167 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07005168
5169 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005170}
5171
Ville Syrjäläd8905652016-01-14 14:53:35 +02005172static void ilk_compute_wm_config(struct drm_device *dev,
5173 struct intel_wm_config *config)
5174{
5175 struct intel_crtc *crtc;
5176
5177 /* Compute the currently _active_ config */
5178 for_each_intel_crtc(dev, crtc) {
5179 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5180
5181 if (!wm->pipe_enabled)
5182 continue;
5183
5184 config->sprites_enabled |= wm->sprites_enabled;
5185 config->sprites_scaled |= wm->sprites_scaled;
5186 config->num_pipes_active++;
5187 }
5188}
5189
Matt Ropered4a6a72016-02-23 17:20:13 -08005190static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005191{
Chris Wilson91c8a322016-07-05 10:40:23 +01005192 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005193 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005194 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005195 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005196 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005197 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005198
Ville Syrjäläd8905652016-01-14 14:53:35 +02005199 ilk_compute_wm_config(dev, &config);
5200
5201 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
5202 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005203
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005204 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005205 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005206 config.num_pipes_active == 1 && config.sprites_enabled) {
5207 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
5208 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005209
Imre Deak820c1982013-12-17 14:46:36 +02005210 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005211 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005212 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005213 }
5214
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005215 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005216 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005217
Imre Deak820c1982013-12-17 14:46:36 +02005218 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005219
Imre Deak820c1982013-12-17 14:46:36 +02005220 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005221}
5222
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005223static void ilk_initial_watermarks(struct intel_atomic_state *state,
5224 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005225{
Matt Ropered4a6a72016-02-23 17:20:13 -08005226 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5227 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005228
Matt Ropered4a6a72016-02-23 17:20:13 -08005229 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07005230 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005231 ilk_program_watermarks(dev_priv);
5232 mutex_unlock(&dev_priv->wm.wm_mutex);
5233}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005234
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005235static void ilk_optimize_watermarks(struct intel_atomic_state *state,
5236 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08005237{
5238 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5239 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
5240
5241 mutex_lock(&dev_priv->wm.wm_mutex);
5242 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07005243 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08005244 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005245 }
Matt Ropered4a6a72016-02-23 17:20:13 -08005246 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005247}
5248
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005249static inline void skl_wm_level_from_reg_val(uint32_t val,
5250 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005251{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005252 level->plane_en = val & PLANE_WM_EN;
5253 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5254 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5255 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005256}
5257
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005258void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
5259 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005260{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005261 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00005262 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00005263 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005264 int level, max_level;
5265 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005266 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005267
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005268 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005269
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005270 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
5271 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005272
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005273 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005274 if (plane_id != PLANE_CURSOR)
5275 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005276 else
5277 val = I915_READ(CUR_WM(pipe, level));
5278
5279 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5280 }
5281
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005282 if (plane_id != PLANE_CURSOR)
5283 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005284 else
5285 val = I915_READ(CUR_WM_TRANS(pipe));
5286
5287 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5288 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005289
Matt Roper3ef00282015-03-09 10:19:24 -07005290 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005291 return;
5292
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005293 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00005294}
5295
5296void skl_wm_get_hw_state(struct drm_device *dev)
5297{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005298 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005299 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00005300 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00005301 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005302 struct intel_crtc *intel_crtc;
5303 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00005304
Damien Lespiaua269c582014-11-04 17:06:49 +00005305 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005306 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5307 intel_crtc = to_intel_crtc(crtc);
5308 cstate = to_intel_crtc_state(crtc->state);
5309
5310 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
5311
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005312 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005313 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005314 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005315
Matt Roper279e99d2016-05-12 07:06:02 -07005316 if (dev_priv->active_crtcs) {
5317 /* Fully recompute DDB on first atomic commit */
5318 dev_priv->wm.distrust_bios_wm = true;
5319 } else {
5320 /* Easy/common case; just sanitize DDB now if everything off */
5321 memset(ddb, 0, sizeof(*ddb));
5322 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005323}
5324
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005325static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
5326{
5327 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005328 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005329 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005330 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07005331 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07005332 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005333 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005334 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005335 [PIPE_A] = WM0_PIPEA_ILK,
5336 [PIPE_B] = WM0_PIPEB_ILK,
5337 [PIPE_C] = WM0_PIPEC_IVB,
5338 };
5339
5340 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005341 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02005342 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005343
Ville Syrjälä15606532016-05-13 17:55:17 +03005344 memset(active, 0, sizeof(*active));
5345
Matt Roper3ef00282015-03-09 10:19:24 -07005346 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005347
5348 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005349 u32 tmp = hw->wm_pipe[pipe];
5350
5351 /*
5352 * For active pipes LP0 watermark is marked as
5353 * enabled, and LP1+ watermaks as disabled since
5354 * we can't really reverse compute them in case
5355 * multiple pipes are active.
5356 */
5357 active->wm[0].enable = true;
5358 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5359 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5360 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
5361 active->linetime = hw->wm_linetime[pipe];
5362 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005363 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005364
5365 /*
5366 * For inactive pipes, all watermark levels
5367 * should be marked as enabled but zeroed,
5368 * which is what we'd compute them to.
5369 */
5370 for (level = 0; level <= max_level; level++)
5371 active->wm[level].enable = true;
5372 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005373
5374 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005375}
5376
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005377#define _FW_WM(value, plane) \
5378 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5379#define _FW_WM_VLV(value, plane) \
5380 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5381
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005382static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5383 struct g4x_wm_values *wm)
5384{
5385 uint32_t tmp;
5386
5387 tmp = I915_READ(DSPFW1);
5388 wm->sr.plane = _FW_WM(tmp, SR);
5389 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5390 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5391 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5392
5393 tmp = I915_READ(DSPFW2);
5394 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5395 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5396 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5397 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5398 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5399 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5400
5401 tmp = I915_READ(DSPFW3);
5402 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5403 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5404 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5405 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5406}
5407
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005408static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5409 struct vlv_wm_values *wm)
5410{
5411 enum pipe pipe;
5412 uint32_t tmp;
5413
5414 for_each_pipe(dev_priv, pipe) {
5415 tmp = I915_READ(VLV_DDL(pipe));
5416
Ville Syrjälä1b313892016-11-28 19:37:08 +02005417 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005418 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005419 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005420 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005421 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005422 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005423 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005424 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
5425 }
5426
5427 tmp = I915_READ(DSPFW1);
5428 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005429 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5430 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
5431 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005432
5433 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005434 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
5435 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5436 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005437
5438 tmp = I915_READ(DSPFW3);
5439 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5440
5441 if (IS_CHERRYVIEW(dev_priv)) {
5442 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005443 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5444 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005445
5446 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005447 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
5448 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005449
5450 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005451 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
5452 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005453
5454 tmp = I915_READ(DSPHOWM);
5455 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005456 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
5457 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
5458 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
5459 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5460 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5461 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5462 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5463 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5464 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005465 } else {
5466 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005467 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5468 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005469
5470 tmp = I915_READ(DSPHOWM);
5471 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005472 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5473 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5474 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5475 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5476 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5477 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005478 }
5479}
5480
5481#undef _FW_WM
5482#undef _FW_WM_VLV
5483
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005484void g4x_wm_get_hw_state(struct drm_device *dev)
5485{
5486 struct drm_i915_private *dev_priv = to_i915(dev);
5487 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
5488 struct intel_crtc *crtc;
5489
5490 g4x_read_wm_values(dev_priv, wm);
5491
5492 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
5493
5494 for_each_intel_crtc(dev, crtc) {
5495 struct intel_crtc_state *crtc_state =
5496 to_intel_crtc_state(crtc->base.state);
5497 struct g4x_wm_state *active = &crtc->wm.active.g4x;
5498 struct g4x_pipe_wm *raw;
5499 enum pipe pipe = crtc->pipe;
5500 enum plane_id plane_id;
5501 int level, max_level;
5502
5503 active->cxsr = wm->cxsr;
5504 active->hpll_en = wm->hpll_en;
5505 active->fbc_en = wm->fbc_en;
5506
5507 active->sr = wm->sr;
5508 active->hpll = wm->hpll;
5509
5510 for_each_plane_id_on_crtc(crtc, plane_id) {
5511 active->wm.plane[plane_id] =
5512 wm->pipe[pipe].plane[plane_id];
5513 }
5514
5515 if (wm->cxsr && wm->hpll_en)
5516 max_level = G4X_WM_LEVEL_HPLL;
5517 else if (wm->cxsr)
5518 max_level = G4X_WM_LEVEL_SR;
5519 else
5520 max_level = G4X_WM_LEVEL_NORMAL;
5521
5522 level = G4X_WM_LEVEL_NORMAL;
5523 raw = &crtc_state->wm.g4x.raw[level];
5524 for_each_plane_id_on_crtc(crtc, plane_id)
5525 raw->plane[plane_id] = active->wm.plane[plane_id];
5526
5527 if (++level > max_level)
5528 goto out;
5529
5530 raw = &crtc_state->wm.g4x.raw[level];
5531 raw->plane[PLANE_PRIMARY] = active->sr.plane;
5532 raw->plane[PLANE_CURSOR] = active->sr.cursor;
5533 raw->plane[PLANE_SPRITE0] = 0;
5534 raw->fbc = active->sr.fbc;
5535
5536 if (++level > max_level)
5537 goto out;
5538
5539 raw = &crtc_state->wm.g4x.raw[level];
5540 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
5541 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
5542 raw->plane[PLANE_SPRITE0] = 0;
5543 raw->fbc = active->hpll.fbc;
5544
5545 out:
5546 for_each_plane_id_on_crtc(crtc, plane_id)
5547 g4x_raw_plane_wm_set(crtc_state, level,
5548 plane_id, USHRT_MAX);
5549 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
5550
5551 crtc_state->wm.g4x.optimal = *active;
5552 crtc_state->wm.g4x.intermediate = *active;
5553
5554 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
5555 pipe_name(pipe),
5556 wm->pipe[pipe].plane[PLANE_PRIMARY],
5557 wm->pipe[pipe].plane[PLANE_CURSOR],
5558 wm->pipe[pipe].plane[PLANE_SPRITE0]);
5559 }
5560
5561 DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
5562 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
5563 DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
5564 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
5565 DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n",
5566 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
5567}
5568
5569void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
5570{
5571 struct intel_plane *plane;
5572 struct intel_crtc *crtc;
5573
5574 mutex_lock(&dev_priv->wm.wm_mutex);
5575
5576 for_each_intel_plane(&dev_priv->drm, plane) {
5577 struct intel_crtc *crtc =
5578 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5579 struct intel_crtc_state *crtc_state =
5580 to_intel_crtc_state(crtc->base.state);
5581 struct intel_plane_state *plane_state =
5582 to_intel_plane_state(plane->base.state);
5583 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
5584 enum plane_id plane_id = plane->id;
5585 int level;
5586
5587 if (plane_state->base.visible)
5588 continue;
5589
5590 for (level = 0; level < 3; level++) {
5591 struct g4x_pipe_wm *raw =
5592 &crtc_state->wm.g4x.raw[level];
5593
5594 raw->plane[plane_id] = 0;
5595 wm_state->wm.plane[plane_id] = 0;
5596 }
5597
5598 if (plane_id == PLANE_PRIMARY) {
5599 for (level = 0; level < 3; level++) {
5600 struct g4x_pipe_wm *raw =
5601 &crtc_state->wm.g4x.raw[level];
5602 raw->fbc = 0;
5603 }
5604
5605 wm_state->sr.fbc = 0;
5606 wm_state->hpll.fbc = 0;
5607 wm_state->fbc_en = false;
5608 }
5609 }
5610
5611 for_each_intel_crtc(&dev_priv->drm, crtc) {
5612 struct intel_crtc_state *crtc_state =
5613 to_intel_crtc_state(crtc->base.state);
5614
5615 crtc_state->wm.g4x.intermediate =
5616 crtc_state->wm.g4x.optimal;
5617 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
5618 }
5619
5620 g4x_program_watermarks(dev_priv);
5621
5622 mutex_unlock(&dev_priv->wm.wm_mutex);
5623}
5624
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005625void vlv_wm_get_hw_state(struct drm_device *dev)
5626{
5627 struct drm_i915_private *dev_priv = to_i915(dev);
5628 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02005629 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005630 u32 val;
5631
5632 vlv_read_wm_values(dev_priv, wm);
5633
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005634 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
5635 wm->level = VLV_WM_LEVEL_PM2;
5636
5637 if (IS_CHERRYVIEW(dev_priv)) {
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005638 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005639
5640 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5641 if (val & DSP_MAXFIFO_PM5_ENABLE)
5642 wm->level = VLV_WM_LEVEL_PM5;
5643
Ville Syrjälä58590c12015-09-08 21:05:12 +03005644 /*
5645 * If DDR DVFS is disabled in the BIOS, Punit
5646 * will never ack the request. So if that happens
5647 * assume we don't have to enable/disable DDR DVFS
5648 * dynamically. To test that just set the REQ_ACK
5649 * bit to poke the Punit, but don't change the
5650 * HIGH/LOW bits so that we don't actually change
5651 * the current state.
5652 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005653 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03005654 val |= FORCE_DDR_FREQ_REQ_ACK;
5655 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
5656
5657 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
5658 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
5659 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
5660 "assuming DDR DVFS is disabled\n");
5661 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
5662 } else {
5663 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
5664 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
5665 wm->level = VLV_WM_LEVEL_DDR_DVFS;
5666 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005667
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005668 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005669 }
5670
Ville Syrjäläff32c542017-03-02 19:14:57 +02005671 for_each_intel_crtc(dev, crtc) {
5672 struct intel_crtc_state *crtc_state =
5673 to_intel_crtc_state(crtc->base.state);
5674 struct vlv_wm_state *active = &crtc->wm.active.vlv;
5675 const struct vlv_fifo_state *fifo_state =
5676 &crtc_state->wm.vlv.fifo_state;
5677 enum pipe pipe = crtc->pipe;
5678 enum plane_id plane_id;
5679 int level;
5680
5681 vlv_get_fifo_size(crtc_state);
5682
5683 active->num_levels = wm->level + 1;
5684 active->cxsr = wm->cxsr;
5685
Ville Syrjäläff32c542017-03-02 19:14:57 +02005686 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005687 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02005688 &crtc_state->wm.vlv.raw[level];
5689
5690 active->sr[level].plane = wm->sr.plane;
5691 active->sr[level].cursor = wm->sr.cursor;
5692
5693 for_each_plane_id_on_crtc(crtc, plane_id) {
5694 active->wm[level].plane[plane_id] =
5695 wm->pipe[pipe].plane[plane_id];
5696
5697 raw->plane[plane_id] =
5698 vlv_invert_wm_value(active->wm[level].plane[plane_id],
5699 fifo_state->plane[plane_id]);
5700 }
5701 }
5702
5703 for_each_plane_id_on_crtc(crtc, plane_id)
5704 vlv_raw_plane_wm_set(crtc_state, level,
5705 plane_id, USHRT_MAX);
5706 vlv_invalidate_wms(crtc, active, level);
5707
5708 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02005709 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02005710
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005711 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 +02005712 pipe_name(pipe),
5713 wm->pipe[pipe].plane[PLANE_PRIMARY],
5714 wm->pipe[pipe].plane[PLANE_CURSOR],
5715 wm->pipe[pipe].plane[PLANE_SPRITE0],
5716 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02005717 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005718
5719 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
5720 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
5721}
5722
Ville Syrjälä602ae832017-03-02 19:15:02 +02005723void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
5724{
5725 struct intel_plane *plane;
5726 struct intel_crtc *crtc;
5727
5728 mutex_lock(&dev_priv->wm.wm_mutex);
5729
5730 for_each_intel_plane(&dev_priv->drm, plane) {
5731 struct intel_crtc *crtc =
5732 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5733 struct intel_crtc_state *crtc_state =
5734 to_intel_crtc_state(crtc->base.state);
5735 struct intel_plane_state *plane_state =
5736 to_intel_plane_state(plane->base.state);
5737 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
5738 const struct vlv_fifo_state *fifo_state =
5739 &crtc_state->wm.vlv.fifo_state;
5740 enum plane_id plane_id = plane->id;
5741 int level;
5742
5743 if (plane_state->base.visible)
5744 continue;
5745
5746 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005747 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02005748 &crtc_state->wm.vlv.raw[level];
5749
5750 raw->plane[plane_id] = 0;
5751
5752 wm_state->wm[level].plane[plane_id] =
5753 vlv_invert_wm_value(raw->plane[plane_id],
5754 fifo_state->plane[plane_id]);
5755 }
5756 }
5757
5758 for_each_intel_crtc(&dev_priv->drm, crtc) {
5759 struct intel_crtc_state *crtc_state =
5760 to_intel_crtc_state(crtc->base.state);
5761
5762 crtc_state->wm.vlv.intermediate =
5763 crtc_state->wm.vlv.optimal;
5764 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
5765 }
5766
5767 vlv_program_watermarks(dev_priv);
5768
5769 mutex_unlock(&dev_priv->wm.wm_mutex);
5770}
5771
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02005772/*
5773 * FIXME should probably kill this and improve
5774 * the real watermark readout/sanitation instead
5775 */
5776static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
5777{
5778 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
5779 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
5780 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
5781
5782 /*
5783 * Don't touch WM1S_LP_EN here.
5784 * Doing so could cause underruns.
5785 */
5786}
5787
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005788void ilk_wm_get_hw_state(struct drm_device *dev)
5789{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005790 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005791 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005792 struct drm_crtc *crtc;
5793
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02005794 ilk_init_lp_watermarks(dev_priv);
5795
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01005796 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005797 ilk_pipe_wm_get_hw_state(crtc);
5798
5799 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
5800 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
5801 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
5802
5803 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005804 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02005805 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
5806 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
5807 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005808
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005809 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005810 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
5811 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01005812 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005813 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
5814 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005815
5816 hw->enable_fbc_wm =
5817 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
5818}
5819
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005820/**
5821 * intel_update_watermarks - update FIFO watermark values based on current modes
5822 *
5823 * Calculate watermark values for the various WM regs based on current mode
5824 * and plane configuration.
5825 *
5826 * There are several cases to deal with here:
5827 * - normal (i.e. non-self-refresh)
5828 * - self-refresh (SR) mode
5829 * - lines are large relative to FIFO size (buffer can hold up to 2)
5830 * - lines are small relative to FIFO size (buffer can hold more than 2
5831 * lines), so need to account for TLB latency
5832 *
5833 * The normal calculation is:
5834 * watermark = dotclock * bytes per pixel * latency
5835 * where latency is platform & configuration dependent (we assume pessimal
5836 * values here).
5837 *
5838 * The SR calculation is:
5839 * watermark = (trunc(latency/line time)+1) * surface width *
5840 * bytes per pixel
5841 * where
5842 * line time = htotal / dotclock
5843 * surface width = hdisplay for normal plane and 64 for cursor
5844 * and latency is assumed to be high, as above.
5845 *
5846 * The final value programmed to the register should always be rounded up,
5847 * and include an extra 2 entries to account for clock crossings.
5848 *
5849 * We don't use the sprite, so we can ignore that. And on Crestline we have
5850 * to set the non-SR watermarks to 8.
5851 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02005852void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005853{
Ville Syrjälä432081b2016-10-31 22:37:03 +02005854 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005855
5856 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005857 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005858}
5859
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305860void intel_enable_ipc(struct drm_i915_private *dev_priv)
5861{
5862 u32 val;
5863
Rodrigo Vivi4d6ef0d2017-10-02 23:36:50 -07005864 /* Display WA #0477 WaDisableIPC: skl */
5865 if (IS_SKYLAKE(dev_priv)) {
5866 dev_priv->ipc_enabled = false;
5867 return;
5868 }
5869
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305870 val = I915_READ(DISP_ARB_CTL2);
5871
5872 if (dev_priv->ipc_enabled)
5873 val |= DISP_IPC_ENABLE;
5874 else
5875 val &= ~DISP_IPC_ENABLE;
5876
5877 I915_WRITE(DISP_ARB_CTL2, val);
5878}
5879
5880void intel_init_ipc(struct drm_i915_private *dev_priv)
5881{
5882 dev_priv->ipc_enabled = false;
5883 if (!HAS_IPC(dev_priv))
5884 return;
5885
5886 dev_priv->ipc_enabled = true;
5887 intel_enable_ipc(dev_priv);
5888}
5889
Jani Nikulae2828912016-01-18 09:19:47 +02005890/*
Daniel Vetter92703882012-08-09 16:46:01 +02005891 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02005892 */
5893DEFINE_SPINLOCK(mchdev_lock);
5894
5895/* Global for IPS driver to get at the current i915 device. Protected by
5896 * mchdev_lock. */
5897static struct drm_i915_private *i915_mch_dev;
5898
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005899bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005900{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005901 u16 rgvswctl;
5902
Chris Wilson67520412017-03-02 13:28:01 +00005903 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02005904
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005905 rgvswctl = I915_READ16(MEMSWCTL);
5906 if (rgvswctl & MEMCTL_CMD_STS) {
5907 DRM_DEBUG("gpu busy, RCS change rejected\n");
5908 return false; /* still busy with another command */
5909 }
5910
5911 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5912 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5913 I915_WRITE16(MEMSWCTL, rgvswctl);
5914 POSTING_READ16(MEMSWCTL);
5915
5916 rgvswctl |= MEMCTL_CMD_STS;
5917 I915_WRITE16(MEMSWCTL, rgvswctl);
5918
5919 return true;
5920}
5921
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005922static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005923{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005924 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005925 u8 fmax, fmin, fstart, vstart;
5926
Daniel Vetter92703882012-08-09 16:46:01 +02005927 spin_lock_irq(&mchdev_lock);
5928
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005929 rgvmodectl = I915_READ(MEMMODECTL);
5930
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005931 /* Enable temp reporting */
5932 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
5933 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
5934
5935 /* 100ms RC evaluation intervals */
5936 I915_WRITE(RCUPEI, 100000);
5937 I915_WRITE(RCDNEI, 100000);
5938
5939 /* Set max/min thresholds to 90ms and 80ms respectively */
5940 I915_WRITE(RCBMAXAVG, 90000);
5941 I915_WRITE(RCBMINAVG, 80000);
5942
5943 I915_WRITE(MEMIHYST, 1);
5944
5945 /* Set up min, max, and cur for interrupt handling */
5946 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5947 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5948 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5949 MEMMODE_FSTART_SHIFT;
5950
Ville Syrjälä616847e2015-09-18 20:03:19 +03005951 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005952 PXVFREQ_PX_SHIFT;
5953
Daniel Vetter20e4d402012-08-08 23:35:39 +02005954 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
5955 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005956
Daniel Vetter20e4d402012-08-08 23:35:39 +02005957 dev_priv->ips.max_delay = fstart;
5958 dev_priv->ips.min_delay = fmin;
5959 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005960
5961 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
5962 fmax, fmin, fstart);
5963
5964 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5965
5966 /*
5967 * Interrupts will be enabled in ironlake_irq_postinstall
5968 */
5969
5970 I915_WRITE(VIDSTART, vstart);
5971 POSTING_READ(VIDSTART);
5972
5973 rgvmodectl |= MEMMODE_SWMODE_EN;
5974 I915_WRITE(MEMMODECTL, rgvmodectl);
5975
Daniel Vetter92703882012-08-09 16:46:01 +02005976 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005977 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005978 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005979
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005980 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005981
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005982 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
5983 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005984 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005985 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005986 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02005987
5988 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005989}
5990
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005991static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005992{
Daniel Vetter92703882012-08-09 16:46:01 +02005993 u16 rgvswctl;
5994
5995 spin_lock_irq(&mchdev_lock);
5996
5997 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005998
5999 /* Ack interrupts, disable EFC interrupt */
6000 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
6001 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
6002 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
6003 I915_WRITE(DEIIR, DE_PCU_EVENT);
6004 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
6005
6006 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006007 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006008 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006009 rgvswctl |= MEMCTL_CMD_STS;
6010 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006011 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006012
Daniel Vetter92703882012-08-09 16:46:01 +02006013 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006014}
6015
Daniel Vetteracbe9472012-07-26 11:50:05 +02006016/* There's a funny hw issue where the hw returns all 0 when reading from
6017 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
6018 * ourselves, instead of doing a rmw cycle (which might result in us clearing
6019 * all limits and the gpu stuck at whatever frequency it is at atm).
6020 */
Akash Goel74ef1172015-03-06 11:07:19 +05306021static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006022{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006023 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006024 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006025
Daniel Vetter20b46e52012-07-26 11:16:14 +02006026 /* Only set the down limit when we've reached the lowest level to avoid
6027 * getting more interrupts, otherwise leave this clear. This prevents a
6028 * race in the hw when coming out of rc6: There's a tiny window where
6029 * the hw runs at the minimal clock before selecting the desired
6030 * frequency, if the down threshold expires in that window we will not
6031 * receive a down interrupt. */
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006032 if (INTEL_GEN(dev_priv) >= 9) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006033 limits = (rps->max_freq_softlimit) << 23;
6034 if (val <= rps->min_freq_softlimit)
6035 limits |= (rps->min_freq_softlimit) << 14;
Akash Goel74ef1172015-03-06 11:07:19 +05306036 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006037 limits = rps->max_freq_softlimit << 24;
6038 if (val <= rps->min_freq_softlimit)
6039 limits |= rps->min_freq_softlimit << 16;
Akash Goel74ef1172015-03-06 11:07:19 +05306040 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02006041
6042 return limits;
6043}
6044
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006045static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
6046{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006047 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006048 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05306049 u32 threshold_up = 0, threshold_down = 0; /* in % */
6050 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006051
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006052 new_power = rps->power;
6053 switch (rps->power) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006054 case LOW_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006055 if (val > rps->efficient_freq + 1 &&
6056 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006057 new_power = BETWEEN;
6058 break;
6059
6060 case BETWEEN:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006061 if (val <= rps->efficient_freq &&
6062 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006063 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006064 else if (val >= rps->rp0_freq &&
6065 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006066 new_power = HIGH_POWER;
6067 break;
6068
6069 case HIGH_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006070 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
6071 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006072 new_power = BETWEEN;
6073 break;
6074 }
6075 /* Max/min bins are special */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006076 if (val <= rps->min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006077 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006078 if (val >= rps->max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006079 new_power = HIGH_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006080 if (new_power == rps->power)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006081 return;
6082
6083 /* Note the units here are not exactly 1us, but 1280ns. */
6084 switch (new_power) {
6085 case LOW_POWER:
6086 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05306087 ei_up = 16000;
6088 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006089
6090 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306091 ei_down = 32000;
6092 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006093 break;
6094
6095 case BETWEEN:
6096 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05306097 ei_up = 13000;
6098 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006099
6100 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306101 ei_down = 32000;
6102 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006103 break;
6104
6105 case HIGH_POWER:
6106 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05306107 ei_up = 10000;
6108 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006109
6110 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306111 ei_down = 32000;
6112 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006113 break;
6114 }
6115
Mika Kuoppala6067a272017-02-15 15:52:59 +02006116 /* When byt can survive without system hang with dynamic
6117 * sw freq adjustments, this restriction can be lifted.
6118 */
6119 if (IS_VALLEYVIEW(dev_priv))
6120 goto skip_hw_write;
6121
Akash Goel8a586432015-03-06 11:07:18 +05306122 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006123 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05306124 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006125 GT_INTERVAL_FROM_US(dev_priv,
6126 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306127
6128 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006129 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05306130 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006131 GT_INTERVAL_FROM_US(dev_priv,
6132 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306133
Chris Wilsona72b5622016-07-02 15:35:59 +01006134 I915_WRITE(GEN6_RP_CONTROL,
6135 GEN6_RP_MEDIA_TURBO |
6136 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6137 GEN6_RP_MEDIA_IS_GFX |
6138 GEN6_RP_ENABLE |
6139 GEN6_RP_UP_BUSY_AVG |
6140 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05306141
Mika Kuoppala6067a272017-02-15 15:52:59 +02006142skip_hw_write:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006143 rps->power = new_power;
6144 rps->up_threshold = threshold_up;
6145 rps->down_threshold = threshold_down;
6146 rps->last_adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006147}
6148
Chris Wilson2876ce72014-03-28 08:03:34 +00006149static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
6150{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006151 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson2876ce72014-03-28 08:03:34 +00006152 u32 mask = 0;
6153
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006154 /* We use UP_EI_EXPIRED interupts for both up/down in manual mode */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006155 if (val > rps->min_freq_softlimit)
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006156 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006157 if (val < rps->max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00006158 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00006159
Chris Wilson7b3c29f2014-07-10 20:31:19 +01006160 mask &= dev_priv->pm_rps_events;
6161
Imre Deak59d02a12014-12-19 19:33:26 +02006162 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00006163}
6164
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006165/* gen6_set_rps is called to update the frequency request, but should also be
6166 * called when the range (min_delay and max_delay) is modified so that we can
6167 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006168static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02006169{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006170 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6171
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006172 /* min/max delay may still have been modified so be sure to
6173 * write the limits value.
6174 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006175 if (val != rps->cur_freq) {
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006176 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006177
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006178 if (INTEL_GEN(dev_priv) >= 9)
Akash Goel57041952015-03-06 11:07:17 +05306179 I915_WRITE(GEN6_RPNSWREQ,
6180 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01006181 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006182 I915_WRITE(GEN6_RPNSWREQ,
6183 HSW_FREQUENCY(val));
6184 else
6185 I915_WRITE(GEN6_RPNSWREQ,
6186 GEN6_FREQUENCY(val) |
6187 GEN6_OFFSET(0) |
6188 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006189 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006190
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006191 /* Make sure we continue to get interrupts
6192 * until we hit the minimum or maximum frequencies.
6193 */
Akash Goel74ef1172015-03-06 11:07:19 +05306194 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00006195 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006196
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006197 rps->cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02006198 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006199
6200 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006201}
6202
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006203static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006204{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006205 int err;
6206
Chris Wilsondc979972016-05-10 14:10:04 +01006207 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006208 "Odd GPU freq value\n"))
6209 val &= ~1;
6210
Deepak Scd25dd52015-07-10 18:31:40 +05306211 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
6212
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006213 if (val != dev_priv->gt_pm.rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006214 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
6215 if (err)
6216 return err;
6217
Chris Wilsondb4c5e02017-02-10 15:03:46 +00006218 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01006219 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006220
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006221 dev_priv->gt_pm.rps.cur_freq = val;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006222 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006223
6224 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006225}
6226
Deepak Sa7f6e232015-05-09 18:04:44 +05306227/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05306228 *
6229 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05306230 * 1. Forcewake Media well.
6231 * 2. Request idle freq.
6232 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05306233*/
6234static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
6235{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006236 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6237 u32 val = rps->idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006238 int err;
Deepak S5549d252014-06-28 11:26:11 +05306239
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006240 if (rps->cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05306241 return;
6242
Chris Wilsonc9efef72017-01-02 15:28:45 +00006243 /* The punit delays the write of the frequency and voltage until it
6244 * determines the GPU is awake. During normal usage we don't want to
6245 * waste power changing the frequency if the GPU is sleeping (rc6).
6246 * However, the GPU and driver is now idle and we do not want to delay
6247 * switching to minimum voltage (reducing power whilst idle) as we do
6248 * not expect to be woken in the near future and so must flush the
6249 * change by waking the device.
6250 *
6251 * We choose to take the media powerwell (either would do to trick the
6252 * punit into committing the voltage change) as that takes a lot less
6253 * power than the render powerwell.
6254 */
Deepak Sa7f6e232015-05-09 18:04:44 +05306255 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006256 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05306257 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006258
6259 if (err)
6260 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05306261}
6262
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006263void gen6_rps_busy(struct drm_i915_private *dev_priv)
6264{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006265 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6266
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006267 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006268 if (rps->enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00006269 u8 freq;
6270
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006271 if (dev_priv->pm_rps_events & GEN6_PM_RP_UP_EI_EXPIRED)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006272 gen6_rps_reset_ei(dev_priv);
6273 I915_WRITE(GEN6_PMINTRMSK,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006274 gen6_rps_pm_mask(dev_priv, rps->cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02006275
Chris Wilsonc33d2472016-07-04 08:08:36 +01006276 gen6_enable_rps_interrupts(dev_priv);
6277
Chris Wilsonbd648182017-02-10 15:03:48 +00006278 /* Use the user's desired frequency as a guide, but for better
6279 * performance, jump directly to RPe as our starting frequency.
6280 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006281 freq = max(rps->cur_freq,
6282 rps->efficient_freq);
Chris Wilsonbd648182017-02-10 15:03:48 +00006283
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006284 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00006285 clamp(freq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006286 rps->min_freq_softlimit,
6287 rps->max_freq_softlimit)))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006288 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006289 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006290 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006291}
6292
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006293void gen6_rps_idle(struct drm_i915_private *dev_priv)
6294{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006295 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6296
Chris Wilsonc33d2472016-07-04 08:08:36 +01006297 /* Flush our bottom-half so that it does not race with us
6298 * setting the idle frequency and so that it is bounded by
6299 * our rpm wakeref. And then disable the interrupts to stop any
6300 * futher RPS reclocking whilst we are asleep.
6301 */
6302 gen6_disable_rps_interrupts(dev_priv);
6303
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006304 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006305 if (rps->enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01006306 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05306307 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006308 else
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006309 gen6_set_rps(dev_priv, rps->idle_freq);
6310 rps->last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03006311 I915_WRITE(GEN6_PMINTRMSK,
6312 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01006313 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006314 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006315}
6316
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006317void gen6_rps_boost(struct drm_i915_gem_request *rq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006318 struct intel_rps_client *rps_client)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006319{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006320 struct intel_rps *rps = &rq->i915->gt_pm.rps;
Chris Wilson74d290f2017-08-17 13:37:06 +01006321 unsigned long flags;
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006322 bool boost;
6323
Chris Wilson8d3afd72015-05-21 21:01:47 +01006324 /* This is intentionally racy! We peek at the state here, then
6325 * validate inside the RPS worker.
6326 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006327 if (!rps->enabled)
Chris Wilson8d3afd72015-05-21 21:01:47 +01006328 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006329
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006330 boost = false;
Chris Wilson74d290f2017-08-17 13:37:06 +01006331 spin_lock_irqsave(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006332 if (!rq->waitboost && !i915_gem_request_completed(rq)) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006333 atomic_inc(&rps->num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006334 rq->waitboost = true;
6335 boost = true;
Chris Wilsonc0951f02013-10-10 21:58:50 +01006336 }
Chris Wilson74d290f2017-08-17 13:37:06 +01006337 spin_unlock_irqrestore(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006338 if (!boost)
6339 return;
6340
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006341 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
6342 schedule_work(&rps->work);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006343
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006344 atomic_inc(rps_client ? &rps_client->boosts : &rps->boosts);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006345}
6346
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006347int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006348{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006349 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006350 int err;
6351
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006352 lockdep_assert_held(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006353 GEM_BUG_ON(val > rps->max_freq);
6354 GEM_BUG_ON(val < rps->min_freq);
Chris Wilsoncfd1c482017-02-20 09:47:07 +00006355
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006356 if (!rps->enabled) {
6357 rps->cur_freq = val;
Chris Wilson76e4e4b2017-02-20 09:47:08 +00006358 return 0;
6359 }
6360
Chris Wilsondc979972016-05-10 14:10:04 +01006361 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006362 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006363 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006364 err = gen6_set_rps(dev_priv, val);
6365
6366 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006367}
6368
Chris Wilsondc979972016-05-10 14:10:04 +01006369static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006370{
Zhe Wang20e49362014-11-04 17:07:05 +00006371 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006372 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006373}
6374
Chris Wilsondc979972016-05-10 14:10:04 +01006375static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05306376{
Akash Goel2030d682016-04-23 00:05:45 +05306377 I915_WRITE(GEN6_RP_CONTROL, 0);
6378}
6379
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006380static void gen6_disable_rc6(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006381{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006382 I915_WRITE(GEN6_RC_CONTROL, 0);
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006383}
6384
6385static void gen6_disable_rps(struct drm_i915_private *dev_priv)
6386{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006387 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05306388 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006389}
6390
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006391static void cherryview_disable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306392{
Deepak S38807742014-05-23 21:00:15 +05306393 I915_WRITE(GEN6_RC_CONTROL, 0);
6394}
6395
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006396static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
6397{
6398 I915_WRITE(GEN6_RP_CONTROL, 0);
6399}
6400
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006401static void valleyview_disable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006402{
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006403 /* We're doing forcewake before Disabling RC6,
Deepak S98a2e5f2014-08-18 10:35:27 -07006404 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006405 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07006406
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006407 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006408
Mika Kuoppala59bad942015-01-16 11:34:40 +02006409 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006410}
6411
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006412static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
6413{
6414 I915_WRITE(GEN6_RP_CONTROL, 0);
6415}
6416
Chris Wilsondc979972016-05-10 14:10:04 +01006417static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306418{
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306419 bool enable_rc6 = true;
6420 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03006421 u32 rc_ctl;
6422 int rc_sw_target;
6423
6424 rc_ctl = I915_READ(GEN6_RC_CONTROL);
6425 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
6426 RC_SW_TARGET_STATE_SHIFT;
6427 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
6428 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
6429 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
6430 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
6431 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306432
6433 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006434 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306435 enable_rc6 = false;
6436 }
6437
6438 /*
6439 * The exact context size is not known for BXT, so assume a page size
6440 * for this check.
6441 */
6442 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Matthew Auld17a05342017-12-11 15:18:19 +00006443 if (!((rc6_ctx_base >= dev_priv->dsm_reserved.start) &&
6444 (rc6_ctx_base + PAGE_SIZE < dev_priv->dsm_reserved.end))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006445 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306446 enable_rc6 = false;
6447 }
6448
6449 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
6450 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
6451 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
6452 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006453 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306454 enable_rc6 = false;
6455 }
6456
Imre Deakfc619842016-06-29 19:13:55 +03006457 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
6458 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
6459 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
6460 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
6461 enable_rc6 = false;
6462 }
6463
6464 if (!I915_READ(GEN6_GFXPAUSE)) {
6465 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
6466 enable_rc6 = false;
6467 }
6468
6469 if (!I915_READ(GEN8_MISC_CTRL0)) {
6470 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306471 enable_rc6 = false;
6472 }
6473
6474 return enable_rc6;
6475}
6476
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006477static bool sanitize_rc6(struct drm_i915_private *i915)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006478{
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006479 struct intel_device_info *info = mkwrite_device_info(i915);
Imre Deake6069ca2014-04-18 16:01:02 +03006480
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006481 /* Powersaving is controlled by the host when inside a VM */
6482 if (intel_vgpu_active(i915))
6483 info->has_rc6 = 0;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306484
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006485 if (info->has_rc6 &&
6486 IS_GEN9_LP(i915) && !bxt_check_bios_rc6_setup(i915)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306487 DRM_INFO("RC6 disabled by BIOS\n");
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006488 info->has_rc6 = 0;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306489 }
6490
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006491 /*
6492 * We assume that we do not have any deep rc6 levels if we don't have
6493 * have the previous rc6 level supported, i.e. we use HAS_RC6()
6494 * as the initial coarse check for rc6 in general, moving on to
6495 * progressively finer/deeper levels.
6496 */
6497 if (!info->has_rc6 && info->has_rc6p)
6498 info->has_rc6p = 0;
Imre Deake6069ca2014-04-18 16:01:02 +03006499
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006500 return info->has_rc6;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006501}
6502
Chris Wilsondc979972016-05-10 14:10:04 +01006503static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03006504{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006505 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6506
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006507 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01006508
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006509 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006510 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006511 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006512 rps->rp0_freq = (rp_state_cap >> 16) & 0xff;
6513 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6514 rps->min_freq = (rp_state_cap >> 0) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006515 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006516 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006517 rps->rp0_freq = (rp_state_cap >> 0) & 0xff;
6518 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6519 rps->min_freq = (rp_state_cap >> 16) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006520 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006521 /* hw_max = RP0 until we check for overclocking */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006522 rps->max_freq = rps->rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006523
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006524 rps->efficient_freq = rps->rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006525 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006526 IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006527 u32 ddcc_status = 0;
6528
6529 if (sandybridge_pcode_read(dev_priv,
6530 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
6531 &ddcc_status) == 0)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006532 rps->efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08006533 clamp_t(u8,
6534 ((ddcc_status >> 8) & 0xff),
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006535 rps->min_freq,
6536 rps->max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006537 }
6538
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006539 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05306540 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01006541 * the natural hardware unit for SKL
6542 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006543 rps->rp0_freq *= GEN9_FREQ_SCALER;
6544 rps->rp1_freq *= GEN9_FREQ_SCALER;
6545 rps->min_freq *= GEN9_FREQ_SCALER;
6546 rps->max_freq *= GEN9_FREQ_SCALER;
6547 rps->efficient_freq *= GEN9_FREQ_SCALER;
Akash Goelc5e06882015-06-29 14:50:19 +05306548 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006549}
6550
Chris Wilson3a45b052016-07-13 09:10:32 +01006551static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006552 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01006553{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006554 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6555 u8 freq = rps->cur_freq;
Chris Wilson3a45b052016-07-13 09:10:32 +01006556
6557 /* force a reset */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006558 rps->power = -1;
6559 rps->cur_freq = -1;
Chris Wilson3a45b052016-07-13 09:10:32 +01006560
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006561 if (set(dev_priv, freq))
6562 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01006563}
6564
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006565/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01006566static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006567{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006568 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6569
David Weinehall36fe7782017-11-17 10:01:46 +02006570 /* Program defaults and thresholds for RPS */
6571 if (IS_GEN9(dev_priv))
6572 I915_WRITE(GEN6_RC_VIDEO_FREQ,
6573 GEN9_FREQUENCY(dev_priv->gt_pm.rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006574
Akash Goel0beb0592015-03-06 11:07:20 +05306575 /* 1 second timeout*/
6576 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
6577 GT_INTERVAL_FROM_US(dev_priv, 1000000));
6578
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006579 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006580
Akash Goel0beb0592015-03-06 11:07:20 +05306581 /* Leaning on the below call to gen6_set_rps to program/setup the
6582 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
6583 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01006584 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006585
6586 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6587}
6588
Chris Wilsondc979972016-05-10 14:10:04 +01006589static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006590{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006591 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306592 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006593 u32 rc6_mode;
Zhe Wang20e49362014-11-04 17:07:05 +00006594
6595 /* 1a: Software RC state - RC0 */
6596 I915_WRITE(GEN6_RC_STATE, 0);
6597
6598 /* 1b: Get forcewake during program sequence. Although the driver
6599 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006600 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006601
6602 /* 2a: Disable RC states. */
6603 I915_WRITE(GEN6_RC_CONTROL, 0);
6604
6605 /* 2b: Program RC6 thresholds.*/
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006606 if (INTEL_GEN(dev_priv) >= 10) {
6607 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16 | 85);
6608 I915_WRITE(GEN10_MEDIA_WAKE_RATE_LIMIT, 150);
6609 } else if (IS_SKYLAKE(dev_priv)) {
6610 /*
6611 * WaRsDoubleRc6WrlWithCoarsePowerGating:skl Doubling WRL only
6612 * when CPG is enabled
6613 */
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306614 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006615 } else {
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306616 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006617 }
6618
Zhe Wang20e49362014-11-04 17:07:05 +00006619 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6620 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306621 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006622 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306623
Dave Gordon1a3d1892016-05-13 15:36:30 +01006624 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306625 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
6626
Zhe Wang20e49362014-11-04 17:07:05 +00006627 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006628
Chris Wilsonc1beabc2018-01-22 13:55:41 +00006629 /*
6630 * 2c: Program Coarse Power Gating Policies.
6631 *
6632 * Bspec's guidance is to use 25us (really 25 * 1280ns) here. What we
6633 * use instead is a more conservative estimate for the maximum time
6634 * it takes us to service a CS interrupt and submit a new ELSP - that
6635 * is the time which the GPU is idle waiting for the CPU to select the
6636 * next request to execute. If the idle hysteresis is less than that
6637 * interrupt service latency, the hardware will automatically gate
6638 * the power well and we will then incur the wake up cost on top of
6639 * the service latency. A similar guide from intel_pstate is that we
6640 * do not want the enable hysteresis to less than the wakeup latency.
6641 *
6642 * igt/gem_exec_nop/sequential provides a rough estimate for the
6643 * service latency, and puts it around 10us for Broadwell (and other
6644 * big core) and around 40us for Broxton (and other low power cores).
6645 * [Note that for legacy ringbuffer submission, this is less than 1us!]
6646 * However, the wakeup latency on Broxton is closer to 100us. To be
6647 * conservative, we have to factor in a context switch on top (due
6648 * to ksoftirqd).
6649 */
6650 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 250);
6651 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 250);
Zhe Wang38c23522015-01-20 12:23:04 +00006652
Zhe Wang20e49362014-11-04 17:07:05 +00006653 /* 3a: Enable RC6 */
Chris Wilson1c044f92017-01-25 17:26:01 +00006654 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006655
6656 /* WaRsUseTimeoutMode:cnl (pre-prod) */
6657 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_C0))
6658 rc6_mode = GEN7_RC_CTL_TO_MODE;
6659 else
6660 rc6_mode = GEN6_RC_CTL_EI_MODE(1);
6661
Chris Wilson1c044f92017-01-25 17:26:01 +00006662 I915_WRITE(GEN6_RC_CONTROL,
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006663 GEN6_RC_CTL_HW_ENABLE |
6664 GEN6_RC_CTL_RC6_ENABLE |
6665 rc6_mode);
Zhe Wang20e49362014-11-04 17:07:05 +00006666
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306667 /*
6668 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306669 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306670 */
Chris Wilsondc979972016-05-10 14:10:04 +01006671 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306672 I915_WRITE(GEN9_PG_ENABLE, 0);
6673 else
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006674 I915_WRITE(GEN9_PG_ENABLE,
6675 GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE);
Zhe Wang38c23522015-01-20 12:23:04 +00006676
Mika Kuoppala59bad942015-01-16 11:34:40 +02006677 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006678}
6679
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006680static void gen8_enable_rc6(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006681{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006682 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306683 enum intel_engine_id id;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006684
6685 /* 1a: Software RC state - RC0 */
6686 I915_WRITE(GEN6_RC_STATE, 0);
6687
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006688 /* 1b: Get forcewake during program sequence. Although the driver
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006689 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006690 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006691
6692 /* 2a: Disable RC states. */
6693 I915_WRITE(GEN6_RC_CONTROL, 0);
6694
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006695 /* 2b: Program RC6 thresholds.*/
6696 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6697 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6698 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306699 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006700 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006701 I915_WRITE(GEN6_RC_SLEEP, 0);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006702 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006703
6704 /* 3: Enable RC6 */
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006705
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006706 I915_WRITE(GEN6_RC_CONTROL,
6707 GEN6_RC_CTL_HW_ENABLE |
6708 GEN7_RC_CTL_TO_MODE |
6709 GEN6_RC_CTL_RC6_ENABLE);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006710
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006711 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6712}
6713
6714static void gen8_enable_rps(struct drm_i915_private *dev_priv)
6715{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006716 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6717
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006718 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6719
6720 /* 1 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006721 I915_WRITE(GEN6_RPNSWREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006722 HSW_FREQUENCY(rps->rp1_freq));
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006723 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006724 HSW_FREQUENCY(rps->rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02006725 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
6726 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006727
Daniel Vetter7526ed72014-09-29 15:07:19 +02006728 /* Docs recommend 900MHz, and 300 MHz respectively */
6729 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006730 rps->max_freq_softlimit << 24 |
6731 rps->min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006732
Daniel Vetter7526ed72014-09-29 15:07:19 +02006733 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
6734 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
6735 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
6736 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006737
Daniel Vetter7526ed72014-09-29 15:07:19 +02006738 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006739
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006740 /* 2: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02006741 I915_WRITE(GEN6_RP_CONTROL,
6742 GEN6_RP_MEDIA_TURBO |
6743 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6744 GEN6_RP_MEDIA_IS_GFX |
6745 GEN6_RP_ENABLE |
6746 GEN6_RP_UP_BUSY_AVG |
6747 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006748
Chris Wilson3a45b052016-07-13 09:10:32 +01006749 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006750
Mika Kuoppala59bad942015-01-16 11:34:40 +02006751 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006752}
6753
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006754static void gen6_enable_rc6(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006755{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006756 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306757 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006758 u32 rc6vids, rc6_mask;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006759 u32 gtfifodbg;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00006760 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006761
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006762 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006763
6764 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006765 gtfifodbg = I915_READ(GTFIFODBG);
6766 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006767 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
6768 I915_WRITE(GTFIFODBG, gtfifodbg);
6769 }
6770
Mika Kuoppala59bad942015-01-16 11:34:40 +02006771 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006772
6773 /* disable the counters and set deterministic thresholds */
6774 I915_WRITE(GEN6_RC_CONTROL, 0);
6775
6776 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6777 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6778 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6779 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6780 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6781
Akash Goel3b3f1652016-10-13 22:44:48 +05306782 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006783 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006784
6785 I915_WRITE(GEN6_RC_SLEEP, 0);
6786 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01006787 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07006788 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
6789 else
6790 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08006791 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006792 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6793
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006794 /* We don't use those on Haswell */
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006795 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
6796 if (HAS_RC6p(dev_priv))
6797 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
6798 if (HAS_RC6pp(dev_priv))
6799 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006800 I915_WRITE(GEN6_RC_CONTROL,
6801 rc6_mask |
6802 GEN6_RC_CTL_EI_MODE(1) |
6803 GEN6_RC_CTL_HW_ENABLE);
6804
Ben Widawsky31643d52012-09-26 10:34:01 -07006805 rc6vids = 0;
6806 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01006807 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006808 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01006809 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006810 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
6811 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
6812 rc6vids &= 0xffff00;
6813 rc6vids |= GEN6_ENCODE_RC6_VID(450);
6814 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
6815 if (ret)
6816 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
6817 }
6818
Mika Kuoppala59bad942015-01-16 11:34:40 +02006819 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006820}
6821
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006822static void gen6_enable_rps(struct drm_i915_private *dev_priv)
6823{
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006824 /* Here begins a magic sequence of register writes to enable
6825 * auto-downclocking.
6826 *
6827 * Perhaps there might be some value in exposing these to
6828 * userspace...
6829 */
6830 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6831
6832 /* Power down if completely idle for over 50ms */
6833 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
6834 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6835
6836 reset_rps(dev_priv, gen6_set_rps);
6837
6838 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6839}
6840
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006841static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006842{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006843 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006844 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006845 unsigned int gpu_freq;
6846 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306847 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006848 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03006849 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006850
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006851 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02006852
Ben Widawskyeda79642013-10-07 17:15:48 -03006853 policy = cpufreq_cpu_get(0);
6854 if (policy) {
6855 max_ia_freq = policy->cpuinfo.max_freq;
6856 cpufreq_cpu_put(policy);
6857 } else {
6858 /*
6859 * Default to measured freq if none found, PCU will ensure we
6860 * don't go over
6861 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006862 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03006863 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006864
6865 /* Convert from kHz to MHz */
6866 max_ia_freq /= 1000;
6867
Ben Widawsky153b4b952013-10-22 22:05:09 -07006868 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07006869 /* convert DDR frequency from units of 266.6MHz to bandwidth */
6870 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006871
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006872 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306873 /* Convert GT frequency to 50 HZ units */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006874 min_gpu_freq = rps->min_freq / GEN9_FREQ_SCALER;
6875 max_gpu_freq = rps->max_freq / GEN9_FREQ_SCALER;
Akash Goel4c8c7742015-06-29 14:50:20 +05306876 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006877 min_gpu_freq = rps->min_freq;
6878 max_gpu_freq = rps->max_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306879 }
6880
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006881 /*
6882 * For each potential GPU frequency, load a ring frequency we'd like
6883 * to use for memory access. We do this by specifying the IA frequency
6884 * the PCU should use as a reference to determine the ring frequency.
6885 */
Akash Goel4c8c7742015-06-29 14:50:20 +05306886 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
6887 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006888 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006889
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006890 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306891 /*
6892 * ring_freq = 2 * GT. ring_freq is in 100MHz units
6893 * No floor required for ring frequency on SKL.
6894 */
6895 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006896 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07006897 /* max(2 * GT, DDR). NB: GT is 50MHz units */
6898 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01006899 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07006900 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006901 ring_freq = max(min_ring_freq, ring_freq);
6902 /* leave ia_freq as the default, chosen by cpufreq */
6903 } else {
6904 /* On older processors, there is no separate ring
6905 * clock domain, so in order to boost the bandwidth
6906 * of the ring, we need to upclock the CPU (ia_freq).
6907 *
6908 * For GPU frequencies less than 750MHz,
6909 * just use the lowest ring freq.
6910 */
6911 if (gpu_freq < min_freq)
6912 ia_freq = 800;
6913 else
6914 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
6915 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
6916 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006917
Ben Widawsky42c05262012-09-26 10:34:00 -07006918 sandybridge_pcode_write(dev_priv,
6919 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01006920 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
6921 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
6922 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006923 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006924}
6925
Ville Syrjälä03af2042014-06-28 02:03:53 +03006926static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05306927{
6928 u32 val, rp0;
6929
Jani Nikula5b5929c2015-10-07 11:17:46 +03006930 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05306931
Imre Deak43b67992016-08-31 19:13:02 +03006932 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03006933 case 8:
6934 /* (2 * 4) config */
6935 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
6936 break;
6937 case 12:
6938 /* (2 * 6) config */
6939 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
6940 break;
6941 case 16:
6942 /* (2 * 8) config */
6943 default:
6944 /* Setting (2 * 8) Min RP0 for any other combination */
6945 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
6946 break;
Deepak S095acd52015-01-17 11:05:59 +05306947 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03006948
6949 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
6950
Deepak S2b6b3a02014-05-27 15:59:30 +05306951 return rp0;
6952}
6953
6954static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6955{
6956 u32 val, rpe;
6957
6958 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
6959 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
6960
6961 return rpe;
6962}
6963
Deepak S7707df42014-07-12 18:46:14 +05306964static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
6965{
6966 u32 val, rp1;
6967
Jani Nikula5b5929c2015-10-07 11:17:46 +03006968 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
6969 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
6970
Deepak S7707df42014-07-12 18:46:14 +05306971 return rp1;
6972}
6973
Deepak S96676fe2016-08-12 18:46:41 +05306974static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
6975{
6976 u32 val, rpn;
6977
6978 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
6979 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
6980 FB_GFX_FREQ_FUSE_MASK);
6981
6982 return rpn;
6983}
6984
Deepak Sf8f2b002014-07-10 13:16:21 +05306985static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
6986{
6987 u32 val, rp1;
6988
6989 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
6990
6991 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
6992
6993 return rp1;
6994}
6995
Ville Syrjälä03af2042014-06-28 02:03:53 +03006996static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006997{
6998 u32 val, rp0;
6999
Jani Nikula64936252013-05-22 15:36:20 +03007000 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007001
7002 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
7003 /* Clamp to max */
7004 rp0 = min_t(u32, rp0, 0xea);
7005
7006 return rp0;
7007}
7008
7009static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
7010{
7011 u32 val, rpe;
7012
Jani Nikula64936252013-05-22 15:36:20 +03007013 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007014 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03007015 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007016 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
7017
7018 return rpe;
7019}
7020
Ville Syrjälä03af2042014-06-28 02:03:53 +03007021static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007022{
Imre Deak36146032014-12-04 18:39:35 +02007023 u32 val;
7024
7025 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
7026 /*
7027 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
7028 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
7029 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
7030 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
7031 * to make sure it matches what Punit accepts.
7032 */
7033 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007034}
7035
Imre Deakae484342014-03-31 15:10:44 +03007036/* Check that the pctx buffer wasn't move under us. */
7037static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
7038{
7039 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7040
Matthew Auld77894222017-12-11 15:18:18 +00007041 WARN_ON(pctx_addr != dev_priv->dsm.start +
Imre Deakae484342014-03-31 15:10:44 +03007042 dev_priv->vlv_pctx->stolen->start);
7043}
7044
Deepak S38807742014-05-23 21:00:15 +05307045
7046/* Check that the pcbr address is not empty. */
7047static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
7048{
7049 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7050
7051 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
7052}
7053
Chris Wilsondc979972016-05-10 14:10:04 +01007054static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307055{
Matthew Auldb7128ef2017-12-11 15:18:22 +00007056 resource_size_t pctx_paddr, paddr;
7057 resource_size_t pctx_size = 32*1024;
Deepak S38807742014-05-23 21:00:15 +05307058 u32 pcbr;
Deepak S38807742014-05-23 21:00:15 +05307059
Deepak S38807742014-05-23 21:00:15 +05307060 pcbr = I915_READ(VLV_PCBR);
7061 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007062 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Matthew Auld77894222017-12-11 15:18:18 +00007063 paddr = dev_priv->dsm.end + 1 - pctx_size;
7064 GEM_BUG_ON(paddr > U32_MAX);
Deepak S38807742014-05-23 21:00:15 +05307065
7066 pctx_paddr = (paddr & (~4095));
7067 I915_WRITE(VLV_PCBR, pctx_paddr);
7068 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007069
7070 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05307071}
7072
Chris Wilsondc979972016-05-10 14:10:04 +01007073static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007074{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007075 struct drm_i915_gem_object *pctx;
Matthew Auldb7128ef2017-12-11 15:18:22 +00007076 resource_size_t pctx_paddr;
7077 resource_size_t pctx_size = 24*1024;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007078 u32 pcbr;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007079
7080 pcbr = I915_READ(VLV_PCBR);
7081 if (pcbr) {
7082 /* BIOS set it up already, grab the pre-alloc'd space */
Matthew Auldb7128ef2017-12-11 15:18:22 +00007083 resource_size_t pcbr_offset;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007084
Matthew Auld77894222017-12-11 15:18:18 +00007085 pcbr_offset = (pcbr & (~4095)) - dev_priv->dsm.start;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007086 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007087 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02007088 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007089 pctx_size);
7090 goto out;
7091 }
7092
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007093 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
7094
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007095 /*
7096 * From the Gunit register HAS:
7097 * The Gfx driver is expected to program this register and ensure
7098 * proper allocation within Gfx stolen memory. For example, this
7099 * register should be programmed such than the PCBR range does not
7100 * overlap with other ranges, such as the frame buffer, protected
7101 * memory, or any other relevant ranges.
7102 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007103 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007104 if (!pctx) {
7105 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00007106 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007107 }
7108
Matthew Auld77894222017-12-11 15:18:18 +00007109 GEM_BUG_ON(range_overflows_t(u64,
7110 dev_priv->dsm.start,
7111 pctx->stolen->start,
7112 U32_MAX));
7113 pctx_paddr = dev_priv->dsm.start + pctx->stolen->start;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007114 I915_WRITE(VLV_PCBR, pctx_paddr);
7115
7116out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007117 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007118 dev_priv->vlv_pctx = pctx;
7119}
7120
Chris Wilsondc979972016-05-10 14:10:04 +01007121static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007122{
Imre Deakae484342014-03-31 15:10:44 +03007123 if (WARN_ON(!dev_priv->vlv_pctx))
7124 return;
7125
Chris Wilsonf0cd5182016-10-28 13:58:43 +01007126 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03007127 dev_priv->vlv_pctx = NULL;
7128}
7129
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007130static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
7131{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007132 dev_priv->gt_pm.rps.gpll_ref_freq =
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007133 vlv_get_cck_clock(dev_priv, "GPLL ref",
7134 CCK_GPLL_CLOCK_CONTROL,
7135 dev_priv->czclk_freq);
7136
7137 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007138 dev_priv->gt_pm.rps.gpll_ref_freq);
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007139}
7140
Chris Wilsondc979972016-05-10 14:10:04 +01007141static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007142{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007143 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007144 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03007145
Chris Wilsondc979972016-05-10 14:10:04 +01007146 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007147
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007148 vlv_init_gpll_ref_freq(dev_priv);
7149
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007150 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7151 switch ((val >> 6) & 3) {
7152 case 0:
7153 case 1:
7154 dev_priv->mem_freq = 800;
7155 break;
7156 case 2:
7157 dev_priv->mem_freq = 1066;
7158 break;
7159 case 3:
7160 dev_priv->mem_freq = 1333;
7161 break;
7162 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007163 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007164
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007165 rps->max_freq = valleyview_rps_max_freq(dev_priv);
7166 rps->rp0_freq = rps->max_freq;
Imre Deak4e805192014-04-14 20:24:41 +03007167 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007168 intel_gpu_freq(dev_priv, rps->max_freq),
7169 rps->max_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007170
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007171 rps->efficient_freq = valleyview_rps_rpe_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007172 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007173 intel_gpu_freq(dev_priv, rps->efficient_freq),
7174 rps->efficient_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007175
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007176 rps->rp1_freq = valleyview_rps_guar_freq(dev_priv);
Deepak Sf8f2b002014-07-10 13:16:21 +05307177 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007178 intel_gpu_freq(dev_priv, rps->rp1_freq),
7179 rps->rp1_freq);
Deepak Sf8f2b002014-07-10 13:16:21 +05307180
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007181 rps->min_freq = valleyview_rps_min_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007182 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007183 intel_gpu_freq(dev_priv, rps->min_freq),
7184 rps->min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007185}
7186
Chris Wilsondc979972016-05-10 14:10:04 +01007187static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307188{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007189 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007190 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05307191
Chris Wilsondc979972016-05-10 14:10:04 +01007192 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307193
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007194 vlv_init_gpll_ref_freq(dev_priv);
7195
Ville Syrjäläa5805162015-05-26 20:42:30 +03007196 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007197 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007198 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007199
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007200 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007201 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007202 dev_priv->mem_freq = 2000;
7203 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007204 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007205 dev_priv->mem_freq = 1600;
7206 break;
7207 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007208 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007209
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007210 rps->max_freq = cherryview_rps_max_freq(dev_priv);
7211 rps->rp0_freq = rps->max_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05307212 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007213 intel_gpu_freq(dev_priv, rps->max_freq),
7214 rps->max_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307215
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007216 rps->efficient_freq = cherryview_rps_rpe_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307217 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007218 intel_gpu_freq(dev_priv, rps->efficient_freq),
7219 rps->efficient_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307220
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007221 rps->rp1_freq = cherryview_rps_guar_freq(dev_priv);
Deepak S7707df42014-07-12 18:46:14 +05307222 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007223 intel_gpu_freq(dev_priv, rps->rp1_freq),
7224 rps->rp1_freq);
Deepak S7707df42014-07-12 18:46:14 +05307225
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007226 rps->min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307227 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007228 intel_gpu_freq(dev_priv, rps->min_freq),
7229 rps->min_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307230
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007231 WARN_ONCE((rps->max_freq | rps->efficient_freq | rps->rp1_freq |
7232 rps->min_freq) & 1,
Ville Syrjälä1c147622014-08-18 14:42:43 +03007233 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05307234}
7235
Chris Wilsondc979972016-05-10 14:10:04 +01007236static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007237{
Chris Wilsondc979972016-05-10 14:10:04 +01007238 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007239}
7240
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007241static void cherryview_enable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307242{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007243 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307244 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007245 u32 gtfifodbg, rc6_mode, pcbr;
Deepak S38807742014-05-23 21:00:15 +05307246
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007247 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
7248 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05307249 if (gtfifodbg) {
7250 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7251 gtfifodbg);
7252 I915_WRITE(GTFIFODBG, gtfifodbg);
7253 }
7254
7255 cherryview_check_pctx(dev_priv);
7256
7257 /* 1a & 1b: Get forcewake during program sequence. Although the driver
7258 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007259 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307260
Ville Syrjälä160614a2015-01-19 13:50:47 +02007261 /* Disable RC states. */
7262 I915_WRITE(GEN6_RC_CONTROL, 0);
7263
Deepak S38807742014-05-23 21:00:15 +05307264 /* 2a: Program RC6 thresholds.*/
7265 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7266 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7267 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
7268
Akash Goel3b3f1652016-10-13 22:44:48 +05307269 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007270 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05307271 I915_WRITE(GEN6_RC_SLEEP, 0);
7272
Deepak Sf4f71c72015-03-28 15:23:35 +05307273 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
7274 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05307275
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007276 /* Allows RC6 residency counter to work */
Deepak S38807742014-05-23 21:00:15 +05307277 I915_WRITE(VLV_COUNTER_CONTROL,
7278 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7279 VLV_MEDIA_RC6_COUNT_EN |
7280 VLV_RENDER_RC6_COUNT_EN));
7281
7282 /* For now we assume BIOS is allocating and populating the PCBR */
7283 pcbr = I915_READ(VLV_PCBR);
7284
Deepak S38807742014-05-23 21:00:15 +05307285 /* 3: Enable RC6 */
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007286 rc6_mode = 0;
7287 if (pcbr >> VLV_PCBR_ADDR_SHIFT)
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02007288 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05307289 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7290
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007291 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7292}
7293
7294static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
7295{
7296 u32 val;
7297
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007298 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7299
7300 /* 1: Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02007301 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05307302 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7303 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7304 I915_WRITE(GEN6_RP_UP_EI, 66000);
7305 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7306
7307 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7308
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007309 /* 2: Enable RPS */
Deepak S2b6b3a02014-05-27 15:59:30 +05307310 I915_WRITE(GEN6_RP_CONTROL,
7311 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02007312 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05307313 GEN6_RP_ENABLE |
7314 GEN6_RP_UP_BUSY_AVG |
7315 GEN6_RP_DOWN_IDLE_AVG);
7316
Deepak S3ef62342015-04-29 08:36:24 +05307317 /* Setting Fixed Bias */
7318 val = VLV_OVERRIDE_EN |
7319 VLV_SOC_TDP_EN |
7320 CHV_BIAS_CPU_50_SOC_50;
7321 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7322
Deepak S2b6b3a02014-05-27 15:59:30 +05307323 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7324
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007325 /* RPS code assumes GPLL is used */
7326 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7327
Jani Nikula742f4912015-09-03 11:16:09 +03007328 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05307329 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7330
Chris Wilson3a45b052016-07-13 09:10:32 +01007331 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05307332
Mika Kuoppala59bad942015-01-16 11:34:40 +02007333 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307334}
7335
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007336static void valleyview_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007337{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007338 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307339 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007340 u32 gtfifodbg;
Jesse Barnes0a073b82013-04-17 15:54:58 -07007341
Imre Deakae484342014-03-31 15:10:44 +03007342 valleyview_check_pctx(dev_priv);
7343
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007344 gtfifodbg = I915_READ(GTFIFODBG);
7345 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07007346 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7347 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007348 I915_WRITE(GTFIFODBG, gtfifodbg);
7349 }
7350
Mika Kuoppala59bad942015-01-16 11:34:40 +02007351 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007352
Ville Syrjälä160614a2015-01-19 13:50:47 +02007353 /* Disable RC states. */
7354 I915_WRITE(GEN6_RC_CONTROL, 0);
7355
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007356 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
7357 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7358 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7359
7360 for_each_engine(engine, dev_priv, id)
7361 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
7362
7363 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
7364
7365 /* Allows RC6 residency counter to work */
7366 I915_WRITE(VLV_COUNTER_CONTROL,
7367 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7368 VLV_MEDIA_RC0_COUNT_EN |
7369 VLV_RENDER_RC0_COUNT_EN |
7370 VLV_MEDIA_RC6_COUNT_EN |
7371 VLV_RENDER_RC6_COUNT_EN));
7372
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007373 I915_WRITE(GEN6_RC_CONTROL,
7374 GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL);
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007375
7376 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7377}
7378
7379static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
7380{
7381 u32 val;
7382
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007383 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7384
Ville Syrjäläcad725f2015-01-19 13:50:48 +02007385 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007386 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7387 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7388 I915_WRITE(GEN6_RP_UP_EI, 66000);
7389 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7390
7391 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7392
7393 I915_WRITE(GEN6_RP_CONTROL,
7394 GEN6_RP_MEDIA_TURBO |
7395 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7396 GEN6_RP_MEDIA_IS_GFX |
7397 GEN6_RP_ENABLE |
7398 GEN6_RP_UP_BUSY_AVG |
7399 GEN6_RP_DOWN_IDLE_CONT);
7400
Deepak S3ef62342015-04-29 08:36:24 +05307401 /* Setting Fixed Bias */
7402 val = VLV_OVERRIDE_EN |
7403 VLV_SOC_TDP_EN |
7404 VLV_BIAS_CPU_125_SOC_875;
7405 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7406
Jani Nikula64936252013-05-22 15:36:20 +03007407 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007408
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007409 /* RPS code assumes GPLL is used */
7410 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7411
Jani Nikula742f4912015-09-03 11:16:09 +03007412 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07007413 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7414
Chris Wilson3a45b052016-07-13 09:10:32 +01007415 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007416
Mika Kuoppala59bad942015-01-16 11:34:40 +02007417 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007418}
7419
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007420static unsigned long intel_pxfreq(u32 vidfreq)
7421{
7422 unsigned long freq;
7423 int div = (vidfreq & 0x3f0000) >> 16;
7424 int post = (vidfreq & 0x3000) >> 12;
7425 int pre = (vidfreq & 0x7);
7426
7427 if (!pre)
7428 return 0;
7429
7430 freq = ((div * 133333) / ((1<<post) * pre));
7431
7432 return freq;
7433}
7434
Daniel Vettereb48eb02012-04-26 23:28:12 +02007435static const struct cparams {
7436 u16 i;
7437 u16 t;
7438 u16 m;
7439 u16 c;
7440} cparams[] = {
7441 { 1, 1333, 301, 28664 },
7442 { 1, 1066, 294, 24460 },
7443 { 1, 800, 294, 25192 },
7444 { 0, 1333, 276, 27605 },
7445 { 0, 1066, 276, 27605 },
7446 { 0, 800, 231, 23784 },
7447};
7448
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007449static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007450{
7451 u64 total_count, diff, ret;
7452 u32 count1, count2, count3, m = 0, c = 0;
7453 unsigned long now = jiffies_to_msecs(jiffies), diff1;
7454 int i;
7455
Chris Wilson67520412017-03-02 13:28:01 +00007456 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007457
Daniel Vetter20e4d402012-08-08 23:35:39 +02007458 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007459
7460 /* Prevent division-by-zero if we are asking too fast.
7461 * Also, we don't get interesting results if we are polling
7462 * faster than once in 10ms, so just return the saved value
7463 * in such cases.
7464 */
7465 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02007466 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007467
7468 count1 = I915_READ(DMIEC);
7469 count2 = I915_READ(DDREC);
7470 count3 = I915_READ(CSIEC);
7471
7472 total_count = count1 + count2 + count3;
7473
7474 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02007475 if (total_count < dev_priv->ips.last_count1) {
7476 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007477 diff += total_count;
7478 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007479 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007480 }
7481
7482 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007483 if (cparams[i].i == dev_priv->ips.c_m &&
7484 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02007485 m = cparams[i].m;
7486 c = cparams[i].c;
7487 break;
7488 }
7489 }
7490
7491 diff = div_u64(diff, diff1);
7492 ret = ((m * diff) + c);
7493 ret = div_u64(ret, 10);
7494
Daniel Vetter20e4d402012-08-08 23:35:39 +02007495 dev_priv->ips.last_count1 = total_count;
7496 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007497
Daniel Vetter20e4d402012-08-08 23:35:39 +02007498 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007499
7500 return ret;
7501}
7502
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007503unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
7504{
7505 unsigned long val;
7506
Chris Wilsondc979972016-05-10 14:10:04 +01007507 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007508 return 0;
7509
7510 spin_lock_irq(&mchdev_lock);
7511
7512 val = __i915_chipset_val(dev_priv);
7513
7514 spin_unlock_irq(&mchdev_lock);
7515
7516 return val;
7517}
7518
Daniel Vettereb48eb02012-04-26 23:28:12 +02007519unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
7520{
7521 unsigned long m, x, b;
7522 u32 tsfs;
7523
7524 tsfs = I915_READ(TSFS);
7525
7526 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
7527 x = I915_READ8(TR1);
7528
7529 b = tsfs & TSFS_INTR_MASK;
7530
7531 return ((m * x) / 127) - b;
7532}
7533
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007534static int _pxvid_to_vd(u8 pxvid)
7535{
7536 if (pxvid == 0)
7537 return 0;
7538
7539 if (pxvid >= 8 && pxvid < 31)
7540 pxvid = 31;
7541
7542 return (pxvid + 2) * 125;
7543}
7544
7545static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007546{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007547 const int vd = _pxvid_to_vd(pxvid);
7548 const int vm = vd - 1125;
7549
Chris Wilsondc979972016-05-10 14:10:04 +01007550 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007551 return vm > 0 ? vm : 0;
7552
7553 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007554}
7555
Daniel Vetter02d71952012-08-09 16:44:54 +02007556static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007557{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007558 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007559 u32 count;
7560
Chris Wilson67520412017-03-02 13:28:01 +00007561 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007562
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007563 now = ktime_get_raw_ns();
7564 diffms = now - dev_priv->ips.last_time2;
7565 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007566
7567 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02007568 if (!diffms)
7569 return;
7570
7571 count = I915_READ(GFXEC);
7572
Daniel Vetter20e4d402012-08-08 23:35:39 +02007573 if (count < dev_priv->ips.last_count2) {
7574 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007575 diff += count;
7576 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007577 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007578 }
7579
Daniel Vetter20e4d402012-08-08 23:35:39 +02007580 dev_priv->ips.last_count2 = count;
7581 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007582
7583 /* More magic constants... */
7584 diff = diff * 1181;
7585 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02007586 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007587}
7588
Daniel Vetter02d71952012-08-09 16:44:54 +02007589void i915_update_gfx_val(struct drm_i915_private *dev_priv)
7590{
Chris Wilsondc979972016-05-10 14:10:04 +01007591 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02007592 return;
7593
Daniel Vetter92703882012-08-09 16:46:01 +02007594 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007595
7596 __i915_update_gfx_val(dev_priv);
7597
Daniel Vetter92703882012-08-09 16:46:01 +02007598 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007599}
7600
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007601static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007602{
7603 unsigned long t, corr, state1, corr2, state2;
7604 u32 pxvid, ext_v;
7605
Chris Wilson67520412017-03-02 13:28:01 +00007606 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007607
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007608 pxvid = I915_READ(PXVFREQ(dev_priv->gt_pm.rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02007609 pxvid = (pxvid >> 24) & 0x7f;
7610 ext_v = pvid_to_extvid(dev_priv, pxvid);
7611
7612 state1 = ext_v;
7613
7614 t = i915_mch_val(dev_priv);
7615
7616 /* Revel in the empirically derived constants */
7617
7618 /* Correction factor in 1/100000 units */
7619 if (t > 80)
7620 corr = ((t * 2349) + 135940);
7621 else if (t >= 50)
7622 corr = ((t * 964) + 29317);
7623 else /* < 50 */
7624 corr = ((t * 301) + 1004);
7625
7626 corr = corr * ((150142 * state1) / 10000 - 78642);
7627 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02007628 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007629
7630 state2 = (corr2 * state1) / 10000;
7631 state2 /= 100; /* convert to mW */
7632
Daniel Vetter02d71952012-08-09 16:44:54 +02007633 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007634
Daniel Vetter20e4d402012-08-08 23:35:39 +02007635 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007636}
7637
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007638unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
7639{
7640 unsigned long val;
7641
Chris Wilsondc979972016-05-10 14:10:04 +01007642 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007643 return 0;
7644
7645 spin_lock_irq(&mchdev_lock);
7646
7647 val = __i915_gfx_val(dev_priv);
7648
7649 spin_unlock_irq(&mchdev_lock);
7650
7651 return val;
7652}
7653
Daniel Vettereb48eb02012-04-26 23:28:12 +02007654/**
7655 * i915_read_mch_val - return value for IPS use
7656 *
7657 * Calculate and return a value for the IPS driver to use when deciding whether
7658 * we have thermal and power headroom to increase CPU or GPU power budget.
7659 */
7660unsigned long i915_read_mch_val(void)
7661{
7662 struct drm_i915_private *dev_priv;
7663 unsigned long chipset_val, graphics_val, ret = 0;
7664
Daniel Vetter92703882012-08-09 16:46:01 +02007665 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007666 if (!i915_mch_dev)
7667 goto out_unlock;
7668 dev_priv = i915_mch_dev;
7669
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007670 chipset_val = __i915_chipset_val(dev_priv);
7671 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007672
7673 ret = chipset_val + graphics_val;
7674
7675out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007676 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007677
7678 return ret;
7679}
7680EXPORT_SYMBOL_GPL(i915_read_mch_val);
7681
7682/**
7683 * i915_gpu_raise - raise GPU frequency limit
7684 *
7685 * Raise the limit; IPS indicates we have thermal headroom.
7686 */
7687bool i915_gpu_raise(void)
7688{
7689 struct drm_i915_private *dev_priv;
7690 bool ret = true;
7691
Daniel Vetter92703882012-08-09 16:46:01 +02007692 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007693 if (!i915_mch_dev) {
7694 ret = false;
7695 goto out_unlock;
7696 }
7697 dev_priv = i915_mch_dev;
7698
Daniel Vetter20e4d402012-08-08 23:35:39 +02007699 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
7700 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007701
7702out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007703 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007704
7705 return ret;
7706}
7707EXPORT_SYMBOL_GPL(i915_gpu_raise);
7708
7709/**
7710 * i915_gpu_lower - lower GPU frequency limit
7711 *
7712 * IPS indicates we're close to a thermal limit, so throttle back the GPU
7713 * frequency maximum.
7714 */
7715bool i915_gpu_lower(void)
7716{
7717 struct drm_i915_private *dev_priv;
7718 bool ret = true;
7719
Daniel Vetter92703882012-08-09 16:46:01 +02007720 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007721 if (!i915_mch_dev) {
7722 ret = false;
7723 goto out_unlock;
7724 }
7725 dev_priv = i915_mch_dev;
7726
Daniel Vetter20e4d402012-08-08 23:35:39 +02007727 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
7728 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007729
7730out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007731 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007732
7733 return ret;
7734}
7735EXPORT_SYMBOL_GPL(i915_gpu_lower);
7736
7737/**
7738 * i915_gpu_busy - indicate GPU business to IPS
7739 *
7740 * Tell the IPS driver whether or not the GPU is busy.
7741 */
7742bool i915_gpu_busy(void)
7743{
Daniel Vettereb48eb02012-04-26 23:28:12 +02007744 bool ret = false;
7745
Daniel Vetter92703882012-08-09 16:46:01 +02007746 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01007747 if (i915_mch_dev)
7748 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02007749 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007750
7751 return ret;
7752}
7753EXPORT_SYMBOL_GPL(i915_gpu_busy);
7754
7755/**
7756 * i915_gpu_turbo_disable - disable graphics turbo
7757 *
7758 * Disable graphics turbo by resetting the max frequency and setting the
7759 * current frequency to the default.
7760 */
7761bool i915_gpu_turbo_disable(void)
7762{
7763 struct drm_i915_private *dev_priv;
7764 bool ret = true;
7765
Daniel Vetter92703882012-08-09 16:46:01 +02007766 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007767 if (!i915_mch_dev) {
7768 ret = false;
7769 goto out_unlock;
7770 }
7771 dev_priv = i915_mch_dev;
7772
Daniel Vetter20e4d402012-08-08 23:35:39 +02007773 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007774
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007775 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02007776 ret = false;
7777
7778out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007779 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007780
7781 return ret;
7782}
7783EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
7784
7785/**
7786 * Tells the intel_ips driver that the i915 driver is now loaded, if
7787 * IPS got loaded first.
7788 *
7789 * This awkward dance is so that neither module has to depend on the
7790 * other in order for IPS to do the appropriate communication of
7791 * GPU turbo limits to i915.
7792 */
7793static void
7794ips_ping_for_i915_load(void)
7795{
7796 void (*link)(void);
7797
7798 link = symbol_get(ips_link_to_i915_driver);
7799 if (link) {
7800 link();
7801 symbol_put(ips_link_to_i915_driver);
7802 }
7803}
7804
7805void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
7806{
Daniel Vetter02d71952012-08-09 16:44:54 +02007807 /* We only register the i915 ips part with intel-ips once everything is
7808 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02007809 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007810 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02007811 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007812
7813 ips_ping_for_i915_load();
7814}
7815
7816void intel_gpu_ips_teardown(void)
7817{
Daniel Vetter92703882012-08-09 16:46:01 +02007818 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007819 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02007820 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007821}
Deepak S76c3552f2014-01-30 23:08:16 +05307822
Chris Wilsondc979972016-05-10 14:10:04 +01007823static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007824{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007825 u32 lcfuse;
7826 u8 pxw[16];
7827 int i;
7828
7829 /* Disable to program */
7830 I915_WRITE(ECR, 0);
7831 POSTING_READ(ECR);
7832
7833 /* Program energy weights for various events */
7834 I915_WRITE(SDEW, 0x15040d00);
7835 I915_WRITE(CSIEW0, 0x007f0000);
7836 I915_WRITE(CSIEW1, 0x1e220004);
7837 I915_WRITE(CSIEW2, 0x04000004);
7838
7839 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007840 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007841 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007842 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007843
7844 /* Program P-state weights to account for frequency power adjustment */
7845 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03007846 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007847 unsigned long freq = intel_pxfreq(pxvidfreq);
7848 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
7849 PXVFREQ_PX_SHIFT;
7850 unsigned long val;
7851
7852 val = vid * vid;
7853 val *= (freq / 1000);
7854 val *= 255;
7855 val /= (127*127*900);
7856 if (val > 0xff)
7857 DRM_ERROR("bad pxval: %ld\n", val);
7858 pxw[i] = val;
7859 }
7860 /* Render standby states get 0 weight */
7861 pxw[14] = 0;
7862 pxw[15] = 0;
7863
7864 for (i = 0; i < 4; i++) {
7865 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
7866 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03007867 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007868 }
7869
7870 /* Adjust magic regs to magic values (more experimental results) */
7871 I915_WRITE(OGW0, 0);
7872 I915_WRITE(OGW1, 0);
7873 I915_WRITE(EG0, 0x00007f00);
7874 I915_WRITE(EG1, 0x0000000e);
7875 I915_WRITE(EG2, 0x000e0000);
7876 I915_WRITE(EG3, 0x68000300);
7877 I915_WRITE(EG4, 0x42000000);
7878 I915_WRITE(EG5, 0x00140031);
7879 I915_WRITE(EG6, 0);
7880 I915_WRITE(EG7, 0);
7881
7882 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007883 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007884
7885 /* Enable PMON + select events */
7886 I915_WRITE(ECR, 0x80000019);
7887
7888 lcfuse = I915_READ(LCFUSE02);
7889
Daniel Vetter20e4d402012-08-08 23:35:39 +02007890 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007891}
7892
Chris Wilsondc979972016-05-10 14:10:04 +01007893void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007894{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007895 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7896
Imre Deakb268c692015-12-15 20:10:31 +02007897 /*
7898 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
7899 * requirement.
7900 */
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007901 if (!sanitize_rc6(dev_priv)) {
Imre Deakb268c692015-12-15 20:10:31 +02007902 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
7903 intel_runtime_pm_get(dev_priv);
7904 }
Imre Deake6069ca2014-04-18 16:01:02 +03007905
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007906 mutex_lock(&dev_priv->pcu_lock);
Chris Wilson773ea9a2016-07-13 09:10:33 +01007907
7908 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01007909 if (IS_CHERRYVIEW(dev_priv))
7910 cherryview_init_gt_powersave(dev_priv);
7911 else if (IS_VALLEYVIEW(dev_priv))
7912 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01007913 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01007914 gen6_init_rps_frequencies(dev_priv);
7915
7916 /* Derive initial user preferences/limits from the hardware limits */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007917 rps->idle_freq = rps->min_freq;
7918 rps->cur_freq = rps->idle_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007919
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007920 rps->max_freq_softlimit = rps->max_freq;
7921 rps->min_freq_softlimit = rps->min_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007922
7923 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007924 rps->min_freq_softlimit =
Chris Wilson773ea9a2016-07-13 09:10:33 +01007925 max_t(int,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007926 rps->efficient_freq,
Chris Wilson773ea9a2016-07-13 09:10:33 +01007927 intel_freq_opcode(dev_priv, 450));
7928
Chris Wilson99ac9612016-07-13 09:10:34 +01007929 /* After setting max-softlimit, find the overclock max freq */
7930 if (IS_GEN6(dev_priv) ||
7931 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
7932 u32 params = 0;
7933
7934 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
7935 if (params & BIT(31)) { /* OC supported */
7936 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007937 (rps->max_freq & 0xff) * 50,
Chris Wilson99ac9612016-07-13 09:10:34 +01007938 (params & 0xff) * 50);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007939 rps->max_freq = params & 0xff;
Chris Wilson99ac9612016-07-13 09:10:34 +01007940 }
7941 }
7942
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007943 /* Finally allow us to boost to max by default */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007944 rps->boost_freq = rps->max_freq;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007945
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007946 mutex_unlock(&dev_priv->pcu_lock);
Imre Deakae484342014-03-31 15:10:44 +03007947}
7948
Chris Wilsondc979972016-05-10 14:10:04 +01007949void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007950{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03007951 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01007952 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02007953
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007954 if (!HAS_RC6(dev_priv))
Imre Deakb268c692015-12-15 20:10:31 +02007955 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007956}
7957
Chris Wilson54b4f682016-07-21 21:16:19 +01007958/**
7959 * intel_suspend_gt_powersave - suspend PM work and helper threads
7960 * @dev_priv: i915 device
7961 *
7962 * We don't want to disable RC6 or other features here, we just want
7963 * to make sure any work we've queued has finished and won't bother
7964 * us while we're suspended.
7965 */
7966void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
7967{
7968 if (INTEL_GEN(dev_priv) < 6)
7969 return;
7970
Chris Wilson54b4f682016-07-21 21:16:19 +01007971 /* gen6_rps_idle() will be called later to disable interrupts */
7972}
7973
Chris Wilsonb7137e02016-07-13 09:10:37 +01007974void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
7975{
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007976 dev_priv->gt_pm.rps.enabled = true; /* force RPS disabling */
7977 dev_priv->gt_pm.rc6.enabled = true; /* force RC6 disabling */
Chris Wilsonb7137e02016-07-13 09:10:37 +01007978 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007979
7980 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07007981}
7982
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007983static inline void intel_disable_llc_pstate(struct drm_i915_private *i915)
7984{
7985 lockdep_assert_held(&i915->pcu_lock);
7986
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007987 if (!i915->gt_pm.llc_pstate.enabled)
7988 return;
7989
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007990 /* Currently there is no HW configuration to be done to disable. */
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007991
7992 i915->gt_pm.llc_pstate.enabled = false;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007993}
7994
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01007995static void intel_disable_rc6(struct drm_i915_private *dev_priv)
7996{
7997 lockdep_assert_held(&dev_priv->pcu_lock);
7998
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007999 if (!dev_priv->gt_pm.rc6.enabled)
8000 return;
8001
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008002 if (INTEL_GEN(dev_priv) >= 9)
8003 gen9_disable_rc6(dev_priv);
8004 else if (IS_CHERRYVIEW(dev_priv))
8005 cherryview_disable_rc6(dev_priv);
8006 else if (IS_VALLEYVIEW(dev_priv))
8007 valleyview_disable_rc6(dev_priv);
8008 else if (INTEL_GEN(dev_priv) >= 6)
8009 gen6_disable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008010
8011 dev_priv->gt_pm.rc6.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008012}
8013
8014static void intel_disable_rps(struct drm_i915_private *dev_priv)
8015{
8016 lockdep_assert_held(&dev_priv->pcu_lock);
8017
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008018 if (!dev_priv->gt_pm.rps.enabled)
8019 return;
8020
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008021 if (INTEL_GEN(dev_priv) >= 9)
8022 gen9_disable_rps(dev_priv);
8023 else if (IS_CHERRYVIEW(dev_priv))
8024 cherryview_disable_rps(dev_priv);
8025 else if (IS_VALLEYVIEW(dev_priv))
8026 valleyview_disable_rps(dev_priv);
8027 else if (INTEL_GEN(dev_priv) >= 6)
8028 gen6_disable_rps(dev_priv);
8029 else if (IS_IRONLAKE_M(dev_priv))
8030 ironlake_disable_drps(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008031
8032 dev_priv->gt_pm.rps.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008033}
8034
Chris Wilsondc979972016-05-10 14:10:04 +01008035void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008036{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008037 mutex_lock(&dev_priv->pcu_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008038
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008039 intel_disable_rc6(dev_priv);
8040 intel_disable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008041 if (HAS_LLC(dev_priv))
8042 intel_disable_llc_pstate(dev_priv);
8043
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008044 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008045}
8046
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008047static inline void intel_enable_llc_pstate(struct drm_i915_private *i915)
8048{
8049 lockdep_assert_held(&i915->pcu_lock);
8050
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008051 if (i915->gt_pm.llc_pstate.enabled)
8052 return;
8053
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008054 gen6_update_ring_freq(i915);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008055
8056 i915->gt_pm.llc_pstate.enabled = true;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008057}
8058
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008059static void intel_enable_rc6(struct drm_i915_private *dev_priv)
8060{
8061 lockdep_assert_held(&dev_priv->pcu_lock);
8062
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008063 if (dev_priv->gt_pm.rc6.enabled)
8064 return;
8065
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008066 if (IS_CHERRYVIEW(dev_priv))
8067 cherryview_enable_rc6(dev_priv);
8068 else if (IS_VALLEYVIEW(dev_priv))
8069 valleyview_enable_rc6(dev_priv);
8070 else if (INTEL_GEN(dev_priv) >= 9)
8071 gen9_enable_rc6(dev_priv);
8072 else if (IS_BROADWELL(dev_priv))
8073 gen8_enable_rc6(dev_priv);
8074 else if (INTEL_GEN(dev_priv) >= 6)
8075 gen6_enable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008076
8077 dev_priv->gt_pm.rc6.enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008078}
8079
8080static void intel_enable_rps(struct drm_i915_private *dev_priv)
8081{
8082 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8083
8084 lockdep_assert_held(&dev_priv->pcu_lock);
8085
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008086 if (rps->enabled)
8087 return;
8088
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008089 if (IS_CHERRYVIEW(dev_priv)) {
8090 cherryview_enable_rps(dev_priv);
8091 } else if (IS_VALLEYVIEW(dev_priv)) {
8092 valleyview_enable_rps(dev_priv);
8093 } else if (INTEL_GEN(dev_priv) >= 9) {
8094 gen9_enable_rps(dev_priv);
8095 } else if (IS_BROADWELL(dev_priv)) {
8096 gen8_enable_rps(dev_priv);
8097 } else if (INTEL_GEN(dev_priv) >= 6) {
8098 gen6_enable_rps(dev_priv);
8099 } else if (IS_IRONLAKE_M(dev_priv)) {
8100 ironlake_enable_drps(dev_priv);
8101 intel_init_emon(dev_priv);
8102 }
8103
8104 WARN_ON(rps->max_freq < rps->min_freq);
8105 WARN_ON(rps->idle_freq > rps->max_freq);
8106
8107 WARN_ON(rps->efficient_freq < rps->min_freq);
8108 WARN_ON(rps->efficient_freq > rps->max_freq);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008109
8110 rps->enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008111}
8112
Chris Wilsonb7137e02016-07-13 09:10:37 +01008113void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
8114{
Chris Wilsonb7137e02016-07-13 09:10:37 +01008115 /* Powersaving is controlled by the host when inside a VM */
8116 if (intel_vgpu_active(dev_priv))
8117 return;
8118
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008119 mutex_lock(&dev_priv->pcu_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02008120
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00008121 if (HAS_RC6(dev_priv))
8122 intel_enable_rc6(dev_priv);
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008123 intel_enable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008124 if (HAS_LLC(dev_priv))
8125 intel_enable_llc_pstate(dev_priv);
8126
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008127 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008128}
Imre Deakc6df39b2014-04-14 20:24:29 +03008129
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008130static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008131{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008132 /*
8133 * On Ibex Peak and Cougar Point, we need to disable clock
8134 * gating for the panel power sequencer or it will fail to
8135 * start up when no ports are active.
8136 */
8137 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
8138}
8139
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008140static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008141{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008142 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008143
Damien Lespiau055e3932014-08-18 13:49:10 +01008144 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008145 I915_WRITE(DSPCNTR(pipe),
8146 I915_READ(DSPCNTR(pipe)) |
8147 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008148
8149 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
8150 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008151 }
8152}
8153
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008154static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008155{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008156 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008157
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01008158 /*
8159 * Required for FBC
8160 * WaFbcDisableDpfcClockGating:ilk
8161 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008162 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
8163 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
8164 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008165
8166 I915_WRITE(PCH_3DCGDIS0,
8167 MARIUNIT_CLOCK_GATE_DISABLE |
8168 SVSMUNIT_CLOCK_GATE_DISABLE);
8169 I915_WRITE(PCH_3DCGDIS1,
8170 VFMUNIT_CLOCK_GATE_DISABLE);
8171
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008172 /*
8173 * According to the spec the following bits should be set in
8174 * order to enable memory self-refresh
8175 * The bit 22/21 of 0x42004
8176 * The bit 5 of 0x42020
8177 * The bit 15 of 0x45000
8178 */
8179 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8180 (I915_READ(ILK_DISPLAY_CHICKEN2) |
8181 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008182 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008183 I915_WRITE(DISP_ARB_CTL,
8184 (I915_READ(DISP_ARB_CTL) |
8185 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02008186
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008187 /*
8188 * Based on the document from hardware guys the following bits
8189 * should be set unconditionally in order to enable FBC.
8190 * The bit 22 of 0x42000
8191 * The bit 22 of 0x42004
8192 * The bit 7,8,9 of 0x42020.
8193 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008194 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01008195 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008196 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8197 I915_READ(ILK_DISPLAY_CHICKEN1) |
8198 ILK_FBCQ_DIS);
8199 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8200 I915_READ(ILK_DISPLAY_CHICKEN2) |
8201 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008202 }
8203
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008204 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
8205
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008206 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8207 I915_READ(ILK_DISPLAY_CHICKEN2) |
8208 ILK_ELPIN_409_SELECT);
8209 I915_WRITE(_3D_CHICKEN2,
8210 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
8211 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02008212
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008213 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02008214 I915_WRITE(CACHE_MODE_0,
8215 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01008216
Akash Goel4e046322014-04-04 17:14:38 +05308217 /* WaDisable_RenderCache_OperationalFlush:ilk */
8218 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8219
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008220 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03008221
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008222 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008223}
8224
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008225static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008226{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008227 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008228 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01008229
8230 /*
8231 * On Ibex Peak and Cougar Point, we need to disable clock
8232 * gating for the panel power sequencer or it will fail to
8233 * start up when no ports are active.
8234 */
Jesse Barnescd664072013-10-02 10:34:19 -07008235 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
8236 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
8237 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008238 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
8239 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01008240 /* The below fixes the weird display corruption, a few pixels shifted
8241 * downward, on (only) LVDS of some HP laptops with IVY.
8242 */
Damien Lespiau055e3932014-08-18 13:49:10 +01008243 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008244 val = I915_READ(TRANS_CHICKEN2(pipe));
8245 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
8246 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008247 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008248 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008249 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
8250 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
8251 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008252 I915_WRITE(TRANS_CHICKEN2(pipe), val);
8253 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01008254 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01008255 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01008256 I915_WRITE(TRANS_CHICKEN1(pipe),
8257 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
8258 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008259}
8260
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008261static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008262{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008263 uint32_t tmp;
8264
8265 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02008266 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
8267 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
8268 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008269}
8270
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008271static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008272{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008273 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008274
Damien Lespiau231e54f2012-10-19 17:55:41 +01008275 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008276
8277 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8278 I915_READ(ILK_DISPLAY_CHICKEN2) |
8279 ILK_ELPIN_409_SELECT);
8280
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008281 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01008282 I915_WRITE(_3D_CHICKEN,
8283 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
8284
Akash Goel4e046322014-04-04 17:14:38 +05308285 /* WaDisable_RenderCache_OperationalFlush:snb */
8286 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8287
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008288 /*
8289 * BSpec recoomends 8x4 when MSAA is used,
8290 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008291 *
8292 * Note that PS/WM thread counts depend on the WIZ hashing
8293 * disable bit, which we don't touch here, but it's good
8294 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008295 */
8296 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008297 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008298
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008299 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02008300 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008301
8302 I915_WRITE(GEN6_UCGCTL1,
8303 I915_READ(GEN6_UCGCTL1) |
8304 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
8305 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
8306
8307 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
8308 * gating disable must be set. Failure to set it results in
8309 * flickering pixels due to Z write ordering failures after
8310 * some amount of runtime in the Mesa "fire" demo, and Unigine
8311 * Sanctuary and Tropics, and apparently anything else with
8312 * alpha test or pixel discard.
8313 *
8314 * According to the spec, bit 11 (RCCUNIT) must also be set,
8315 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008316 *
Ville Syrjäläef593182014-01-22 21:32:47 +02008317 * WaDisableRCCUnitClockGating:snb
8318 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008319 */
8320 I915_WRITE(GEN6_UCGCTL2,
8321 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
8322 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
8323
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02008324 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02008325 I915_WRITE(_3D_CHICKEN3,
8326 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008327
8328 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02008329 * Bspec says:
8330 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
8331 * 3DSTATE_SF number of SF output attributes is more than 16."
8332 */
8333 I915_WRITE(_3D_CHICKEN3,
8334 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
8335
8336 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008337 * According to the spec the following bits should be
8338 * set in order to enable memory self-refresh and fbc:
8339 * The bit21 and bit22 of 0x42000
8340 * The bit21 and bit22 of 0x42004
8341 * The bit5 and bit7 of 0x42020
8342 * The bit14 of 0x70180
8343 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01008344 *
8345 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008346 */
8347 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8348 I915_READ(ILK_DISPLAY_CHICKEN1) |
8349 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
8350 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8351 I915_READ(ILK_DISPLAY_CHICKEN2) |
8352 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01008353 I915_WRITE(ILK_DSPCLK_GATE_D,
8354 I915_READ(ILK_DSPCLK_GATE_D) |
8355 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
8356 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008357
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008358 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07008359
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008360 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008361
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008362 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008363}
8364
8365static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
8366{
8367 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
8368
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008369 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02008370 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008371 *
8372 * This actually overrides the dispatch
8373 * mode for all thread types.
8374 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008375 reg &= ~GEN7_FF_SCHED_MASK;
8376 reg |= GEN7_FF_TS_SCHED_HW;
8377 reg |= GEN7_FF_VS_SCHED_HW;
8378 reg |= GEN7_FF_DS_SCHED_HW;
8379
8380 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
8381}
8382
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008383static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008384{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008385 /*
8386 * TODO: this bit should only be enabled when really needed, then
8387 * disabled when not needed anymore in order to save power.
8388 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008389 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008390 I915_WRITE(SOUTH_DSPCLK_GATE_D,
8391 I915_READ(SOUTH_DSPCLK_GATE_D) |
8392 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008393
8394 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03008395 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
8396 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008397 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008398}
8399
Ville Syrjälä712bf362016-10-31 22:37:23 +02008400static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008401{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008402 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03008403 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
8404
8405 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8406 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8407 }
8408}
8409
Imre Deak450174f2016-05-03 15:54:21 +03008410static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
8411 int general_prio_credits,
8412 int high_prio_credits)
8413{
8414 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07008415 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03008416
8417 /* WaTempDisableDOPClkGating:bdw */
8418 misccpctl = I915_READ(GEN7_MISCCPCTL);
8419 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
8420
Oscar Mateo930a7842017-10-17 13:25:45 -07008421 val = I915_READ(GEN8_L3SQCREG1);
8422 val &= ~L3_PRIO_CREDITS_MASK;
8423 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8424 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8425 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03008426
8427 /*
8428 * Wait at least 100 clocks before re-enabling clock gating.
8429 * See the definition of L3SQCREG1 in BSpec.
8430 */
8431 POSTING_READ(GEN8_L3SQCREG1);
8432 udelay(1);
8433 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
8434}
8435
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008436static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
8437{
8438 if (!HAS_PCH_CNP(dev_priv))
8439 return;
8440
Lucas De Marchi2abf3c02017-12-05 11:01:18 -08008441 /* Display WA #1181: cnp */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07008442 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
8443 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008444}
8445
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008446static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008447{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008448 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008449 cnp_init_clock_gating(dev_priv);
8450
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07008451 /* This is not an Wa. Enable for better image quality */
8452 I915_WRITE(_3D_CHICKEN3,
8453 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
8454
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008455 /* WaEnableChickenDCPR:cnl */
8456 I915_WRITE(GEN8_CHICKEN_DCPR_1,
8457 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
8458
8459 /* WaFbcWakeMemOn:cnl */
8460 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
8461 DISP_FBC_MEMORY_WAKE);
8462
Chris Wilson34991bd2017-11-11 10:03:36 +00008463 val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE);
8464 /* ReadHitWriteOnlyDisable:cnl */
8465 val |= RCCUNIT_CLKGATE_DIS;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008466 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
8467 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
Chris Wilson34991bd2017-11-11 10:03:36 +00008468 val |= SARBUNIT_CLKGATE_DIS;
8469 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val);
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08008470
8471 /* WaDisableVFclkgate:cnl */
8472 val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE);
8473 val |= VFUNIT_CLKGATE_DIS;
8474 I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008475}
8476
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008477static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
8478{
8479 cnp_init_clock_gating(dev_priv);
8480 gen9_init_clock_gating(dev_priv);
8481
8482 /* WaFbcNukeOnHostModify:cfl */
8483 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8484 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
8485}
8486
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008487static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008488{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008489 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008490
8491 /* WaDisableSDEUnitClockGating:kbl */
8492 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8493 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8494 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03008495
8496 /* WaDisableGamClockGating:kbl */
8497 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8498 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8499 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008500
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008501 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008502 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8503 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008504}
8505
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008506static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008507{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008508 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03008509
8510 /* WAC6entrylatency:skl */
8511 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
8512 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008513
8514 /* WaFbcNukeOnHostModify:skl */
8515 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8516 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008517}
8518
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008519static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008520{
Matthew Auld8cb09832017-10-06 23:18:23 +01008521 /* The GTT cache must be disabled if the system is using 2M pages. */
8522 bool can_use_gtt_cache = !HAS_PAGE_SIZES(dev_priv,
8523 I915_GTT_PAGE_SIZE_2M);
Damien Lespiau07d27e22014-03-03 17:31:46 +00008524 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008525
Ben Widawskyab57fff2013-12-12 15:28:04 -08008526 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008527 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008528
Ben Widawskyab57fff2013-12-12 15:28:04 -08008529 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008530 I915_WRITE(CHICKEN_PAR1_1,
8531 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
8532
Ben Widawskyab57fff2013-12-12 15:28:04 -08008533 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01008534 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00008535 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02008536 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02008537 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008538 }
Ben Widawsky63801f22013-12-12 17:26:03 -08008539
Ben Widawskyab57fff2013-12-12 15:28:04 -08008540 /* WaVSRefCountFullforceMissDisable:bdw */
8541 /* WaDSRefCountFullforceMissDisable:bdw */
8542 I915_WRITE(GEN7_FF_THREAD_MODE,
8543 I915_READ(GEN7_FF_THREAD_MODE) &
8544 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02008545
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02008546 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8547 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02008548
8549 /* WaDisableSDEUnitClockGating:bdw */
8550 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8551 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00008552
Imre Deak450174f2016-05-03 15:54:21 +03008553 /* WaProgramL3SqcReg1Default:bdw */
8554 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03008555
Matthew Auld8cb09832017-10-06 23:18:23 +01008556 /* WaGttCachingOffByDefault:bdw */
8557 I915_WRITE(HSW_GTT_CACHE_EN, can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008558
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03008559 /* WaKVMNotificationOnConfigChange:bdw */
8560 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
8561 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
8562
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008563 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00008564
8565 /* WaDisableDopClockGating:bdw
8566 *
8567 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
8568 * clock gating.
8569 */
8570 I915_WRITE(GEN6_UCGCTL1,
8571 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008572}
8573
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008574static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008575{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07008576 /* L3 caching of data atomics doesn't work -- disable it. */
8577 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
8578 I915_WRITE(HSW_ROW_CHICKEN3,
8579 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
8580
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008581 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008582 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8583 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8584 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8585
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02008586 /* WaVSRefCountFullforceMissDisable:hsw */
8587 I915_WRITE(GEN7_FF_THREAD_MODE,
8588 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008589
Akash Goel4e046322014-04-04 17:14:38 +05308590 /* WaDisable_RenderCache_OperationalFlush:hsw */
8591 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8592
Chia-I Wufe27c602014-01-28 13:29:33 +08008593 /* enable HiZ Raw Stall Optimization */
8594 I915_WRITE(CACHE_MODE_0_GEN7,
8595 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8596
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008597 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008598 I915_WRITE(CACHE_MODE_1,
8599 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008600
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008601 /*
8602 * BSpec recommends 8x4 when MSAA is used,
8603 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008604 *
8605 * Note that PS/WM thread counts depend on the WIZ hashing
8606 * disable bit, which we don't touch here, but it's good
8607 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008608 */
8609 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008610 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008611
Kenneth Graunke94411592014-12-31 16:23:00 -08008612 /* WaSampleCChickenBitEnable:hsw */
8613 I915_WRITE(HALF_SLICE_CHICKEN3,
8614 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
8615
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008616 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07008617 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
8618
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008619 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008620}
8621
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008622static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008623{
Ben Widawsky20848222012-05-04 18:58:59 -07008624 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008625
Damien Lespiau231e54f2012-10-19 17:55:41 +01008626 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008627
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008628 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05008629 I915_WRITE(_3D_CHICKEN3,
8630 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8631
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008632 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008633 I915_WRITE(IVB_CHICKEN3,
8634 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8635 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8636
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008637 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008638 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07008639 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
8640 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008641
Akash Goel4e046322014-04-04 17:14:38 +05308642 /* WaDisable_RenderCache_OperationalFlush:ivb */
8643 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8644
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008645 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008646 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
8647 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
8648
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008649 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008650 I915_WRITE(GEN7_L3CNTLREG1,
8651 GEN7_WA_FOR_GEN7_L3_CONTROL);
8652 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07008653 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008654 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07008655 I915_WRITE(GEN7_ROW_CHICKEN2,
8656 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008657 else {
8658 /* must write both registers */
8659 I915_WRITE(GEN7_ROW_CHICKEN2,
8660 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07008661 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
8662 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008663 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008664
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008665 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05008666 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8667 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8668
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02008669 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008670 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008671 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008672 */
8673 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02008674 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008675
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008676 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008677 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8678 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8679 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8680
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008681 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008682
8683 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02008684
Chris Wilson22721342014-03-04 09:41:43 +00008685 if (0) { /* causes HiZ corruption on ivb:gt1 */
8686 /* enable HiZ Raw Stall Optimization */
8687 I915_WRITE(CACHE_MODE_0_GEN7,
8688 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8689 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08008690
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008691 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02008692 I915_WRITE(CACHE_MODE_1,
8693 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07008694
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008695 /*
8696 * BSpec recommends 8x4 when MSAA is used,
8697 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008698 *
8699 * Note that PS/WM thread counts depend on the WIZ hashing
8700 * disable bit, which we don't touch here, but it's good
8701 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008702 */
8703 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008704 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008705
Ben Widawsky20848222012-05-04 18:58:59 -07008706 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
8707 snpcr &= ~GEN6_MBC_SNPCR_MASK;
8708 snpcr |= GEN6_MBC_SNPCR_MED;
8709 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008710
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01008711 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008712 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008713
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008714 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008715}
8716
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008717static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008718{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008719 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05008720 I915_WRITE(_3D_CHICKEN3,
8721 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8722
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008723 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008724 I915_WRITE(IVB_CHICKEN3,
8725 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8726 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8727
Ville Syrjäläfad7d362014-01-22 21:32:39 +02008728 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008729 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07008730 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08008731 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
8732 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008733
Akash Goel4e046322014-04-04 17:14:38 +05308734 /* WaDisable_RenderCache_OperationalFlush:vlv */
8735 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8736
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008737 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05008738 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8739 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8740
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008741 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07008742 I915_WRITE(GEN7_ROW_CHICKEN2,
8743 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
8744
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008745 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008746 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8747 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8748 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8749
Ville Syrjälä46680e02014-01-22 21:33:01 +02008750 gen7_setup_fixed_func_scheduler(dev_priv);
8751
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008752 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008753 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008754 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008755 */
8756 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008757 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008758
Akash Goelc98f5062014-03-24 23:00:07 +05308759 /* WaDisableL3Bank2xClockGate:vlv
8760 * Disabling L3 clock gating- MMIO 940c[25] = 1
8761 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
8762 I915_WRITE(GEN7_UCGCTL4,
8763 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07008764
Ville Syrjäläafd58e72014-01-22 21:33:03 +02008765 /*
8766 * BSpec says this must be set, even though
8767 * WaDisable4x2SubspanOptimization isn't listed for VLV.
8768 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02008769 I915_WRITE(CACHE_MODE_1,
8770 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07008771
8772 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02008773 * BSpec recommends 8x4 when MSAA is used,
8774 * however in practice 16x4 seems fastest.
8775 *
8776 * Note that PS/WM thread counts depend on the WIZ hashing
8777 * disable bit, which we don't touch here, but it's good
8778 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
8779 */
8780 I915_WRITE(GEN7_GT_MODE,
8781 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
8782
8783 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02008784 * WaIncreaseL3CreditsForVLVB0:vlv
8785 * This is the hardware default actually.
8786 */
8787 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
8788
8789 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008790 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07008791 * Disable clock gating on th GCFG unit to prevent a delay
8792 * in the reporting of vblank events.
8793 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02008794 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008795}
8796
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008797static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008798{
Ville Syrjälä232ce332014-04-09 13:28:35 +03008799 /* WaVSRefCountFullforceMissDisable:chv */
8800 /* WaDSRefCountFullforceMissDisable:chv */
8801 I915_WRITE(GEN7_FF_THREAD_MODE,
8802 I915_READ(GEN7_FF_THREAD_MODE) &
8803 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03008804
8805 /* WaDisableSemaphoreAndSyncFlipWait:chv */
8806 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8807 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03008808
8809 /* WaDisableCSUnitClockGating:chv */
8810 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8811 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03008812
8813 /* WaDisableSDEUnitClockGating:chv */
8814 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8815 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008816
8817 /*
Imre Deak450174f2016-05-03 15:54:21 +03008818 * WaProgramL3SqcReg1Default:chv
8819 * See gfxspecs/Related Documents/Performance Guide/
8820 * LSQC Setting Recommendations.
8821 */
8822 gen8_set_l3sqc_credits(dev_priv, 38, 2);
8823
8824 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008825 * GTT cache may not work with big pages, so if those
8826 * are ever enabled GTT cache may need to be disabled.
8827 */
8828 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008829}
8830
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008831static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008832{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008833 uint32_t dspclk_gate;
8834
8835 I915_WRITE(RENCLK_GATE_D1, 0);
8836 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
8837 GS_UNIT_CLOCK_GATE_DISABLE |
8838 CL_UNIT_CLOCK_GATE_DISABLE);
8839 I915_WRITE(RAMCLK_GATE_D, 0);
8840 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
8841 OVRUNIT_CLOCK_GATE_DISABLE |
8842 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008843 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008844 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
8845 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02008846
8847 /* WaDisableRenderCachePipelinedFlush */
8848 I915_WRITE(CACHE_MODE_0,
8849 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03008850
Akash Goel4e046322014-04-04 17:14:38 +05308851 /* WaDisable_RenderCache_OperationalFlush:g4x */
8852 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8853
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008854 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008855}
8856
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008857static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008858{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008859 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
8860 I915_WRITE(RENCLK_GATE_D2, 0);
8861 I915_WRITE(DSPCLK_GATE_D, 0);
8862 I915_WRITE(RAMCLK_GATE_D, 0);
8863 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008864 I915_WRITE(MI_ARB_STATE,
8865 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308866
8867 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8868 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008869}
8870
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008871static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008872{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008873 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
8874 I965_RCC_CLOCK_GATE_DISABLE |
8875 I965_RCPB_CLOCK_GATE_DISABLE |
8876 I965_ISC_CLOCK_GATE_DISABLE |
8877 I965_FBC_CLOCK_GATE_DISABLE);
8878 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008879 I915_WRITE(MI_ARB_STATE,
8880 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308881
8882 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8883 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008884}
8885
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008886static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008887{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008888 u32 dstate = I915_READ(D_STATE);
8889
8890 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
8891 DSTATE_DOT_CLOCK_GATING;
8892 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01008893
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02008894 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01008895 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02008896
8897 /* IIR "flip pending" means done if this bit is set */
8898 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02008899
8900 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02008901 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02008902
8903 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
8904 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008905
8906 I915_WRITE(MI_ARB_STATE,
8907 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008908}
8909
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008910static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008911{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008912 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02008913
8914 /* interrupts should cause a wake up from C3 */
8915 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
8916 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008917
8918 I915_WRITE(MEM_MODE,
8919 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008920}
8921
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008922static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008923{
Ville Syrjälä10383922014-08-15 01:21:54 +03008924 I915_WRITE(MEM_MODE,
8925 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
8926 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008927}
8928
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008929void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008930{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008931 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008932}
8933
Ville Syrjälä712bf362016-10-31 22:37:23 +02008934void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008935{
Ville Syrjälä712bf362016-10-31 22:37:23 +02008936 if (HAS_PCH_LPT(dev_priv))
8937 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03008938}
8939
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008940static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02008941{
8942 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
8943}
8944
8945/**
8946 * intel_init_clock_gating_hooks - setup the clock gating hooks
8947 * @dev_priv: device private
8948 *
8949 * Setup the hooks that configure which clocks of a given platform can be
8950 * gated and also apply various GT and display specific workarounds for these
8951 * platforms. Note that some GT specific workarounds are applied separately
8952 * when GPU contexts or batchbuffers start their execution.
8953 */
8954void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
8955{
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008956 if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008957 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008958 else if (IS_COFFEELAKE(dev_priv))
8959 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008960 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008961 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008962 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008963 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02008964 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02008965 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02008966 else if (IS_GEMINILAKE(dev_priv))
8967 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008968 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008969 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008970 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008971 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008972 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008973 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008974 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008975 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008976 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008977 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008978 else if (IS_GEN6(dev_priv))
8979 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
8980 else if (IS_GEN5(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008981 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008982 else if (IS_G4X(dev_priv))
8983 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02008984 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008985 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02008986 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008987 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02008988 else if (IS_GEN3(dev_priv))
8989 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
8990 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
8991 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
8992 else if (IS_GEN2(dev_priv))
8993 dev_priv->display.init_clock_gating = i830_init_clock_gating;
8994 else {
8995 MISSING_CASE(INTEL_DEVID(dev_priv));
8996 dev_priv->display.init_clock_gating = nop_init_clock_gating;
8997 }
8998}
8999
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009000/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009001void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009002{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009003 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009004
Daniel Vetterc921aba2012-04-26 23:28:17 +02009005 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009006 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009007 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009008 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009009 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02009010
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009011 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009012 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009013 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01009014 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01009015 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07009016 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009017 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009018 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03009019
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009020 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009021 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009022 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009023 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07009024 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08009025 dev_priv->display.compute_intermediate_wm =
9026 ilk_compute_intermediate_wm;
9027 dev_priv->display.initial_watermarks =
9028 ilk_initial_watermarks;
9029 dev_priv->display.optimize_watermarks =
9030 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02009031 } else {
9032 DRM_DEBUG_KMS("Failed to read display plane latency. "
9033 "Disable CxSR\n");
9034 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02009035 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009036 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02009037 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009038 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009039 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009040 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009041 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03009042 } else if (IS_G4X(dev_priv)) {
9043 g4x_setup_wm_latency(dev_priv);
9044 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
9045 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
9046 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
9047 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009048 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009049 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009050 dev_priv->is_ddr3,
9051 dev_priv->fsb_freq,
9052 dev_priv->mem_freq)) {
9053 DRM_INFO("failed to find known CxSR latency "
9054 "(found ddr%s fsb freq %d, mem freq %d), "
9055 "disabling CxSR\n",
9056 (dev_priv->is_ddr3 == 1) ? "3" : "2",
9057 dev_priv->fsb_freq, dev_priv->mem_freq);
9058 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03009059 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009060 dev_priv->display.update_wm = NULL;
9061 } else
9062 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009063 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009064 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009065 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009066 dev_priv->display.update_wm = i9xx_update_wm;
9067 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009068 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009069 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009070 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009071 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009072 } else {
9073 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009074 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009075 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009076 } else {
9077 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009078 }
9079}
9080
Lyude87660502016-08-17 15:55:53 -04009081static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
9082{
9083 uint32_t flags =
9084 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9085
9086 switch (flags) {
9087 case GEN6_PCODE_SUCCESS:
9088 return 0;
9089 case GEN6_PCODE_UNIMPLEMENTED_CMD:
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009090 return -ENODEV;
Lyude87660502016-08-17 15:55:53 -04009091 case GEN6_PCODE_ILLEGAL_CMD:
9092 return -ENXIO;
9093 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01009094 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04009095 return -EOVERFLOW;
9096 case GEN6_PCODE_TIMEOUT:
9097 return -ETIMEDOUT;
9098 default:
Michal Wajdeczkof0d66152017-03-28 08:45:12 +00009099 MISSING_CASE(flags);
Lyude87660502016-08-17 15:55:53 -04009100 return 0;
9101 }
9102}
9103
9104static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
9105{
9106 uint32_t flags =
9107 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9108
9109 switch (flags) {
9110 case GEN6_PCODE_SUCCESS:
9111 return 0;
9112 case GEN6_PCODE_ILLEGAL_CMD:
9113 return -ENXIO;
9114 case GEN7_PCODE_TIMEOUT:
9115 return -ETIMEDOUT;
9116 case GEN7_PCODE_ILLEGAL_DATA:
9117 return -EINVAL;
9118 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
9119 return -EOVERFLOW;
9120 default:
9121 MISSING_CASE(flags);
9122 return 0;
9123 }
9124}
9125
Tom O'Rourke151a49d2014-11-13 18:50:10 -08009126int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009127{
Lyude87660502016-08-17 15:55:53 -04009128 int status;
9129
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009130 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009131
Chris Wilson3f5582d2016-06-30 15:32:45 +01009132 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9133 * use te fw I915_READ variants to reduce the amount of work
9134 * required when reading/writing.
9135 */
9136
9137 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009138 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps\n",
9139 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009140 return -EAGAIN;
9141 }
9142
Chris Wilson3f5582d2016-06-30 15:32:45 +01009143 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
9144 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
9145 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009146
Chris Wilsone09a3032017-04-11 11:13:39 +01009147 if (__intel_wait_for_register_fw(dev_priv,
9148 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9149 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009150 DRM_ERROR("timeout waiting for pcode read (from mbox %x) to finish for %ps\n",
9151 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009152 return -ETIMEDOUT;
9153 }
9154
Chris Wilson3f5582d2016-06-30 15:32:45 +01009155 *val = I915_READ_FW(GEN6_PCODE_DATA);
9156 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009157
Lyude87660502016-08-17 15:55:53 -04009158 if (INTEL_GEN(dev_priv) > 6)
9159 status = gen7_check_mailbox_status(dev_priv);
9160 else
9161 status = gen6_check_mailbox_status(dev_priv);
9162
9163 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009164 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
9165 mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009166 return status;
9167 }
9168
Ben Widawsky42c05262012-09-26 10:34:00 -07009169 return 0;
9170}
9171
Chris Wilson3f5582d2016-06-30 15:32:45 +01009172int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04009173 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009174{
Lyude87660502016-08-17 15:55:53 -04009175 int status;
9176
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009177 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009178
Chris Wilson3f5582d2016-06-30 15:32:45 +01009179 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9180 * use te fw I915_READ variants to reduce the amount of work
9181 * required when reading/writing.
9182 */
9183
9184 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009185 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps\n",
9186 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009187 return -EAGAIN;
9188 }
9189
Chris Wilson3f5582d2016-06-30 15:32:45 +01009190 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02009191 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01009192 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009193
Chris Wilsone09a3032017-04-11 11:13:39 +01009194 if (__intel_wait_for_register_fw(dev_priv,
9195 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9196 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009197 DRM_ERROR("timeout waiting for pcode write of 0x%08x to mbox %x to finish for %ps\n",
9198 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009199 return -ETIMEDOUT;
9200 }
9201
Chris Wilson3f5582d2016-06-30 15:32:45 +01009202 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009203
Lyude87660502016-08-17 15:55:53 -04009204 if (INTEL_GEN(dev_priv) > 6)
9205 status = gen7_check_mailbox_status(dev_priv);
9206 else
9207 status = gen6_check_mailbox_status(dev_priv);
9208
9209 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009210 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
9211 val, mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009212 return status;
9213 }
9214
Ben Widawsky42c05262012-09-26 10:34:00 -07009215 return 0;
9216}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07009217
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009218static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
9219 u32 request, u32 reply_mask, u32 reply,
9220 u32 *status)
9221{
9222 u32 val = request;
9223
9224 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
9225
9226 return *status || ((val & reply_mask) == reply);
9227}
9228
9229/**
9230 * skl_pcode_request - send PCODE request until acknowledgment
9231 * @dev_priv: device private
9232 * @mbox: PCODE mailbox ID the request is targeted for
9233 * @request: request ID
9234 * @reply_mask: mask used to check for request acknowledgment
9235 * @reply: value used to check for request acknowledgment
9236 * @timeout_base_ms: timeout for polling with preemption enabled
9237 *
9238 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02009239 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009240 * The request is acknowledged once the PCODE reply dword equals @reply after
9241 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02009242 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009243 * preemption disabled.
9244 *
9245 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
9246 * other error as reported by PCODE.
9247 */
9248int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
9249 u32 reply_mask, u32 reply, int timeout_base_ms)
9250{
9251 u32 status;
9252 int ret;
9253
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009254 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009255
9256#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
9257 &status)
9258
9259 /*
9260 * Prime the PCODE by doing a request first. Normally it guarantees
9261 * that a subsequent request, at most @timeout_base_ms later, succeeds.
9262 * _wait_for() doesn't guarantee when its passed condition is evaluated
9263 * first, so send the first request explicitly.
9264 */
9265 if (COND) {
9266 ret = 0;
9267 goto out;
9268 }
Chris Wilsona54b1872017-11-24 13:00:30 +00009269 ret = _wait_for(COND, timeout_base_ms * 1000, 10, 10);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009270 if (!ret)
9271 goto out;
9272
9273 /*
9274 * The above can time out if the number of requests was low (2 in the
9275 * worst case) _and_ PCODE was busy for some reason even after a
9276 * (queued) request and @timeout_base_ms delay. As a workaround retry
9277 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02009278 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009279 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02009280 * requests, and for any quirks of the PCODE firmware that delays
9281 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009282 */
9283 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
9284 WARN_ON_ONCE(timeout_base_ms > 3);
9285 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02009286 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009287 preempt_enable();
9288
9289out:
9290 return ret ? ret : status;
9291#undef COND
9292}
9293
Ville Syrjälädd06f882014-11-10 22:55:12 +02009294static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
9295{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009296 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9297
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009298 /*
9299 * N = val - 0xb7
9300 * Slow = Fast = GPLL ref * N
9301 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009302 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009303}
9304
Fengguang Wub55dd642014-07-12 11:21:39 +02009305static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009306{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009307 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9308
9309 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009310}
9311
Fengguang Wub55dd642014-07-12 11:21:39 +02009312static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309313{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009314 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9315
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009316 /*
9317 * N = val / 2
9318 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
9319 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009320 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05309321}
9322
Fengguang Wub55dd642014-07-12 11:21:39 +02009323static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309324{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009325 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9326
Ville Syrjälä1c147622014-08-18 14:42:43 +03009327 /* CHV needs even values */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009328 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05309329}
9330
Ville Syrjälä616bc822015-01-23 21:04:25 +02009331int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
9332{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009333 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009334 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
9335 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009336 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009337 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009338 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009339 return byt_gpu_freq(dev_priv, val);
9340 else
9341 return val * GT_FREQUENCY_MULTIPLIER;
9342}
9343
Ville Syrjälä616bc822015-01-23 21:04:25 +02009344int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
9345{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009346 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009347 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
9348 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009349 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009350 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009351 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009352 return byt_freq_opcode(dev_priv, val);
9353 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009354 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05309355}
9356
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00009357void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01009358{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009359 mutex_init(&dev_priv->pcu_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01009360
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009361 atomic_set(&dev_priv->gt_pm.rps.num_waiters, 0);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03009362
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01009363 dev_priv->runtime_pm.suspended = false;
9364 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01009365}
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009366
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009367static u64 vlv_residency_raw(struct drm_i915_private *dev_priv,
9368 const i915_reg_t reg)
9369{
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009370 u32 lower, upper, tmp;
Chris Wilsonb4e3c932017-11-22 22:25:10 +00009371 unsigned long flags;
Chris Wilson71cc2b12017-03-24 16:54:18 +00009372 int loop = 2;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009373
9374 /* The register accessed do not need forcewake. We borrow
9375 * uncore lock to prevent concurrent access to range reg.
9376 */
Chris Wilsonb4e3c932017-11-22 22:25:10 +00009377 spin_lock_irqsave(&dev_priv->uncore.lock, flags);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009378
9379 /* vlv and chv residency counters are 40 bits in width.
9380 * With a control bit, we can choose between upper or lower
9381 * 32bit window into this counter.
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009382 *
9383 * Although we always use the counter in high-range mode elsewhere,
9384 * userspace may attempt to read the value before rc6 is initialised,
9385 * before we have set the default VLV_COUNTER_CONTROL value. So always
9386 * set the high bit to be safe.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009387 */
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009388 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9389 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009390 upper = I915_READ_FW(reg);
9391 do {
9392 tmp = upper;
9393
9394 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9395 _MASKED_BIT_DISABLE(VLV_COUNT_RANGE_HIGH));
9396 lower = I915_READ_FW(reg);
9397
9398 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9399 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
9400 upper = I915_READ_FW(reg);
Chris Wilson71cc2b12017-03-24 16:54:18 +00009401 } while (upper != tmp && --loop);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009402
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009403 /* Everywhere else we always use VLV_COUNTER_CONTROL with the
9404 * VLV_COUNT_RANGE_HIGH bit set - so it is safe to leave it set
9405 * now.
9406 */
9407
Chris Wilsonb4e3c932017-11-22 22:25:10 +00009408 spin_unlock_irqrestore(&dev_priv->uncore.lock, flags);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009409
9410 return lower | (u64)upper << 8;
9411}
9412
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009413u64 intel_rc6_residency_ns(struct drm_i915_private *dev_priv,
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009414 const i915_reg_t reg)
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009415{
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009416 u64 time_hw;
9417 u32 mul, div;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009418
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00009419 if (!HAS_RC6(dev_priv))
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009420 return 0;
9421
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009422 /* On VLV and CHV, residency time is in CZ units rather than 1.28us */
9423 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009424 mul = 1000000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009425 div = dev_priv->czclk_freq;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009426 time_hw = vlv_residency_raw(dev_priv, reg);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009427 } else {
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009428 /* 833.33ns units on Gen9LP, 1.28us elsewhere. */
9429 if (IS_GEN9_LP(dev_priv)) {
9430 mul = 10000;
9431 div = 12;
9432 } else {
9433 mul = 1280;
9434 div = 1;
9435 }
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009436
9437 time_hw = I915_READ(reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009438 }
9439
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009440 return DIV_ROUND_UP_ULL(time_hw * mul, div);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009441}
Tvrtko Ursulinc84b2702017-11-21 18:18:44 +00009442
9443u32 intel_get_cagf(struct drm_i915_private *dev_priv, u32 rpstat)
9444{
9445 u32 cagf;
9446
9447 if (INTEL_GEN(dev_priv) >= 9)
9448 cagf = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
9449 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
9450 cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
9451 else
9452 cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
9453
9454 return cagf;
9455}