blob: f0d0dbab4150a34b53721d0212bfe12ca05bf4da [file] [log] [blame]
Eugeni Dodonov85208be2012-04-16 22:20:34 -03001/*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -030028#include <linux/cpufreq.h>
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -070029#include <drm/drm_plane_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030030#include "i915_drv.h"
31#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020032#include "../../../platform/x86/intel_ips.h"
33#include <linux/module.h>
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +020034#include <drm/drm_atomic_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030035
Ben Widawskydc39fff2013-10-18 12:32:07 -070036/**
Jani Nikula18afd442016-01-18 09:19:48 +020037 * DOC: RC6
38 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070039 * RC6 is a special power stage which allows the GPU to enter an very
40 * low-voltage mode when idle, using down to 0V while at this stage. This
41 * stage is entered automatically when the GPU is idle when RC6 support is
42 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
43 *
44 * There are different RC6 modes available in Intel GPU, which differentiate
45 * among each other with the latency required to enter and leave RC6 and
46 * voltage consumed by the GPU in different states.
47 *
48 * The combination of the following flags define which states GPU is allowed
49 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
50 * RC6pp is deepest RC6. Their support by hardware varies according to the
51 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
52 * which brings the most power savings; deeper states save more power, but
53 * require higher latency to switch to and wake up.
54 */
55#define INTEL_RC6_ENABLE (1<<0)
56#define INTEL_RC6p_ENABLE (1<<1)
57#define INTEL_RC6pp_ENABLE (1<<2)
58
Ville Syrjälä46f16e62016-10-31 22:37:22 +020059static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030060{
Ville Syrjälä93564042017-08-24 22:10:51 +030061 if (HAS_LLC(dev_priv)) {
62 /*
63 * WaCompressedResourceDisplayNewHashMode:skl,kbl
64 * Display WA#0390: skl,kbl
65 *
66 * Must match Sampler, Pixel Back End, and Media. See
67 * WaCompressedResourceSamplerPbeMediaNewHashMode.
68 */
69 I915_WRITE(CHICKEN_PAR1_1,
70 I915_READ(CHICKEN_PAR1_1) |
71 SKL_DE_COMPRESSED_HASH_MODE);
72 }
73
Rodrigo Vivi82525c12017-06-08 08:50:00 -070074 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
Mika Kuoppalab033bb62016-06-07 17:19:04 +030075 I915_WRITE(CHICKEN_PAR1_1,
76 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
77
78 I915_WRITE(GEN8_CONFIG0,
79 I915_READ(GEN8_CONFIG0) | GEN9_DEFAULT_FIXES);
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030080
Rodrigo Vivi82525c12017-06-08 08:50:00 -070081 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030082 I915_WRITE(GEN8_CHICKEN_DCPR_1,
83 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030084
Rodrigo Vivi82525c12017-06-08 08:50:00 -070085 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
86 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030087 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
88 DISP_FBC_WM_DIS |
89 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030090
Rodrigo Vivi82525c12017-06-08 08:50:00 -070091 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030092 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
93 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +053094
95 if (IS_SKYLAKE(dev_priv)) {
96 /* WaDisableDopClockGating */
97 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
98 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
99 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +0300100}
101
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200102static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +0200103{
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200104 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +0200105
Nick Hoatha7546152015-06-29 14:07:32 +0100106 /* WaDisableSDEUnitClockGating:bxt */
107 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
108 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
109
Imre Deak32608ca2015-03-11 11:10:27 +0200110 /*
111 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200112 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200113 */
Imre Deak32608ca2015-03-11 11:10:27 +0200114 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200115 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7a2015-12-01 10:23:52 +0200116
117 /*
118 * Wa: Backlight PWM may stop in the asserted state, causing backlight
119 * to stay fully on.
120 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200121 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
122 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200123}
124
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200125static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
126{
127 gen9_init_clock_gating(dev_priv);
128
129 /*
130 * WaDisablePWMClockGating:glk
131 * Backlight PWM may stop in the asserted state, causing backlight
132 * to stay fully on.
133 */
134 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
135 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200136
137 /* WaDDIIOTimeout:glk */
138 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
139 u32 val = I915_READ(CHICKEN_MISC_2);
140 val &= ~(GLK_CL0_PWR_DOWN |
141 GLK_CL1_PWR_DOWN |
142 GLK_CL2_PWR_DOWN);
143 I915_WRITE(CHICKEN_MISC_2, val);
144 }
145
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200146}
147
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200148static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200149{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200150 u32 tmp;
151
152 tmp = I915_READ(CLKCFG);
153
154 switch (tmp & CLKCFG_FSB_MASK) {
155 case CLKCFG_FSB_533:
156 dev_priv->fsb_freq = 533; /* 133*4 */
157 break;
158 case CLKCFG_FSB_800:
159 dev_priv->fsb_freq = 800; /* 200*4 */
160 break;
161 case CLKCFG_FSB_667:
162 dev_priv->fsb_freq = 667; /* 167*4 */
163 break;
164 case CLKCFG_FSB_400:
165 dev_priv->fsb_freq = 400; /* 100*4 */
166 break;
167 }
168
169 switch (tmp & CLKCFG_MEM_MASK) {
170 case CLKCFG_MEM_533:
171 dev_priv->mem_freq = 533;
172 break;
173 case CLKCFG_MEM_667:
174 dev_priv->mem_freq = 667;
175 break;
176 case CLKCFG_MEM_800:
177 dev_priv->mem_freq = 800;
178 break;
179 }
180
181 /* detect pineview DDR3 setting */
182 tmp = I915_READ(CSHRDDR3CTL);
183 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
184}
185
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200186static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200187{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200188 u16 ddrpll, csipll;
189
190 ddrpll = I915_READ16(DDRMPLL1);
191 csipll = I915_READ16(CSIPLL0);
192
193 switch (ddrpll & 0xff) {
194 case 0xc:
195 dev_priv->mem_freq = 800;
196 break;
197 case 0x10:
198 dev_priv->mem_freq = 1066;
199 break;
200 case 0x14:
201 dev_priv->mem_freq = 1333;
202 break;
203 case 0x18:
204 dev_priv->mem_freq = 1600;
205 break;
206 default:
207 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
208 ddrpll & 0xff);
209 dev_priv->mem_freq = 0;
210 break;
211 }
212
Daniel Vetter20e4d402012-08-08 23:35:39 +0200213 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200214
215 switch (csipll & 0x3ff) {
216 case 0x00c:
217 dev_priv->fsb_freq = 3200;
218 break;
219 case 0x00e:
220 dev_priv->fsb_freq = 3733;
221 break;
222 case 0x010:
223 dev_priv->fsb_freq = 4266;
224 break;
225 case 0x012:
226 dev_priv->fsb_freq = 4800;
227 break;
228 case 0x014:
229 dev_priv->fsb_freq = 5333;
230 break;
231 case 0x016:
232 dev_priv->fsb_freq = 5866;
233 break;
234 case 0x018:
235 dev_priv->fsb_freq = 6400;
236 break;
237 default:
238 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
239 csipll & 0x3ff);
240 dev_priv->fsb_freq = 0;
241 break;
242 }
243
244 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200245 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200246 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200247 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200248 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200249 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200250 }
251}
252
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300253static const struct cxsr_latency cxsr_latency_table[] = {
254 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
255 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
256 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
257 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
258 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
259
260 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
261 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
262 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
263 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
264 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
265
266 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
267 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
268 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
269 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
270 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
271
272 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
273 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
274 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
275 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
276 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
277
278 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
279 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
280 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
281 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
282 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
283
284 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
285 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
286 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
287 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
288 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
289};
290
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100291static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
292 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300293 int fsb,
294 int mem)
295{
296 const struct cxsr_latency *latency;
297 int i;
298
299 if (fsb == 0 || mem == 0)
300 return NULL;
301
302 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
303 latency = &cxsr_latency_table[i];
304 if (is_desktop == latency->is_desktop &&
305 is_ddr3 == latency->is_ddr3 &&
306 fsb == latency->fsb_freq && mem == latency->mem_freq)
307 return latency;
308 }
309
310 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
311
312 return NULL;
313}
314
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200315static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
316{
317 u32 val;
318
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100319 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200320
321 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
322 if (enable)
323 val &= ~FORCE_DDR_HIGH_FREQ;
324 else
325 val |= FORCE_DDR_HIGH_FREQ;
326 val &= ~FORCE_DDR_LOW_FREQ;
327 val |= FORCE_DDR_FREQ_REQ_ACK;
328 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
329
330 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
331 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
332 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
333
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100334 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200335}
336
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200337static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
338{
339 u32 val;
340
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100341 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200342
343 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
344 if (enable)
345 val |= DSP_MAXFIFO_PM5_ENABLE;
346 else
347 val &= ~DSP_MAXFIFO_PM5_ENABLE;
348 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
349
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100350 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200351}
352
Ville Syrjäläf4998962015-03-10 17:02:21 +0200353#define FW_WM(value, plane) \
354 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
355
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200356static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300357{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200358 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300359 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300360
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100361 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200362 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300363 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300364 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200365 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200366 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300367 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300368 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200369 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200370 val = I915_READ(DSPFW3);
371 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
372 if (enable)
373 val |= PINEVIEW_SELF_REFRESH_EN;
374 else
375 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300376 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300377 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100378 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200379 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300380 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
381 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
382 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300383 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100384 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300385 /*
386 * FIXME can't find a bit like this for 915G, and
387 * and yet it does have the related watermark in
388 * FW_BLC_SELF. What's going on?
389 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200390 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300391 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
392 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
393 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300394 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300395 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200396 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300397 }
398
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200399 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
400
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200401 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
402 enableddisabled(enable),
403 enableddisabled(was_enabled));
404
405 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300406}
407
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300408/**
409 * intel_set_memory_cxsr - Configure CxSR state
410 * @dev_priv: i915 device
411 * @enable: Allow vs. disallow CxSR
412 *
413 * Allow or disallow the system to enter a special CxSR
414 * (C-state self refresh) state. What typically happens in CxSR mode
415 * is that several display FIFOs may get combined into a single larger
416 * FIFO for a particular plane (so called max FIFO mode) to allow the
417 * system to defer memory fetches longer, and the memory will enter
418 * self refresh.
419 *
420 * Note that enabling CxSR does not guarantee that the system enter
421 * this special mode, nor does it guarantee that the system stays
422 * in that mode once entered. So this just allows/disallows the system
423 * to autonomously utilize the CxSR mode. Other factors such as core
424 * C-states will affect when/if the system actually enters/exits the
425 * CxSR mode.
426 *
427 * Note that on VLV/CHV this actually only controls the max FIFO mode,
428 * and the system is free to enter/exit memory self refresh at any time
429 * even when the use of CxSR has been disallowed.
430 *
431 * While the system is actually in the CxSR/max FIFO mode, some plane
432 * control registers will not get latched on vblank. Thus in order to
433 * guarantee the system will respond to changes in the plane registers
434 * we must always disallow CxSR prior to making changes to those registers.
435 * Unfortunately the system will re-evaluate the CxSR conditions at
436 * frame start which happens after vblank start (which is when the plane
437 * registers would get latched), so we can't proceed with the plane update
438 * during the same frame where we disallowed CxSR.
439 *
440 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
441 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
442 * the hardware w.r.t. HPLL SR when writing to plane registers.
443 * Disallowing just CxSR is sufficient.
444 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200445bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200446{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200447 bool ret;
448
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200449 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200450 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300451 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
452 dev_priv->wm.vlv.cxsr = enable;
453 else if (IS_G4X(dev_priv))
454 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200455 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200456
457 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200458}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200459
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300460/*
461 * Latency for FIFO fetches is dependent on several factors:
462 * - memory configuration (speed, channels)
463 * - chipset
464 * - current MCH state
465 * It can be fairly high in some situations, so here we assume a fairly
466 * pessimal value. It's a tradeoff between extra memory fetches (if we
467 * set this value too high, the FIFO will fetch frequently to stay full)
468 * and power consumption (set it too low to save power and we might see
469 * FIFO underruns and display "flicker").
470 *
471 * A value of 5us seems to be a good balance; safe for very low end
472 * platforms but not overly aggressive on lower latency configs.
473 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100474static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300475
Ville Syrjäläb5004722015-03-05 21:19:47 +0200476#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
477 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
478
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200479static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200480{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200481 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200482 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200483 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200484 enum pipe pipe = crtc->pipe;
485 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200486
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200487 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200488 uint32_t dsparb, dsparb2, dsparb3;
489 case PIPE_A:
490 dsparb = I915_READ(DSPARB);
491 dsparb2 = I915_READ(DSPARB2);
492 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
493 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
494 break;
495 case PIPE_B:
496 dsparb = I915_READ(DSPARB);
497 dsparb2 = I915_READ(DSPARB2);
498 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
499 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
500 break;
501 case PIPE_C:
502 dsparb2 = I915_READ(DSPARB2);
503 dsparb3 = I915_READ(DSPARB3);
504 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
505 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
506 break;
507 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200508 MISSING_CASE(pipe);
509 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200510 }
511
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200512 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
513 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
514 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
515 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200516}
517
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200518static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300519{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520 uint32_t dsparb = I915_READ(DSPARB);
521 int size;
522
523 size = dsparb & 0x7f;
524 if (plane)
525 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
526
527 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
528 plane ? "B" : "A", size);
529
530 return size;
531}
532
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200533static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300534{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300535 uint32_t dsparb = I915_READ(DSPARB);
536 int size;
537
538 size = dsparb & 0x1ff;
539 if (plane)
540 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
541 size >>= 1; /* Convert to cachelines */
542
543 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
544 plane ? "B" : "A", size);
545
546 return size;
547}
548
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200549static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300550{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300551 uint32_t dsparb = I915_READ(DSPARB);
552 int size;
553
554 size = dsparb & 0x7f;
555 size >>= 2; /* Convert to cachelines */
556
557 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
558 plane ? "B" : "A",
559 size);
560
561 return size;
562}
563
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300564/* Pineview has different values for various configs */
565static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300566 .fifo_size = PINEVIEW_DISPLAY_FIFO,
567 .max_wm = PINEVIEW_MAX_WM,
568 .default_wm = PINEVIEW_DFT_WM,
569 .guard_size = PINEVIEW_GUARD_WM,
570 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300571};
572static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300573 .fifo_size = PINEVIEW_DISPLAY_FIFO,
574 .max_wm = PINEVIEW_MAX_WM,
575 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
576 .guard_size = PINEVIEW_GUARD_WM,
577 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300578};
579static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300580 .fifo_size = PINEVIEW_CURSOR_FIFO,
581 .max_wm = PINEVIEW_CURSOR_MAX_WM,
582 .default_wm = PINEVIEW_CURSOR_DFT_WM,
583 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
584 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300585};
586static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300587 .fifo_size = PINEVIEW_CURSOR_FIFO,
588 .max_wm = PINEVIEW_CURSOR_MAX_WM,
589 .default_wm = PINEVIEW_CURSOR_DFT_WM,
590 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
591 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300592};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300593static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300594 .fifo_size = I965_CURSOR_FIFO,
595 .max_wm = I965_CURSOR_MAX_WM,
596 .default_wm = I965_CURSOR_DFT_WM,
597 .guard_size = 2,
598 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300599};
600static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300601 .fifo_size = I945_FIFO_SIZE,
602 .max_wm = I915_MAX_WM,
603 .default_wm = 1,
604 .guard_size = 2,
605 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300606};
607static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300608 .fifo_size = I915_FIFO_SIZE,
609 .max_wm = I915_MAX_WM,
610 .default_wm = 1,
611 .guard_size = 2,
612 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300613};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300614static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300615 .fifo_size = I855GM_FIFO_SIZE,
616 .max_wm = I915_MAX_WM,
617 .default_wm = 1,
618 .guard_size = 2,
619 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300620};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300621static const struct intel_watermark_params i830_bc_wm_info = {
622 .fifo_size = I855GM_FIFO_SIZE,
623 .max_wm = I915_MAX_WM/2,
624 .default_wm = 1,
625 .guard_size = 2,
626 .cacheline_size = I830_FIFO_LINE_SIZE,
627};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200628static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300629 .fifo_size = I830_FIFO_SIZE,
630 .max_wm = I915_MAX_WM,
631 .default_wm = 1,
632 .guard_size = 2,
633 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300634};
635
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300636/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300637 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
638 * @pixel_rate: Pipe pixel rate in kHz
639 * @cpp: Plane bytes per pixel
640 * @latency: Memory wakeup latency in 0.1us units
641 *
642 * Compute the watermark using the method 1 or "small buffer"
643 * formula. The caller may additonally add extra cachelines
644 * to account for TLB misses and clock crossings.
645 *
646 * This method is concerned with the short term drain rate
647 * of the FIFO, ie. it does not account for blanking periods
648 * which would effectively reduce the average drain rate across
649 * a longer period. The name "small" refers to the fact the
650 * FIFO is relatively small compared to the amount of data
651 * fetched.
652 *
653 * The FIFO level vs. time graph might look something like:
654 *
655 * |\ |\
656 * | \ | \
657 * __---__---__ (- plane active, _ blanking)
658 * -> time
659 *
660 * or perhaps like this:
661 *
662 * |\|\ |\|\
663 * __----__----__ (- plane active, _ blanking)
664 * -> time
665 *
666 * Returns:
667 * The watermark in bytes
668 */
669static unsigned int intel_wm_method1(unsigned int pixel_rate,
670 unsigned int cpp,
671 unsigned int latency)
672{
673 uint64_t ret;
674
675 ret = (uint64_t) pixel_rate * cpp * latency;
676 ret = DIV_ROUND_UP_ULL(ret, 10000);
677
678 return ret;
679}
680
681/**
682 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
683 * @pixel_rate: Pipe pixel rate in kHz
684 * @htotal: Pipe horizontal total
685 * @width: Plane width in pixels
686 * @cpp: Plane bytes per pixel
687 * @latency: Memory wakeup latency in 0.1us units
688 *
689 * Compute the watermark using the method 2 or "large buffer"
690 * formula. The caller may additonally add extra cachelines
691 * to account for TLB misses and clock crossings.
692 *
693 * This method is concerned with the long term drain rate
694 * of the FIFO, ie. it does account for blanking periods
695 * which effectively reduce the average drain rate across
696 * a longer period. The name "large" refers to the fact the
697 * FIFO is relatively large compared to the amount of data
698 * fetched.
699 *
700 * The FIFO level vs. time graph might look something like:
701 *
702 * |\___ |\___
703 * | \___ | \___
704 * | \ | \
705 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
706 * -> time
707 *
708 * Returns:
709 * The watermark in bytes
710 */
711static unsigned int intel_wm_method2(unsigned int pixel_rate,
712 unsigned int htotal,
713 unsigned int width,
714 unsigned int cpp,
715 unsigned int latency)
716{
717 unsigned int ret;
718
719 /*
720 * FIXME remove once all users are computing
721 * watermarks in the correct place.
722 */
723 if (WARN_ON_ONCE(htotal == 0))
724 htotal = 1;
725
726 ret = (latency * pixel_rate) / (htotal * 10000);
727 ret = (ret + 1) * width * cpp;
728
729 return ret;
730}
731
732/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300734 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200736 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300737 * @latency_ns: memory latency for the platform
738 *
739 * Calculate the watermark level (the level at which the display plane will
740 * start fetching from memory again). Each chip has a different display
741 * FIFO size and allocation, so the caller needs to figure that out and pass
742 * in the correct intel_watermark_params structure.
743 *
744 * As the pixel clock runs, the FIFO will be drained at a rate that depends
745 * on the pixel size. When it reaches the watermark level, it'll start
746 * fetching FIFO line sized based chunks from memory until the FIFO fills
747 * past the watermark point. If the FIFO drains completely, a FIFO underrun
748 * will occur, and a display engine hang could result.
749 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300750static unsigned int intel_calculate_wm(int pixel_rate,
751 const struct intel_watermark_params *wm,
752 int fifo_size, int cpp,
753 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300754{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300755 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300756
757 /*
758 * Note: we need to make sure we don't overflow for various clock &
759 * latency values.
760 * clocks go from a few thousand to several hundred thousand.
761 * latency is usually a few thousand
762 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300763 entries = intel_wm_method1(pixel_rate, cpp,
764 latency_ns / 100);
765 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
766 wm->guard_size;
767 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300768
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300769 wm_size = fifo_size - entries;
770 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300771
772 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300773 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774 wm_size = wm->max_wm;
775 if (wm_size <= 0)
776 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300777
778 /*
779 * Bspec seems to indicate that the value shouldn't be lower than
780 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
781 * Lets go for 8 which is the burst size since certain platforms
782 * already use a hardcoded 8 (which is what the spec says should be
783 * done).
784 */
785 if (wm_size <= 8)
786 wm_size = 8;
787
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300788 return wm_size;
789}
790
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300791static bool is_disabling(int old, int new, int threshold)
792{
793 return old >= threshold && new < threshold;
794}
795
796static bool is_enabling(int old, int new, int threshold)
797{
798 return old < threshold && new >= threshold;
799}
800
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300801static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
802{
803 return dev_priv->wm.max_level + 1;
804}
805
Ville Syrjälä24304d82017-03-14 17:10:49 +0200806static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
807 const struct intel_plane_state *plane_state)
808{
809 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
810
811 /* FIXME check the 'enable' instead */
812 if (!crtc_state->base.active)
813 return false;
814
815 /*
816 * Treat cursor with fb as always visible since cursor updates
817 * can happen faster than the vrefresh rate, and the current
818 * watermark code doesn't handle that correctly. Cursor updates
819 * which set/clear the fb or change the cursor size are going
820 * to get throttled by intel_legacy_cursor_update() to work
821 * around this problem with the watermark code.
822 */
823 if (plane->id == PLANE_CURSOR)
824 return plane_state->base.fb != NULL;
825 else
826 return plane_state->base.visible;
827}
828
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200829static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300830{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200831 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300832
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200833 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200834 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300835 if (enabled)
836 return NULL;
837 enabled = crtc;
838 }
839 }
840
841 return enabled;
842}
843
Ville Syrjälä432081b2016-10-31 22:37:03 +0200844static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300845{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200846 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200847 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300848 const struct cxsr_latency *latency;
849 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300850 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300851
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100852 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
853 dev_priv->is_ddr3,
854 dev_priv->fsb_freq,
855 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300856 if (!latency) {
857 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300858 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300859 return;
860 }
861
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200862 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300863 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200864 const struct drm_display_mode *adjusted_mode =
865 &crtc->config->base.adjusted_mode;
866 const struct drm_framebuffer *fb =
867 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200868 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300869 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300870
871 /* Display SR */
872 wm = intel_calculate_wm(clock, &pineview_display_wm,
873 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200874 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300875 reg = I915_READ(DSPFW1);
876 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200877 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300878 I915_WRITE(DSPFW1, reg);
879 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
880
881 /* cursor SR */
882 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
883 pineview_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300884 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300885 reg = I915_READ(DSPFW3);
886 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200887 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300888 I915_WRITE(DSPFW3, reg);
889
890 /* Display HPLL off SR */
891 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
892 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200893 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300894 reg = I915_READ(DSPFW3);
895 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200896 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300897 I915_WRITE(DSPFW3, reg);
898
899 /* cursor HPLL off SR */
900 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
901 pineview_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300902 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300903 reg = I915_READ(DSPFW3);
904 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200905 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300906 I915_WRITE(DSPFW3, reg);
907 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
908
Imre Deak5209b1f2014-07-01 12:36:17 +0300909 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300910 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300911 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300912 }
913}
914
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300915/*
916 * Documentation says:
917 * "If the line size is small, the TLB fetches can get in the way of the
918 * data fetches, causing some lag in the pixel data return which is not
919 * accounted for in the above formulas. The following adjustment only
920 * needs to be applied if eight whole lines fit in the buffer at once.
921 * The WM is adjusted upwards by the difference between the FIFO size
922 * and the size of 8 whole lines. This adjustment is always performed
923 * in the actual pixel depth regardless of whether FBC is enabled or not."
924 */
925static int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
926{
927 int tlb_miss = fifo_size * 64 - width * cpp * 8;
928
929 return max(0, tlb_miss);
930}
931
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300932static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
933 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300934{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300935 enum pipe pipe;
936
937 for_each_pipe(dev_priv, pipe)
938 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
939
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300940 I915_WRITE(DSPFW1,
941 FW_WM(wm->sr.plane, SR) |
942 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
943 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
944 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
945 I915_WRITE(DSPFW2,
946 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
947 FW_WM(wm->sr.fbc, FBC_SR) |
948 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
949 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
950 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
951 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
952 I915_WRITE(DSPFW3,
953 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
954 FW_WM(wm->sr.cursor, CURSOR_SR) |
955 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
956 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300957
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300958 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300959}
960
Ville Syrjälä15665972015-03-10 16:16:28 +0200961#define FW_WM_VLV(value, plane) \
962 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
963
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200964static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200965 const struct vlv_wm_values *wm)
966{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200967 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200968
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200969 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200970 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
971
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200972 I915_WRITE(VLV_DDL(pipe),
973 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
974 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
975 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
976 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
977 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200978
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200979 /*
980 * Zero the (unused) WM1 watermarks, and also clear all the
981 * high order bits so that there are no out of bounds values
982 * present in the registers during the reprogramming.
983 */
984 I915_WRITE(DSPHOWM, 0);
985 I915_WRITE(DSPHOWM1, 0);
986 I915_WRITE(DSPFW4, 0);
987 I915_WRITE(DSPFW5, 0);
988 I915_WRITE(DSPFW6, 0);
989
Ville Syrjäläae801522015-03-05 21:19:49 +0200990 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200991 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200992 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
993 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
994 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200995 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200996 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
997 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
998 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200999 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +02001000 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +02001001
1002 if (IS_CHERRYVIEW(dev_priv)) {
1003 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001004 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1005 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001006 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001007 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1008 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001009 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001010 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1011 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001012 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001013 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001014 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1015 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1016 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1017 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1018 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1019 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1020 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1021 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1022 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001023 } else {
1024 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001025 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1026 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001027 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001028 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001029 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1030 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1031 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1032 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1033 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1034 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001035 }
1036
1037 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001038}
1039
Ville Syrjälä15665972015-03-10 16:16:28 +02001040#undef FW_WM_VLV
1041
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001042static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1043{
1044 /* all latencies in usec */
1045 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1046 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001047 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001048
Ville Syrjälä79d94302017-04-21 21:14:30 +03001049 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001050}
1051
1052static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1053{
1054 /*
1055 * DSPCNTR[13] supposedly controls whether the
1056 * primary plane can use the FIFO space otherwise
1057 * reserved for the sprite plane. It's not 100% clear
1058 * what the actual FIFO size is, but it looks like we
1059 * can happily set both primary and sprite watermarks
1060 * up to 127 cachelines. So that would seem to mean
1061 * that either DSPCNTR[13] doesn't do anything, or that
1062 * the total FIFO is >= 256 cachelines in size. Either
1063 * way, we don't seem to have to worry about this
1064 * repartitioning as the maximum watermark value the
1065 * register can hold for each plane is lower than the
1066 * minimum FIFO size.
1067 */
1068 switch (plane_id) {
1069 case PLANE_CURSOR:
1070 return 63;
1071 case PLANE_PRIMARY:
1072 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1073 case PLANE_SPRITE0:
1074 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1075 default:
1076 MISSING_CASE(plane_id);
1077 return 0;
1078 }
1079}
1080
1081static int g4x_fbc_fifo_size(int level)
1082{
1083 switch (level) {
1084 case G4X_WM_LEVEL_SR:
1085 return 7;
1086 case G4X_WM_LEVEL_HPLL:
1087 return 15;
1088 default:
1089 MISSING_CASE(level);
1090 return 0;
1091 }
1092}
1093
1094static uint16_t g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1095 const struct intel_plane_state *plane_state,
1096 int level)
1097{
1098 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1099 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1100 const struct drm_display_mode *adjusted_mode =
1101 &crtc_state->base.adjusted_mode;
1102 int clock, htotal, cpp, width, wm;
1103 int latency = dev_priv->wm.pri_latency[level] * 10;
1104
1105 if (latency == 0)
1106 return USHRT_MAX;
1107
1108 if (!intel_wm_plane_visible(crtc_state, plane_state))
1109 return 0;
1110
1111 /*
1112 * Not 100% sure which way ELK should go here as the
1113 * spec only says CL/CTG should assume 32bpp and BW
1114 * doesn't need to. But as these things followed the
1115 * mobile vs. desktop lines on gen3 as well, let's
1116 * assume ELK doesn't need this.
1117 *
1118 * The spec also fails to list such a restriction for
1119 * the HPLL watermark, which seems a little strange.
1120 * Let's use 32bpp for the HPLL watermark as well.
1121 */
1122 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1123 level != G4X_WM_LEVEL_NORMAL)
1124 cpp = 4;
1125 else
1126 cpp = plane_state->base.fb->format->cpp[0];
1127
1128 clock = adjusted_mode->crtc_clock;
1129 htotal = adjusted_mode->crtc_htotal;
1130
1131 if (plane->id == PLANE_CURSOR)
1132 width = plane_state->base.crtc_w;
1133 else
1134 width = drm_rect_width(&plane_state->base.dst);
1135
1136 if (plane->id == PLANE_CURSOR) {
1137 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1138 } else if (plane->id == PLANE_PRIMARY &&
1139 level == G4X_WM_LEVEL_NORMAL) {
1140 wm = intel_wm_method1(clock, cpp, latency);
1141 } else {
1142 int small, large;
1143
1144 small = intel_wm_method1(clock, cpp, latency);
1145 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1146
1147 wm = min(small, large);
1148 }
1149
1150 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1151 width, cpp);
1152
1153 wm = DIV_ROUND_UP(wm, 64) + 2;
1154
1155 return min_t(int, wm, USHRT_MAX);
1156}
1157
1158static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1159 int level, enum plane_id plane_id, u16 value)
1160{
1161 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1162 bool dirty = false;
1163
1164 for (; level < intel_wm_num_levels(dev_priv); level++) {
1165 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1166
1167 dirty |= raw->plane[plane_id] != value;
1168 raw->plane[plane_id] = value;
1169 }
1170
1171 return dirty;
1172}
1173
1174static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1175 int level, u16 value)
1176{
1177 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1178 bool dirty = false;
1179
1180 /* NORMAL level doesn't have an FBC watermark */
1181 level = max(level, G4X_WM_LEVEL_SR);
1182
1183 for (; level < intel_wm_num_levels(dev_priv); level++) {
1184 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1185
1186 dirty |= raw->fbc != value;
1187 raw->fbc = value;
1188 }
1189
1190 return dirty;
1191}
1192
1193static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
1194 const struct intel_plane_state *pstate,
1195 uint32_t pri_val);
1196
1197static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1198 const struct intel_plane_state *plane_state)
1199{
1200 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1201 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1202 enum plane_id plane_id = plane->id;
1203 bool dirty = false;
1204 int level;
1205
1206 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1207 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1208 if (plane_id == PLANE_PRIMARY)
1209 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1210 goto out;
1211 }
1212
1213 for (level = 0; level < num_levels; level++) {
1214 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1215 int wm, max_wm;
1216
1217 wm = g4x_compute_wm(crtc_state, plane_state, level);
1218 max_wm = g4x_plane_fifo_size(plane_id, level);
1219
1220 if (wm > max_wm)
1221 break;
1222
1223 dirty |= raw->plane[plane_id] != wm;
1224 raw->plane[plane_id] = wm;
1225
1226 if (plane_id != PLANE_PRIMARY ||
1227 level == G4X_WM_LEVEL_NORMAL)
1228 continue;
1229
1230 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1231 raw->plane[plane_id]);
1232 max_wm = g4x_fbc_fifo_size(level);
1233
1234 /*
1235 * FBC wm is not mandatory as we
1236 * can always just disable its use.
1237 */
1238 if (wm > max_wm)
1239 wm = USHRT_MAX;
1240
1241 dirty |= raw->fbc != wm;
1242 raw->fbc = wm;
1243 }
1244
1245 /* mark watermarks as invalid */
1246 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1247
1248 if (plane_id == PLANE_PRIMARY)
1249 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1250
1251 out:
1252 if (dirty) {
1253 DRM_DEBUG_KMS("%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1254 plane->base.name,
1255 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1256 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1257 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
1258
1259 if (plane_id == PLANE_PRIMARY)
1260 DRM_DEBUG_KMS("FBC watermarks: SR=%d, HPLL=%d\n",
1261 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1262 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
1263 }
1264
1265 return dirty;
1266}
1267
1268static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1269 enum plane_id plane_id, int level)
1270{
1271 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1272
1273 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1274}
1275
1276static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1277 int level)
1278{
1279 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1280
1281 if (level > dev_priv->wm.max_level)
1282 return false;
1283
1284 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1285 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1286 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1287}
1288
1289/* mark all levels starting from 'level' as invalid */
1290static void g4x_invalidate_wms(struct intel_crtc *crtc,
1291 struct g4x_wm_state *wm_state, int level)
1292{
1293 if (level <= G4X_WM_LEVEL_NORMAL) {
1294 enum plane_id plane_id;
1295
1296 for_each_plane_id_on_crtc(crtc, plane_id)
1297 wm_state->wm.plane[plane_id] = USHRT_MAX;
1298 }
1299
1300 if (level <= G4X_WM_LEVEL_SR) {
1301 wm_state->cxsr = false;
1302 wm_state->sr.cursor = USHRT_MAX;
1303 wm_state->sr.plane = USHRT_MAX;
1304 wm_state->sr.fbc = USHRT_MAX;
1305 }
1306
1307 if (level <= G4X_WM_LEVEL_HPLL) {
1308 wm_state->hpll_en = false;
1309 wm_state->hpll.cursor = USHRT_MAX;
1310 wm_state->hpll.plane = USHRT_MAX;
1311 wm_state->hpll.fbc = USHRT_MAX;
1312 }
1313}
1314
1315static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1316{
1317 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1318 struct intel_atomic_state *state =
1319 to_intel_atomic_state(crtc_state->base.state);
1320 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
1321 int num_active_planes = hweight32(crtc_state->active_planes &
1322 ~BIT(PLANE_CURSOR));
1323 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b510452017-08-23 18:22:22 +03001324 const struct intel_plane_state *old_plane_state;
1325 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001326 struct intel_plane *plane;
1327 enum plane_id plane_id;
1328 int i, level;
1329 unsigned int dirty = 0;
1330
Ville Syrjälä7b510452017-08-23 18:22:22 +03001331 for_each_oldnew_intel_plane_in_state(state, plane,
1332 old_plane_state,
1333 new_plane_state, i) {
1334 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001335 old_plane_state->base.crtc != &crtc->base)
1336 continue;
1337
Ville Syrjälä7b510452017-08-23 18:22:22 +03001338 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001339 dirty |= BIT(plane->id);
1340 }
1341
1342 if (!dirty)
1343 return 0;
1344
1345 level = G4X_WM_LEVEL_NORMAL;
1346 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1347 goto out;
1348
1349 raw = &crtc_state->wm.g4x.raw[level];
1350 for_each_plane_id_on_crtc(crtc, plane_id)
1351 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1352
1353 level = G4X_WM_LEVEL_SR;
1354
1355 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1356 goto out;
1357
1358 raw = &crtc_state->wm.g4x.raw[level];
1359 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1360 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1361 wm_state->sr.fbc = raw->fbc;
1362
1363 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1364
1365 level = G4X_WM_LEVEL_HPLL;
1366
1367 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1368 goto out;
1369
1370 raw = &crtc_state->wm.g4x.raw[level];
1371 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1372 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1373 wm_state->hpll.fbc = raw->fbc;
1374
1375 wm_state->hpll_en = wm_state->cxsr;
1376
1377 level++;
1378
1379 out:
1380 if (level == G4X_WM_LEVEL_NORMAL)
1381 return -EINVAL;
1382
1383 /* invalidate the higher levels */
1384 g4x_invalidate_wms(crtc, wm_state, level);
1385
1386 /*
1387 * Determine if the FBC watermark(s) can be used. IF
1388 * this isn't the case we prefer to disable the FBC
1389 ( watermark(s) rather than disable the SR/HPLL
1390 * level(s) entirely.
1391 */
1392 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1393
1394 if (level >= G4X_WM_LEVEL_SR &&
1395 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1396 wm_state->fbc_en = false;
1397 else if (level >= G4X_WM_LEVEL_HPLL &&
1398 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1399 wm_state->fbc_en = false;
1400
1401 return 0;
1402}
1403
1404static int g4x_compute_intermediate_wm(struct drm_device *dev,
1405 struct intel_crtc *crtc,
1406 struct intel_crtc_state *crtc_state)
1407{
1408 struct g4x_wm_state *intermediate = &crtc_state->wm.g4x.intermediate;
1409 const struct g4x_wm_state *optimal = &crtc_state->wm.g4x.optimal;
1410 const struct g4x_wm_state *active = &crtc->wm.active.g4x;
1411 enum plane_id plane_id;
1412
1413 intermediate->cxsr = optimal->cxsr && active->cxsr &&
1414 !crtc_state->disable_cxsr;
1415 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
1416 !crtc_state->disable_cxsr;
1417 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1418
1419 for_each_plane_id_on_crtc(crtc, plane_id) {
1420 intermediate->wm.plane[plane_id] =
1421 max(optimal->wm.plane[plane_id],
1422 active->wm.plane[plane_id]);
1423
1424 WARN_ON(intermediate->wm.plane[plane_id] >
1425 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1426 }
1427
1428 intermediate->sr.plane = max(optimal->sr.plane,
1429 active->sr.plane);
1430 intermediate->sr.cursor = max(optimal->sr.cursor,
1431 active->sr.cursor);
1432 intermediate->sr.fbc = max(optimal->sr.fbc,
1433 active->sr.fbc);
1434
1435 intermediate->hpll.plane = max(optimal->hpll.plane,
1436 active->hpll.plane);
1437 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1438 active->hpll.cursor);
1439 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1440 active->hpll.fbc);
1441
1442 WARN_ON((intermediate->sr.plane >
1443 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1444 intermediate->sr.cursor >
1445 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1446 intermediate->cxsr);
1447 WARN_ON((intermediate->sr.plane >
1448 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1449 intermediate->sr.cursor >
1450 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1451 intermediate->hpll_en);
1452
1453 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1454 intermediate->fbc_en && intermediate->cxsr);
1455 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1456 intermediate->fbc_en && intermediate->hpll_en);
1457
1458 /*
1459 * If our intermediate WM are identical to the final WM, then we can
1460 * omit the post-vblank programming; only update if it's different.
1461 */
1462 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
1463 crtc_state->wm.need_postvbl_update = true;
1464
1465 return 0;
1466}
1467
1468static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1469 struct g4x_wm_values *wm)
1470{
1471 struct intel_crtc *crtc;
1472 int num_active_crtcs = 0;
1473
1474 wm->cxsr = true;
1475 wm->hpll_en = true;
1476 wm->fbc_en = true;
1477
1478 for_each_intel_crtc(&dev_priv->drm, crtc) {
1479 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1480
1481 if (!crtc->active)
1482 continue;
1483
1484 if (!wm_state->cxsr)
1485 wm->cxsr = false;
1486 if (!wm_state->hpll_en)
1487 wm->hpll_en = false;
1488 if (!wm_state->fbc_en)
1489 wm->fbc_en = false;
1490
1491 num_active_crtcs++;
1492 }
1493
1494 if (num_active_crtcs != 1) {
1495 wm->cxsr = false;
1496 wm->hpll_en = false;
1497 wm->fbc_en = false;
1498 }
1499
1500 for_each_intel_crtc(&dev_priv->drm, crtc) {
1501 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1502 enum pipe pipe = crtc->pipe;
1503
1504 wm->pipe[pipe] = wm_state->wm;
1505 if (crtc->active && wm->cxsr)
1506 wm->sr = wm_state->sr;
1507 if (crtc->active && wm->hpll_en)
1508 wm->hpll = wm_state->hpll;
1509 }
1510}
1511
1512static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1513{
1514 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1515 struct g4x_wm_values new_wm = {};
1516
1517 g4x_merge_wm(dev_priv, &new_wm);
1518
1519 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1520 return;
1521
1522 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1523 _intel_set_memory_cxsr(dev_priv, false);
1524
1525 g4x_write_wm_values(dev_priv, &new_wm);
1526
1527 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1528 _intel_set_memory_cxsr(dev_priv, true);
1529
1530 *old_wm = new_wm;
1531}
1532
1533static void g4x_initial_watermarks(struct intel_atomic_state *state,
1534 struct intel_crtc_state *crtc_state)
1535{
1536 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1537 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1538
1539 mutex_lock(&dev_priv->wm.wm_mutex);
1540 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1541 g4x_program_watermarks(dev_priv);
1542 mutex_unlock(&dev_priv->wm.wm_mutex);
1543}
1544
1545static void g4x_optimize_watermarks(struct intel_atomic_state *state,
1546 struct intel_crtc_state *crtc_state)
1547{
1548 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1549 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1550
1551 if (!crtc_state->wm.need_postvbl_update)
1552 return;
1553
1554 mutex_lock(&dev_priv->wm.wm_mutex);
1555 intel_crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
1556 g4x_program_watermarks(dev_priv);
1557 mutex_unlock(&dev_priv->wm.wm_mutex);
1558}
1559
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001560/* latency must be in 0.1us units. */
1561static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001562 unsigned int htotal,
1563 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001564 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001565 unsigned int latency)
1566{
1567 unsigned int ret;
1568
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001569 ret = intel_wm_method2(pixel_rate, htotal,
1570 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001571 ret = DIV_ROUND_UP(ret, 64);
1572
1573 return ret;
1574}
1575
Ville Syrjäläbb726512016-10-31 22:37:24 +02001576static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001577{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001578 /* all latencies in usec */
1579 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1580
Ville Syrjälä58590c12015-09-08 21:05:12 +03001581 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1582
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001583 if (IS_CHERRYVIEW(dev_priv)) {
1584 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1585 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001586
1587 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001588 }
1589}
1590
Ville Syrjäläe339d672016-11-28 19:37:17 +02001591static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1592 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001593 int level)
1594{
Ville Syrjäläe339d672016-11-28 19:37:17 +02001595 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001596 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001597 const struct drm_display_mode *adjusted_mode =
1598 &crtc_state->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001599 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001600
1601 if (dev_priv->wm.pri_latency[level] == 0)
1602 return USHRT_MAX;
1603
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001604 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001605 return 0;
1606
Daniel Vetteref426c12017-01-04 11:41:10 +01001607 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001608 clock = adjusted_mode->crtc_clock;
1609 htotal = adjusted_mode->crtc_htotal;
1610 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001611
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001612 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001613 /*
1614 * FIXME the formula gives values that are
1615 * too big for the cursor FIFO, and hence we
1616 * would never be able to use cursors. For
1617 * now just hardcode the watermark.
1618 */
1619 wm = 63;
1620 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001621 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001622 dev_priv->wm.pri_latency[level] * 10);
1623 }
1624
1625 return min_t(int, wm, USHRT_MAX);
1626}
1627
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001628static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1629{
1630 return (active_planes & (BIT(PLANE_SPRITE0) |
1631 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1632}
1633
Ville Syrjälä5012e602017-03-02 19:14:56 +02001634static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001635{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001636 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001637 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001638 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001639 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001640 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1641 int num_active_planes = hweight32(active_planes);
1642 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001643 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001644 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001645 unsigned int total_rate;
1646 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001647
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001648 /*
1649 * When enabling sprite0 after sprite1 has already been enabled
1650 * we tend to get an underrun unless sprite0 already has some
1651 * FIFO space allcoated. Hence we always allocate at least one
1652 * cacheline for sprite0 whenever sprite1 is enabled.
1653 *
1654 * All other plane enable sequences appear immune to this problem.
1655 */
1656 if (vlv_need_sprite0_fifo_workaround(active_planes))
1657 sprite0_fifo_extra = 1;
1658
Ville Syrjälä5012e602017-03-02 19:14:56 +02001659 total_rate = raw->plane[PLANE_PRIMARY] +
1660 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001661 raw->plane[PLANE_SPRITE1] +
1662 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001663
Ville Syrjälä5012e602017-03-02 19:14:56 +02001664 if (total_rate > fifo_size)
1665 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001666
Ville Syrjälä5012e602017-03-02 19:14:56 +02001667 if (total_rate == 0)
1668 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001669
Ville Syrjälä5012e602017-03-02 19:14:56 +02001670 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001671 unsigned int rate;
1672
Ville Syrjälä5012e602017-03-02 19:14:56 +02001673 if ((active_planes & BIT(plane_id)) == 0) {
1674 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001675 continue;
1676 }
1677
Ville Syrjälä5012e602017-03-02 19:14:56 +02001678 rate = raw->plane[plane_id];
1679 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1680 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001681 }
1682
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001683 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1684 fifo_left -= sprite0_fifo_extra;
1685
Ville Syrjälä5012e602017-03-02 19:14:56 +02001686 fifo_state->plane[PLANE_CURSOR] = 63;
1687
1688 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001689
1690 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001691 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001692 int plane_extra;
1693
1694 if (fifo_left == 0)
1695 break;
1696
Ville Syrjälä5012e602017-03-02 19:14:56 +02001697 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001698 continue;
1699
1700 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001701 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001702 fifo_left -= plane_extra;
1703 }
1704
Ville Syrjälä5012e602017-03-02 19:14:56 +02001705 WARN_ON(active_planes != 0 && fifo_left != 0);
1706
1707 /* give it all to the first plane if none are active */
1708 if (active_planes == 0) {
1709 WARN_ON(fifo_left != fifo_size);
1710 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1711 }
1712
1713 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001714}
1715
Ville Syrjäläff32c542017-03-02 19:14:57 +02001716/* mark all levels starting from 'level' as invalid */
1717static void vlv_invalidate_wms(struct intel_crtc *crtc,
1718 struct vlv_wm_state *wm_state, int level)
1719{
1720 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1721
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001722 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001723 enum plane_id plane_id;
1724
1725 for_each_plane_id_on_crtc(crtc, plane_id)
1726 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1727
1728 wm_state->sr[level].cursor = USHRT_MAX;
1729 wm_state->sr[level].plane = USHRT_MAX;
1730 }
1731}
1732
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001733static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1734{
1735 if (wm > fifo_size)
1736 return USHRT_MAX;
1737 else
1738 return fifo_size - wm;
1739}
1740
Ville Syrjäläff32c542017-03-02 19:14:57 +02001741/*
1742 * Starting from 'level' set all higher
1743 * levels to 'value' in the "raw" watermarks.
1744 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001745static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001746 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001747{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001748 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001749 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001750 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001751
Ville Syrjäläff32c542017-03-02 19:14:57 +02001752 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001753 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001754
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001755 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001756 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001757 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001758
1759 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001760}
1761
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001762static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1763 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001764{
1765 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1766 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001767 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001768 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001769 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001770
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001771 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001772 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1773 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001774 }
1775
1776 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001777 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001778 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1779 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1780
Ville Syrjäläff32c542017-03-02 19:14:57 +02001781 if (wm > max_wm)
1782 break;
1783
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001784 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001785 raw->plane[plane_id] = wm;
1786 }
1787
1788 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001789 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001790
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001791out:
1792 if (dirty)
Ville Syrjälä57a65282017-04-21 21:14:22 +03001793 DRM_DEBUG_KMS("%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001794 plane->base.name,
1795 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1796 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1797 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1798
1799 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001800}
1801
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001802static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1803 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001804{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001805 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001806 &crtc_state->wm.vlv.raw[level];
1807 const struct vlv_fifo_state *fifo_state =
1808 &crtc_state->wm.vlv.fifo_state;
1809
1810 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1811}
1812
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001813static 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 +02001814{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001815 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1816 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1817 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1818 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001819}
1820
1821static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001822{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001823 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001824 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001825 struct intel_atomic_state *state =
1826 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001827 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001828 const struct vlv_fifo_state *fifo_state =
1829 &crtc_state->wm.vlv.fifo_state;
1830 int num_active_planes = hweight32(crtc_state->active_planes &
1831 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001832 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjälä7b510452017-08-23 18:22:22 +03001833 const struct intel_plane_state *old_plane_state;
1834 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001835 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001836 enum plane_id plane_id;
1837 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001838 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001839
Ville Syrjälä7b510452017-08-23 18:22:22 +03001840 for_each_oldnew_intel_plane_in_state(state, plane,
1841 old_plane_state,
1842 new_plane_state, i) {
1843 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjäläff32c542017-03-02 19:14:57 +02001844 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001845 continue;
1846
Ville Syrjälä7b510452017-08-23 18:22:22 +03001847 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001848 dirty |= BIT(plane->id);
1849 }
1850
1851 /*
1852 * DSPARB registers may have been reset due to the
1853 * power well being turned off. Make sure we restore
1854 * them to a consistent state even if no primary/sprite
1855 * planes are initially active.
1856 */
1857 if (needs_modeset)
1858 crtc_state->fifo_changed = true;
1859
1860 if (!dirty)
1861 return 0;
1862
1863 /* cursor changes don't warrant a FIFO recompute */
1864 if (dirty & ~BIT(PLANE_CURSOR)) {
1865 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b510452017-08-23 18:22:22 +03001866 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001867 const struct vlv_fifo_state *old_fifo_state =
1868 &old_crtc_state->wm.vlv.fifo_state;
1869
1870 ret = vlv_compute_fifo(crtc_state);
1871 if (ret)
1872 return ret;
1873
1874 if (needs_modeset ||
1875 memcmp(old_fifo_state, fifo_state,
1876 sizeof(*fifo_state)) != 0)
1877 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001878 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001879
Ville Syrjäläff32c542017-03-02 19:14:57 +02001880 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001881 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001882 /*
1883 * Note that enabling cxsr with no primary/sprite planes
1884 * enabled can wedge the pipe. Hence we only allow cxsr
1885 * with exactly one enabled primary/sprite plane.
1886 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001887 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001888
Ville Syrjälä5012e602017-03-02 19:14:56 +02001889 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001890 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001891 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001892
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001893 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001894 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001895
Ville Syrjäläff32c542017-03-02 19:14:57 +02001896 for_each_plane_id_on_crtc(crtc, plane_id) {
1897 wm_state->wm[level].plane[plane_id] =
1898 vlv_invert_wm_value(raw->plane[plane_id],
1899 fifo_state->plane[plane_id]);
1900 }
1901
1902 wm_state->sr[level].plane =
1903 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001904 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001905 raw->plane[PLANE_SPRITE1]),
1906 sr_fifo_size);
1907
1908 wm_state->sr[level].cursor =
1909 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1910 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001911 }
1912
Ville Syrjäläff32c542017-03-02 19:14:57 +02001913 if (level == 0)
1914 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001915
Ville Syrjäläff32c542017-03-02 19:14:57 +02001916 /* limit to only levels we can actually handle */
1917 wm_state->num_levels = level;
1918
1919 /* invalidate the higher levels */
1920 vlv_invalidate_wms(crtc, wm_state, level);
1921
1922 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001923}
1924
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001925#define VLV_FIFO(plane, value) \
1926 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1927
Ville Syrjäläff32c542017-03-02 19:14:57 +02001928static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1929 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001930{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001931 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001932 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001933 const struct vlv_fifo_state *fifo_state =
1934 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001935 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001936
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001937 if (!crtc_state->fifo_changed)
1938 return;
1939
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001940 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1941 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1942 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001943
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001944 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1945 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001946
Ville Syrjäläc137d662017-03-02 19:15:06 +02001947 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1948
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001949 /*
1950 * uncore.lock serves a double purpose here. It allows us to
1951 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1952 * it protects the DSPARB registers from getting clobbered by
1953 * parallel updates from multiple pipes.
1954 *
1955 * intel_pipe_update_start() has already disabled interrupts
1956 * for us, so a plain spin_lock() is sufficient here.
1957 */
1958 spin_lock(&dev_priv->uncore.lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001959
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001960 switch (crtc->pipe) {
1961 uint32_t dsparb, dsparb2, dsparb3;
1962 case PIPE_A:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001963 dsparb = I915_READ_FW(DSPARB);
1964 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001965
1966 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1967 VLV_FIFO(SPRITEB, 0xff));
1968 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1969 VLV_FIFO(SPRITEB, sprite1_start));
1970
1971 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1972 VLV_FIFO(SPRITEB_HI, 0x1));
1973 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1974 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1975
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001976 I915_WRITE_FW(DSPARB, dsparb);
1977 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001978 break;
1979 case PIPE_B:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001980 dsparb = I915_READ_FW(DSPARB);
1981 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001982
1983 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1984 VLV_FIFO(SPRITED, 0xff));
1985 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1986 VLV_FIFO(SPRITED, sprite1_start));
1987
1988 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1989 VLV_FIFO(SPRITED_HI, 0xff));
1990 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1991 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1992
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001993 I915_WRITE_FW(DSPARB, dsparb);
1994 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001995 break;
1996 case PIPE_C:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001997 dsparb3 = I915_READ_FW(DSPARB3);
1998 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001999
2000 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2001 VLV_FIFO(SPRITEF, 0xff));
2002 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2003 VLV_FIFO(SPRITEF, sprite1_start));
2004
2005 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2006 VLV_FIFO(SPRITEF_HI, 0xff));
2007 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2008 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2009
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002010 I915_WRITE_FW(DSPARB3, dsparb3);
2011 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002012 break;
2013 default:
2014 break;
2015 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002016
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002017 POSTING_READ_FW(DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002018
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002019 spin_unlock(&dev_priv->uncore.lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002020}
2021
2022#undef VLV_FIFO
2023
Ville Syrjälä4841da52017-03-02 19:14:59 +02002024static int vlv_compute_intermediate_wm(struct drm_device *dev,
2025 struct intel_crtc *crtc,
2026 struct intel_crtc_state *crtc_state)
2027{
2028 struct vlv_wm_state *intermediate = &crtc_state->wm.vlv.intermediate;
2029 const struct vlv_wm_state *optimal = &crtc_state->wm.vlv.optimal;
2030 const struct vlv_wm_state *active = &crtc->wm.active.vlv;
2031 int level;
2032
2033 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002034 intermediate->cxsr = optimal->cxsr && active->cxsr &&
2035 !crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002036
2037 for (level = 0; level < intermediate->num_levels; level++) {
2038 enum plane_id plane_id;
2039
2040 for_each_plane_id_on_crtc(crtc, plane_id) {
2041 intermediate->wm[level].plane[plane_id] =
2042 min(optimal->wm[level].plane[plane_id],
2043 active->wm[level].plane[plane_id]);
2044 }
2045
2046 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2047 active->sr[level].plane);
2048 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2049 active->sr[level].cursor);
2050 }
2051
2052 vlv_invalidate_wms(crtc, intermediate, level);
2053
2054 /*
2055 * If our intermediate WM are identical to the final WM, then we can
2056 * omit the post-vblank programming; only update if it's different.
2057 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002058 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
2059 crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002060
2061 return 0;
2062}
2063
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002064static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002065 struct vlv_wm_values *wm)
2066{
2067 struct intel_crtc *crtc;
2068 int num_active_crtcs = 0;
2069
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002070 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002071 wm->cxsr = true;
2072
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002073 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002074 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002075
2076 if (!crtc->active)
2077 continue;
2078
2079 if (!wm_state->cxsr)
2080 wm->cxsr = false;
2081
2082 num_active_crtcs++;
2083 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2084 }
2085
2086 if (num_active_crtcs != 1)
2087 wm->cxsr = false;
2088
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002089 if (num_active_crtcs > 1)
2090 wm->level = VLV_WM_LEVEL_PM2;
2091
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002092 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002093 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002094 enum pipe pipe = crtc->pipe;
2095
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002096 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002097 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002098 wm->sr = wm_state->sr[wm->level];
2099
Ville Syrjälä1b313892016-11-28 19:37:08 +02002100 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2101 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2102 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2103 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002104 }
2105}
2106
Ville Syrjäläff32c542017-03-02 19:14:57 +02002107static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002108{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002109 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2110 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002111
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002112 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002113
Ville Syrjäläff32c542017-03-02 19:14:57 +02002114 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002115 return;
2116
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002117 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002118 chv_set_memory_dvfs(dev_priv, false);
2119
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002120 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002121 chv_set_memory_pm5(dev_priv, false);
2122
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002123 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002124 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002125
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002126 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002127
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002128 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002129 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002130
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002131 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002132 chv_set_memory_pm5(dev_priv, true);
2133
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002134 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002135 chv_set_memory_dvfs(dev_priv, true);
2136
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002137 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002138}
2139
Ville Syrjäläff32c542017-03-02 19:14:57 +02002140static void vlv_initial_watermarks(struct intel_atomic_state *state,
2141 struct intel_crtc_state *crtc_state)
2142{
2143 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2144 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
2145
2146 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002147 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2148 vlv_program_watermarks(dev_priv);
2149 mutex_unlock(&dev_priv->wm.wm_mutex);
2150}
2151
2152static void vlv_optimize_watermarks(struct intel_atomic_state *state,
2153 struct intel_crtc_state *crtc_state)
2154{
2155 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2156 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2157
2158 if (!crtc_state->wm.need_postvbl_update)
2159 return;
2160
2161 mutex_lock(&dev_priv->wm.wm_mutex);
2162 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002163 vlv_program_watermarks(dev_priv);
2164 mutex_unlock(&dev_priv->wm.wm_mutex);
2165}
2166
Ville Syrjälä432081b2016-10-31 22:37:03 +02002167static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002168{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002169 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002170 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002171 int srwm = 1;
2172 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002173 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002174
2175 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002176 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002177 if (crtc) {
2178 /* self-refresh has much higher latency */
2179 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002180 const struct drm_display_mode *adjusted_mode =
2181 &crtc->config->base.adjusted_mode;
2182 const struct drm_framebuffer *fb =
2183 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002184 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002185 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002186 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002187 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002188 int entries;
2189
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002190 entries = intel_wm_method2(clock, htotal,
2191 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002192 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2193 srwm = I965_FIFO_SIZE - entries;
2194 if (srwm < 0)
2195 srwm = 1;
2196 srwm &= 0x1ff;
2197 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
2198 entries, srwm);
2199
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002200 entries = intel_wm_method2(clock, htotal,
2201 crtc->base.cursor->state->crtc_w, 4,
2202 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002203 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002204 i965_cursor_wm_info.cacheline_size) +
2205 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002206
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002207 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002208 if (cursor_sr > i965_cursor_wm_info.max_wm)
2209 cursor_sr = i965_cursor_wm_info.max_wm;
2210
2211 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
2212 "cursor %d\n", srwm, cursor_sr);
2213
Imre Deak98584252014-06-13 14:54:20 +03002214 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002215 } else {
Imre Deak98584252014-06-13 14:54:20 +03002216 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002217 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002218 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002219 }
2220
2221 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2222 srwm);
2223
2224 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002225 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2226 FW_WM(8, CURSORB) |
2227 FW_WM(8, PLANEB) |
2228 FW_WM(8, PLANEA));
2229 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2230 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002231 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002232 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002233
2234 if (cxsr_enabled)
2235 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002236}
2237
Ville Syrjäläf4998962015-03-10 17:02:21 +02002238#undef FW_WM
2239
Ville Syrjälä432081b2016-10-31 22:37:03 +02002240static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002241{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002242 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002243 const struct intel_watermark_params *wm_info;
2244 uint32_t fwater_lo;
2245 uint32_t fwater_hi;
2246 int cwm, srwm = 1;
2247 int fifo_size;
2248 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002249 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002250
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002251 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002252 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002253 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002254 wm_info = &i915_wm_info;
2255 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002256 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002257
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002258 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02002259 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002260 if (intel_crtc_active(crtc)) {
2261 const struct drm_display_mode *adjusted_mode =
2262 &crtc->config->base.adjusted_mode;
2263 const struct drm_framebuffer *fb =
2264 crtc->base.primary->state->fb;
2265 int cpp;
2266
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002267 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002268 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002269 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002270 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002271
Damien Lespiau241bfc32013-09-25 16:45:37 +01002272 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002273 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002274 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002275 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002276 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002277 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002278 if (planea_wm > (long)wm_info->max_wm)
2279 planea_wm = wm_info->max_wm;
2280 }
2281
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002282 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002283 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002284
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002285 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02002286 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002287 if (intel_crtc_active(crtc)) {
2288 const struct drm_display_mode *adjusted_mode =
2289 &crtc->config->base.adjusted_mode;
2290 const struct drm_framebuffer *fb =
2291 crtc->base.primary->state->fb;
2292 int cpp;
2293
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002294 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002295 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002296 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002297 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002298
Damien Lespiau241bfc32013-09-25 16:45:37 +01002299 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002300 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002301 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002302 if (enabled == NULL)
2303 enabled = crtc;
2304 else
2305 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002306 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002307 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002308 if (planeb_wm > (long)wm_info->max_wm)
2309 planeb_wm = wm_info->max_wm;
2310 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002311
2312 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2313
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002314 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002315 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002316
Ville Syrjäläefc26112016-10-31 22:37:04 +02002317 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002318
2319 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002320 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002321 enabled = NULL;
2322 }
2323
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002324 /*
2325 * Overlay gets an aggressive default since video jitter is bad.
2326 */
2327 cwm = 2;
2328
2329 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002330 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002331
2332 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002333 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002334 /* self-refresh has much higher latency */
2335 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002336 const struct drm_display_mode *adjusted_mode =
2337 &enabled->config->base.adjusted_mode;
2338 const struct drm_framebuffer *fb =
2339 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002340 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002341 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002342 int hdisplay = enabled->config->pipe_src_w;
2343 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002344 int entries;
2345
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002346 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002347 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002348 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002349 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002350
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002351 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2352 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002353 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
2354 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
2355 srwm = wm_info->fifo_size - entries;
2356 if (srwm < 0)
2357 srwm = 1;
2358
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002359 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002360 I915_WRITE(FW_BLC_SELF,
2361 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002362 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002363 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2364 }
2365
2366 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2367 planea_wm, planeb_wm, cwm, srwm);
2368
2369 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2370 fwater_hi = (cwm & 0x1f);
2371
2372 /* Set request length to 8 cachelines per fetch */
2373 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2374 fwater_hi = fwater_hi | (1 << 8);
2375
2376 I915_WRITE(FW_BLC, fwater_lo);
2377 I915_WRITE(FW_BLC2, fwater_hi);
2378
Imre Deak5209b1f2014-07-01 12:36:17 +03002379 if (enabled)
2380 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002381}
2382
Ville Syrjälä432081b2016-10-31 22:37:03 +02002383static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002384{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002385 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002386 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002387 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002388 uint32_t fwater_lo;
2389 int planea_wm;
2390
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002391 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002392 if (crtc == NULL)
2393 return;
2394
Ville Syrjäläefc26112016-10-31 22:37:04 +02002395 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002396 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002397 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002398 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01002399 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002400 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2401 fwater_lo |= (3<<8) | planea_wm;
2402
2403 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
2404
2405 I915_WRITE(FW_BLC, fwater_lo);
2406}
2407
Ville Syrjälä37126462013-08-01 16:18:55 +03002408/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002409static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2410 unsigned int cpp,
2411 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002412{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002413 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002414
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002415 ret = intel_wm_method1(pixel_rate, cpp, latency);
2416 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002417
2418 return ret;
2419}
2420
Ville Syrjälä37126462013-08-01 16:18:55 +03002421/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002422static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2423 unsigned int htotal,
2424 unsigned int width,
2425 unsigned int cpp,
2426 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002427{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002428 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002429
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002430 ret = intel_wm_method2(pixel_rate, htotal,
2431 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002432 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002433
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002434 return ret;
2435}
2436
Ville Syrjälä23297042013-07-05 11:57:17 +03002437static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02002438 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002439{
Matt Roper15126882015-12-03 11:37:40 -08002440 /*
2441 * Neither of these should be possible since this function shouldn't be
2442 * called if the CRTC is off or the plane is invisible. But let's be
2443 * extra paranoid to avoid a potential divide-by-zero if we screw up
2444 * elsewhere in the driver.
2445 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002446 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002447 return 0;
2448 if (WARN_ON(!horiz_pixels))
2449 return 0;
2450
Ville Syrjäläac484962016-01-20 21:05:26 +02002451 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002452}
2453
Imre Deak820c1982013-12-17 14:46:36 +02002454struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002455 uint16_t pri;
2456 uint16_t spr;
2457 uint16_t cur;
2458 uint16_t fbc;
2459};
2460
Ville Syrjälä37126462013-08-01 16:18:55 +03002461/*
2462 * For both WM_PIPE and WM_LP.
2463 * mem_value must be in 0.1us units.
2464 */
Matt Roper7221fc32015-09-24 15:53:08 -07002465static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002466 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002467 uint32_t mem_value,
2468 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002469{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002470 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002471 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002472
Ville Syrjälä24304d82017-03-14 17:10:49 +02002473 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002474 return 0;
2475
Ville Syrjälä353c8592016-12-14 23:30:57 +02002476 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002477
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002478 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002479
2480 if (!is_lp)
2481 return method1;
2482
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002483 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002484 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002485 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002486 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002487
2488 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002489}
2490
Ville Syrjälä37126462013-08-01 16:18:55 +03002491/*
2492 * For both WM_PIPE and WM_LP.
2493 * mem_value must be in 0.1us units.
2494 */
Matt Roper7221fc32015-09-24 15:53:08 -07002495static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002496 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002497 uint32_t mem_value)
2498{
2499 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002500 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002501
Ville Syrjälä24304d82017-03-14 17:10:49 +02002502 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002503 return 0;
2504
Ville Syrjälä353c8592016-12-14 23:30:57 +02002505 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002506
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002507 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
2508 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002509 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002510 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002511 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002512 return min(method1, method2);
2513}
2514
Ville Syrjälä37126462013-08-01 16:18:55 +03002515/*
2516 * For both WM_PIPE and WM_LP.
2517 * mem_value must be in 0.1us units.
2518 */
Matt Roper7221fc32015-09-24 15:53:08 -07002519static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002520 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002521 uint32_t mem_value)
2522{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002523 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002524
Ville Syrjälä24304d82017-03-14 17:10:49 +02002525 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002526 return 0;
2527
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002528 cpp = pstate->base.fb->format->cpp[0];
2529
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002530 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002531 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002532 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002533}
2534
Paulo Zanonicca32e92013-05-31 11:45:06 -03002535/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002536static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002537 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002538 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002539{
Ville Syrjälä83054942016-11-18 21:53:00 +02002540 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002541
Ville Syrjälä24304d82017-03-14 17:10:49 +02002542 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002543 return 0;
2544
Ville Syrjälä353c8592016-12-14 23:30:57 +02002545 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002546
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002547 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002548}
2549
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002550static unsigned int
2551ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002552{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002553 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002554 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002555 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002556 return 768;
2557 else
2558 return 512;
2559}
2560
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002561static unsigned int
2562ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2563 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002564{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002565 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002566 /* BDW primary/sprite plane watermarks */
2567 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002568 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002569 /* IVB/HSW primary/sprite plane watermarks */
2570 return level == 0 ? 127 : 1023;
2571 else if (!is_sprite)
2572 /* ILK/SNB primary plane watermarks */
2573 return level == 0 ? 127 : 511;
2574 else
2575 /* ILK/SNB sprite plane watermarks */
2576 return level == 0 ? 63 : 255;
2577}
2578
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002579static unsigned int
2580ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002581{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002582 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002583 return level == 0 ? 63 : 255;
2584 else
2585 return level == 0 ? 31 : 63;
2586}
2587
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002588static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002589{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002590 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002591 return 31;
2592 else
2593 return 15;
2594}
2595
Ville Syrjälä158ae642013-08-07 13:28:19 +03002596/* Calculate the maximum primary/sprite plane watermark */
2597static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2598 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002599 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002600 enum intel_ddb_partitioning ddb_partitioning,
2601 bool is_sprite)
2602{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002603 struct drm_i915_private *dev_priv = to_i915(dev);
2604 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002605
2606 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002607 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002608 return 0;
2609
2610 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002611 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002612 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002613
2614 /*
2615 * For some reason the non self refresh
2616 * FIFO size is only half of the self
2617 * refresh FIFO size on ILK/SNB.
2618 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002619 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002620 fifo_size /= 2;
2621 }
2622
Ville Syrjälä240264f2013-08-07 13:29:12 +03002623 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002624 /* level 0 is always calculated with 1:1 split */
2625 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2626 if (is_sprite)
2627 fifo_size *= 5;
2628 fifo_size /= 6;
2629 } else {
2630 fifo_size /= 2;
2631 }
2632 }
2633
2634 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002635 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002636}
2637
2638/* Calculate the maximum cursor plane watermark */
2639static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002640 int level,
2641 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002642{
2643 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002644 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002645 return 64;
2646
2647 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002648 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002649}
2650
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002651static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002652 int level,
2653 const struct intel_wm_config *config,
2654 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002655 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002656{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002657 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2658 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2659 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002660 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002661}
2662
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002663static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002664 int level,
2665 struct ilk_wm_maximums *max)
2666{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002667 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2668 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2669 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2670 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002671}
2672
Ville Syrjäläd9395652013-10-09 19:18:10 +03002673static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002674 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002675 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002676{
2677 bool ret;
2678
2679 /* already determined to be invalid? */
2680 if (!result->enable)
2681 return false;
2682
2683 result->enable = result->pri_val <= max->pri &&
2684 result->spr_val <= max->spr &&
2685 result->cur_val <= max->cur;
2686
2687 ret = result->enable;
2688
2689 /*
2690 * HACK until we can pre-compute everything,
2691 * and thus fail gracefully if LP0 watermarks
2692 * are exceeded...
2693 */
2694 if (level == 0 && !result->enable) {
2695 if (result->pri_val > max->pri)
2696 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2697 level, result->pri_val, max->pri);
2698 if (result->spr_val > max->spr)
2699 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2700 level, result->spr_val, max->spr);
2701 if (result->cur_val > max->cur)
2702 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2703 level, result->cur_val, max->cur);
2704
2705 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2706 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2707 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2708 result->enable = true;
2709 }
2710
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002711 return ret;
2712}
2713
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002714static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002715 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002716 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002717 struct intel_crtc_state *cstate,
Maarten Lankhorst8777b922017-10-19 17:13:40 +02002718 const struct intel_plane_state *pristate,
2719 const struct intel_plane_state *sprstate,
2720 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002721 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002722{
2723 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2724 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2725 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2726
2727 /* WM1+ latency values stored in 0.5us units */
2728 if (level > 0) {
2729 pri_latency *= 5;
2730 spr_latency *= 5;
2731 cur_latency *= 5;
2732 }
2733
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002734 if (pristate) {
2735 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2736 pri_latency, level);
2737 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2738 }
2739
2740 if (sprstate)
2741 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2742
2743 if (curstate)
2744 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2745
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002746 result->enable = true;
2747}
2748
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002749static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002750hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002751{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002752 const struct intel_atomic_state *intel_state =
2753 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002754 const struct drm_display_mode *adjusted_mode =
2755 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002756 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002757
Matt Roperee91a152015-12-03 11:37:39 -08002758 if (!cstate->base.active)
2759 return 0;
2760 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2761 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002762 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002763 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002764
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002765 /* The WM are computed with base on how long it takes to fill a single
2766 * row at the given clock rate, multiplied by 8.
2767 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002768 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2769 adjusted_mode->crtc_clock);
2770 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002771 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002772
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002773 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2774 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002775}
2776
Ville Syrjäläbb726512016-10-31 22:37:24 +02002777static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2778 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002779{
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002780 if (INTEL_GEN(dev_priv) >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002781 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002782 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002783 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002784
2785 /* read the first set of memory latencies[0:3] */
2786 val = 0; /* data0 to be programmed to 0 for first set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002787 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002788 ret = sandybridge_pcode_read(dev_priv,
2789 GEN9_PCODE_READ_MEM_LATENCY,
2790 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002791 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002792
2793 if (ret) {
2794 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2795 return;
2796 }
2797
2798 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2799 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2800 GEN9_MEM_LATENCY_LEVEL_MASK;
2801 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2802 GEN9_MEM_LATENCY_LEVEL_MASK;
2803 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2804 GEN9_MEM_LATENCY_LEVEL_MASK;
2805
2806 /* read the second set of memory latencies[4:7] */
2807 val = 1; /* data0 to be programmed to 1 for second 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 if (ret) {
2814 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2815 return;
2816 }
2817
2818 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2819 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2820 GEN9_MEM_LATENCY_LEVEL_MASK;
2821 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2822 GEN9_MEM_LATENCY_LEVEL_MASK;
2823 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2824 GEN9_MEM_LATENCY_LEVEL_MASK;
2825
Vandana Kannan367294b2014-11-04 17:06:46 +00002826 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002827 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2828 * need to be disabled. We make sure to sanitize the values out
2829 * of the punit to satisfy this requirement.
2830 */
2831 for (level = 1; level <= max_level; level++) {
2832 if (wm[level] == 0) {
2833 for (i = level + 1; i <= max_level; i++)
2834 wm[i] = 0;
2835 break;
2836 }
2837 }
2838
2839 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002840 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002841 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002842 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002843 * to add 2us to the various latency levels we retrieve from the
2844 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002845 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002846 if (wm[0] == 0) {
2847 wm[0] += 2;
2848 for (level = 1; level <= max_level; level++) {
2849 if (wm[level] == 0)
2850 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002851 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002852 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002853 }
2854
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002855 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002856 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2857
2858 wm[0] = (sskpd >> 56) & 0xFF;
2859 if (wm[0] == 0)
2860 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002861 wm[1] = (sskpd >> 4) & 0xFF;
2862 wm[2] = (sskpd >> 12) & 0xFF;
2863 wm[3] = (sskpd >> 20) & 0x1FF;
2864 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002865 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002866 uint32_t sskpd = I915_READ(MCH_SSKPD);
2867
2868 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2869 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2870 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2871 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002872 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002873 uint32_t mltr = I915_READ(MLTR_ILK);
2874
2875 /* ILK primary LP0 latency is 700 ns */
2876 wm[0] = 7;
2877 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2878 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002879 } else {
2880 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002881 }
2882}
2883
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002884static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2885 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002886{
2887 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002888 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002889 wm[0] = 13;
2890}
2891
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002892static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2893 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002894{
2895 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002896 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002897 wm[0] = 13;
2898
2899 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002900 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002901 wm[3] *= 2;
2902}
2903
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002904int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002905{
2906 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002907 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002908 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002909 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002910 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002911 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002912 return 3;
2913 else
2914 return 2;
2915}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002916
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002917static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002918 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002919 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002920{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002921 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002922
2923 for (level = 0; level <= max_level; level++) {
2924 unsigned int latency = wm[level];
2925
2926 if (latency == 0) {
2927 DRM_ERROR("%s WM%d latency not provided\n",
2928 name, level);
2929 continue;
2930 }
2931
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002932 /*
2933 * - latencies are in us on gen9.
2934 * - before then, WM1+ latency values are in 0.5us units
2935 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002936 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002937 latency *= 10;
2938 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002939 latency *= 5;
2940
2941 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2942 name, level, wm[level],
2943 latency / 10, latency % 10);
2944 }
2945}
2946
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002947static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2948 uint16_t wm[5], uint16_t min)
2949{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002950 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002951
2952 if (wm[0] >= min)
2953 return false;
2954
2955 wm[0] = max(wm[0], min);
2956 for (level = 1; level <= max_level; level++)
2957 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2958
2959 return true;
2960}
2961
Ville Syrjäläbb726512016-10-31 22:37:24 +02002962static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002963{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002964 bool changed;
2965
2966 /*
2967 * The BIOS provided WM memory latency values are often
2968 * inadequate for high resolution displays. Adjust them.
2969 */
2970 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2971 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2972 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2973
2974 if (!changed)
2975 return;
2976
2977 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002978 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2979 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2980 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002981}
2982
Ville Syrjäläbb726512016-10-31 22:37:24 +02002983static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002984{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002985 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002986
2987 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2988 sizeof(dev_priv->wm.pri_latency));
2989 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2990 sizeof(dev_priv->wm.pri_latency));
2991
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002992 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002993 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002994
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002995 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2996 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2997 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002998
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002999 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02003000 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003001}
3002
Ville Syrjäläbb726512016-10-31 22:37:24 +02003003static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003004{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003005 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003006 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003007}
3008
Matt Ropered4a6a72016-02-23 17:20:13 -08003009static bool ilk_validate_pipe_wm(struct drm_device *dev,
3010 struct intel_pipe_wm *pipe_wm)
3011{
3012 /* LP0 watermark maximums depend on this pipe alone */
3013 const struct intel_wm_config config = {
3014 .num_pipes_active = 1,
3015 .sprites_enabled = pipe_wm->sprites_enabled,
3016 .sprites_scaled = pipe_wm->sprites_scaled,
3017 };
3018 struct ilk_wm_maximums max;
3019
3020 /* LP0 watermarks always use 1/2 DDB partitioning */
3021 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
3022
3023 /* At least LP0 must be valid */
3024 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
3025 DRM_DEBUG_KMS("LP0 watermark invalid\n");
3026 return false;
3027 }
3028
3029 return true;
3030}
3031
Matt Roper261a27d2015-10-08 15:28:25 -07003032/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003033static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07003034{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003035 struct drm_atomic_state *state = cstate->base.state;
3036 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003037 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003038 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003039 const struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003040 struct drm_plane *plane;
3041 const struct drm_plane_state *plane_state;
3042 const struct intel_plane_state *pristate = NULL;
3043 const struct intel_plane_state *sprstate = NULL;
3044 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003045 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003046 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003047
Matt Ropere8f1f022016-05-12 07:05:55 -07003048 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003049
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003050 drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, &cstate->base) {
3051 const struct intel_plane_state *ps = to_intel_plane_state(plane_state);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003052
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003053 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003054 pristate = ps;
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003055 else if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003056 sprstate = ps;
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003057 else if (plane->type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003058 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07003059 }
3060
Matt Ropered4a6a72016-02-23 17:20:13 -08003061 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003062 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003063 pipe_wm->sprites_enabled = sprstate->base.visible;
3064 pipe_wm->sprites_scaled = sprstate->base.visible &&
3065 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
3066 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003067 }
3068
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003069 usable_level = max_level;
3070
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003071 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003072 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003073 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003074
3075 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003076 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003077 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003078
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003079 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003080 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
3081 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003082
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003083 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03003084 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003085
Matt Ropered4a6a72016-02-23 17:20:13 -08003086 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003087 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003088
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003089 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003090
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003091 for (level = 1; level <= usable_level; level++) {
3092 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003093
Matt Roper86c8bbb2015-09-24 15:53:16 -07003094 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003095 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003096
3097 /*
3098 * Disable any watermark level that exceeds the
3099 * register maximums since such watermarks are
3100 * always invalid.
3101 */
Maarten Lankhorst8777b922017-10-19 17:13:40 +02003102 if (!ilk_validate_wm_level(level, &max, wm)) {
3103 memset(wm, 0, sizeof(*wm));
3104 break;
3105 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003106 }
3107
Matt Roper86c8bbb2015-09-24 15:53:16 -07003108 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003109}
3110
3111/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003112 * Build a set of 'intermediate' watermark values that satisfy both the old
3113 * state and the new state. These can be programmed to the hardware
3114 * immediately.
3115 */
3116static int ilk_compute_intermediate_wm(struct drm_device *dev,
3117 struct intel_crtc *intel_crtc,
3118 struct intel_crtc_state *newstate)
3119{
Matt Ropere8f1f022016-05-12 07:05:55 -07003120 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorst90c702b2017-10-19 17:13:41 +02003121 struct intel_atomic_state *intel_state =
3122 to_intel_atomic_state(newstate->base.state);
3123 const struct intel_crtc_state *oldstate =
3124 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3125 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003126 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08003127
3128 /*
3129 * Start with the final, target watermarks, then combine with the
3130 * currently active watermarks to get values that are safe both before
3131 * and after the vblank.
3132 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003133 *a = newstate->wm.ilk.optimal;
Maarten Lankhorst90c702b2017-10-19 17:13:41 +02003134 if (!newstate->base.active || drm_atomic_crtc_needs_modeset(&newstate->base))
3135 return 0;
3136
Matt Ropered4a6a72016-02-23 17:20:13 -08003137 a->pipe_enabled |= b->pipe_enabled;
3138 a->sprites_enabled |= b->sprites_enabled;
3139 a->sprites_scaled |= b->sprites_scaled;
3140
3141 for (level = 0; level <= max_level; level++) {
3142 struct intel_wm_level *a_wm = &a->wm[level];
3143 const struct intel_wm_level *b_wm = &b->wm[level];
3144
3145 a_wm->enable &= b_wm->enable;
3146 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3147 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3148 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3149 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3150 }
3151
3152 /*
3153 * We need to make sure that these merged watermark values are
3154 * actually a valid configuration themselves. If they're not,
3155 * there's no safe way to transition from the old state to
3156 * the new state, so we need to fail the atomic transaction.
3157 */
3158 if (!ilk_validate_pipe_wm(dev, a))
3159 return -EINVAL;
3160
3161 /*
3162 * If our intermediate WM are identical to the final WM, then we can
3163 * omit the post-vblank programming; only update if it's different.
3164 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003165 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3166 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003167
3168 return 0;
3169}
3170
3171/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003172 * Merge the watermarks from all active pipes for a specific level.
3173 */
3174static void ilk_merge_wm_level(struct drm_device *dev,
3175 int level,
3176 struct intel_wm_level *ret_wm)
3177{
3178 const struct intel_crtc *intel_crtc;
3179
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003180 ret_wm->enable = true;
3181
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003182 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003183 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003184 const struct intel_wm_level *wm = &active->wm[level];
3185
3186 if (!active->pipe_enabled)
3187 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003188
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003189 /*
3190 * The watermark values may have been used in the past,
3191 * so we must maintain them in the registers for some
3192 * time even if the level is now disabled.
3193 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003194 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003195 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003196
3197 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3198 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3199 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3200 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3201 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003202}
3203
3204/*
3205 * Merge all low power watermarks for all active pipes.
3206 */
3207static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003208 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003209 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003210 struct intel_pipe_wm *merged)
3211{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003212 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003213 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003214 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003215
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003216 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003217 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003218 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003219 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003220
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003221 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003222 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003223
3224 /* merge each WM1+ level */
3225 for (level = 1; level <= max_level; level++) {
3226 struct intel_wm_level *wm = &merged->wm[level];
3227
3228 ilk_merge_wm_level(dev, level, wm);
3229
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003230 if (level > last_enabled_level)
3231 wm->enable = false;
3232 else if (!ilk_validate_wm_level(level, max, wm))
3233 /* make sure all following levels get disabled */
3234 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003235
3236 /*
3237 * The spec says it is preferred to disable
3238 * FBC WMs instead of disabling a WM level.
3239 */
3240 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003241 if (wm->enable)
3242 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003243 wm->fbc_val = 0;
3244 }
3245 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003246
3247 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3248 /*
3249 * FIXME this is racy. FBC might get enabled later.
3250 * What we should check here is whether FBC can be
3251 * enabled sometime later.
3252 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003253 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003254 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003255 for (level = 2; level <= max_level; level++) {
3256 struct intel_wm_level *wm = &merged->wm[level];
3257
3258 wm->enable = false;
3259 }
3260 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003261}
3262
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003263static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3264{
3265 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3266 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3267}
3268
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003269/* The value we need to program into the WM_LPx latency field */
3270static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
3271{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003272 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003273
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003274 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003275 return 2 * level;
3276 else
3277 return dev_priv->wm.pri_latency[level];
3278}
3279
Imre Deak820c1982013-12-17 14:46:36 +02003280static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003281 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003282 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003283 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003284{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003285 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003286 struct intel_crtc *intel_crtc;
3287 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003288
Ville Syrjälä0362c782013-10-09 19:17:57 +03003289 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003290 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003291
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003292 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003293 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003294 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003295
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003296 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003297
Ville Syrjälä0362c782013-10-09 19:17:57 +03003298 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003299
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003300 /*
3301 * Maintain the watermark values even if the level is
3302 * disabled. Doing otherwise could cause underruns.
3303 */
3304 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003305 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003306 (r->pri_val << WM1_LP_SR_SHIFT) |
3307 r->cur_val;
3308
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003309 if (r->enable)
3310 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3311
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003312 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003313 results->wm_lp[wm_lp - 1] |=
3314 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3315 else
3316 results->wm_lp[wm_lp - 1] |=
3317 r->fbc_val << WM1_LP_FBC_SHIFT;
3318
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003319 /*
3320 * Always set WM1S_LP_EN when spr_val != 0, even if the
3321 * level is disabled. Doing otherwise could cause underruns.
3322 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003323 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003324 WARN_ON(wm_lp != 1);
3325 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3326 } else
3327 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003328 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003329
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003330 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003331 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003332 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08003333 const struct intel_wm_level *r =
3334 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003335
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003336 if (WARN_ON(!r->enable))
3337 continue;
3338
Matt Ropered4a6a72016-02-23 17:20:13 -08003339 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003340
3341 results->wm_pipe[pipe] =
3342 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3343 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3344 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003345 }
3346}
3347
Paulo Zanoni861f3382013-05-31 10:19:21 -03003348/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3349 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02003350static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003351 struct intel_pipe_wm *r1,
3352 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003353{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003354 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003355 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003356
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003357 for (level = 1; level <= max_level; level++) {
3358 if (r1->wm[level].enable)
3359 level1 = level;
3360 if (r2->wm[level].enable)
3361 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003362 }
3363
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003364 if (level1 == level2) {
3365 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003366 return r2;
3367 else
3368 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003369 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003370 return r1;
3371 } else {
3372 return r2;
3373 }
3374}
3375
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003376/* dirty bits used to track which watermarks need changes */
3377#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3378#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
3379#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3380#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3381#define WM_DIRTY_FBC (1 << 24)
3382#define WM_DIRTY_DDB (1 << 25)
3383
Damien Lespiau055e3932014-08-18 13:49:10 +01003384static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003385 const struct ilk_wm_values *old,
3386 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003387{
3388 unsigned int dirty = 0;
3389 enum pipe pipe;
3390 int wm_lp;
3391
Damien Lespiau055e3932014-08-18 13:49:10 +01003392 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003393 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
3394 dirty |= WM_DIRTY_LINETIME(pipe);
3395 /* Must disable LP1+ watermarks too */
3396 dirty |= WM_DIRTY_LP_ALL;
3397 }
3398
3399 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3400 dirty |= WM_DIRTY_PIPE(pipe);
3401 /* Must disable LP1+ watermarks too */
3402 dirty |= WM_DIRTY_LP_ALL;
3403 }
3404 }
3405
3406 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3407 dirty |= WM_DIRTY_FBC;
3408 /* Must disable LP1+ watermarks too */
3409 dirty |= WM_DIRTY_LP_ALL;
3410 }
3411
3412 if (old->partitioning != new->partitioning) {
3413 dirty |= WM_DIRTY_DDB;
3414 /* Must disable LP1+ watermarks too */
3415 dirty |= WM_DIRTY_LP_ALL;
3416 }
3417
3418 /* LP1+ watermarks already deemed dirty, no need to continue */
3419 if (dirty & WM_DIRTY_LP_ALL)
3420 return dirty;
3421
3422 /* Find the lowest numbered LP1+ watermark in need of an update... */
3423 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3424 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3425 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3426 break;
3427 }
3428
3429 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3430 for (; wm_lp <= 3; wm_lp++)
3431 dirty |= WM_DIRTY_LP(wm_lp);
3432
3433 return dirty;
3434}
3435
Ville Syrjälä8553c182013-12-05 15:51:39 +02003436static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3437 unsigned int dirty)
3438{
Imre Deak820c1982013-12-17 14:46:36 +02003439 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003440 bool changed = false;
3441
3442 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3443 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3444 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3445 changed = true;
3446 }
3447 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3448 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3449 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3450 changed = true;
3451 }
3452 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3453 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3454 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3455 changed = true;
3456 }
3457
3458 /*
3459 * Don't touch WM1S_LP_EN here.
3460 * Doing so could cause underruns.
3461 */
3462
3463 return changed;
3464}
3465
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003466/*
3467 * The spec says we shouldn't write when we don't need, because every write
3468 * causes WMs to be re-evaluated, expending some power.
3469 */
Imre Deak820c1982013-12-17 14:46:36 +02003470static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3471 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003472{
Imre Deak820c1982013-12-17 14:46:36 +02003473 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003474 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003475 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003476
Damien Lespiau055e3932014-08-18 13:49:10 +01003477 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003478 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003479 return;
3480
Ville Syrjälä8553c182013-12-05 15:51:39 +02003481 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003482
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003483 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003484 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003485 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003486 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003487 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003488 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3489
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003490 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003491 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003492 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003493 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003494 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003495 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
3496
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003497 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003498 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003499 val = I915_READ(WM_MISC);
3500 if (results->partitioning == INTEL_DDB_PART_1_2)
3501 val &= ~WM_MISC_DATA_PARTITION_5_6;
3502 else
3503 val |= WM_MISC_DATA_PARTITION_5_6;
3504 I915_WRITE(WM_MISC, val);
3505 } else {
3506 val = I915_READ(DISP_ARB_CTL2);
3507 if (results->partitioning == INTEL_DDB_PART_1_2)
3508 val &= ~DISP_DATA_PARTITION_5_6;
3509 else
3510 val |= DISP_DATA_PARTITION_5_6;
3511 I915_WRITE(DISP_ARB_CTL2, val);
3512 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003513 }
3514
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003515 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003516 val = I915_READ(DISP_ARB_CTL);
3517 if (results->enable_fbc_wm)
3518 val &= ~DISP_FBC_WM_DIS;
3519 else
3520 val |= DISP_FBC_WM_DIS;
3521 I915_WRITE(DISP_ARB_CTL, val);
3522 }
3523
Imre Deak954911e2013-12-17 14:46:34 +02003524 if (dirty & WM_DIRTY_LP(1) &&
3525 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3526 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3527
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003528 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003529 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3530 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3531 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3532 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3533 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003534
Ville Syrjäläfacd6192013-12-05 15:51:33 +02003535 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003536 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02003537 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003538 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02003539 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003540 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003541
3542 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003543}
3544
Matt Ropered4a6a72016-02-23 17:20:13 -08003545bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003546{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003547 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003548
3549 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3550}
3551
Matt Roper024c9042015-09-24 15:53:11 -07003552/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003553 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3554 * so assume we'll always need it in order to avoid underruns.
3555 */
3556static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3557{
3558 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3559
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003560 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003561 return true;
3562
3563 return false;
3564}
3565
Paulo Zanoni56feca92016-09-22 18:00:28 -03003566static bool
3567intel_has_sagv(struct drm_i915_private *dev_priv)
3568{
Rodrigo Vivi01971812017-08-09 13:52:44 -07003569 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
3570 IS_CANNONLAKE(dev_priv))
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003571 return true;
3572
3573 if (IS_SKYLAKE(dev_priv) &&
3574 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3575 return true;
3576
3577 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003578}
3579
Lyude656d1b82016-08-17 15:55:54 -04003580/*
3581 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3582 * depending on power and performance requirements. The display engine access
3583 * to system memory is blocked during the adjustment time. Because of the
3584 * blocking time, having this enabled can cause full system hangs and/or pipe
3585 * underruns if we don't meet all of the following requirements:
3586 *
3587 * - <= 1 pipe enabled
3588 * - All planes can enable watermarks for latencies >= SAGV engine block time
3589 * - We're not using an interlaced display configuration
3590 */
3591int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003592intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003593{
3594 int ret;
3595
Paulo Zanoni56feca92016-09-22 18:00:28 -03003596 if (!intel_has_sagv(dev_priv))
3597 return 0;
3598
3599 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003600 return 0;
3601
3602 DRM_DEBUG_KMS("Enabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003603 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003604
3605 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3606 GEN9_SAGV_ENABLE);
3607
3608 /* We don't need to wait for the SAGV when enabling */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003609 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003610
3611 /*
3612 * Some skl systems, pre-release machines in particular,
3613 * don't actually have an SAGV.
3614 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003615 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003616 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003617 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003618 return 0;
3619 } else if (ret < 0) {
3620 DRM_ERROR("Failed to enable the SAGV\n");
3621 return ret;
3622 }
3623
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003624 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003625 return 0;
3626}
3627
Lyude656d1b82016-08-17 15:55:54 -04003628int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003629intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003630{
Imre Deakb3b8e992016-12-05 18:27:38 +02003631 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003632
Paulo Zanoni56feca92016-09-22 18:00:28 -03003633 if (!intel_has_sagv(dev_priv))
3634 return 0;
3635
3636 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003637 return 0;
3638
3639 DRM_DEBUG_KMS("Disabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003640 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003641
3642 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003643 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3644 GEN9_SAGV_DISABLE,
3645 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3646 1);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003647 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003648
Lyude656d1b82016-08-17 15:55:54 -04003649 /*
3650 * Some skl systems, pre-release machines in particular,
3651 * don't actually have an SAGV.
3652 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003653 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003654 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003655 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003656 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003657 } else if (ret < 0) {
3658 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3659 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003660 }
3661
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003662 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003663 return 0;
3664}
3665
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003666bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003667{
3668 struct drm_device *dev = state->dev;
3669 struct drm_i915_private *dev_priv = to_i915(dev);
3670 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003671 struct intel_crtc *crtc;
3672 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003673 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003674 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003675 int level, latency;
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003676 int sagv_block_time_us = IS_GEN9(dev_priv) ? 30 : 20;
Lyude656d1b82016-08-17 15:55:54 -04003677
Paulo Zanoni56feca92016-09-22 18:00:28 -03003678 if (!intel_has_sagv(dev_priv))
3679 return false;
3680
Lyude656d1b82016-08-17 15:55:54 -04003681 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003682 * SKL+ workaround: bspec recommends we disable the SAGV when we have
Lyude656d1b82016-08-17 15:55:54 -04003683 * more then one pipe enabled
3684 *
3685 * If there are no active CRTCs, no additional checks need be performed
3686 */
3687 if (hweight32(intel_state->active_crtcs) == 0)
3688 return true;
3689 else if (hweight32(intel_state->active_crtcs) > 1)
3690 return false;
3691
3692 /* Since we're now guaranteed to only have one active CRTC... */
3693 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003694 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003695 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003696
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003697 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003698 return false;
3699
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003700 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003701 struct skl_plane_wm *wm =
3702 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003703
Lyude656d1b82016-08-17 15:55:54 -04003704 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003705 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003706 continue;
3707
3708 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003709 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003710 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003711 { }
3712
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003713 latency = dev_priv->wm.skl_latency[level];
3714
3715 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003716 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003717 I915_FORMAT_MOD_X_TILED)
3718 latency += 15;
3719
Lyude656d1b82016-08-17 15:55:54 -04003720 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003721 * If any of the planes on this pipe don't enable wm levels that
3722 * incur memory latencies higher than sagv_block_time_us we
3723 * can't enable the SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003724 */
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003725 if (latency < sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003726 return false;
3727 }
3728
3729 return true;
3730}
3731
Damien Lespiaub9cec072014-11-04 17:06:43 +00003732static void
3733skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003734 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003735 struct skl_ddb_entry *alloc, /* out */
3736 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003737{
Matt Roperc107acf2016-05-12 07:06:01 -07003738 struct drm_atomic_state *state = cstate->base.state;
3739 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3740 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003741 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003742 unsigned int pipe_size, ddb_size;
3743 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003744
Matt Ropera6d3460e2016-05-12 07:06:04 -07003745 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003746 alloc->start = 0;
3747 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003748 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003749 return;
3750 }
3751
Matt Ropera6d3460e2016-05-12 07:06:04 -07003752 if (intel_state->active_pipe_changes)
3753 *num_active = hweight32(intel_state->active_crtcs);
3754 else
3755 *num_active = hweight32(dev_priv->active_crtcs);
3756
Deepak M6f3fff62016-09-15 15:01:10 +05303757 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3758 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003759
3760 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3761
Matt Roperc107acf2016-05-12 07:06:01 -07003762 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003763 * If the state doesn't change the active CRTC's, then there's
3764 * no need to recalculate; the existing pipe allocation limits
3765 * should remain unchanged. Note that we're safe from racing
3766 * commits since any racing commit that changes the active CRTC
3767 * list would need to grab _all_ crtc locks, including the one
3768 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003769 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003770 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003771 /*
3772 * alloc may be cleared by clear_intel_crtc_state,
3773 * copy from old state to be sure
3774 */
3775 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003776 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003777 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003778
3779 nth_active_pipe = hweight32(intel_state->active_crtcs &
3780 (drm_crtc_mask(for_crtc) - 1));
3781 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3782 alloc->start = nth_active_pipe * ddb_size / *num_active;
3783 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003784}
3785
Matt Roperc107acf2016-05-12 07:06:01 -07003786static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003787{
Matt Roperc107acf2016-05-12 07:06:01 -07003788 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003789 return 32;
3790
3791 return 8;
3792}
3793
Damien Lespiaua269c582014-11-04 17:06:49 +00003794static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3795{
3796 entry->start = reg & 0x3ff;
3797 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003798 if (entry->end)
3799 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003800}
3801
Damien Lespiau08db6652014-11-04 17:06:52 +00003802void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3803 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003804{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003805 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003806
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003807 memset(ddb, 0, sizeof(*ddb));
3808
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003809 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003810 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003811 enum plane_id plane_id;
3812 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003813
3814 power_domain = POWER_DOMAIN_PIPE(pipe);
3815 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003816 continue;
3817
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003818 for_each_plane_id_on_crtc(crtc, plane_id) {
3819 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003820
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003821 if (plane_id != PLANE_CURSOR)
3822 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3823 else
3824 val = I915_READ(CUR_BUF_CFG(pipe));
3825
3826 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3827 }
Imre Deak4d800032016-02-17 16:31:29 +02003828
3829 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003830 }
3831}
3832
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003833/*
3834 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3835 * The bspec defines downscale amount as:
3836 *
3837 * """
3838 * Horizontal down scale amount = maximum[1, Horizontal source size /
3839 * Horizontal destination size]
3840 * Vertical down scale amount = maximum[1, Vertical source size /
3841 * Vertical destination size]
3842 * Total down scale amount = Horizontal down scale amount *
3843 * Vertical down scale amount
3844 * """
3845 *
3846 * Return value is provided in 16.16 fixed point form to retain fractional part.
3847 * Caller should take care of dividing & rounding off the value.
3848 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303849static uint_fixed_16_16_t
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003850skl_plane_downscale_amount(const struct intel_crtc_state *cstate,
3851 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003852{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003853 struct intel_plane *plane = to_intel_plane(pstate->base.plane);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003854 uint32_t src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303855 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3856 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003857
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003858 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303859 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003860
3861 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003862 if (plane->id == PLANE_CURSOR) {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003863 /*
3864 * Cursors only support 0/180 degree rotation,
3865 * hence no need to account for rotation here.
3866 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303867 src_w = pstate->base.src_w >> 16;
3868 src_h = pstate->base.src_h >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003869 dst_w = pstate->base.crtc_w;
3870 dst_h = pstate->base.crtc_h;
3871 } else {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003872 /*
3873 * Src coordinates are already rotated by 270 degrees for
3874 * the 90/270 degree plane rotation cases (to match the
3875 * GTT mapping), hence no need to account for rotation here.
3876 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303877 src_w = drm_rect_width(&pstate->base.src) >> 16;
3878 src_h = drm_rect_height(&pstate->base.src) >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003879 dst_w = drm_rect_width(&pstate->base.dst);
3880 dst_h = drm_rect_height(&pstate->base.dst);
3881 }
3882
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303883 fp_w_ratio = div_fixed16(src_w, dst_w);
3884 fp_h_ratio = div_fixed16(src_h, dst_h);
3885 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3886 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003887
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303888 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003889}
3890
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303891static uint_fixed_16_16_t
3892skl_pipe_downscale_amount(const struct intel_crtc_state *crtc_state)
3893{
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303894 uint_fixed_16_16_t pipe_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303895
3896 if (!crtc_state->base.enable)
3897 return pipe_downscale;
3898
3899 if (crtc_state->pch_pfit.enabled) {
3900 uint32_t src_w, src_h, dst_w, dst_h;
3901 uint32_t pfit_size = crtc_state->pch_pfit.size;
3902 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3903 uint_fixed_16_16_t downscale_h, downscale_w;
3904
3905 src_w = crtc_state->pipe_src_w;
3906 src_h = crtc_state->pipe_src_h;
3907 dst_w = pfit_size >> 16;
3908 dst_h = pfit_size & 0xffff;
3909
3910 if (!dst_w || !dst_h)
3911 return pipe_downscale;
3912
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303913 fp_w_ratio = div_fixed16(src_w, dst_w);
3914 fp_h_ratio = div_fixed16(src_h, dst_h);
3915 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3916 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303917
3918 pipe_downscale = mul_fixed16(downscale_w, downscale_h);
3919 }
3920
3921 return pipe_downscale;
3922}
3923
3924int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
3925 struct intel_crtc_state *cstate)
3926{
3927 struct drm_crtc_state *crtc_state = &cstate->base;
3928 struct drm_atomic_state *state = crtc_state->state;
3929 struct drm_plane *plane;
3930 const struct drm_plane_state *pstate;
3931 struct intel_plane_state *intel_pstate;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003932 int crtc_clock, dotclk;
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303933 uint32_t pipe_max_pixel_rate;
3934 uint_fixed_16_16_t pipe_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303935 uint_fixed_16_16_t max_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303936
3937 if (!cstate->base.enable)
3938 return 0;
3939
3940 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
3941 uint_fixed_16_16_t plane_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303942 uint_fixed_16_16_t fp_9_div_8 = div_fixed16(9, 8);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303943 int bpp;
3944
3945 if (!intel_wm_plane_visible(cstate,
3946 to_intel_plane_state(pstate)))
3947 continue;
3948
3949 if (WARN_ON(!pstate->fb))
3950 return -EINVAL;
3951
3952 intel_pstate = to_intel_plane_state(pstate);
3953 plane_downscale = skl_plane_downscale_amount(cstate,
3954 intel_pstate);
3955 bpp = pstate->fb->format->cpp[0] * 8;
3956 if (bpp == 64)
3957 plane_downscale = mul_fixed16(plane_downscale,
3958 fp_9_div_8);
3959
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303960 max_downscale = max_fixed16(plane_downscale, max_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303961 }
3962 pipe_downscale = skl_pipe_downscale_amount(cstate);
3963
3964 pipe_downscale = mul_fixed16(pipe_downscale, max_downscale);
3965
3966 crtc_clock = crtc_state->adjusted_mode.crtc_clock;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003967 dotclk = to_intel_atomic_state(state)->cdclk.logical.cdclk;
3968
3969 if (IS_GEMINILAKE(to_i915(intel_crtc->base.dev)))
3970 dotclk *= 2;
3971
3972 pipe_max_pixel_rate = div_round_up_u32_fixed16(dotclk, pipe_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303973
3974 if (pipe_max_pixel_rate < crtc_clock) {
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003975 DRM_DEBUG_KMS("Max supported pixel clock with scaling exceeded\n");
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303976 return -EINVAL;
3977 }
3978
3979 return 0;
3980}
3981
Damien Lespiaub9cec072014-11-04 17:06:43 +00003982static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003983skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3984 const struct drm_plane_state *pstate,
3985 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003986{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003987 struct intel_plane *plane = to_intel_plane(pstate->plane);
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003988 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303989 uint32_t data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003990 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003991 struct drm_framebuffer *fb;
3992 u32 format;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303993 uint_fixed_16_16_t down_scale_amount;
Matt Ropera1de91e2016-05-12 07:05:57 -07003994
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003995 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003996 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003997
3998 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003999 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02004000
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004001 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004002 return 0;
4003 if (y && format != DRM_FORMAT_NV12)
4004 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004005
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004006 /*
4007 * Src coordinates are already rotated by 270 degrees for
4008 * the 90/270 degree plane rotation cases (to match the
4009 * GTT mapping), hence no need to account for rotation here.
4010 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004011 width = drm_rect_width(&intel_pstate->base.src) >> 16;
4012 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004013
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004014 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07004015 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004016 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004017 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004018 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004019 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004020 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004021 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004022 } else {
4023 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02004024 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004025 }
4026
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004027 down_scale_amount = skl_plane_downscale_amount(cstate, intel_pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004028
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304029 return mul_round_up_u32_fixed16(data_rate, down_scale_amount);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004030}
4031
4032/*
4033 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
4034 * a 8192x4096@32bpp framebuffer:
4035 * 3 * 4096 * 8192 * 4 < 2^32
4036 */
4037static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004038skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
4039 unsigned *plane_data_rate,
4040 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004041{
Matt Roper9c74d822016-05-12 07:05:58 -07004042 struct drm_crtc_state *cstate = &intel_cstate->base;
4043 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004044 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004045 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004046 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004047
4048 if (WARN_ON(!state))
4049 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004050
Matt Ropera1de91e2016-05-12 07:05:57 -07004051 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004052 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004053 enum plane_id plane_id = to_intel_plane(plane)->id;
4054 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07004055
Matt Ropera6d3460e2016-05-12 07:06:04 -07004056 /* packed/uv */
4057 rate = skl_plane_relative_data_rate(intel_cstate,
4058 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004059 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004060
4061 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004062
Matt Ropera6d3460e2016-05-12 07:06:04 -07004063 /* y-plane */
4064 rate = skl_plane_relative_data_rate(intel_cstate,
4065 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004066 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004067
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004068 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004069 }
4070
4071 return total_data_rate;
4072}
4073
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004074static uint16_t
4075skl_ddb_min_alloc(const struct drm_plane_state *pstate,
4076 const int y)
4077{
4078 struct drm_framebuffer *fb = pstate->fb;
4079 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
4080 uint32_t src_w, src_h;
4081 uint32_t min_scanlines = 8;
4082 uint8_t plane_bpp;
4083
4084 if (WARN_ON(!fb))
4085 return 0;
4086
4087 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004088 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004089 return 0;
4090
4091 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02004092 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004093 fb->modifier != I915_FORMAT_MOD_Yf_TILED &&
4094 fb->modifier != I915_FORMAT_MOD_Y_TILED_CCS &&
4095 fb->modifier != I915_FORMAT_MOD_Yf_TILED_CCS)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004096 return 8;
4097
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004098 /*
4099 * Src coordinates are already rotated by 270 degrees for
4100 * the 90/270 degree plane rotation cases (to match the
4101 * GTT mapping), hence no need to account for rotation here.
4102 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004103 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
4104 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004105
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004106 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004107 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004108 src_w /= 2;
4109 src_h /= 2;
4110 }
4111
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004112 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02004113 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004114 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02004115 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004116
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03004117 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004118 switch (plane_bpp) {
4119 case 1:
4120 min_scanlines = 32;
4121 break;
4122 case 2:
4123 min_scanlines = 16;
4124 break;
4125 case 4:
4126 min_scanlines = 8;
4127 break;
4128 case 8:
4129 min_scanlines = 4;
4130 break;
4131 default:
4132 WARN(1, "Unsupported pixel depth %u for rotation",
4133 plane_bpp);
4134 min_scanlines = 32;
4135 }
4136 }
4137
4138 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
4139}
4140
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004141static void
4142skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
4143 uint16_t *minimum, uint16_t *y_minimum)
4144{
4145 const struct drm_plane_state *pstate;
4146 struct drm_plane *plane;
4147
4148 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004149 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004150
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004151 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004152 continue;
4153
4154 if (!pstate->visible)
4155 continue;
4156
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004157 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
4158 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004159 }
4160
4161 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
4162}
4163
Matt Roperc107acf2016-05-12 07:06:01 -07004164static int
Matt Roper024c9042015-09-24 15:53:11 -07004165skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00004166 struct skl_ddb_allocation *ddb /* out */)
4167{
Matt Roperc107acf2016-05-12 07:06:01 -07004168 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07004169 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004170 struct drm_device *dev = crtc->dev;
4171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4172 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04004173 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004174 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02004175 uint16_t minimum[I915_MAX_PLANES] = {};
4176 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00004177 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004178 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004179 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004180 unsigned plane_data_rate[I915_MAX_PLANES] = {};
4181 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304182 uint16_t total_min_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004183
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004184 /* Clear the partitioning for disabled planes. */
4185 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
4186 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
4187
Matt Ropera6d3460e2016-05-12 07:06:04 -07004188 if (WARN_ON(!state))
4189 return 0;
4190
Matt Roperc107acf2016-05-12 07:06:01 -07004191 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04004192 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004193 return 0;
4194 }
4195
Matt Ropera6d3460e2016-05-12 07:06:04 -07004196 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004197 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304198 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004199 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004200
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004201 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004202
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004203 /*
4204 * 1. Allocate the mininum required blocks for each active plane
4205 * and allocate the cursor, it doesn't require extra allocation
4206 * proportional to the data rate.
4207 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00004208
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004209 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304210 total_min_blocks += minimum[plane_id];
4211 total_min_blocks += y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00004212 }
4213
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304214 if (total_min_blocks > alloc_size) {
4215 DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations");
4216 DRM_DEBUG_KMS("minimum required %d/%d\n", total_min_blocks,
4217 alloc_size);
4218 return -EINVAL;
4219 }
4220
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004221 alloc_size -= total_min_blocks;
4222 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004223 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
4224
Damien Lespiaub9cec072014-11-04 17:06:43 +00004225 /*
Damien Lespiau80958152015-02-09 13:35:10 +00004226 * 2. Distribute the remaining space in proportion to the amount of
4227 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004228 *
4229 * FIXME: we may not allocate every single block here.
4230 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004231 total_data_rate = skl_get_total_relative_data_rate(cstate,
4232 plane_data_rate,
4233 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07004234 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004235 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004236
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004237 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004238 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004239 unsigned int data_rate, y_data_rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004240 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004241
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004242 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004243 continue;
4244
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004245 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00004246
4247 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004248 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00004249 * promote the expression to 64 bits to avoid overflowing, the
4250 * result is < available as data_rate / total_data_rate < 1
4251 */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004252 plane_blocks = minimum[plane_id];
4253 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
4254 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004255
Matt Roperc107acf2016-05-12 07:06:01 -07004256 /* Leave disabled planes at (0,0) */
4257 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004258 ddb->plane[pipe][plane_id].start = start;
4259 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004260 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00004261
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004262 start += plane_blocks;
4263
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004264 /*
4265 * allocation for y_plane part of planar format:
4266 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004267 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004268
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004269 y_plane_blocks = y_minimum[plane_id];
4270 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
4271 total_data_rate);
4272
Matt Roperc107acf2016-05-12 07:06:01 -07004273 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004274 ddb->y_plane[pipe][plane_id].start = start;
4275 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004276 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004277
4278 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004279 }
4280
Matt Roperc107acf2016-05-12 07:06:01 -07004281 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004282}
4283
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004284/*
4285 * 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 +02004286 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004287 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4288 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4289*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004290static uint_fixed_16_16_t
4291skl_wm_method1(const struct drm_i915_private *dev_priv, uint32_t pixel_rate,
4292 uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004293{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304294 uint32_t wm_intermediate_val;
4295 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004296
4297 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304298 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004299
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304300 wm_intermediate_val = latency * pixel_rate * cpp;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304301 ret = div_fixed16(wm_intermediate_val, 1000 * 512);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004302
4303 if (INTEL_GEN(dev_priv) >= 10)
4304 ret = add_fixed16_u32(ret, 1);
4305
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004306 return ret;
4307}
4308
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304309static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
4310 uint32_t pipe_htotal,
4311 uint32_t latency,
4312 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004313{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004314 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304315 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004316
4317 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304318 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004319
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004320 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304321 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4322 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304323 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004324 return ret;
4325}
4326
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304327static uint_fixed_16_16_t
4328intel_get_linetime_us(struct intel_crtc_state *cstate)
4329{
4330 uint32_t pixel_rate;
4331 uint32_t crtc_htotal;
4332 uint_fixed_16_16_t linetime_us;
4333
4334 if (!cstate->base.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304335 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304336
4337 pixel_rate = cstate->pixel_rate;
4338
4339 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304340 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304341
4342 crtc_htotal = cstate->base.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304343 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304344
4345 return linetime_us;
4346}
4347
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304348static uint32_t
4349skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
4350 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004351{
4352 uint64_t adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304353 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004354
4355 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004356 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004357 return 0;
4358
4359 /*
4360 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4361 * with additional adjustments for plane-specific scaling.
4362 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02004363 adjusted_pixel_rate = cstate->pixel_rate;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004364 downscale_amount = skl_plane_downscale_amount(cstate, pstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004365
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304366 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4367 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004368}
4369
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304370static int
4371skl_compute_plane_wm_params(const struct drm_i915_private *dev_priv,
4372 struct intel_crtc_state *cstate,
4373 const struct intel_plane_state *intel_pstate,
4374 struct skl_wm_params *wp)
4375{
4376 struct intel_plane *plane = to_intel_plane(intel_pstate->base.plane);
4377 const struct drm_plane_state *pstate = &intel_pstate->base;
4378 const struct drm_framebuffer *fb = pstate->fb;
4379 uint32_t interm_pbpl;
4380 struct intel_atomic_state *state =
4381 to_intel_atomic_state(cstate->base.state);
4382 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
4383
4384 if (!intel_wm_plane_visible(cstate, intel_pstate))
4385 return 0;
4386
4387 wp->y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
4388 fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
4389 fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4390 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4391 wp->x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
4392 wp->rc_surface = fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4393 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4394
4395 if (plane->id == PLANE_CURSOR) {
4396 wp->width = intel_pstate->base.crtc_w;
4397 } else {
4398 /*
4399 * Src coordinates are already rotated by 270 degrees for
4400 * the 90/270 degree plane rotation cases (to match the
4401 * GTT mapping), hence no need to account for rotation here.
4402 */
4403 wp->width = drm_rect_width(&intel_pstate->base.src) >> 16;
4404 }
4405
4406 wp->cpp = (fb->format->format == DRM_FORMAT_NV12) ? fb->format->cpp[1] :
4407 fb->format->cpp[0];
4408 wp->plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate,
4409 intel_pstate);
4410
4411 if (drm_rotation_90_or_270(pstate->rotation)) {
4412
4413 switch (wp->cpp) {
4414 case 1:
4415 wp->y_min_scanlines = 16;
4416 break;
4417 case 2:
4418 wp->y_min_scanlines = 8;
4419 break;
4420 case 4:
4421 wp->y_min_scanlines = 4;
4422 break;
4423 default:
4424 MISSING_CASE(wp->cpp);
4425 return -EINVAL;
4426 }
4427 } else {
4428 wp->y_min_scanlines = 4;
4429 }
4430
4431 if (apply_memory_bw_wa)
4432 wp->y_min_scanlines *= 2;
4433
4434 wp->plane_bytes_per_line = wp->width * wp->cpp;
4435 if (wp->y_tiled) {
4436 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
4437 wp->y_min_scanlines, 512);
4438
4439 if (INTEL_GEN(dev_priv) >= 10)
4440 interm_pbpl++;
4441
4442 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4443 wp->y_min_scanlines);
4444 } else if (wp->x_tiled && IS_GEN9(dev_priv)) {
4445 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512);
4446 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4447 } else {
4448 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512) + 1;
4449 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4450 }
4451
4452 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4453 wp->plane_blocks_per_line);
4454 wp->linetime_us = fixed16_to_u32_round_up(
4455 intel_get_linetime_us(cstate));
4456
4457 return 0;
4458}
4459
Matt Roper55994c22016-05-12 07:06:08 -07004460static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
4461 struct intel_crtc_state *cstate,
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304462 const struct intel_plane_state *intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004463 uint16_t ddb_allocation,
Matt Roper55994c22016-05-12 07:06:08 -07004464 int level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304465 const struct skl_wm_params *wp,
Matt Roper55994c22016-05-12 07:06:08 -07004466 uint16_t *out_blocks, /* out */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004467 uint8_t *out_lines, /* out */
4468 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004469{
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304470 const struct drm_plane_state *pstate = &intel_pstate->base;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004471 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304472 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304473 uint_fixed_16_16_t selected_result;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004474 uint32_t res_blocks, res_lines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004475 struct intel_atomic_state *state =
4476 to_intel_atomic_state(cstate->base.state);
4477 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004478
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004479 if (latency == 0 ||
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004480 !intel_wm_plane_visible(cstate, intel_pstate)) {
4481 *enabled = false;
Matt Roper55994c22016-05-12 07:06:08 -07004482 return 0;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004483 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004484
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004485 /* Display WA #1141: kbl,cfl */
Kumar, Maheshd86ba622017-08-17 19:15:26 +05304486 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
4487 IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) &&
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004488 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304489 latency += 4;
4490
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304491 if (apply_memory_bw_wa && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004492 latency += 15;
4493
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304494 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
4495 wp->cpp, latency);
4496 method2 = skl_wm_method2(wp->plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07004497 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004498 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304499 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004500
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304501 if (wp->y_tiled) {
4502 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004503 } else {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304504 if ((wp->cpp * cstate->base.adjusted_mode.crtc_htotal /
4505 512 < 1) && (wp->plane_bytes_per_line / 512 < 1))
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004506 selected_result = method2;
Maarten Lankhorst54d20ed2017-07-17 14:02:30 +02004507 else if (ddb_allocation >=
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304508 fixed16_to_u32_round_up(wp->plane_blocks_per_line))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304509 selected_result = min_fixed16(method1, method2);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304510 else if (latency >= wp->linetime_us)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304511 selected_result = min_fixed16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004512 else
4513 selected_result = method1;
4514 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004515
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304516 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05304517 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304518 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00004519
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004520 /* Display WA #1125: skl,bxt,kbl,glk */
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304521 if (level == 0 && wp->rc_surface)
4522 res_blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004523
4524 /* Display WA #1126: skl,bxt,kbl,glk */
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004525 if (level >= 1 && level <= 7) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304526 if (wp->y_tiled) {
4527 res_blocks += fixed16_to_u32_round_up(
4528 wp->y_tile_minimum);
4529 res_lines += wp->y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004530 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004531 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004532 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004533 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004534
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004535 if (res_blocks >= ddb_allocation || res_lines > 31) {
4536 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07004537
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004538 /*
4539 * If there are no valid level 0 watermarks, then we can't
4540 * support this display configuration.
4541 */
4542 if (level) {
4543 return 0;
4544 } else {
4545 struct drm_plane *plane = pstate->plane;
4546
4547 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
4548 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
4549 plane->base.id, plane->name,
4550 res_blocks, ddb_allocation, res_lines);
4551 return -EINVAL;
4552 }
Matt Roper55994c22016-05-12 07:06:08 -07004553 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00004554
4555 *out_blocks = res_blocks;
4556 *out_lines = res_lines;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004557 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004558
Matt Roper55994c22016-05-12 07:06:08 -07004559 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004560}
4561
Matt Roperf4a96752016-05-12 07:06:06 -07004562static int
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304563skl_compute_wm_levels(const struct drm_i915_private *dev_priv,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004564 struct skl_ddb_allocation *ddb,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304565 struct intel_crtc_state *cstate,
4566 const struct intel_plane_state *intel_pstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304567 const struct skl_wm_params *wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304568 struct skl_plane_wm *wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004569{
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004570 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4571 struct drm_plane *plane = intel_pstate->base.plane;
4572 struct intel_plane *intel_plane = to_intel_plane(plane);
4573 uint16_t ddb_blocks;
4574 enum pipe pipe = intel_crtc->pipe;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304575 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07004576 int ret;
Lyudea62163e2016-10-04 14:28:20 -04004577
Kumar, Mahesh7b751192017-05-17 17:28:24 +05304578 if (WARN_ON(!intel_pstate->base.fb))
4579 return -EINVAL;
Matt Roper024c9042015-09-24 15:53:11 -07004580
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004581 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
4582
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304583 for (level = 0; level <= max_level; level++) {
4584 struct skl_wm_level *result = &wm->wm[level];
4585
4586 ret = skl_compute_plane_wm(dev_priv,
4587 cstate,
4588 intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004589 ddb_blocks,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304590 level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304591 wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304592 &result->plane_res_b,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004593 &result->plane_res_l,
4594 &result->plane_en);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304595 if (ret)
4596 return ret;
4597 }
Matt Roperf4a96752016-05-12 07:06:06 -07004598
4599 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004600}
4601
Damien Lespiau407b50f2014-11-04 17:06:57 +00004602static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07004603skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004604{
Mahesh Kumara3a89862016-12-01 21:19:34 +05304605 struct drm_atomic_state *state = cstate->base.state;
4606 struct drm_i915_private *dev_priv = to_i915(state->dev);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304607 uint_fixed_16_16_t linetime_us;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304608 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03004609
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304610 linetime_us = intel_get_linetime_us(cstate);
4611
4612 if (is_fixed16_zero(linetime_us))
Damien Lespiau407b50f2014-11-04 17:06:57 +00004613 return 0;
4614
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304615 linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us));
Mahesh Kumara3a89862016-12-01 21:19:34 +05304616
Kumar, Mahesh446e8502017-08-17 19:15:25 +05304617 /* Display WA #1135: bxt:ALL GLK:ALL */
4618 if ((IS_BROXTON(dev_priv) || IS_GEMINILAKE(dev_priv)) &&
4619 dev_priv->ipc_enabled)
4620 linetime_wm /= 2;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304621
4622 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004623}
4624
Matt Roper024c9042015-09-24 15:53:11 -07004625static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Kumar, Maheshca476672017-08-17 19:15:24 +05304626 struct skl_wm_params *wp,
4627 struct skl_wm_level *wm_l0,
4628 uint16_t ddb_allocation,
Damien Lespiau9414f562014-11-04 17:06:58 +00004629 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004630{
Kumar, Maheshca476672017-08-17 19:15:24 +05304631 struct drm_device *dev = cstate->base.crtc->dev;
4632 const struct drm_i915_private *dev_priv = to_i915(dev);
4633 uint16_t trans_min, trans_y_tile_min;
4634 const uint16_t trans_amount = 10; /* This is configurable amount */
4635 uint16_t trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00004636
Kumar, Maheshca476672017-08-17 19:15:24 +05304637 if (!cstate->base.active)
4638 goto exit;
4639
4640 /* Transition WM are not recommended by HW team for GEN9 */
4641 if (INTEL_GEN(dev_priv) <= 9)
4642 goto exit;
4643
4644 /* Transition WM don't make any sense if ipc is disabled */
4645 if (!dev_priv->ipc_enabled)
4646 goto exit;
4647
4648 if (INTEL_GEN(dev_priv) >= 10)
4649 trans_min = 4;
4650
4651 trans_offset_b = trans_min + trans_amount;
4652
4653 if (wp->y_tiled) {
4654 trans_y_tile_min = (uint16_t) mul_round_up_u32_fixed16(2,
4655 wp->y_tile_minimum);
4656 res_blocks = max(wm_l0->plane_res_b, trans_y_tile_min) +
4657 trans_offset_b;
4658 } else {
4659 res_blocks = wm_l0->plane_res_b + trans_offset_b;
4660
4661 /* WA BUG:1938466 add one block for non y-tile planes */
4662 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
4663 res_blocks += 1;
4664
4665 }
4666
4667 res_blocks += 1;
4668
4669 if (res_blocks < ddb_allocation) {
4670 trans_wm->plane_res_b = res_blocks;
4671 trans_wm->plane_en = true;
4672 return;
4673 }
4674
4675exit:
Lyudea62163e2016-10-04 14:28:20 -04004676 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004677}
4678
Matt Roper55994c22016-05-12 07:06:08 -07004679static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
4680 struct skl_ddb_allocation *ddb,
4681 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004682{
Matt Roper024c9042015-09-24 15:53:11 -07004683 struct drm_device *dev = cstate->base.crtc->dev;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304684 struct drm_crtc_state *crtc_state = &cstate->base;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004685 const struct drm_i915_private *dev_priv = to_i915(dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304686 struct drm_plane *plane;
4687 const struct drm_plane_state *pstate;
Lyudea62163e2016-10-04 14:28:20 -04004688 struct skl_plane_wm *wm;
Matt Roper55994c22016-05-12 07:06:08 -07004689 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004690
Lyudea62163e2016-10-04 14:28:20 -04004691 /*
4692 * We'll only calculate watermarks for planes that are actually
4693 * enabled, so make sure all other planes are set as disabled.
4694 */
4695 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
4696
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304697 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
4698 const struct intel_plane_state *intel_pstate =
4699 to_intel_plane_state(pstate);
4700 enum plane_id plane_id = to_intel_plane(plane)->id;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304701 struct skl_wm_params wm_params;
Kumar, Maheshca476672017-08-17 19:15:24 +05304702 enum pipe pipe = to_intel_crtc(cstate->base.crtc)->pipe;
4703 uint16_t ddb_blocks;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304704
4705 wm = &pipe_wm->planes[plane_id];
Kumar, Maheshca476672017-08-17 19:15:24 +05304706 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][plane_id]);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304707 memset(&wm_params, 0, sizeof(struct skl_wm_params));
Lyudea62163e2016-10-04 14:28:20 -04004708
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304709 ret = skl_compute_plane_wm_params(dev_priv, cstate,
4710 intel_pstate, &wm_params);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304711 if (ret)
4712 return ret;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304713
Lyudea62163e2016-10-04 14:28:20 -04004714 ret = skl_compute_wm_levels(dev_priv, ddb, cstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304715 intel_pstate, &wm_params, wm);
Lyudea62163e2016-10-04 14:28:20 -04004716 if (ret)
4717 return ret;
Kumar, Maheshca476672017-08-17 19:15:24 +05304718 skl_compute_transition_wm(cstate, &wm_params, &wm->wm[0],
4719 ddb_blocks, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004720 }
Matt Roper024c9042015-09-24 15:53:11 -07004721 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004722
Matt Roper55994c22016-05-12 07:06:08 -07004723 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004724}
4725
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004726static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
4727 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00004728 const struct skl_ddb_entry *entry)
4729{
4730 if (entry->end)
4731 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
4732 else
4733 I915_WRITE(reg, 0);
4734}
4735
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004736static void skl_write_wm_level(struct drm_i915_private *dev_priv,
4737 i915_reg_t reg,
4738 const struct skl_wm_level *level)
4739{
4740 uint32_t val = 0;
4741
4742 if (level->plane_en) {
4743 val |= PLANE_WM_EN;
4744 val |= level->plane_res_b;
4745 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
4746 }
4747
4748 I915_WRITE(reg, val);
4749}
4750
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004751static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
4752 const struct skl_plane_wm *wm,
4753 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004754 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04004755{
4756 struct drm_crtc *crtc = &intel_crtc->base;
4757 struct drm_device *dev = crtc->dev;
4758 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004759 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004760 enum pipe pipe = intel_crtc->pipe;
4761
4762 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004763 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004764 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004765 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004766 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004767 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004768
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004769 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4770 &ddb->plane[pipe][plane_id]);
4771 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4772 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004773}
4774
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004775static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4776 const struct skl_plane_wm *wm,
4777 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004778{
4779 struct drm_crtc *crtc = &intel_crtc->base;
4780 struct drm_device *dev = crtc->dev;
4781 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004782 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004783 enum pipe pipe = intel_crtc->pipe;
4784
4785 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004786 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4787 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004788 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004789 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004790
4791 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004792 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004793}
4794
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004795bool skl_wm_level_equals(const struct skl_wm_level *l1,
4796 const struct skl_wm_level *l2)
4797{
4798 if (l1->plane_en != l2->plane_en)
4799 return false;
4800
4801 /* If both planes aren't enabled, the rest shouldn't matter */
4802 if (!l1->plane_en)
4803 return true;
4804
4805 return (l1->plane_res_l == l2->plane_res_l &&
4806 l1->plane_res_b == l2->plane_res_b);
4807}
4808
Lyude27082492016-08-24 07:48:10 +02004809static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4810 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004811{
Lyude27082492016-08-24 07:48:10 +02004812 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004813}
4814
Mika Kahola2b685042017-10-10 13:17:03 +03004815bool skl_ddb_allocation_overlaps(struct drm_i915_private *dev_priv,
4816 const struct skl_ddb_entry **entries,
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004817 const struct skl_ddb_entry *ddb,
4818 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004819{
Mika Kahola2b685042017-10-10 13:17:03 +03004820 enum pipe pipe;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004821
Mika Kahola2b685042017-10-10 13:17:03 +03004822 for_each_pipe(dev_priv, pipe) {
4823 if (pipe != ignore && entries[pipe] &&
4824 skl_ddb_entries_overlap(ddb, entries[pipe]))
Lyude27082492016-08-24 07:48:10 +02004825 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03004826 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004827
Lyude27082492016-08-24 07:48:10 +02004828 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004829}
4830
Matt Roper55994c22016-05-12 07:06:08 -07004831static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004832 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004833 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004834 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004835 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004836{
Matt Roperf4a96752016-05-12 07:06:06 -07004837 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004838 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004839
Matt Roper55994c22016-05-12 07:06:08 -07004840 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4841 if (ret)
4842 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004843
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004844 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004845 *changed = false;
4846 else
4847 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004848
Matt Roper55994c22016-05-12 07:06:08 -07004849 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004850}
4851
Matt Roper9b613022016-06-27 16:42:44 -07004852static uint32_t
4853pipes_modified(struct drm_atomic_state *state)
4854{
4855 struct drm_crtc *crtc;
4856 struct drm_crtc_state *cstate;
4857 uint32_t i, ret = 0;
4858
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01004859 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper9b613022016-06-27 16:42:44 -07004860 ret |= drm_crtc_mask(crtc);
4861
4862 return ret;
4863}
4864
Jani Nikulabb7791b2016-10-04 12:29:17 +03004865static int
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004866skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4867{
4868 struct drm_atomic_state *state = cstate->base.state;
4869 struct drm_device *dev = state->dev;
4870 struct drm_crtc *crtc = cstate->base.crtc;
4871 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4872 struct drm_i915_private *dev_priv = to_i915(dev);
4873 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4874 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4875 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4876 struct drm_plane_state *plane_state;
4877 struct drm_plane *plane;
4878 enum pipe pipe = intel_crtc->pipe;
4879
4880 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4881
4882 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
4883 enum plane_id plane_id = to_intel_plane(plane)->id;
4884
4885 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4886 &new_ddb->plane[pipe][plane_id]) &&
4887 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4888 &new_ddb->y_plane[pipe][plane_id]))
4889 continue;
4890
4891 plane_state = drm_atomic_get_plane_state(state, plane);
4892 if (IS_ERR(plane_state))
4893 return PTR_ERR(plane_state);
4894 }
4895
4896 return 0;
4897}
4898
4899static int
4900skl_compute_ddb(struct drm_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07004901{
4902 struct drm_device *dev = state->dev;
4903 struct drm_i915_private *dev_priv = to_i915(dev);
4904 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4905 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004906 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004907 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004908 int ret;
4909
4910 /*
4911 * If this is our first atomic update following hardware readout,
4912 * we can't trust the DDB that the BIOS programmed for us. Let's
4913 * pretend that all pipes switched active status so that we'll
4914 * ensure a full DDB recompute.
4915 */
Matt Roper1b54a882016-06-17 13:42:18 -07004916 if (dev_priv->wm.distrust_bios_wm) {
4917 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4918 state->acquire_ctx);
4919 if (ret)
4920 return ret;
4921
Matt Roper98d39492016-05-12 07:06:03 -07004922 intel_state->active_pipe_changes = ~0;
4923
Matt Roper1b54a882016-06-17 13:42:18 -07004924 /*
4925 * We usually only initialize intel_state->active_crtcs if we
4926 * we're doing a modeset; make sure this field is always
4927 * initialized during the sanitization process that happens
4928 * on the first commit too.
4929 */
4930 if (!intel_state->modeset)
4931 intel_state->active_crtcs = dev_priv->active_crtcs;
4932 }
4933
Matt Roper98d39492016-05-12 07:06:03 -07004934 /*
4935 * If the modeset changes which CRTC's are active, we need to
4936 * recompute the DDB allocation for *all* active pipes, even
4937 * those that weren't otherwise being modified in any way by this
4938 * atomic commit. Due to the shrinking of the per-pipe allocations
4939 * when new active CRTC's are added, it's possible for a pipe that
4940 * we were already using and aren't changing at all here to suddenly
4941 * become invalid if its DDB needs exceeds its new allocation.
4942 *
4943 * Note that if we wind up doing a full DDB recompute, we can't let
4944 * any other display updates race with this transaction, so we need
4945 * to grab the lock on *all* CRTC's.
4946 */
Matt Roper734fa012016-05-12 15:11:40 -07004947 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004948 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004949 intel_state->wm_results.dirty_pipes = ~0;
4950 }
Matt Roper98d39492016-05-12 07:06:03 -07004951
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004952 /*
4953 * We're not recomputing for the pipes not included in the commit, so
4954 * make sure we start with the current state.
4955 */
4956 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4957
Matt Roper98d39492016-05-12 07:06:03 -07004958 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4959 struct intel_crtc_state *cstate;
4960
4961 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4962 if (IS_ERR(cstate))
4963 return PTR_ERR(cstate);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004964
4965 ret = skl_allocate_pipe_ddb(cstate, ddb);
4966 if (ret)
4967 return ret;
4968
4969 ret = skl_ddb_add_affected_planes(cstate);
4970 if (ret)
4971 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004972 }
4973
4974 return 0;
4975}
4976
Matt Roper2722efb2016-08-17 15:55:55 -04004977static void
4978skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4979 struct skl_wm_values *src,
4980 enum pipe pipe)
4981{
Matt Roper2722efb2016-08-17 15:55:55 -04004982 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4983 sizeof(dst->ddb.y_plane[pipe]));
4984 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4985 sizeof(dst->ddb.plane[pipe]));
4986}
4987
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004988static void
4989skl_print_wm_changes(const struct drm_atomic_state *state)
4990{
4991 const struct drm_device *dev = state->dev;
4992 const struct drm_i915_private *dev_priv = to_i915(dev);
4993 const struct intel_atomic_state *intel_state =
4994 to_intel_atomic_state(state);
4995 const struct drm_crtc *crtc;
4996 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004997 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004998 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4999 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005000 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005001
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005002 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01005003 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5004 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005005
Maarten Lankhorst75704982016-11-01 12:04:10 +01005006 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005007 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005008 const struct skl_ddb_entry *old, *new;
5009
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005010 old = &old_ddb->plane[pipe][plane_id];
5011 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005012
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005013 if (skl_ddb_entry_equal(old, new))
5014 continue;
5015
Maarten Lankhorst75704982016-11-01 12:04:10 +01005016 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
5017 intel_plane->base.base.id,
5018 intel_plane->base.name,
5019 old->start, old->end,
5020 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005021 }
5022 }
5023}
5024
Matt Roper98d39492016-05-12 07:06:03 -07005025static int
5026skl_compute_wm(struct drm_atomic_state *state)
5027{
5028 struct drm_crtc *crtc;
5029 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07005030 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
5031 struct skl_wm_values *results = &intel_state->wm_results;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005032 struct drm_device *dev = state->dev;
Matt Roper734fa012016-05-12 15:11:40 -07005033 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07005034 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07005035 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005036
5037 /*
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005038 * When we distrust bios wm we always need to recompute to set the
5039 * expected DDB allocations for each CRTC.
5040 */
5041 if (to_i915(dev)->wm.distrust_bios_wm)
5042 changed = true;
5043
5044 /*
Matt Roper98d39492016-05-12 07:06:03 -07005045 * If this transaction isn't actually touching any CRTC's, don't
5046 * bother with watermark calculation. Note that if we pass this
5047 * test, we're guaranteed to hold at least one CRTC state mutex,
5048 * which means we can safely use values like dev_priv->active_crtcs
5049 * since any racing commits that want to update them would need to
5050 * hold _all_ CRTC state mutexes.
5051 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005052 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper98d39492016-05-12 07:06:03 -07005053 changed = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005054
Matt Roper98d39492016-05-12 07:06:03 -07005055 if (!changed)
5056 return 0;
5057
Matt Roper734fa012016-05-12 15:11:40 -07005058 /* Clear all dirty flags */
5059 results->dirty_pipes = 0;
5060
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005061 ret = skl_compute_ddb(state);
Matt Roper98d39492016-05-12 07:06:03 -07005062 if (ret)
5063 return ret;
5064
Matt Roper734fa012016-05-12 15:11:40 -07005065 /*
5066 * Calculate WM's for all pipes that are part of this transaction.
5067 * Note that the DDB allocation above may have added more CRTC's that
5068 * weren't otherwise being modified (and set bits in dirty_pipes) if
5069 * pipe allocations had to change.
5070 *
5071 * FIXME: Now that we're doing this in the atomic check phase, we
5072 * should allow skl_update_pipe_wm() to return failure in cases where
5073 * no suitable watermark values can be found.
5074 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005075 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07005076 struct intel_crtc_state *intel_cstate =
5077 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005078 const struct skl_pipe_wm *old_pipe_wm =
5079 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07005080
5081 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005082 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
5083 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07005084 if (ret)
5085 return ret;
5086
5087 if (changed)
5088 results->dirty_pipes |= drm_crtc_mask(crtc);
5089
5090 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
5091 /* This pipe's WM's did not change */
5092 continue;
5093
5094 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07005095 }
5096
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005097 skl_print_wm_changes(state);
5098
Matt Roper98d39492016-05-12 07:06:03 -07005099 return 0;
5100}
5101
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005102static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
5103 struct intel_crtc_state *cstate)
5104{
5105 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
5106 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5107 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005108 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005109 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005110 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005111
5112 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
5113 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005114
5115 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005116
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005117 for_each_plane_id_on_crtc(crtc, plane_id) {
5118 if (plane_id != PLANE_CURSOR)
5119 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
5120 ddb, plane_id);
5121 else
5122 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
5123 ddb);
5124 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005125}
5126
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005127static void skl_initial_wm(struct intel_atomic_state *state,
5128 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005129{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005130 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02005131 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005132 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005133 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04005134 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02005135 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07005136
Ville Syrjälä432081b2016-10-31 22:37:03 +02005137 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005138 return;
5139
Matt Roper734fa012016-05-12 15:11:40 -07005140 mutex_lock(&dev_priv->wm.wm_mutex);
5141
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005142 if (cstate->base.active_changed)
5143 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02005144
5145 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07005146
5147 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005148}
5149
Ville Syrjäläd8905652016-01-14 14:53:35 +02005150static void ilk_compute_wm_config(struct drm_device *dev,
5151 struct intel_wm_config *config)
5152{
5153 struct intel_crtc *crtc;
5154
5155 /* Compute the currently _active_ config */
5156 for_each_intel_crtc(dev, crtc) {
5157 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5158
5159 if (!wm->pipe_enabled)
5160 continue;
5161
5162 config->sprites_enabled |= wm->sprites_enabled;
5163 config->sprites_scaled |= wm->sprites_scaled;
5164 config->num_pipes_active++;
5165 }
5166}
5167
Matt Ropered4a6a72016-02-23 17:20:13 -08005168static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005169{
Chris Wilson91c8a322016-07-05 10:40:23 +01005170 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005171 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005172 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005173 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005174 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005175 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005176
Ville Syrjäläd8905652016-01-14 14:53:35 +02005177 ilk_compute_wm_config(dev, &config);
5178
5179 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
5180 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005181
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005182 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005183 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005184 config.num_pipes_active == 1 && config.sprites_enabled) {
5185 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
5186 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005187
Imre Deak820c1982013-12-17 14:46:36 +02005188 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005189 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005190 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005191 }
5192
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005193 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005194 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005195
Imre Deak820c1982013-12-17 14:46:36 +02005196 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005197
Imre Deak820c1982013-12-17 14:46:36 +02005198 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005199}
5200
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005201static void ilk_initial_watermarks(struct intel_atomic_state *state,
5202 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005203{
Matt Ropered4a6a72016-02-23 17:20:13 -08005204 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5205 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005206
Matt Ropered4a6a72016-02-23 17:20:13 -08005207 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07005208 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005209 ilk_program_watermarks(dev_priv);
5210 mutex_unlock(&dev_priv->wm.wm_mutex);
5211}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005212
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005213static void ilk_optimize_watermarks(struct intel_atomic_state *state,
5214 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08005215{
5216 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5217 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
5218
5219 mutex_lock(&dev_priv->wm.wm_mutex);
5220 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07005221 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08005222 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005223 }
Matt Ropered4a6a72016-02-23 17:20:13 -08005224 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005225}
5226
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005227static inline void skl_wm_level_from_reg_val(uint32_t val,
5228 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005229{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005230 level->plane_en = val & PLANE_WM_EN;
5231 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5232 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5233 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005234}
5235
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005236void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
5237 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005238{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005239 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00005240 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00005241 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005242 int level, max_level;
5243 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005244 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005245
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005246 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005247
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005248 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
5249 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005250
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005251 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005252 if (plane_id != PLANE_CURSOR)
5253 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005254 else
5255 val = I915_READ(CUR_WM(pipe, level));
5256
5257 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5258 }
5259
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005260 if (plane_id != PLANE_CURSOR)
5261 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005262 else
5263 val = I915_READ(CUR_WM_TRANS(pipe));
5264
5265 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5266 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005267
Matt Roper3ef00282015-03-09 10:19:24 -07005268 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005269 return;
5270
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005271 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00005272}
5273
5274void skl_wm_get_hw_state(struct drm_device *dev)
5275{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005276 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005277 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00005278 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00005279 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005280 struct intel_crtc *intel_crtc;
5281 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00005282
Damien Lespiaua269c582014-11-04 17:06:49 +00005283 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005284 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5285 intel_crtc = to_intel_crtc(crtc);
5286 cstate = to_intel_crtc_state(crtc->state);
5287
5288 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
5289
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005290 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005291 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005292 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005293
Matt Roper279e99d2016-05-12 07:06:02 -07005294 if (dev_priv->active_crtcs) {
5295 /* Fully recompute DDB on first atomic commit */
5296 dev_priv->wm.distrust_bios_wm = true;
5297 } else {
5298 /* Easy/common case; just sanitize DDB now if everything off */
5299 memset(ddb, 0, sizeof(*ddb));
5300 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005301}
5302
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005303static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
5304{
5305 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005306 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005307 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005308 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07005309 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07005310 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005311 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005312 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005313 [PIPE_A] = WM0_PIPEA_ILK,
5314 [PIPE_B] = WM0_PIPEB_ILK,
5315 [PIPE_C] = WM0_PIPEC_IVB,
5316 };
5317
5318 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005319 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02005320 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005321
Ville Syrjälä15606532016-05-13 17:55:17 +03005322 memset(active, 0, sizeof(*active));
5323
Matt Roper3ef00282015-03-09 10:19:24 -07005324 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005325
5326 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005327 u32 tmp = hw->wm_pipe[pipe];
5328
5329 /*
5330 * For active pipes LP0 watermark is marked as
5331 * enabled, and LP1+ watermaks as disabled since
5332 * we can't really reverse compute them in case
5333 * multiple pipes are active.
5334 */
5335 active->wm[0].enable = true;
5336 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5337 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5338 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
5339 active->linetime = hw->wm_linetime[pipe];
5340 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005341 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005342
5343 /*
5344 * For inactive pipes, all watermark levels
5345 * should be marked as enabled but zeroed,
5346 * which is what we'd compute them to.
5347 */
5348 for (level = 0; level <= max_level; level++)
5349 active->wm[level].enable = true;
5350 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005351
5352 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005353}
5354
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005355#define _FW_WM(value, plane) \
5356 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5357#define _FW_WM_VLV(value, plane) \
5358 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5359
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005360static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5361 struct g4x_wm_values *wm)
5362{
5363 uint32_t tmp;
5364
5365 tmp = I915_READ(DSPFW1);
5366 wm->sr.plane = _FW_WM(tmp, SR);
5367 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5368 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5369 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5370
5371 tmp = I915_READ(DSPFW2);
5372 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5373 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5374 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5375 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5376 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5377 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5378
5379 tmp = I915_READ(DSPFW3);
5380 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5381 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5382 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5383 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5384}
5385
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005386static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5387 struct vlv_wm_values *wm)
5388{
5389 enum pipe pipe;
5390 uint32_t tmp;
5391
5392 for_each_pipe(dev_priv, pipe) {
5393 tmp = I915_READ(VLV_DDL(pipe));
5394
Ville Syrjälä1b313892016-11-28 19:37:08 +02005395 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005396 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005397 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005398 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005399 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005400 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005401 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005402 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
5403 }
5404
5405 tmp = I915_READ(DSPFW1);
5406 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005407 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5408 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
5409 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005410
5411 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005412 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
5413 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5414 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005415
5416 tmp = I915_READ(DSPFW3);
5417 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5418
5419 if (IS_CHERRYVIEW(dev_priv)) {
5420 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005421 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5422 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005423
5424 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005425 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
5426 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005427
5428 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005429 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
5430 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005431
5432 tmp = I915_READ(DSPHOWM);
5433 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005434 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
5435 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
5436 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
5437 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5438 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5439 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5440 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5441 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5442 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005443 } else {
5444 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005445 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5446 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005447
5448 tmp = I915_READ(DSPHOWM);
5449 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005450 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5451 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5452 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5453 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5454 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5455 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005456 }
5457}
5458
5459#undef _FW_WM
5460#undef _FW_WM_VLV
5461
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005462void g4x_wm_get_hw_state(struct drm_device *dev)
5463{
5464 struct drm_i915_private *dev_priv = to_i915(dev);
5465 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
5466 struct intel_crtc *crtc;
5467
5468 g4x_read_wm_values(dev_priv, wm);
5469
5470 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
5471
5472 for_each_intel_crtc(dev, crtc) {
5473 struct intel_crtc_state *crtc_state =
5474 to_intel_crtc_state(crtc->base.state);
5475 struct g4x_wm_state *active = &crtc->wm.active.g4x;
5476 struct g4x_pipe_wm *raw;
5477 enum pipe pipe = crtc->pipe;
5478 enum plane_id plane_id;
5479 int level, max_level;
5480
5481 active->cxsr = wm->cxsr;
5482 active->hpll_en = wm->hpll_en;
5483 active->fbc_en = wm->fbc_en;
5484
5485 active->sr = wm->sr;
5486 active->hpll = wm->hpll;
5487
5488 for_each_plane_id_on_crtc(crtc, plane_id) {
5489 active->wm.plane[plane_id] =
5490 wm->pipe[pipe].plane[plane_id];
5491 }
5492
5493 if (wm->cxsr && wm->hpll_en)
5494 max_level = G4X_WM_LEVEL_HPLL;
5495 else if (wm->cxsr)
5496 max_level = G4X_WM_LEVEL_SR;
5497 else
5498 max_level = G4X_WM_LEVEL_NORMAL;
5499
5500 level = G4X_WM_LEVEL_NORMAL;
5501 raw = &crtc_state->wm.g4x.raw[level];
5502 for_each_plane_id_on_crtc(crtc, plane_id)
5503 raw->plane[plane_id] = active->wm.plane[plane_id];
5504
5505 if (++level > max_level)
5506 goto out;
5507
5508 raw = &crtc_state->wm.g4x.raw[level];
5509 raw->plane[PLANE_PRIMARY] = active->sr.plane;
5510 raw->plane[PLANE_CURSOR] = active->sr.cursor;
5511 raw->plane[PLANE_SPRITE0] = 0;
5512 raw->fbc = active->sr.fbc;
5513
5514 if (++level > max_level)
5515 goto out;
5516
5517 raw = &crtc_state->wm.g4x.raw[level];
5518 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
5519 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
5520 raw->plane[PLANE_SPRITE0] = 0;
5521 raw->fbc = active->hpll.fbc;
5522
5523 out:
5524 for_each_plane_id_on_crtc(crtc, plane_id)
5525 g4x_raw_plane_wm_set(crtc_state, level,
5526 plane_id, USHRT_MAX);
5527 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
5528
5529 crtc_state->wm.g4x.optimal = *active;
5530 crtc_state->wm.g4x.intermediate = *active;
5531
5532 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
5533 pipe_name(pipe),
5534 wm->pipe[pipe].plane[PLANE_PRIMARY],
5535 wm->pipe[pipe].plane[PLANE_CURSOR],
5536 wm->pipe[pipe].plane[PLANE_SPRITE0]);
5537 }
5538
5539 DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
5540 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
5541 DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
5542 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
5543 DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n",
5544 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
5545}
5546
5547void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
5548{
5549 struct intel_plane *plane;
5550 struct intel_crtc *crtc;
5551
5552 mutex_lock(&dev_priv->wm.wm_mutex);
5553
5554 for_each_intel_plane(&dev_priv->drm, plane) {
5555 struct intel_crtc *crtc =
5556 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5557 struct intel_crtc_state *crtc_state =
5558 to_intel_crtc_state(crtc->base.state);
5559 struct intel_plane_state *plane_state =
5560 to_intel_plane_state(plane->base.state);
5561 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
5562 enum plane_id plane_id = plane->id;
5563 int level;
5564
5565 if (plane_state->base.visible)
5566 continue;
5567
5568 for (level = 0; level < 3; level++) {
5569 struct g4x_pipe_wm *raw =
5570 &crtc_state->wm.g4x.raw[level];
5571
5572 raw->plane[plane_id] = 0;
5573 wm_state->wm.plane[plane_id] = 0;
5574 }
5575
5576 if (plane_id == PLANE_PRIMARY) {
5577 for (level = 0; level < 3; level++) {
5578 struct g4x_pipe_wm *raw =
5579 &crtc_state->wm.g4x.raw[level];
5580 raw->fbc = 0;
5581 }
5582
5583 wm_state->sr.fbc = 0;
5584 wm_state->hpll.fbc = 0;
5585 wm_state->fbc_en = false;
5586 }
5587 }
5588
5589 for_each_intel_crtc(&dev_priv->drm, crtc) {
5590 struct intel_crtc_state *crtc_state =
5591 to_intel_crtc_state(crtc->base.state);
5592
5593 crtc_state->wm.g4x.intermediate =
5594 crtc_state->wm.g4x.optimal;
5595 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
5596 }
5597
5598 g4x_program_watermarks(dev_priv);
5599
5600 mutex_unlock(&dev_priv->wm.wm_mutex);
5601}
5602
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005603void vlv_wm_get_hw_state(struct drm_device *dev)
5604{
5605 struct drm_i915_private *dev_priv = to_i915(dev);
5606 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02005607 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005608 u32 val;
5609
5610 vlv_read_wm_values(dev_priv, wm);
5611
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005612 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
5613 wm->level = VLV_WM_LEVEL_PM2;
5614
5615 if (IS_CHERRYVIEW(dev_priv)) {
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005616 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005617
5618 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5619 if (val & DSP_MAXFIFO_PM5_ENABLE)
5620 wm->level = VLV_WM_LEVEL_PM5;
5621
Ville Syrjälä58590c12015-09-08 21:05:12 +03005622 /*
5623 * If DDR DVFS is disabled in the BIOS, Punit
5624 * will never ack the request. So if that happens
5625 * assume we don't have to enable/disable DDR DVFS
5626 * dynamically. To test that just set the REQ_ACK
5627 * bit to poke the Punit, but don't change the
5628 * HIGH/LOW bits so that we don't actually change
5629 * the current state.
5630 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005631 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03005632 val |= FORCE_DDR_FREQ_REQ_ACK;
5633 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
5634
5635 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
5636 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
5637 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
5638 "assuming DDR DVFS is disabled\n");
5639 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
5640 } else {
5641 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
5642 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
5643 wm->level = VLV_WM_LEVEL_DDR_DVFS;
5644 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005645
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005646 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005647 }
5648
Ville Syrjäläff32c542017-03-02 19:14:57 +02005649 for_each_intel_crtc(dev, crtc) {
5650 struct intel_crtc_state *crtc_state =
5651 to_intel_crtc_state(crtc->base.state);
5652 struct vlv_wm_state *active = &crtc->wm.active.vlv;
5653 const struct vlv_fifo_state *fifo_state =
5654 &crtc_state->wm.vlv.fifo_state;
5655 enum pipe pipe = crtc->pipe;
5656 enum plane_id plane_id;
5657 int level;
5658
5659 vlv_get_fifo_size(crtc_state);
5660
5661 active->num_levels = wm->level + 1;
5662 active->cxsr = wm->cxsr;
5663
Ville Syrjäläff32c542017-03-02 19:14:57 +02005664 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005665 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02005666 &crtc_state->wm.vlv.raw[level];
5667
5668 active->sr[level].plane = wm->sr.plane;
5669 active->sr[level].cursor = wm->sr.cursor;
5670
5671 for_each_plane_id_on_crtc(crtc, plane_id) {
5672 active->wm[level].plane[plane_id] =
5673 wm->pipe[pipe].plane[plane_id];
5674
5675 raw->plane[plane_id] =
5676 vlv_invert_wm_value(active->wm[level].plane[plane_id],
5677 fifo_state->plane[plane_id]);
5678 }
5679 }
5680
5681 for_each_plane_id_on_crtc(crtc, plane_id)
5682 vlv_raw_plane_wm_set(crtc_state, level,
5683 plane_id, USHRT_MAX);
5684 vlv_invalidate_wms(crtc, active, level);
5685
5686 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02005687 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02005688
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005689 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 +02005690 pipe_name(pipe),
5691 wm->pipe[pipe].plane[PLANE_PRIMARY],
5692 wm->pipe[pipe].plane[PLANE_CURSOR],
5693 wm->pipe[pipe].plane[PLANE_SPRITE0],
5694 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02005695 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005696
5697 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
5698 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
5699}
5700
Ville Syrjälä602ae832017-03-02 19:15:02 +02005701void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
5702{
5703 struct intel_plane *plane;
5704 struct intel_crtc *crtc;
5705
5706 mutex_lock(&dev_priv->wm.wm_mutex);
5707
5708 for_each_intel_plane(&dev_priv->drm, plane) {
5709 struct intel_crtc *crtc =
5710 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5711 struct intel_crtc_state *crtc_state =
5712 to_intel_crtc_state(crtc->base.state);
5713 struct intel_plane_state *plane_state =
5714 to_intel_plane_state(plane->base.state);
5715 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
5716 const struct vlv_fifo_state *fifo_state =
5717 &crtc_state->wm.vlv.fifo_state;
5718 enum plane_id plane_id = plane->id;
5719 int level;
5720
5721 if (plane_state->base.visible)
5722 continue;
5723
5724 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005725 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02005726 &crtc_state->wm.vlv.raw[level];
5727
5728 raw->plane[plane_id] = 0;
5729
5730 wm_state->wm[level].plane[plane_id] =
5731 vlv_invert_wm_value(raw->plane[plane_id],
5732 fifo_state->plane[plane_id]);
5733 }
5734 }
5735
5736 for_each_intel_crtc(&dev_priv->drm, crtc) {
5737 struct intel_crtc_state *crtc_state =
5738 to_intel_crtc_state(crtc->base.state);
5739
5740 crtc_state->wm.vlv.intermediate =
5741 crtc_state->wm.vlv.optimal;
5742 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
5743 }
5744
5745 vlv_program_watermarks(dev_priv);
5746
5747 mutex_unlock(&dev_priv->wm.wm_mutex);
5748}
5749
Ville Syrjälä6ac43272017-11-08 15:35:55 +02005750/*
5751 * FIXME should probably kill this and improve
5752 * the real watermark readout/sanitation instead
5753 */
5754static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
5755{
5756 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
5757 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
5758 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
5759
5760 /*
5761 * Don't touch WM1S_LP_EN here.
5762 * Doing so could cause underruns.
5763 */
5764}
5765
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005766void ilk_wm_get_hw_state(struct drm_device *dev)
5767{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005768 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005769 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005770 struct drm_crtc *crtc;
5771
Ville Syrjälä6ac43272017-11-08 15:35:55 +02005772 ilk_init_lp_watermarks(dev_priv);
5773
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01005774 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005775 ilk_pipe_wm_get_hw_state(crtc);
5776
5777 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
5778 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
5779 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
5780
5781 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005782 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02005783 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
5784 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
5785 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005786
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005787 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005788 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
5789 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01005790 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005791 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
5792 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005793
5794 hw->enable_fbc_wm =
5795 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
5796}
5797
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005798/**
5799 * intel_update_watermarks - update FIFO watermark values based on current modes
5800 *
5801 * Calculate watermark values for the various WM regs based on current mode
5802 * and plane configuration.
5803 *
5804 * There are several cases to deal with here:
5805 * - normal (i.e. non-self-refresh)
5806 * - self-refresh (SR) mode
5807 * - lines are large relative to FIFO size (buffer can hold up to 2)
5808 * - lines are small relative to FIFO size (buffer can hold more than 2
5809 * lines), so need to account for TLB latency
5810 *
5811 * The normal calculation is:
5812 * watermark = dotclock * bytes per pixel * latency
5813 * where latency is platform & configuration dependent (we assume pessimal
5814 * values here).
5815 *
5816 * The SR calculation is:
5817 * watermark = (trunc(latency/line time)+1) * surface width *
5818 * bytes per pixel
5819 * where
5820 * line time = htotal / dotclock
5821 * surface width = hdisplay for normal plane and 64 for cursor
5822 * and latency is assumed to be high, as above.
5823 *
5824 * The final value programmed to the register should always be rounded up,
5825 * and include an extra 2 entries to account for clock crossings.
5826 *
5827 * We don't use the sprite, so we can ignore that. And on Crestline we have
5828 * to set the non-SR watermarks to 8.
5829 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02005830void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005831{
Ville Syrjälä432081b2016-10-31 22:37:03 +02005832 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005833
5834 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005835 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005836}
5837
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305838void intel_enable_ipc(struct drm_i915_private *dev_priv)
5839{
5840 u32 val;
5841
Rodrigo Vivi4d6ef0d2017-10-02 23:36:50 -07005842 /* Display WA #0477 WaDisableIPC: skl */
5843 if (IS_SKYLAKE(dev_priv)) {
5844 dev_priv->ipc_enabled = false;
5845 return;
5846 }
5847
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305848 val = I915_READ(DISP_ARB_CTL2);
5849
5850 if (dev_priv->ipc_enabled)
5851 val |= DISP_IPC_ENABLE;
5852 else
5853 val &= ~DISP_IPC_ENABLE;
5854
5855 I915_WRITE(DISP_ARB_CTL2, val);
5856}
5857
5858void intel_init_ipc(struct drm_i915_private *dev_priv)
5859{
5860 dev_priv->ipc_enabled = false;
5861 if (!HAS_IPC(dev_priv))
5862 return;
5863
5864 dev_priv->ipc_enabled = true;
5865 intel_enable_ipc(dev_priv);
5866}
5867
Jani Nikulae2828912016-01-18 09:19:47 +02005868/*
Daniel Vetter92703882012-08-09 16:46:01 +02005869 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02005870 */
5871DEFINE_SPINLOCK(mchdev_lock);
5872
5873/* Global for IPS driver to get at the current i915 device. Protected by
5874 * mchdev_lock. */
5875static struct drm_i915_private *i915_mch_dev;
5876
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005877bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005878{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005879 u16 rgvswctl;
5880
Chris Wilson67520412017-03-02 13:28:01 +00005881 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02005882
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005883 rgvswctl = I915_READ16(MEMSWCTL);
5884 if (rgvswctl & MEMCTL_CMD_STS) {
5885 DRM_DEBUG("gpu busy, RCS change rejected\n");
5886 return false; /* still busy with another command */
5887 }
5888
5889 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5890 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5891 I915_WRITE16(MEMSWCTL, rgvswctl);
5892 POSTING_READ16(MEMSWCTL);
5893
5894 rgvswctl |= MEMCTL_CMD_STS;
5895 I915_WRITE16(MEMSWCTL, rgvswctl);
5896
5897 return true;
5898}
5899
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005900static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005901{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005902 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005903 u8 fmax, fmin, fstart, vstart;
5904
Daniel Vetter92703882012-08-09 16:46:01 +02005905 spin_lock_irq(&mchdev_lock);
5906
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005907 rgvmodectl = I915_READ(MEMMODECTL);
5908
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005909 /* Enable temp reporting */
5910 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
5911 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
5912
5913 /* 100ms RC evaluation intervals */
5914 I915_WRITE(RCUPEI, 100000);
5915 I915_WRITE(RCDNEI, 100000);
5916
5917 /* Set max/min thresholds to 90ms and 80ms respectively */
5918 I915_WRITE(RCBMAXAVG, 90000);
5919 I915_WRITE(RCBMINAVG, 80000);
5920
5921 I915_WRITE(MEMIHYST, 1);
5922
5923 /* Set up min, max, and cur for interrupt handling */
5924 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5925 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5926 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5927 MEMMODE_FSTART_SHIFT;
5928
Ville Syrjälä616847e2015-09-18 20:03:19 +03005929 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005930 PXVFREQ_PX_SHIFT;
5931
Daniel Vetter20e4d402012-08-08 23:35:39 +02005932 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
5933 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005934
Daniel Vetter20e4d402012-08-08 23:35:39 +02005935 dev_priv->ips.max_delay = fstart;
5936 dev_priv->ips.min_delay = fmin;
5937 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005938
5939 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
5940 fmax, fmin, fstart);
5941
5942 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5943
5944 /*
5945 * Interrupts will be enabled in ironlake_irq_postinstall
5946 */
5947
5948 I915_WRITE(VIDSTART, vstart);
5949 POSTING_READ(VIDSTART);
5950
5951 rgvmodectl |= MEMMODE_SWMODE_EN;
5952 I915_WRITE(MEMMODECTL, rgvmodectl);
5953
Daniel Vetter92703882012-08-09 16:46:01 +02005954 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005955 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005956 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005957
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005958 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005959
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005960 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
5961 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005962 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005963 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005964 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02005965
5966 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005967}
5968
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005969static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005970{
Daniel Vetter92703882012-08-09 16:46:01 +02005971 u16 rgvswctl;
5972
5973 spin_lock_irq(&mchdev_lock);
5974
5975 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005976
5977 /* Ack interrupts, disable EFC interrupt */
5978 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5979 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5980 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5981 I915_WRITE(DEIIR, DE_PCU_EVENT);
5982 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5983
5984 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005985 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005986 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005987 rgvswctl |= MEMCTL_CMD_STS;
5988 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005989 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005990
Daniel Vetter92703882012-08-09 16:46:01 +02005991 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005992}
5993
Daniel Vetteracbe9472012-07-26 11:50:05 +02005994/* There's a funny hw issue where the hw returns all 0 when reading from
5995 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
5996 * ourselves, instead of doing a rmw cycle (which might result in us clearing
5997 * all limits and the gpu stuck at whatever frequency it is at atm).
5998 */
Akash Goel74ef1172015-03-06 11:07:19 +05305999static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006000{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006001 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006002 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006003
Daniel Vetter20b46e52012-07-26 11:16:14 +02006004 /* Only set the down limit when we've reached the lowest level to avoid
6005 * getting more interrupts, otherwise leave this clear. This prevents a
6006 * race in the hw when coming out of rc6: There's a tiny window where
6007 * the hw runs at the minimal clock before selecting the desired
6008 * frequency, if the down threshold expires in that window we will not
6009 * receive a down interrupt. */
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006010 if (INTEL_GEN(dev_priv) >= 9) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006011 limits = (rps->max_freq_softlimit) << 23;
6012 if (val <= rps->min_freq_softlimit)
6013 limits |= (rps->min_freq_softlimit) << 14;
Akash Goel74ef1172015-03-06 11:07:19 +05306014 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006015 limits = rps->max_freq_softlimit << 24;
6016 if (val <= rps->min_freq_softlimit)
6017 limits |= rps->min_freq_softlimit << 16;
Akash Goel74ef1172015-03-06 11:07:19 +05306018 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02006019
6020 return limits;
6021}
6022
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006023static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
6024{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006025 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006026 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05306027 u32 threshold_up = 0, threshold_down = 0; /* in % */
6028 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006029
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006030 new_power = rps->power;
6031 switch (rps->power) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006032 case LOW_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006033 if (val > rps->efficient_freq + 1 &&
6034 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006035 new_power = BETWEEN;
6036 break;
6037
6038 case BETWEEN:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006039 if (val <= rps->efficient_freq &&
6040 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006041 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006042 else if (val >= rps->rp0_freq &&
6043 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006044 new_power = HIGH_POWER;
6045 break;
6046
6047 case HIGH_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006048 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
6049 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006050 new_power = BETWEEN;
6051 break;
6052 }
6053 /* Max/min bins are special */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006054 if (val <= rps->min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006055 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006056 if (val >= rps->max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006057 new_power = HIGH_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006058 if (new_power == rps->power)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006059 return;
6060
6061 /* Note the units here are not exactly 1us, but 1280ns. */
6062 switch (new_power) {
6063 case LOW_POWER:
6064 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05306065 ei_up = 16000;
6066 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006067
6068 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306069 ei_down = 32000;
6070 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006071 break;
6072
6073 case BETWEEN:
6074 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05306075 ei_up = 13000;
6076 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006077
6078 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306079 ei_down = 32000;
6080 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006081 break;
6082
6083 case HIGH_POWER:
6084 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05306085 ei_up = 10000;
6086 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006087
6088 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306089 ei_down = 32000;
6090 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006091 break;
6092 }
6093
Mika Kuoppala6067a272017-02-15 15:52:59 +02006094 /* When byt can survive without system hang with dynamic
6095 * sw freq adjustments, this restriction can be lifted.
6096 */
6097 if (IS_VALLEYVIEW(dev_priv))
6098 goto skip_hw_write;
6099
Akash Goel8a586432015-03-06 11:07:18 +05306100 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006101 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05306102 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006103 GT_INTERVAL_FROM_US(dev_priv,
6104 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306105
6106 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006107 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05306108 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006109 GT_INTERVAL_FROM_US(dev_priv,
6110 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306111
Chris Wilsona72b5622016-07-02 15:35:59 +01006112 I915_WRITE(GEN6_RP_CONTROL,
6113 GEN6_RP_MEDIA_TURBO |
6114 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6115 GEN6_RP_MEDIA_IS_GFX |
6116 GEN6_RP_ENABLE |
6117 GEN6_RP_UP_BUSY_AVG |
6118 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05306119
Mika Kuoppala6067a272017-02-15 15:52:59 +02006120skip_hw_write:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006121 rps->power = new_power;
6122 rps->up_threshold = threshold_up;
6123 rps->down_threshold = threshold_down;
6124 rps->last_adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006125}
6126
Chris Wilson2876ce72014-03-28 08:03:34 +00006127static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
6128{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006129 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson2876ce72014-03-28 08:03:34 +00006130 u32 mask = 0;
6131
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006132 /* We use UP_EI_EXPIRED interupts for both up/down in manual mode */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006133 if (val > rps->min_freq_softlimit)
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006134 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 +01006135 if (val < rps->max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00006136 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00006137
Chris Wilson7b3c29f2014-07-10 20:31:19 +01006138 mask &= dev_priv->pm_rps_events;
6139
Imre Deak59d02a12014-12-19 19:33:26 +02006140 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00006141}
6142
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006143/* gen6_set_rps is called to update the frequency request, but should also be
6144 * called when the range (min_delay and max_delay) is modified so that we can
6145 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006146static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02006147{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006148 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6149
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006150 /* min/max delay may still have been modified so be sure to
6151 * write the limits value.
6152 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006153 if (val != rps->cur_freq) {
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006154 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006155
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006156 if (INTEL_GEN(dev_priv) >= 9)
Akash Goel57041952015-03-06 11:07:17 +05306157 I915_WRITE(GEN6_RPNSWREQ,
6158 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01006159 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006160 I915_WRITE(GEN6_RPNSWREQ,
6161 HSW_FREQUENCY(val));
6162 else
6163 I915_WRITE(GEN6_RPNSWREQ,
6164 GEN6_FREQUENCY(val) |
6165 GEN6_OFFSET(0) |
6166 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006167 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006168
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006169 /* Make sure we continue to get interrupts
6170 * until we hit the minimum or maximum frequencies.
6171 */
Akash Goel74ef1172015-03-06 11:07:19 +05306172 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00006173 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006174
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006175 rps->cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02006176 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006177
6178 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006179}
6180
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006181static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006182{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006183 int err;
6184
Chris Wilsondc979972016-05-10 14:10:04 +01006185 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006186 "Odd GPU freq value\n"))
6187 val &= ~1;
6188
Deepak Scd25dd52015-07-10 18:31:40 +05306189 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
6190
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006191 if (val != dev_priv->gt_pm.rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006192 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
6193 if (err)
6194 return err;
6195
Chris Wilsondb4c5e02017-02-10 15:03:46 +00006196 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01006197 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006198
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006199 dev_priv->gt_pm.rps.cur_freq = val;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006200 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006201
6202 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006203}
6204
Deepak Sa7f6e232015-05-09 18:04:44 +05306205/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05306206 *
6207 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05306208 * 1. Forcewake Media well.
6209 * 2. Request idle freq.
6210 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05306211*/
6212static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
6213{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006214 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6215 u32 val = rps->idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006216 int err;
Deepak S5549d252014-06-28 11:26:11 +05306217
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006218 if (rps->cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05306219 return;
6220
Chris Wilsonc9efef72017-01-02 15:28:45 +00006221 /* The punit delays the write of the frequency and voltage until it
6222 * determines the GPU is awake. During normal usage we don't want to
6223 * waste power changing the frequency if the GPU is sleeping (rc6).
6224 * However, the GPU and driver is now idle and we do not want to delay
6225 * switching to minimum voltage (reducing power whilst idle) as we do
6226 * not expect to be woken in the near future and so must flush the
6227 * change by waking the device.
6228 *
6229 * We choose to take the media powerwell (either would do to trick the
6230 * punit into committing the voltage change) as that takes a lot less
6231 * power than the render powerwell.
6232 */
Deepak Sa7f6e232015-05-09 18:04:44 +05306233 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006234 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05306235 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006236
6237 if (err)
6238 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05306239}
6240
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006241void gen6_rps_busy(struct drm_i915_private *dev_priv)
6242{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006243 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6244
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006245 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006246 if (rps->enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00006247 u8 freq;
6248
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006249 if (dev_priv->pm_rps_events & GEN6_PM_RP_UP_EI_EXPIRED)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006250 gen6_rps_reset_ei(dev_priv);
6251 I915_WRITE(GEN6_PMINTRMSK,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006252 gen6_rps_pm_mask(dev_priv, rps->cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02006253
Chris Wilsonc33d2472016-07-04 08:08:36 +01006254 gen6_enable_rps_interrupts(dev_priv);
6255
Chris Wilsonbd648182017-02-10 15:03:48 +00006256 /* Use the user's desired frequency as a guide, but for better
6257 * performance, jump directly to RPe as our starting frequency.
6258 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006259 freq = max(rps->cur_freq,
6260 rps->efficient_freq);
Chris Wilsonbd648182017-02-10 15:03:48 +00006261
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006262 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00006263 clamp(freq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006264 rps->min_freq_softlimit,
6265 rps->max_freq_softlimit)))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006266 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006267 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006268 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006269}
6270
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006271void gen6_rps_idle(struct drm_i915_private *dev_priv)
6272{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006273 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6274
Chris Wilsonc33d2472016-07-04 08:08:36 +01006275 /* Flush our bottom-half so that it does not race with us
6276 * setting the idle frequency and so that it is bounded by
6277 * our rpm wakeref. And then disable the interrupts to stop any
6278 * futher RPS reclocking whilst we are asleep.
6279 */
6280 gen6_disable_rps_interrupts(dev_priv);
6281
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006282 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006283 if (rps->enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01006284 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05306285 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006286 else
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006287 gen6_set_rps(dev_priv, rps->idle_freq);
6288 rps->last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03006289 I915_WRITE(GEN6_PMINTRMSK,
6290 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01006291 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006292 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006293}
6294
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006295void gen6_rps_boost(struct drm_i915_gem_request *rq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006296 struct intel_rps_client *rps_client)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006297{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006298 struct intel_rps *rps = &rq->i915->gt_pm.rps;
Chris Wilson74d290f2017-08-17 13:37:06 +01006299 unsigned long flags;
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006300 bool boost;
6301
Chris Wilson8d3afd72015-05-21 21:01:47 +01006302 /* This is intentionally racy! We peek at the state here, then
6303 * validate inside the RPS worker.
6304 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006305 if (!rps->enabled)
Chris Wilson8d3afd72015-05-21 21:01:47 +01006306 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006307
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006308 boost = false;
Chris Wilson74d290f2017-08-17 13:37:06 +01006309 spin_lock_irqsave(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006310 if (!rq->waitboost && !i915_gem_request_completed(rq)) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006311 atomic_inc(&rps->num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006312 rq->waitboost = true;
6313 boost = true;
Chris Wilsonc0951f02013-10-10 21:58:50 +01006314 }
Chris Wilson74d290f2017-08-17 13:37:06 +01006315 spin_unlock_irqrestore(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006316 if (!boost)
6317 return;
6318
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006319 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
6320 schedule_work(&rps->work);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006321
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006322 atomic_inc(rps_client ? &rps_client->boosts : &rps->boosts);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006323}
6324
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006325int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006326{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006327 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006328 int err;
6329
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006330 lockdep_assert_held(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006331 GEM_BUG_ON(val > rps->max_freq);
6332 GEM_BUG_ON(val < rps->min_freq);
Chris Wilsoncfd1c482017-02-20 09:47:07 +00006333
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006334 if (!rps->enabled) {
6335 rps->cur_freq = val;
Chris Wilson76e4e4b2017-02-20 09:47:08 +00006336 return 0;
6337 }
6338
Chris Wilsondc979972016-05-10 14:10:04 +01006339 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006340 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006341 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006342 err = gen6_set_rps(dev_priv, val);
6343
6344 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006345}
6346
Chris Wilsondc979972016-05-10 14:10:04 +01006347static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006348{
Zhe Wang20e49362014-11-04 17:07:05 +00006349 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006350 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006351}
6352
Chris Wilsondc979972016-05-10 14:10:04 +01006353static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05306354{
Akash Goel2030d682016-04-23 00:05:45 +05306355 I915_WRITE(GEN6_RP_CONTROL, 0);
6356}
6357
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006358static void gen6_disable_rc6(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006359{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006360 I915_WRITE(GEN6_RC_CONTROL, 0);
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006361}
6362
6363static void gen6_disable_rps(struct drm_i915_private *dev_priv)
6364{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006365 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05306366 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006367}
6368
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006369static void cherryview_disable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306370{
Deepak S38807742014-05-23 21:00:15 +05306371 I915_WRITE(GEN6_RC_CONTROL, 0);
6372}
6373
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006374static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006375{
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006376 I915_WRITE(GEN6_RP_CONTROL, 0);
6377}
6378
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006379static void valleyview_disable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006380{
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006381 /* We're doing forcewake before Disabling RC6,
Deepak S98a2e5f2014-08-18 10:35:27 -07006382 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006383 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07006384
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006385 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006386
Mika Kuoppala59bad942015-01-16 11:34:40 +02006387 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006388}
6389
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006390static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
6391{
6392 I915_WRITE(GEN6_RP_CONTROL, 0);
6393}
6394
Chris Wilsondc979972016-05-10 14:10:04 +01006395static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07006396{
Chris Wilsondc979972016-05-10 14:10:04 +01006397 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03006398 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
6399 mode = GEN6_RC_CTL_RC6_ENABLE;
6400 else
6401 mode = 0;
6402 }
Chris Wilsondc979972016-05-10 14:10:04 +01006403 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03006404 DRM_DEBUG_DRIVER("Enabling RC6 states: "
6405 "RC6 %s RC6p %s RC6pp %s\n",
6406 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
6407 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
6408 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07006409
6410 else
Imre Deakb99d49c2016-06-29 19:13:54 +03006411 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
6412 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07006413}
6414
Chris Wilsondc979972016-05-10 14:10:04 +01006415static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306416{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006417 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306418 bool enable_rc6 = true;
6419 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03006420 u32 rc_ctl;
6421 int rc_sw_target;
6422
6423 rc_ctl = I915_READ(GEN6_RC_CONTROL);
6424 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
6425 RC_SW_TARGET_STATE_SHIFT;
6426 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
6427 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
6428 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
6429 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
6430 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306431
6432 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006433 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306434 enable_rc6 = false;
6435 }
6436
6437 /*
6438 * The exact context size is not known for BXT, so assume a page size
6439 * for this check.
6440 */
6441 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006442 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
6443 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
6444 ggtt->stolen_reserved_size))) {
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 Wilsondc979972016-05-10 14:10:04 +01006477int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006478{
Daniel Vettere7d66d82015-06-15 23:23:54 +02006479 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01006480 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03006481 return 0;
6482
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306483 if (!enable_rc6)
6484 return 0;
6485
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006486 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306487 DRM_INFO("RC6 disabled by BIOS\n");
6488 return 0;
6489 }
6490
Daniel Vetter456470e2012-08-08 23:35:40 +02006491 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03006492 if (enable_rc6 >= 0) {
6493 int mask;
6494
Chris Wilsondc979972016-05-10 14:10:04 +01006495 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03006496 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
6497 INTEL_RC6pp_ENABLE;
6498 else
6499 mask = INTEL_RC6_ENABLE;
6500
6501 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03006502 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
6503 "(requested %d, valid %d)\n",
6504 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03006505
6506 return enable_rc6 & mask;
6507 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006508
Chris Wilsondc979972016-05-10 14:10:04 +01006509 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08006510 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08006511
6512 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006513}
6514
Chris Wilsondc979972016-05-10 14:10:04 +01006515static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03006516{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006517 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6518
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006519 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01006520
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006521 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006522 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006523 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006524 rps->rp0_freq = (rp_state_cap >> 16) & 0xff;
6525 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6526 rps->min_freq = (rp_state_cap >> 0) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006527 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006528 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006529 rps->rp0_freq = (rp_state_cap >> 0) & 0xff;
6530 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6531 rps->min_freq = (rp_state_cap >> 16) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006532 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006533 /* hw_max = RP0 until we check for overclocking */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006534 rps->max_freq = rps->rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006535
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006536 rps->efficient_freq = rps->rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006537 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006538 IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006539 u32 ddcc_status = 0;
6540
6541 if (sandybridge_pcode_read(dev_priv,
6542 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
6543 &ddcc_status) == 0)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006544 rps->efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08006545 clamp_t(u8,
6546 ((ddcc_status >> 8) & 0xff),
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006547 rps->min_freq,
6548 rps->max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006549 }
6550
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006551 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05306552 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01006553 * the natural hardware unit for SKL
6554 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006555 rps->rp0_freq *= GEN9_FREQ_SCALER;
6556 rps->rp1_freq *= GEN9_FREQ_SCALER;
6557 rps->min_freq *= GEN9_FREQ_SCALER;
6558 rps->max_freq *= GEN9_FREQ_SCALER;
6559 rps->efficient_freq *= GEN9_FREQ_SCALER;
Akash Goelc5e06882015-06-29 14:50:19 +05306560 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006561}
6562
Chris Wilson3a45b052016-07-13 09:10:32 +01006563static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006564 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01006565{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006566 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6567 u8 freq = rps->cur_freq;
Chris Wilson3a45b052016-07-13 09:10:32 +01006568
6569 /* force a reset */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006570 rps->power = -1;
6571 rps->cur_freq = -1;
Chris Wilson3a45b052016-07-13 09:10:32 +01006572
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006573 if (set(dev_priv, freq))
6574 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01006575}
6576
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006577/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01006578static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006579{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006580 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6581
Akash Goel0beb0592015-03-06 11:07:20 +05306582 /* Program defaults and thresholds for RPS*/
6583 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006584 GEN9_FREQUENCY(dev_priv->gt_pm.rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006585
Akash Goel0beb0592015-03-06 11:07:20 +05306586 /* 1 second timeout*/
6587 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
6588 GT_INTERVAL_FROM_US(dev_priv, 1000000));
6589
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006590 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006591
Akash Goel0beb0592015-03-06 11:07:20 +05306592 /* Leaning on the below call to gen6_set_rps to program/setup the
6593 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
6594 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01006595 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006596
6597 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6598}
6599
Chris Wilsondc979972016-05-10 14:10:04 +01006600static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006601{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006602 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306603 enum intel_engine_id id;
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006604 u32 rc6_mode, rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00006605
6606 /* 1a: Software RC state - RC0 */
6607 I915_WRITE(GEN6_RC_STATE, 0);
6608
6609 /* 1b: Get forcewake during program sequence. Although the driver
6610 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006611 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006612
6613 /* 2a: Disable RC states. */
6614 I915_WRITE(GEN6_RC_CONTROL, 0);
6615
6616 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306617
6618 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01006619 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306620 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
6621 else
6622 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00006623 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6624 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306625 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006626 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306627
Dave Gordon1a3d1892016-05-13 15:36:30 +01006628 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306629 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
6630
Zhe Wang20e49362014-11-04 17:07:05 +00006631 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006632
Zhe Wang38c23522015-01-20 12:23:04 +00006633 /* 2c: Program Coarse Power Gating Policies. */
6634 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
6635 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
6636
Zhe Wang20e49362014-11-04 17:07:05 +00006637 /* 3a: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006638 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00006639 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02006640 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00006641 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006642
6643 /* WaRsUseTimeoutMode:cnl (pre-prod) */
6644 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_C0))
6645 rc6_mode = GEN7_RC_CTL_TO_MODE;
6646 else
6647 rc6_mode = GEN6_RC_CTL_EI_MODE(1);
6648
Chris Wilson1c044f92017-01-25 17:26:01 +00006649 I915_WRITE(GEN6_RC_CONTROL,
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006650 GEN6_RC_CTL_HW_ENABLE | rc6_mode | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00006651
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306652 /*
6653 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306654 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306655 */
Chris Wilsondc979972016-05-10 14:10:04 +01006656 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306657 I915_WRITE(GEN9_PG_ENABLE, 0);
6658 else
6659 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
6660 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006661
Mika Kuoppala59bad942015-01-16 11:34:40 +02006662 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006663}
6664
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006665static void gen8_enable_rc6(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006666{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006667 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306668 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006669 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006670
6671 /* 1a: Software RC state - RC0 */
6672 I915_WRITE(GEN6_RC_STATE, 0);
6673
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006674 /* 1b: Get forcewake during program sequence. Although the driver
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006675 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006676 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006677
6678 /* 2a: Disable RC states. */
6679 I915_WRITE(GEN6_RC_CONTROL, 0);
6680
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006681 /* 2b: Program RC6 thresholds.*/
6682 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6683 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6684 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306685 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006686 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006687 I915_WRITE(GEN6_RC_SLEEP, 0);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006688 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006689
6690 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006691 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006692 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01006693 intel_print_rc6_info(dev_priv, rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006694
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006695 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
6696 GEN7_RC_CTL_TO_MODE |
6697 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006698
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006699 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6700}
6701
6702static void gen8_enable_rps(struct drm_i915_private *dev_priv)
6703{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006704 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6705
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006706 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6707
6708 /* 1 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006709 I915_WRITE(GEN6_RPNSWREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006710 HSW_FREQUENCY(rps->rp1_freq));
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006711 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006712 HSW_FREQUENCY(rps->rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02006713 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
6714 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006715
Daniel Vetter7526ed72014-09-29 15:07:19 +02006716 /* Docs recommend 900MHz, and 300 MHz respectively */
6717 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006718 rps->max_freq_softlimit << 24 |
6719 rps->min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006720
Daniel Vetter7526ed72014-09-29 15:07:19 +02006721 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
6722 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
6723 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
6724 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006725
Daniel Vetter7526ed72014-09-29 15:07:19 +02006726 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006727
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006728 /* 2: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02006729 I915_WRITE(GEN6_RP_CONTROL,
6730 GEN6_RP_MEDIA_TURBO |
6731 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6732 GEN6_RP_MEDIA_IS_GFX |
6733 GEN6_RP_ENABLE |
6734 GEN6_RP_UP_BUSY_AVG |
6735 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006736
Chris Wilson3a45b052016-07-13 09:10:32 +01006737 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006738
Mika Kuoppala59bad942015-01-16 11:34:40 +02006739 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006740}
6741
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006742static void gen6_enable_rc6(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006743{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006744 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306745 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01006746 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006747 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006748 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00006749 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006750
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006751 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006752
6753 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006754 gtfifodbg = I915_READ(GTFIFODBG);
6755 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006756 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
6757 I915_WRITE(GTFIFODBG, gtfifodbg);
6758 }
6759
Mika Kuoppala59bad942015-01-16 11:34:40 +02006760 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006761
6762 /* disable the counters and set deterministic thresholds */
6763 I915_WRITE(GEN6_RC_CONTROL, 0);
6764
6765 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6766 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6767 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6768 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6769 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6770
Akash Goel3b3f1652016-10-13 22:44:48 +05306771 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006772 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006773
6774 I915_WRITE(GEN6_RC_SLEEP, 0);
6775 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01006776 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07006777 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
6778 else
6779 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08006780 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006781 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6782
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006783 /* Check if we are enabling RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006784 rc6_mode = intel_rc6_enabled();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006785 if (rc6_mode & INTEL_RC6_ENABLE)
6786 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
6787
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006788 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01006789 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006790 if (rc6_mode & INTEL_RC6p_ENABLE)
6791 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006792
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006793 if (rc6_mode & INTEL_RC6pp_ENABLE)
6794 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
6795 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006796
Chris Wilsondc979972016-05-10 14:10:04 +01006797 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006798
6799 I915_WRITE(GEN6_RC_CONTROL,
6800 rc6_mask |
6801 GEN6_RC_CTL_EI_MODE(1) |
6802 GEN6_RC_CTL_HW_ENABLE);
6803
Ben Widawsky31643d52012-09-26 10:34:01 -07006804 rc6vids = 0;
6805 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01006806 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006807 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01006808 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006809 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
6810 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
6811 rc6vids &= 0xffff00;
6812 rc6vids |= GEN6_ENCODE_RC6_VID(450);
6813 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
6814 if (ret)
6815 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
6816 }
6817
Mika Kuoppala59bad942015-01-16 11:34:40 +02006818 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006819}
6820
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006821static void gen6_enable_rps(struct drm_i915_private *dev_priv)
6822{
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006823 /* Here begins a magic sequence of register writes to enable
6824 * auto-downclocking.
6825 *
6826 * Perhaps there might be some value in exposing these to
6827 * userspace...
6828 */
6829 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6830
6831 /* Power down if completely idle for over 50ms */
6832 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
6833 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6834
6835 reset_rps(dev_priv, gen6_set_rps);
6836
6837 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6838}
6839
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006840static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006841{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006842 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006843 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006844 unsigned int gpu_freq;
6845 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306846 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006847 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03006848 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006849
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006850 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02006851
Ben Widawskyeda79642013-10-07 17:15:48 -03006852 policy = cpufreq_cpu_get(0);
6853 if (policy) {
6854 max_ia_freq = policy->cpuinfo.max_freq;
6855 cpufreq_cpu_put(policy);
6856 } else {
6857 /*
6858 * Default to measured freq if none found, PCU will ensure we
6859 * don't go over
6860 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006861 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03006862 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006863
6864 /* Convert from kHz to MHz */
6865 max_ia_freq /= 1000;
6866
Ben Widawsky153b4b952013-10-22 22:05:09 -07006867 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07006868 /* convert DDR frequency from units of 266.6MHz to bandwidth */
6869 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006870
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006871 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306872 /* Convert GT frequency to 50 HZ units */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006873 min_gpu_freq = rps->min_freq / GEN9_FREQ_SCALER;
6874 max_gpu_freq = rps->max_freq / GEN9_FREQ_SCALER;
Akash Goel4c8c7742015-06-29 14:50:20 +05306875 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006876 min_gpu_freq = rps->min_freq;
6877 max_gpu_freq = rps->max_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306878 }
6879
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006880 /*
6881 * For each potential GPU frequency, load a ring frequency we'd like
6882 * to use for memory access. We do this by specifying the IA frequency
6883 * the PCU should use as a reference to determine the ring frequency.
6884 */
Akash Goel4c8c7742015-06-29 14:50:20 +05306885 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
6886 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006887 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006888
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006889 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306890 /*
6891 * ring_freq = 2 * GT. ring_freq is in 100MHz units
6892 * No floor required for ring frequency on SKL.
6893 */
6894 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006895 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07006896 /* max(2 * GT, DDR). NB: GT is 50MHz units */
6897 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01006898 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07006899 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006900 ring_freq = max(min_ring_freq, ring_freq);
6901 /* leave ia_freq as the default, chosen by cpufreq */
6902 } else {
6903 /* On older processors, there is no separate ring
6904 * clock domain, so in order to boost the bandwidth
6905 * of the ring, we need to upclock the CPU (ia_freq).
6906 *
6907 * For GPU frequencies less than 750MHz,
6908 * just use the lowest ring freq.
6909 */
6910 if (gpu_freq < min_freq)
6911 ia_freq = 800;
6912 else
6913 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
6914 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
6915 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006916
Ben Widawsky42c05262012-09-26 10:34:00 -07006917 sandybridge_pcode_write(dev_priv,
6918 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01006919 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
6920 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
6921 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006922 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006923}
6924
Ville Syrjälä03af2042014-06-28 02:03:53 +03006925static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05306926{
6927 u32 val, rp0;
6928
Jani Nikula5b5929c2015-10-07 11:17:46 +03006929 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05306930
Imre Deak43b67992016-08-31 19:13:02 +03006931 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03006932 case 8:
6933 /* (2 * 4) config */
6934 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
6935 break;
6936 case 12:
6937 /* (2 * 6) config */
6938 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
6939 break;
6940 case 16:
6941 /* (2 * 8) config */
6942 default:
6943 /* Setting (2 * 8) Min RP0 for any other combination */
6944 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
6945 break;
Deepak S095acd52015-01-17 11:05:59 +05306946 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03006947
6948 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
6949
Deepak S2b6b3a02014-05-27 15:59:30 +05306950 return rp0;
6951}
6952
6953static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6954{
6955 u32 val, rpe;
6956
6957 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
6958 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
6959
6960 return rpe;
6961}
6962
Deepak S7707df42014-07-12 18:46:14 +05306963static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
6964{
6965 u32 val, rp1;
6966
Jani Nikula5b5929c2015-10-07 11:17:46 +03006967 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
6968 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
6969
Deepak S7707df42014-07-12 18:46:14 +05306970 return rp1;
6971}
6972
Deepak S96676fe2016-08-12 18:46:41 +05306973static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
6974{
6975 u32 val, rpn;
6976
6977 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
6978 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
6979 FB_GFX_FREQ_FUSE_MASK);
6980
6981 return rpn;
6982}
6983
Deepak Sf8f2b002014-07-10 13:16:21 +05306984static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
6985{
6986 u32 val, rp1;
6987
6988 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
6989
6990 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
6991
6992 return rp1;
6993}
6994
Ville Syrjälä03af2042014-06-28 02:03:53 +03006995static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006996{
6997 u32 val, rp0;
6998
Jani Nikula64936252013-05-22 15:36:20 +03006999 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007000
7001 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
7002 /* Clamp to max */
7003 rp0 = min_t(u32, rp0, 0xea);
7004
7005 return rp0;
7006}
7007
7008static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
7009{
7010 u32 val, rpe;
7011
Jani Nikula64936252013-05-22 15:36:20 +03007012 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007013 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03007014 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007015 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
7016
7017 return rpe;
7018}
7019
Ville Syrjälä03af2042014-06-28 02:03:53 +03007020static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007021{
Imre Deak36146032014-12-04 18:39:35 +02007022 u32 val;
7023
7024 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
7025 /*
7026 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
7027 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
7028 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
7029 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
7030 * to make sure it matches what Punit accepts.
7031 */
7032 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007033}
7034
Imre Deakae484342014-03-31 15:10:44 +03007035/* Check that the pctx buffer wasn't move under us. */
7036static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
7037{
7038 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7039
7040 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
7041 dev_priv->vlv_pctx->stolen->start);
7042}
7043
Deepak S38807742014-05-23 21:00:15 +05307044
7045/* Check that the pcbr address is not empty. */
7046static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
7047{
7048 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7049
7050 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
7051}
7052
Chris Wilsondc979972016-05-10 14:10:04 +01007053static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307054{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007055 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03007056 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05307057 u32 pcbr;
7058 int pctx_size = 32*1024;
7059
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");
Deepak S38807742014-05-23 21:00:15 +05307063 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007064 (ggtt->stolen_size - pctx_size));
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;
7076 unsigned long pctx_paddr;
7077 u32 pcbr;
7078 int pctx_size = 24*1024;
7079
7080 pcbr = I915_READ(VLV_PCBR);
7081 if (pcbr) {
7082 /* BIOS set it up already, grab the pre-alloc'd space */
7083 int pcbr_offset;
7084
7085 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
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
7109 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
7110 I915_WRITE(VLV_PCBR, pctx_paddr);
7111
7112out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007113 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007114 dev_priv->vlv_pctx = pctx;
7115}
7116
Chris Wilsondc979972016-05-10 14:10:04 +01007117static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007118{
Imre Deakae484342014-03-31 15:10:44 +03007119 if (WARN_ON(!dev_priv->vlv_pctx))
7120 return;
7121
Chris Wilsonf0cd5182016-10-28 13:58:43 +01007122 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03007123 dev_priv->vlv_pctx = NULL;
7124}
7125
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007126static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
7127{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007128 dev_priv->gt_pm.rps.gpll_ref_freq =
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007129 vlv_get_cck_clock(dev_priv, "GPLL ref",
7130 CCK_GPLL_CLOCK_CONTROL,
7131 dev_priv->czclk_freq);
7132
7133 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007134 dev_priv->gt_pm.rps.gpll_ref_freq);
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007135}
7136
Chris Wilsondc979972016-05-10 14:10:04 +01007137static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007138{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007139 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007140 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03007141
Chris Wilsondc979972016-05-10 14:10:04 +01007142 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007143
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007144 vlv_init_gpll_ref_freq(dev_priv);
7145
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007146 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7147 switch ((val >> 6) & 3) {
7148 case 0:
7149 case 1:
7150 dev_priv->mem_freq = 800;
7151 break;
7152 case 2:
7153 dev_priv->mem_freq = 1066;
7154 break;
7155 case 3:
7156 dev_priv->mem_freq = 1333;
7157 break;
7158 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007159 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007160
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007161 rps->max_freq = valleyview_rps_max_freq(dev_priv);
7162 rps->rp0_freq = rps->max_freq;
Imre Deak4e805192014-04-14 20:24:41 +03007163 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007164 intel_gpu_freq(dev_priv, rps->max_freq),
7165 rps->max_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007166
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007167 rps->efficient_freq = valleyview_rps_rpe_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007168 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007169 intel_gpu_freq(dev_priv, rps->efficient_freq),
7170 rps->efficient_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007171
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007172 rps->rp1_freq = valleyview_rps_guar_freq(dev_priv);
Deepak Sf8f2b002014-07-10 13:16:21 +05307173 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007174 intel_gpu_freq(dev_priv, rps->rp1_freq),
7175 rps->rp1_freq);
Deepak Sf8f2b002014-07-10 13:16:21 +05307176
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007177 rps->min_freq = valleyview_rps_min_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007178 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007179 intel_gpu_freq(dev_priv, rps->min_freq),
7180 rps->min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007181}
7182
Chris Wilsondc979972016-05-10 14:10:04 +01007183static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307184{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007185 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007186 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05307187
Chris Wilsondc979972016-05-10 14:10:04 +01007188 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307189
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007190 vlv_init_gpll_ref_freq(dev_priv);
7191
Ville Syrjäläa5805162015-05-26 20:42:30 +03007192 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007193 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007194 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007195
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007196 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007197 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007198 dev_priv->mem_freq = 2000;
7199 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007200 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007201 dev_priv->mem_freq = 1600;
7202 break;
7203 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007204 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007205
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007206 rps->max_freq = cherryview_rps_max_freq(dev_priv);
7207 rps->rp0_freq = rps->max_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05307208 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007209 intel_gpu_freq(dev_priv, rps->max_freq),
7210 rps->max_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307211
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007212 rps->efficient_freq = cherryview_rps_rpe_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307213 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007214 intel_gpu_freq(dev_priv, rps->efficient_freq),
7215 rps->efficient_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307216
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007217 rps->rp1_freq = cherryview_rps_guar_freq(dev_priv);
Deepak S7707df42014-07-12 18:46:14 +05307218 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007219 intel_gpu_freq(dev_priv, rps->rp1_freq),
7220 rps->rp1_freq);
Deepak S7707df42014-07-12 18:46:14 +05307221
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007222 rps->min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307223 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007224 intel_gpu_freq(dev_priv, rps->min_freq),
7225 rps->min_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307226
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007227 WARN_ONCE((rps->max_freq | rps->efficient_freq | rps->rp1_freq |
7228 rps->min_freq) & 1,
Ville Syrjälä1c147622014-08-18 14:42:43 +03007229 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05307230}
7231
Chris Wilsondc979972016-05-10 14:10:04 +01007232static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007233{
Chris Wilsondc979972016-05-10 14:10:04 +01007234 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007235}
7236
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007237static void cherryview_enable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307238{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007239 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307240 enum intel_engine_id id;
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007241 u32 gtfifodbg, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05307242
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007243 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
7244 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05307245 if (gtfifodbg) {
7246 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7247 gtfifodbg);
7248 I915_WRITE(GTFIFODBG, gtfifodbg);
7249 }
7250
7251 cherryview_check_pctx(dev_priv);
7252
7253 /* 1a & 1b: Get forcewake during program sequence. Although the driver
7254 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007255 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307256
Ville Syrjälä160614a2015-01-19 13:50:47 +02007257 /* Disable RC states. */
7258 I915_WRITE(GEN6_RC_CONTROL, 0);
7259
Deepak S38807742014-05-23 21:00:15 +05307260 /* 2a: Program RC6 thresholds.*/
7261 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7262 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7263 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
7264
Akash Goel3b3f1652016-10-13 22:44:48 +05307265 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007266 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05307267 I915_WRITE(GEN6_RC_SLEEP, 0);
7268
Deepak Sf4f71c72015-03-28 15:23:35 +05307269 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
7270 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05307271
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007272 /* Allows RC6 residency counter to work */
Deepak S38807742014-05-23 21:00:15 +05307273 I915_WRITE(VLV_COUNTER_CONTROL,
7274 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7275 VLV_MEDIA_RC6_COUNT_EN |
7276 VLV_RENDER_RC6_COUNT_EN));
7277
7278 /* For now we assume BIOS is allocating and populating the PCBR */
7279 pcbr = I915_READ(VLV_PCBR);
7280
Deepak S38807742014-05-23 21:00:15 +05307281 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007282 if ((intel_rc6_enabled() & INTEL_RC6_ENABLE) &&
Chris Wilsondc979972016-05-10 14:10:04 +01007283 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02007284 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05307285
7286 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7287
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007288 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7289}
7290
7291static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
7292{
7293 u32 val;
7294
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007295 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7296
7297 /* 1: Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02007298 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05307299 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7300 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7301 I915_WRITE(GEN6_RP_UP_EI, 66000);
7302 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7303
7304 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7305
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007306 /* 2: Enable RPS */
Deepak S2b6b3a02014-05-27 15:59:30 +05307307 I915_WRITE(GEN6_RP_CONTROL,
7308 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02007309 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05307310 GEN6_RP_ENABLE |
7311 GEN6_RP_UP_BUSY_AVG |
7312 GEN6_RP_DOWN_IDLE_AVG);
7313
Deepak S3ef62342015-04-29 08:36:24 +05307314 /* Setting Fixed Bias */
7315 val = VLV_OVERRIDE_EN |
7316 VLV_SOC_TDP_EN |
7317 CHV_BIAS_CPU_50_SOC_50;
7318 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7319
Deepak S2b6b3a02014-05-27 15:59:30 +05307320 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7321
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007322 /* RPS code assumes GPLL is used */
7323 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7324
Jani Nikula742f4912015-09-03 11:16:09 +03007325 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05307326 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7327
Chris Wilson3a45b052016-07-13 09:10:32 +01007328 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05307329
Mika Kuoppala59bad942015-01-16 11:34:40 +02007330 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307331}
7332
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007333static void valleyview_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007334{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007335 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307336 enum intel_engine_id id;
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007337 u32 gtfifodbg, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07007338
Imre Deakae484342014-03-31 15:10:44 +03007339 valleyview_check_pctx(dev_priv);
7340
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007341 gtfifodbg = I915_READ(GTFIFODBG);
7342 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07007343 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7344 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007345 I915_WRITE(GTFIFODBG, gtfifodbg);
7346 }
7347
Mika Kuoppala59bad942015-01-16 11:34:40 +02007348 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007349
Ville Syrjälä160614a2015-01-19 13:50:47 +02007350 /* Disable RC states. */
7351 I915_WRITE(GEN6_RC_CONTROL, 0);
7352
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007353 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
7354 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7355 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7356
7357 for_each_engine(engine, dev_priv, id)
7358 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
7359
7360 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
7361
7362 /* Allows RC6 residency counter to work */
7363 I915_WRITE(VLV_COUNTER_CONTROL,
7364 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7365 VLV_MEDIA_RC0_COUNT_EN |
7366 VLV_RENDER_RC0_COUNT_EN |
7367 VLV_MEDIA_RC6_COUNT_EN |
7368 VLV_RENDER_RC6_COUNT_EN));
7369
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007370 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007371 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
7372
7373 intel_print_rc6_info(dev_priv, rc6_mode);
7374
7375 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7376
7377 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7378}
7379
7380static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
7381{
7382 u32 val;
7383
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007384 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7385
Ville Syrjäläcad725f2015-01-19 13:50:48 +02007386 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007387 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7388 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7389 I915_WRITE(GEN6_RP_UP_EI, 66000);
7390 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7391
7392 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7393
7394 I915_WRITE(GEN6_RP_CONTROL,
7395 GEN6_RP_MEDIA_TURBO |
7396 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7397 GEN6_RP_MEDIA_IS_GFX |
7398 GEN6_RP_ENABLE |
7399 GEN6_RP_UP_BUSY_AVG |
7400 GEN6_RP_DOWN_IDLE_CONT);
7401
Deepak S3ef62342015-04-29 08:36:24 +05307402 /* Setting Fixed Bias */
7403 val = VLV_OVERRIDE_EN |
7404 VLV_SOC_TDP_EN |
7405 VLV_BIAS_CPU_125_SOC_875;
7406 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7407
Jani Nikula64936252013-05-22 15:36:20 +03007408 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007409
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007410 /* RPS code assumes GPLL is used */
7411 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7412
Jani Nikula742f4912015-09-03 11:16:09 +03007413 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07007414 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7415
Chris Wilson3a45b052016-07-13 09:10:32 +01007416 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007417
Mika Kuoppala59bad942015-01-16 11:34:40 +02007418 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007419}
7420
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007421static unsigned long intel_pxfreq(u32 vidfreq)
7422{
7423 unsigned long freq;
7424 int div = (vidfreq & 0x3f0000) >> 16;
7425 int post = (vidfreq & 0x3000) >> 12;
7426 int pre = (vidfreq & 0x7);
7427
7428 if (!pre)
7429 return 0;
7430
7431 freq = ((div * 133333) / ((1<<post) * pre));
7432
7433 return freq;
7434}
7435
Daniel Vettereb48eb02012-04-26 23:28:12 +02007436static const struct cparams {
7437 u16 i;
7438 u16 t;
7439 u16 m;
7440 u16 c;
7441} cparams[] = {
7442 { 1, 1333, 301, 28664 },
7443 { 1, 1066, 294, 24460 },
7444 { 1, 800, 294, 25192 },
7445 { 0, 1333, 276, 27605 },
7446 { 0, 1066, 276, 27605 },
7447 { 0, 800, 231, 23784 },
7448};
7449
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007450static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007451{
7452 u64 total_count, diff, ret;
7453 u32 count1, count2, count3, m = 0, c = 0;
7454 unsigned long now = jiffies_to_msecs(jiffies), diff1;
7455 int i;
7456
Chris Wilson67520412017-03-02 13:28:01 +00007457 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007458
Daniel Vetter20e4d402012-08-08 23:35:39 +02007459 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007460
7461 /* Prevent division-by-zero if we are asking too fast.
7462 * Also, we don't get interesting results if we are polling
7463 * faster than once in 10ms, so just return the saved value
7464 * in such cases.
7465 */
7466 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02007467 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007468
7469 count1 = I915_READ(DMIEC);
7470 count2 = I915_READ(DDREC);
7471 count3 = I915_READ(CSIEC);
7472
7473 total_count = count1 + count2 + count3;
7474
7475 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02007476 if (total_count < dev_priv->ips.last_count1) {
7477 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007478 diff += total_count;
7479 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007480 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007481 }
7482
7483 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007484 if (cparams[i].i == dev_priv->ips.c_m &&
7485 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02007486 m = cparams[i].m;
7487 c = cparams[i].c;
7488 break;
7489 }
7490 }
7491
7492 diff = div_u64(diff, diff1);
7493 ret = ((m * diff) + c);
7494 ret = div_u64(ret, 10);
7495
Daniel Vetter20e4d402012-08-08 23:35:39 +02007496 dev_priv->ips.last_count1 = total_count;
7497 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007498
Daniel Vetter20e4d402012-08-08 23:35:39 +02007499 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007500
7501 return ret;
7502}
7503
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007504unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
7505{
7506 unsigned long val;
7507
Chris Wilsondc979972016-05-10 14:10:04 +01007508 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007509 return 0;
7510
7511 spin_lock_irq(&mchdev_lock);
7512
7513 val = __i915_chipset_val(dev_priv);
7514
7515 spin_unlock_irq(&mchdev_lock);
7516
7517 return val;
7518}
7519
Daniel Vettereb48eb02012-04-26 23:28:12 +02007520unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
7521{
7522 unsigned long m, x, b;
7523 u32 tsfs;
7524
7525 tsfs = I915_READ(TSFS);
7526
7527 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
7528 x = I915_READ8(TR1);
7529
7530 b = tsfs & TSFS_INTR_MASK;
7531
7532 return ((m * x) / 127) - b;
7533}
7534
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007535static int _pxvid_to_vd(u8 pxvid)
7536{
7537 if (pxvid == 0)
7538 return 0;
7539
7540 if (pxvid >= 8 && pxvid < 31)
7541 pxvid = 31;
7542
7543 return (pxvid + 2) * 125;
7544}
7545
7546static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007547{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007548 const int vd = _pxvid_to_vd(pxvid);
7549 const int vm = vd - 1125;
7550
Chris Wilsondc979972016-05-10 14:10:04 +01007551 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007552 return vm > 0 ? vm : 0;
7553
7554 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007555}
7556
Daniel Vetter02d71952012-08-09 16:44:54 +02007557static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007558{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007559 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007560 u32 count;
7561
Chris Wilson67520412017-03-02 13:28:01 +00007562 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007563
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007564 now = ktime_get_raw_ns();
7565 diffms = now - dev_priv->ips.last_time2;
7566 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007567
7568 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02007569 if (!diffms)
7570 return;
7571
7572 count = I915_READ(GFXEC);
7573
Daniel Vetter20e4d402012-08-08 23:35:39 +02007574 if (count < dev_priv->ips.last_count2) {
7575 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007576 diff += count;
7577 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007578 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007579 }
7580
Daniel Vetter20e4d402012-08-08 23:35:39 +02007581 dev_priv->ips.last_count2 = count;
7582 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007583
7584 /* More magic constants... */
7585 diff = diff * 1181;
7586 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02007587 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007588}
7589
Daniel Vetter02d71952012-08-09 16:44:54 +02007590void i915_update_gfx_val(struct drm_i915_private *dev_priv)
7591{
Chris Wilsondc979972016-05-10 14:10:04 +01007592 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02007593 return;
7594
Daniel Vetter92703882012-08-09 16:46:01 +02007595 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007596
7597 __i915_update_gfx_val(dev_priv);
7598
Daniel Vetter92703882012-08-09 16:46:01 +02007599 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007600}
7601
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007602static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007603{
7604 unsigned long t, corr, state1, corr2, state2;
7605 u32 pxvid, ext_v;
7606
Chris Wilson67520412017-03-02 13:28:01 +00007607 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007608
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007609 pxvid = I915_READ(PXVFREQ(dev_priv->gt_pm.rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02007610 pxvid = (pxvid >> 24) & 0x7f;
7611 ext_v = pvid_to_extvid(dev_priv, pxvid);
7612
7613 state1 = ext_v;
7614
7615 t = i915_mch_val(dev_priv);
7616
7617 /* Revel in the empirically derived constants */
7618
7619 /* Correction factor in 1/100000 units */
7620 if (t > 80)
7621 corr = ((t * 2349) + 135940);
7622 else if (t >= 50)
7623 corr = ((t * 964) + 29317);
7624 else /* < 50 */
7625 corr = ((t * 301) + 1004);
7626
7627 corr = corr * ((150142 * state1) / 10000 - 78642);
7628 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02007629 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007630
7631 state2 = (corr2 * state1) / 10000;
7632 state2 /= 100; /* convert to mW */
7633
Daniel Vetter02d71952012-08-09 16:44:54 +02007634 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007635
Daniel Vetter20e4d402012-08-08 23:35:39 +02007636 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007637}
7638
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007639unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
7640{
7641 unsigned long val;
7642
Chris Wilsondc979972016-05-10 14:10:04 +01007643 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007644 return 0;
7645
7646 spin_lock_irq(&mchdev_lock);
7647
7648 val = __i915_gfx_val(dev_priv);
7649
7650 spin_unlock_irq(&mchdev_lock);
7651
7652 return val;
7653}
7654
Daniel Vettereb48eb02012-04-26 23:28:12 +02007655/**
7656 * i915_read_mch_val - return value for IPS use
7657 *
7658 * Calculate and return a value for the IPS driver to use when deciding whether
7659 * we have thermal and power headroom to increase CPU or GPU power budget.
7660 */
7661unsigned long i915_read_mch_val(void)
7662{
7663 struct drm_i915_private *dev_priv;
7664 unsigned long chipset_val, graphics_val, ret = 0;
7665
Daniel Vetter92703882012-08-09 16:46:01 +02007666 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007667 if (!i915_mch_dev)
7668 goto out_unlock;
7669 dev_priv = i915_mch_dev;
7670
Chris Wilsonf531dcb2012-09-25 10:16:12 +01007671 chipset_val = __i915_chipset_val(dev_priv);
7672 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007673
7674 ret = chipset_val + graphics_val;
7675
7676out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007677 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007678
7679 return ret;
7680}
7681EXPORT_SYMBOL_GPL(i915_read_mch_val);
7682
7683/**
7684 * i915_gpu_raise - raise GPU frequency limit
7685 *
7686 * Raise the limit; IPS indicates we have thermal headroom.
7687 */
7688bool i915_gpu_raise(void)
7689{
7690 struct drm_i915_private *dev_priv;
7691 bool ret = true;
7692
Daniel Vetter92703882012-08-09 16:46:01 +02007693 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007694 if (!i915_mch_dev) {
7695 ret = false;
7696 goto out_unlock;
7697 }
7698 dev_priv = i915_mch_dev;
7699
Daniel Vetter20e4d402012-08-08 23:35:39 +02007700 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
7701 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007702
7703out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007704 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007705
7706 return ret;
7707}
7708EXPORT_SYMBOL_GPL(i915_gpu_raise);
7709
7710/**
7711 * i915_gpu_lower - lower GPU frequency limit
7712 *
7713 * IPS indicates we're close to a thermal limit, so throttle back the GPU
7714 * frequency maximum.
7715 */
7716bool i915_gpu_lower(void)
7717{
7718 struct drm_i915_private *dev_priv;
7719 bool ret = true;
7720
Daniel Vetter92703882012-08-09 16:46:01 +02007721 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007722 if (!i915_mch_dev) {
7723 ret = false;
7724 goto out_unlock;
7725 }
7726 dev_priv = i915_mch_dev;
7727
Daniel Vetter20e4d402012-08-08 23:35:39 +02007728 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
7729 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007730
7731out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007732 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007733
7734 return ret;
7735}
7736EXPORT_SYMBOL_GPL(i915_gpu_lower);
7737
7738/**
7739 * i915_gpu_busy - indicate GPU business to IPS
7740 *
7741 * Tell the IPS driver whether or not the GPU is busy.
7742 */
7743bool i915_gpu_busy(void)
7744{
Daniel Vettereb48eb02012-04-26 23:28:12 +02007745 bool ret = false;
7746
Daniel Vetter92703882012-08-09 16:46:01 +02007747 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01007748 if (i915_mch_dev)
7749 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02007750 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007751
7752 return ret;
7753}
7754EXPORT_SYMBOL_GPL(i915_gpu_busy);
7755
7756/**
7757 * i915_gpu_turbo_disable - disable graphics turbo
7758 *
7759 * Disable graphics turbo by resetting the max frequency and setting the
7760 * current frequency to the default.
7761 */
7762bool i915_gpu_turbo_disable(void)
7763{
7764 struct drm_i915_private *dev_priv;
7765 bool ret = true;
7766
Daniel Vetter92703882012-08-09 16:46:01 +02007767 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007768 if (!i915_mch_dev) {
7769 ret = false;
7770 goto out_unlock;
7771 }
7772 dev_priv = i915_mch_dev;
7773
Daniel Vetter20e4d402012-08-08 23:35:39 +02007774 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007775
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007776 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02007777 ret = false;
7778
7779out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007780 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007781
7782 return ret;
7783}
7784EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
7785
7786/**
7787 * Tells the intel_ips driver that the i915 driver is now loaded, if
7788 * IPS got loaded first.
7789 *
7790 * This awkward dance is so that neither module has to depend on the
7791 * other in order for IPS to do the appropriate communication of
7792 * GPU turbo limits to i915.
7793 */
7794static void
7795ips_ping_for_i915_load(void)
7796{
7797 void (*link)(void);
7798
7799 link = symbol_get(ips_link_to_i915_driver);
7800 if (link) {
7801 link();
7802 symbol_put(ips_link_to_i915_driver);
7803 }
7804}
7805
7806void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
7807{
Daniel Vetter02d71952012-08-09 16:44:54 +02007808 /* We only register the i915 ips part with intel-ips once everything is
7809 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02007810 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007811 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02007812 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007813
7814 ips_ping_for_i915_load();
7815}
7816
7817void intel_gpu_ips_teardown(void)
7818{
Daniel Vetter92703882012-08-09 16:46:01 +02007819 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007820 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02007821 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007822}
Deepak S76c3552f2014-01-30 23:08:16 +05307823
Chris Wilsondc979972016-05-10 14:10:04 +01007824static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007825{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007826 u32 lcfuse;
7827 u8 pxw[16];
7828 int i;
7829
7830 /* Disable to program */
7831 I915_WRITE(ECR, 0);
7832 POSTING_READ(ECR);
7833
7834 /* Program energy weights for various events */
7835 I915_WRITE(SDEW, 0x15040d00);
7836 I915_WRITE(CSIEW0, 0x007f0000);
7837 I915_WRITE(CSIEW1, 0x1e220004);
7838 I915_WRITE(CSIEW2, 0x04000004);
7839
7840 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007841 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007842 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007843 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007844
7845 /* Program P-state weights to account for frequency power adjustment */
7846 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03007847 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007848 unsigned long freq = intel_pxfreq(pxvidfreq);
7849 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
7850 PXVFREQ_PX_SHIFT;
7851 unsigned long val;
7852
7853 val = vid * vid;
7854 val *= (freq / 1000);
7855 val *= 255;
7856 val /= (127*127*900);
7857 if (val > 0xff)
7858 DRM_ERROR("bad pxval: %ld\n", val);
7859 pxw[i] = val;
7860 }
7861 /* Render standby states get 0 weight */
7862 pxw[14] = 0;
7863 pxw[15] = 0;
7864
7865 for (i = 0; i < 4; i++) {
7866 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
7867 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03007868 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007869 }
7870
7871 /* Adjust magic regs to magic values (more experimental results) */
7872 I915_WRITE(OGW0, 0);
7873 I915_WRITE(OGW1, 0);
7874 I915_WRITE(EG0, 0x00007f00);
7875 I915_WRITE(EG1, 0x0000000e);
7876 I915_WRITE(EG2, 0x000e0000);
7877 I915_WRITE(EG3, 0x68000300);
7878 I915_WRITE(EG4, 0x42000000);
7879 I915_WRITE(EG5, 0x00140031);
7880 I915_WRITE(EG6, 0);
7881 I915_WRITE(EG7, 0);
7882
7883 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007884 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007885
7886 /* Enable PMON + select events */
7887 I915_WRITE(ECR, 0x80000019);
7888
7889 lcfuse = I915_READ(LCFUSE02);
7890
Daniel Vetter20e4d402012-08-08 23:35:39 +02007891 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007892}
7893
Chris Wilsondc979972016-05-10 14:10:04 +01007894void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007895{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007896 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7897
Imre Deakb268c692015-12-15 20:10:31 +02007898 /*
7899 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
7900 * requirement.
7901 */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007902 if (!i915_modparams.enable_rc6) {
Imre Deakb268c692015-12-15 20:10:31 +02007903 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
7904 intel_runtime_pm_get(dev_priv);
7905 }
Imre Deake6069ca2014-04-18 16:01:02 +03007906
Chris Wilsonb5163db2016-08-10 13:58:24 +01007907 mutex_lock(&dev_priv->drm.struct_mutex);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007908 mutex_lock(&dev_priv->pcu_lock);
Chris Wilson773ea9a2016-07-13 09:10:33 +01007909
7910 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01007911 if (IS_CHERRYVIEW(dev_priv))
7912 cherryview_init_gt_powersave(dev_priv);
7913 else if (IS_VALLEYVIEW(dev_priv))
7914 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01007915 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01007916 gen6_init_rps_frequencies(dev_priv);
7917
7918 /* Derive initial user preferences/limits from the hardware limits */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007919 rps->idle_freq = rps->min_freq;
7920 rps->cur_freq = rps->idle_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007921
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007922 rps->max_freq_softlimit = rps->max_freq;
7923 rps->min_freq_softlimit = rps->min_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007924
7925 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007926 rps->min_freq_softlimit =
Chris Wilson773ea9a2016-07-13 09:10:33 +01007927 max_t(int,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007928 rps->efficient_freq,
Chris Wilson773ea9a2016-07-13 09:10:33 +01007929 intel_freq_opcode(dev_priv, 450));
7930
Chris Wilson99ac9612016-07-13 09:10:34 +01007931 /* After setting max-softlimit, find the overclock max freq */
7932 if (IS_GEN6(dev_priv) ||
7933 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
7934 u32 params = 0;
7935
7936 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
7937 if (params & BIT(31)) { /* OC supported */
7938 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007939 (rps->max_freq & 0xff) * 50,
Chris Wilson99ac9612016-07-13 09:10:34 +01007940 (params & 0xff) * 50);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007941 rps->max_freq = params & 0xff;
Chris Wilson99ac9612016-07-13 09:10:34 +01007942 }
7943 }
7944
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007945 /* Finally allow us to boost to max by default */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007946 rps->boost_freq = rps->max_freq;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007947
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007948 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01007949 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01007950
7951 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007952}
7953
Chris Wilsondc979972016-05-10 14:10:04 +01007954void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007955{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03007956 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01007957 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02007958
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007959 if (!i915_modparams.enable_rc6)
Imre Deakb268c692015-12-15 20:10:31 +02007960 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007961}
7962
Chris Wilson54b4f682016-07-21 21:16:19 +01007963/**
7964 * intel_suspend_gt_powersave - suspend PM work and helper threads
7965 * @dev_priv: i915 device
7966 *
7967 * We don't want to disable RC6 or other features here, we just want
7968 * to make sure any work we've queued has finished and won't bother
7969 * us while we're suspended.
7970 */
7971void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
7972{
7973 if (INTEL_GEN(dev_priv) < 6)
7974 return;
7975
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007976 if (cancel_delayed_work_sync(&dev_priv->gt_pm.autoenable_work))
Chris Wilson54b4f682016-07-21 21:16:19 +01007977 intel_runtime_pm_put(dev_priv);
7978
7979 /* gen6_rps_idle() will be called later to disable interrupts */
7980}
7981
Chris Wilsonb7137e02016-07-13 09:10:37 +01007982void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
7983{
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007984 dev_priv->gt_pm.rps.enabled = true; /* force RPS disabling */
7985 dev_priv->gt_pm.rc6.enabled = true; /* force RC6 disabling */
Chris Wilsonb7137e02016-07-13 09:10:37 +01007986 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007987
7988 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07007989}
7990
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007991static inline void intel_disable_llc_pstate(struct drm_i915_private *i915)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02007992{
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007993 lockdep_assert_held(&i915->pcu_lock);
7994
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007995 if (!i915->gt_pm.llc_pstate.enabled)
Chris Wilsonb7137e02016-07-13 09:10:37 +01007996 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07007997
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007998 /* Currently there is no HW configuration to be done to disable. */
Jesse Barnes0a073b82013-04-17 15:54:58 -07007999
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008000 i915->gt_pm.llc_pstate.enabled = false;
Chris Wilsonb7137e02016-07-13 09:10:37 +01008001}
8002
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008003static void intel_disable_rc6(struct drm_i915_private *dev_priv)
Chris Wilsonb7137e02016-07-13 09:10:37 +01008004{
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008005 lockdep_assert_held(&dev_priv->pcu_lock);
8006
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008007 if (!dev_priv->gt_pm.rc6.enabled)
Chris Wilsonb7137e02016-07-13 09:10:37 +01008008 return;
8009
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008010 if (INTEL_GEN(dev_priv) >= 9)
8011 gen9_disable_rc6(dev_priv);
8012 else if (IS_CHERRYVIEW(dev_priv))
8013 cherryview_disable_rc6(dev_priv);
8014 else if (IS_VALLEYVIEW(dev_priv))
8015 valleyview_disable_rc6(dev_priv);
8016 else if (INTEL_GEN(dev_priv) >= 6)
8017 gen6_disable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008018
8019 dev_priv->gt_pm.rc6.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008020}
8021
8022static void intel_disable_rps(struct drm_i915_private *dev_priv)
8023{
8024 lockdep_assert_held(&dev_priv->pcu_lock);
8025
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008026 if (!dev_priv->gt_pm.rps.enabled)
Chris Wilsonb7137e02016-07-13 09:10:37 +01008027 return;
8028
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008029 if (INTEL_GEN(dev_priv) >= 9)
8030 gen9_disable_rps(dev_priv);
8031 else if (IS_CHERRYVIEW(dev_priv))
8032 cherryview_disable_rps(dev_priv);
8033 else if (IS_VALLEYVIEW(dev_priv))
8034 valleyview_disable_rps(dev_priv);
8035 else if (INTEL_GEN(dev_priv) >= 6)
8036 gen6_disable_rps(dev_priv);
8037 else if (IS_IRONLAKE_M(dev_priv))
8038 ironlake_disable_drps(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008039
8040 dev_priv->gt_pm.rps.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008041}
8042
Jesse Barnes1a01ab32012-11-02 11:14:00 -07008043void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
8044{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008045 mutex_lock(&dev_priv->pcu_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008046
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008047 intel_disable_rc6(dev_priv);
8048 intel_disable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008049 if (HAS_LLC(dev_priv))
8050 intel_disable_llc_pstate(dev_priv);
8051
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008052 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008053}
8054
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008055static inline void intel_enable_llc_pstate(struct drm_i915_private *i915)
8056{
8057 lockdep_assert_held(&i915->pcu_lock);
8058
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008059 if (i915->gt_pm.llc_pstate.enabled)
8060 return;
8061
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008062 gen6_update_ring_freq(i915);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008063
8064 i915->gt_pm.llc_pstate.enabled = true;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008065}
8066
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008067static void intel_enable_rc6(struct drm_i915_private *dev_priv)
8068{
8069 lockdep_assert_held(&dev_priv->pcu_lock);
8070
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008071 if (dev_priv->gt_pm.rc6.enabled)
8072 return;
8073
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008074 if (IS_CHERRYVIEW(dev_priv))
8075 cherryview_enable_rc6(dev_priv);
8076 else if (IS_VALLEYVIEW(dev_priv))
8077 valleyview_enable_rc6(dev_priv);
8078 else if (INTEL_GEN(dev_priv) >= 9)
8079 gen9_enable_rc6(dev_priv);
8080 else if (IS_BROADWELL(dev_priv))
8081 gen8_enable_rc6(dev_priv);
8082 else if (INTEL_GEN(dev_priv) >= 6)
8083 gen6_enable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008084
8085 dev_priv->gt_pm.rc6.enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008086}
8087
8088static void intel_enable_rps(struct drm_i915_private *dev_priv)
8089{
8090 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8091
8092 lockdep_assert_held(&dev_priv->pcu_lock);
8093
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008094 if (rps->enabled)
8095 return;
Imre Deak3cc134e2014-11-19 15:30:03 +02008096
Chris Wilsondc979972016-05-10 14:10:04 +01008097 if (IS_CHERRYVIEW(dev_priv)) {
8098 cherryview_enable_rps(dev_priv);
8099 } else if (IS_VALLEYVIEW(dev_priv)) {
8100 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008101 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01008102 gen9_enable_rps(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01008103 } else if (IS_BROADWELL(dev_priv)) {
8104 gen8_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008105 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01008106 gen6_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008107 } else if (IS_IRONLAKE_M(dev_priv)) {
8108 ironlake_enable_drps(dev_priv);
8109 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008110 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00008111
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008112 WARN_ON(rps->max_freq < rps->min_freq);
8113 WARN_ON(rps->idle_freq > rps->max_freq);
Chris Wilsonaed242f2015-03-18 09:48:21 +00008114
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008115 WARN_ON(rps->efficient_freq < rps->min_freq);
8116 WARN_ON(rps->efficient_freq > rps->max_freq);
Chris Wilsonaed242f2015-03-18 09:48:21 +00008117
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008118 rps->enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008119}
8120
Jesse Barnes1a01ab32012-11-02 11:14:00 -07008121void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
8122{
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008123 /* Powersaving is controlled by the host when inside a VM */
8124 if (intel_vgpu_active(dev_priv))
8125 return;
8126
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008127 mutex_lock(&dev_priv->pcu_lock);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008128
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008129 intel_enable_rc6(dev_priv);
8130 intel_enable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008131 if (HAS_LLC(dev_priv))
8132 intel_enable_llc_pstate(dev_priv);
8133
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008134 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008135}
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008136
Chris Wilson54b4f682016-07-21 21:16:19 +01008137static void __intel_autoenable_gt_powersave(struct work_struct *work)
8138{
8139 struct drm_i915_private *dev_priv =
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008140 container_of(work,
8141 typeof(*dev_priv),
8142 gt_pm.autoenable_work.work);
Chris Wilson54b4f682016-07-21 21:16:19 +01008143 struct intel_engine_cs *rcs;
8144 struct drm_i915_gem_request *req;
8145
Akash Goel3b3f1652016-10-13 22:44:48 +05308146 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00008147 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01008148 goto out;
8149
8150 if (!rcs->init_context)
8151 goto out;
8152
8153 mutex_lock(&dev_priv->drm.struct_mutex);
8154
8155 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
8156 if (IS_ERR(req))
8157 goto unlock;
8158
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00008159 if (!i915_modparams.enable_execlists && i915_switch_context(req) == 0)
Chris Wilson54b4f682016-07-21 21:16:19 +01008160 rcs->init_context(req);
8161
8162 /* Mark the device busy, calling intel_enable_gt_powersave() */
Chris Wilsone642c852017-03-17 11:47:09 +00008163 i915_add_request(req);
Chris Wilson54b4f682016-07-21 21:16:19 +01008164
8165unlock:
8166 mutex_unlock(&dev_priv->drm.struct_mutex);
8167out:
8168 intel_runtime_pm_put(dev_priv);
8169}
8170
8171void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
8172{
Chris Wilson54b4f682016-07-21 21:16:19 +01008173 if (IS_IRONLAKE_M(dev_priv)) {
8174 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008175 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008176 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
8177 /*
8178 * PCU communication is slow and this doesn't need to be
8179 * done at any specific time, so do this out of our fast path
8180 * to make resume and init faster.
8181 *
8182 * We depend on the HW RC6 power context save/restore
8183 * mechanism when entering D3 through runtime PM suspend. So
8184 * disable RPM until RPS/RC6 is properly setup. We can only
8185 * get here via the driver load/system resume/runtime resume
8186 * paths, so the _noresume version is enough (and in case of
8187 * runtime resume it's necessary).
8188 */
8189 if (queue_delayed_work(dev_priv->wq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008190 &dev_priv->gt_pm.autoenable_work,
Chris Wilson54b4f682016-07-21 21:16:19 +01008191 round_jiffies_up_relative(HZ)))
8192 intel_runtime_pm_get_noresume(dev_priv);
8193 }
8194}
8195
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008196static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008197{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008198 /*
8199 * On Ibex Peak and Cougar Point, we need to disable clock
8200 * gating for the panel power sequencer or it will fail to
8201 * start up when no ports are active.
8202 */
8203 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
8204}
8205
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008206static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008207{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008208 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008209
Damien Lespiau055e3932014-08-18 13:49:10 +01008210 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008211 I915_WRITE(DSPCNTR(pipe),
8212 I915_READ(DSPCNTR(pipe)) |
8213 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008214
8215 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
8216 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008217 }
8218}
8219
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008220static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008221{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008222 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008223
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01008224 /*
8225 * Required for FBC
8226 * WaFbcDisableDpfcClockGating:ilk
8227 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008228 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
8229 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
8230 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008231
8232 I915_WRITE(PCH_3DCGDIS0,
8233 MARIUNIT_CLOCK_GATE_DISABLE |
8234 SVSMUNIT_CLOCK_GATE_DISABLE);
8235 I915_WRITE(PCH_3DCGDIS1,
8236 VFMUNIT_CLOCK_GATE_DISABLE);
8237
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008238 /*
8239 * According to the spec the following bits should be set in
8240 * order to enable memory self-refresh
8241 * The bit 22/21 of 0x42004
8242 * The bit 5 of 0x42020
8243 * The bit 15 of 0x45000
8244 */
8245 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8246 (I915_READ(ILK_DISPLAY_CHICKEN2) |
8247 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008248 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008249 I915_WRITE(DISP_ARB_CTL,
8250 (I915_READ(DISP_ARB_CTL) |
8251 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02008252
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008253 /*
8254 * Based on the document from hardware guys the following bits
8255 * should be set unconditionally in order to enable FBC.
8256 * The bit 22 of 0x42000
8257 * The bit 22 of 0x42004
8258 * The bit 7,8,9 of 0x42020.
8259 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008260 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01008261 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008262 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8263 I915_READ(ILK_DISPLAY_CHICKEN1) |
8264 ILK_FBCQ_DIS);
8265 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8266 I915_READ(ILK_DISPLAY_CHICKEN2) |
8267 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008268 }
8269
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008270 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
8271
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008272 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8273 I915_READ(ILK_DISPLAY_CHICKEN2) |
8274 ILK_ELPIN_409_SELECT);
8275 I915_WRITE(_3D_CHICKEN2,
8276 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
8277 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02008278
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008279 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02008280 I915_WRITE(CACHE_MODE_0,
8281 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01008282
Akash Goel4e046322014-04-04 17:14:38 +05308283 /* WaDisable_RenderCache_OperationalFlush:ilk */
8284 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8285
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008286 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03008287
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008288 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008289}
8290
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008291static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008292{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008293 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008294 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01008295
8296 /*
8297 * On Ibex Peak and Cougar Point, we need to disable clock
8298 * gating for the panel power sequencer or it will fail to
8299 * start up when no ports are active.
8300 */
Jesse Barnescd664072013-10-02 10:34:19 -07008301 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
8302 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
8303 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008304 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
8305 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01008306 /* The below fixes the weird display corruption, a few pixels shifted
8307 * downward, on (only) LVDS of some HP laptops with IVY.
8308 */
Damien Lespiau055e3932014-08-18 13:49:10 +01008309 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008310 val = I915_READ(TRANS_CHICKEN2(pipe));
8311 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
8312 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008313 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008314 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008315 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
8316 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
8317 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008318 I915_WRITE(TRANS_CHICKEN2(pipe), val);
8319 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01008320 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01008321 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01008322 I915_WRITE(TRANS_CHICKEN1(pipe),
8323 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
8324 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008325}
8326
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008327static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008328{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008329 uint32_t tmp;
8330
8331 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02008332 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
8333 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
8334 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008335}
8336
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008337static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008338{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008339 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008340
Damien Lespiau231e54f2012-10-19 17:55:41 +01008341 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008342
8343 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8344 I915_READ(ILK_DISPLAY_CHICKEN2) |
8345 ILK_ELPIN_409_SELECT);
8346
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008347 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01008348 I915_WRITE(_3D_CHICKEN,
8349 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
8350
Akash Goel4e046322014-04-04 17:14:38 +05308351 /* WaDisable_RenderCache_OperationalFlush:snb */
8352 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8353
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008354 /*
8355 * BSpec recoomends 8x4 when MSAA is used,
8356 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008357 *
8358 * Note that PS/WM thread counts depend on the WIZ hashing
8359 * disable bit, which we don't touch here, but it's good
8360 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008361 */
8362 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008363 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008364
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008365 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02008366 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008367
8368 I915_WRITE(GEN6_UCGCTL1,
8369 I915_READ(GEN6_UCGCTL1) |
8370 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
8371 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
8372
8373 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
8374 * gating disable must be set. Failure to set it results in
8375 * flickering pixels due to Z write ordering failures after
8376 * some amount of runtime in the Mesa "fire" demo, and Unigine
8377 * Sanctuary and Tropics, and apparently anything else with
8378 * alpha test or pixel discard.
8379 *
8380 * According to the spec, bit 11 (RCCUNIT) must also be set,
8381 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008382 *
Ville Syrjäläef593182014-01-22 21:32:47 +02008383 * WaDisableRCCUnitClockGating:snb
8384 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008385 */
8386 I915_WRITE(GEN6_UCGCTL2,
8387 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
8388 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
8389
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02008390 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02008391 I915_WRITE(_3D_CHICKEN3,
8392 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008393
8394 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02008395 * Bspec says:
8396 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
8397 * 3DSTATE_SF number of SF output attributes is more than 16."
8398 */
8399 I915_WRITE(_3D_CHICKEN3,
8400 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
8401
8402 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008403 * According to the spec the following bits should be
8404 * set in order to enable memory self-refresh and fbc:
8405 * The bit21 and bit22 of 0x42000
8406 * The bit21 and bit22 of 0x42004
8407 * The bit5 and bit7 of 0x42020
8408 * The bit14 of 0x70180
8409 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01008410 *
8411 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008412 */
8413 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8414 I915_READ(ILK_DISPLAY_CHICKEN1) |
8415 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
8416 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8417 I915_READ(ILK_DISPLAY_CHICKEN2) |
8418 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01008419 I915_WRITE(ILK_DSPCLK_GATE_D,
8420 I915_READ(ILK_DSPCLK_GATE_D) |
8421 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
8422 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008423
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008424 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07008425
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008426 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008427
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008428 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008429}
8430
8431static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
8432{
8433 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
8434
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008435 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02008436 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008437 *
8438 * This actually overrides the dispatch
8439 * mode for all thread types.
8440 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008441 reg &= ~GEN7_FF_SCHED_MASK;
8442 reg |= GEN7_FF_TS_SCHED_HW;
8443 reg |= GEN7_FF_VS_SCHED_HW;
8444 reg |= GEN7_FF_DS_SCHED_HW;
8445
8446 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
8447}
8448
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008449static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008450{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008451 /*
8452 * TODO: this bit should only be enabled when really needed, then
8453 * disabled when not needed anymore in order to save power.
8454 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008455 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008456 I915_WRITE(SOUTH_DSPCLK_GATE_D,
8457 I915_READ(SOUTH_DSPCLK_GATE_D) |
8458 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008459
8460 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03008461 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
8462 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008463 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008464}
8465
Ville Syrjälä712bf362016-10-31 22:37:23 +02008466static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008467{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008468 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03008469 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
8470
8471 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8472 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8473 }
8474}
8475
Imre Deak450174f2016-05-03 15:54:21 +03008476static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
8477 int general_prio_credits,
8478 int high_prio_credits)
8479{
8480 u32 misccpctl;
Oscar Mateodd00ed92017-10-17 13:25:45 -07008481 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03008482
8483 /* WaTempDisableDOPClkGating:bdw */
8484 misccpctl = I915_READ(GEN7_MISCCPCTL);
8485 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
8486
Oscar Mateodd00ed92017-10-17 13:25:45 -07008487 val = I915_READ(GEN8_L3SQCREG1);
8488 val &= ~L3_PRIO_CREDITS_MASK;
8489 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8490 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8491 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03008492
8493 /*
8494 * Wait at least 100 clocks before re-enabling clock gating.
8495 * See the definition of L3SQCREG1 in BSpec.
8496 */
8497 POSTING_READ(GEN8_L3SQCREG1);
8498 udelay(1);
8499 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
8500}
8501
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008502static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
8503{
8504 if (!HAS_PCH_CNP(dev_priv))
8505 return;
8506
8507 /* Wa #1181 */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07008508 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
8509 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008510}
8511
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008512static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008513{
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008514 cnp_init_clock_gating(dev_priv);
8515
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07008516 /* This is not an Wa. Enable for better image quality */
8517 I915_WRITE(_3D_CHICKEN3,
8518 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
8519
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008520 /* WaEnableChickenDCPR:cnl */
8521 I915_WRITE(GEN8_CHICKEN_DCPR_1,
8522 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
8523
8524 /* WaFbcWakeMemOn:cnl */
8525 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
8526 DISP_FBC_MEMORY_WAKE);
8527
8528 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
8529 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
8530 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE,
8531 I915_READ(SLICE_UNIT_LEVEL_CLKGATE) |
8532 SARBUNIT_CLKGATE_DIS);
8533}
8534
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008535static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
8536{
8537 cnp_init_clock_gating(dev_priv);
8538 gen9_init_clock_gating(dev_priv);
8539
8540 /* WaFbcNukeOnHostModify:cfl */
8541 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8542 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
8543}
8544
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008545static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008546{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008547 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008548
8549 /* WaDisableSDEUnitClockGating:kbl */
8550 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8551 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8552 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03008553
8554 /* WaDisableGamClockGating:kbl */
8555 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8556 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8557 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008558
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008559 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008560 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8561 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008562}
8563
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008564static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008565{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008566 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03008567
8568 /* WAC6entrylatency:skl */
8569 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
8570 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008571
8572 /* WaFbcNukeOnHostModify:skl */
8573 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8574 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008575}
8576
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008577static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008578{
Matthew Auld8cb09832017-10-06 23:18:23 +01008579 /* The GTT cache must be disabled if the system is using 2M pages. */
8580 bool can_use_gtt_cache = !HAS_PAGE_SIZES(dev_priv,
8581 I915_GTT_PAGE_SIZE_2M);
Damien Lespiau07d27e22014-03-03 17:31:46 +00008582 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008583
Ben Widawskyab57fff2013-12-12 15:28:04 -08008584 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008585 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008586
Ben Widawskyab57fff2013-12-12 15:28:04 -08008587 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008588 I915_WRITE(CHICKEN_PAR1_1,
8589 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
8590
Ben Widawskyab57fff2013-12-12 15:28:04 -08008591 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01008592 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00008593 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02008594 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02008595 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008596 }
Ben Widawsky63801f22013-12-12 17:26:03 -08008597
Ben Widawskyab57fff2013-12-12 15:28:04 -08008598 /* WaVSRefCountFullforceMissDisable:bdw */
8599 /* WaDSRefCountFullforceMissDisable:bdw */
8600 I915_WRITE(GEN7_FF_THREAD_MODE,
8601 I915_READ(GEN7_FF_THREAD_MODE) &
8602 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02008603
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02008604 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8605 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02008606
8607 /* WaDisableSDEUnitClockGating:bdw */
8608 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8609 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00008610
Imre Deak450174f2016-05-03 15:54:21 +03008611 /* WaProgramL3SqcReg1Default:bdw */
8612 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03008613
Matthew Auld8cb09832017-10-06 23:18:23 +01008614 /* WaGttCachingOffByDefault:bdw */
8615 I915_WRITE(HSW_GTT_CACHE_EN, can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008616
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03008617 /* WaKVMNotificationOnConfigChange:bdw */
8618 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
8619 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
8620
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008621 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00008622
8623 /* WaDisableDopClockGating:bdw
8624 *
8625 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
8626 * clock gating.
8627 */
8628 I915_WRITE(GEN6_UCGCTL1,
8629 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008630}
8631
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008632static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008633{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07008634 /* L3 caching of data atomics doesn't work -- disable it. */
8635 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
8636 I915_WRITE(HSW_ROW_CHICKEN3,
8637 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
8638
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008639 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008640 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8641 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8642 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8643
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02008644 /* WaVSRefCountFullforceMissDisable:hsw */
8645 I915_WRITE(GEN7_FF_THREAD_MODE,
8646 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008647
Akash Goel4e046322014-04-04 17:14:38 +05308648 /* WaDisable_RenderCache_OperationalFlush:hsw */
8649 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8650
Chia-I Wufe27c602014-01-28 13:29:33 +08008651 /* enable HiZ Raw Stall Optimization */
8652 I915_WRITE(CACHE_MODE_0_GEN7,
8653 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8654
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008655 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008656 I915_WRITE(CACHE_MODE_1,
8657 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008658
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008659 /*
8660 * BSpec recommends 8x4 when MSAA is used,
8661 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008662 *
8663 * Note that PS/WM thread counts depend on the WIZ hashing
8664 * disable bit, which we don't touch here, but it's good
8665 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008666 */
8667 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008668 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008669
Kenneth Graunke94411592014-12-31 16:23:00 -08008670 /* WaSampleCChickenBitEnable:hsw */
8671 I915_WRITE(HALF_SLICE_CHICKEN3,
8672 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
8673
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008674 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07008675 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
8676
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008677 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008678}
8679
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008680static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008681{
Ben Widawsky20848222012-05-04 18:58:59 -07008682 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008683
Damien Lespiau231e54f2012-10-19 17:55:41 +01008684 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008685
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008686 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05008687 I915_WRITE(_3D_CHICKEN3,
8688 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8689
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008690 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008691 I915_WRITE(IVB_CHICKEN3,
8692 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8693 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8694
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008695 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008696 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07008697 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
8698 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008699
Akash Goel4e046322014-04-04 17:14:38 +05308700 /* WaDisable_RenderCache_OperationalFlush:ivb */
8701 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8702
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008703 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008704 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
8705 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
8706
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008707 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008708 I915_WRITE(GEN7_L3CNTLREG1,
8709 GEN7_WA_FOR_GEN7_L3_CONTROL);
8710 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07008711 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008712 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07008713 I915_WRITE(GEN7_ROW_CHICKEN2,
8714 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008715 else {
8716 /* must write both registers */
8717 I915_WRITE(GEN7_ROW_CHICKEN2,
8718 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07008719 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
8720 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008721 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008722
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008723 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05008724 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8725 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8726
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02008727 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008728 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008729 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008730 */
8731 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02008732 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008733
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008734 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008735 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8736 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8737 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8738
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008739 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008740
8741 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02008742
Chris Wilson22721342014-03-04 09:41:43 +00008743 if (0) { /* causes HiZ corruption on ivb:gt1 */
8744 /* enable HiZ Raw Stall Optimization */
8745 I915_WRITE(CACHE_MODE_0_GEN7,
8746 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8747 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08008748
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008749 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02008750 I915_WRITE(CACHE_MODE_1,
8751 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07008752
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008753 /*
8754 * BSpec recommends 8x4 when MSAA is used,
8755 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008756 *
8757 * Note that PS/WM thread counts depend on the WIZ hashing
8758 * disable bit, which we don't touch here, but it's good
8759 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008760 */
8761 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008762 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008763
Ben Widawsky20848222012-05-04 18:58:59 -07008764 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
8765 snpcr &= ~GEN6_MBC_SNPCR_MASK;
8766 snpcr |= GEN6_MBC_SNPCR_MED;
8767 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008768
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01008769 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008770 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008771
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008772 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008773}
8774
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008775static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008776{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008777 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05008778 I915_WRITE(_3D_CHICKEN3,
8779 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8780
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008781 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008782 I915_WRITE(IVB_CHICKEN3,
8783 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8784 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8785
Ville Syrjäläfad7d362014-01-22 21:32:39 +02008786 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008787 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07008788 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08008789 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
8790 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008791
Akash Goel4e046322014-04-04 17:14:38 +05308792 /* WaDisable_RenderCache_OperationalFlush:vlv */
8793 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8794
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008795 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05008796 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8797 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8798
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008799 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07008800 I915_WRITE(GEN7_ROW_CHICKEN2,
8801 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
8802
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008803 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008804 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8805 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8806 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8807
Ville Syrjälä46680e02014-01-22 21:33:01 +02008808 gen7_setup_fixed_func_scheduler(dev_priv);
8809
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008810 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008811 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008812 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008813 */
8814 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008815 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008816
Akash Goelc98f5062014-03-24 23:00:07 +05308817 /* WaDisableL3Bank2xClockGate:vlv
8818 * Disabling L3 clock gating- MMIO 940c[25] = 1
8819 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
8820 I915_WRITE(GEN7_UCGCTL4,
8821 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07008822
Ville Syrjäläafd58e72014-01-22 21:33:03 +02008823 /*
8824 * BSpec says this must be set, even though
8825 * WaDisable4x2SubspanOptimization isn't listed for VLV.
8826 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02008827 I915_WRITE(CACHE_MODE_1,
8828 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07008829
8830 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02008831 * BSpec recommends 8x4 when MSAA is used,
8832 * however in practice 16x4 seems fastest.
8833 *
8834 * Note that PS/WM thread counts depend on the WIZ hashing
8835 * disable bit, which we don't touch here, but it's good
8836 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
8837 */
8838 I915_WRITE(GEN7_GT_MODE,
8839 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
8840
8841 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02008842 * WaIncreaseL3CreditsForVLVB0:vlv
8843 * This is the hardware default actually.
8844 */
8845 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
8846
8847 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008848 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07008849 * Disable clock gating on th GCFG unit to prevent a delay
8850 * in the reporting of vblank events.
8851 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02008852 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008853}
8854
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008855static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008856{
Ville Syrjälä232ce332014-04-09 13:28:35 +03008857 /* WaVSRefCountFullforceMissDisable:chv */
8858 /* WaDSRefCountFullforceMissDisable:chv */
8859 I915_WRITE(GEN7_FF_THREAD_MODE,
8860 I915_READ(GEN7_FF_THREAD_MODE) &
8861 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03008862
8863 /* WaDisableSemaphoreAndSyncFlipWait:chv */
8864 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8865 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03008866
8867 /* WaDisableCSUnitClockGating:chv */
8868 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8869 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03008870
8871 /* WaDisableSDEUnitClockGating:chv */
8872 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8873 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008874
8875 /*
Imre Deak450174f2016-05-03 15:54:21 +03008876 * WaProgramL3SqcReg1Default:chv
8877 * See gfxspecs/Related Documents/Performance Guide/
8878 * LSQC Setting Recommendations.
8879 */
8880 gen8_set_l3sqc_credits(dev_priv, 38, 2);
8881
8882 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008883 * GTT cache may not work with big pages, so if those
8884 * are ever enabled GTT cache may need to be disabled.
8885 */
8886 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008887}
8888
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008889static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008890{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008891 uint32_t dspclk_gate;
8892
8893 I915_WRITE(RENCLK_GATE_D1, 0);
8894 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
8895 GS_UNIT_CLOCK_GATE_DISABLE |
8896 CL_UNIT_CLOCK_GATE_DISABLE);
8897 I915_WRITE(RAMCLK_GATE_D, 0);
8898 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
8899 OVRUNIT_CLOCK_GATE_DISABLE |
8900 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008901 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008902 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
8903 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02008904
8905 /* WaDisableRenderCachePipelinedFlush */
8906 I915_WRITE(CACHE_MODE_0,
8907 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03008908
Akash Goel4e046322014-04-04 17:14:38 +05308909 /* WaDisable_RenderCache_OperationalFlush:g4x */
8910 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8911
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008912 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008913}
8914
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008915static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008916{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008917 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
8918 I915_WRITE(RENCLK_GATE_D2, 0);
8919 I915_WRITE(DSPCLK_GATE_D, 0);
8920 I915_WRITE(RAMCLK_GATE_D, 0);
8921 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008922 I915_WRITE(MI_ARB_STATE,
8923 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308924
8925 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8926 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008927}
8928
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008929static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008930{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008931 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
8932 I965_RCC_CLOCK_GATE_DISABLE |
8933 I965_RCPB_CLOCK_GATE_DISABLE |
8934 I965_ISC_CLOCK_GATE_DISABLE |
8935 I965_FBC_CLOCK_GATE_DISABLE);
8936 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008937 I915_WRITE(MI_ARB_STATE,
8938 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308939
8940 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8941 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008942}
8943
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008944static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008945{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008946 u32 dstate = I915_READ(D_STATE);
8947
8948 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
8949 DSTATE_DOT_CLOCK_GATING;
8950 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01008951
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02008952 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01008953 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02008954
8955 /* IIR "flip pending" means done if this bit is set */
8956 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02008957
8958 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02008959 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02008960
8961 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
8962 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008963
8964 I915_WRITE(MI_ARB_STATE,
8965 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008966}
8967
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008968static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008969{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008970 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02008971
8972 /* interrupts should cause a wake up from C3 */
8973 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
8974 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008975
8976 I915_WRITE(MEM_MODE,
8977 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008978}
8979
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008980static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008981{
Ville Syrjälä10383922014-08-15 01:21:54 +03008982 I915_WRITE(MEM_MODE,
8983 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
8984 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008985}
8986
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008987void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008988{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008989 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008990}
8991
Ville Syrjälä712bf362016-10-31 22:37:23 +02008992void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008993{
Ville Syrjälä712bf362016-10-31 22:37:23 +02008994 if (HAS_PCH_LPT(dev_priv))
8995 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03008996}
8997
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008998static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02008999{
9000 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
9001}
9002
9003/**
9004 * intel_init_clock_gating_hooks - setup the clock gating hooks
9005 * @dev_priv: device private
9006 *
9007 * Setup the hooks that configure which clocks of a given platform can be
9008 * gated and also apply various GT and display specific workarounds for these
9009 * platforms. Note that some GT specific workarounds are applied separately
9010 * when GPU contexts or batchbuffers start their execution.
9011 */
9012void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
9013{
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009014 if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009015 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009016 else if (IS_COFFEELAKE(dev_priv))
9017 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009018 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009019 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009020 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009021 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009022 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02009023 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009024 else if (IS_GEMINILAKE(dev_priv))
9025 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009026 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009027 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009028 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009029 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009030 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009031 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009032 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009033 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009034 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009035 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009036 else if (IS_GEN6(dev_priv))
9037 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
9038 else if (IS_GEN5(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009039 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009040 else if (IS_G4X(dev_priv))
9041 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009042 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009043 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009044 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009045 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009046 else if (IS_GEN3(dev_priv))
9047 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
9048 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
9049 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
9050 else if (IS_GEN2(dev_priv))
9051 dev_priv->display.init_clock_gating = i830_init_clock_gating;
9052 else {
9053 MISSING_CASE(INTEL_DEVID(dev_priv));
9054 dev_priv->display.init_clock_gating = nop_init_clock_gating;
9055 }
9056}
9057
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009058/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009059void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009060{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009061 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009062
Daniel Vetterc921aba2012-04-26 23:28:17 +02009063 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009064 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009065 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009066 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009067 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02009068
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009069 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009070 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009071 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01009072 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01009073 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07009074 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009075 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009076 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03009077
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009078 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009079 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009080 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009081 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07009082 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08009083 dev_priv->display.compute_intermediate_wm =
9084 ilk_compute_intermediate_wm;
9085 dev_priv->display.initial_watermarks =
9086 ilk_initial_watermarks;
9087 dev_priv->display.optimize_watermarks =
9088 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02009089 } else {
9090 DRM_DEBUG_KMS("Failed to read display plane latency. "
9091 "Disable CxSR\n");
9092 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02009093 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009094 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02009095 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009096 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009097 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009098 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009099 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03009100 } else if (IS_G4X(dev_priv)) {
9101 g4x_setup_wm_latency(dev_priv);
9102 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
9103 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
9104 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
9105 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009106 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009107 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009108 dev_priv->is_ddr3,
9109 dev_priv->fsb_freq,
9110 dev_priv->mem_freq)) {
9111 DRM_INFO("failed to find known CxSR latency "
9112 "(found ddr%s fsb freq %d, mem freq %d), "
9113 "disabling CxSR\n",
9114 (dev_priv->is_ddr3 == 1) ? "3" : "2",
9115 dev_priv->fsb_freq, dev_priv->mem_freq);
9116 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03009117 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009118 dev_priv->display.update_wm = NULL;
9119 } else
9120 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009121 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009122 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009123 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009124 dev_priv->display.update_wm = i9xx_update_wm;
9125 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009126 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009127 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009128 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009129 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009130 } else {
9131 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009132 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009133 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009134 } else {
9135 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009136 }
9137}
9138
Lyude87660502016-08-17 15:55:53 -04009139static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
9140{
9141 uint32_t flags =
9142 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9143
9144 switch (flags) {
9145 case GEN6_PCODE_SUCCESS:
9146 return 0;
9147 case GEN6_PCODE_UNIMPLEMENTED_CMD:
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009148 return -ENODEV;
Lyude87660502016-08-17 15:55:53 -04009149 case GEN6_PCODE_ILLEGAL_CMD:
9150 return -ENXIO;
9151 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01009152 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04009153 return -EOVERFLOW;
9154 case GEN6_PCODE_TIMEOUT:
9155 return -ETIMEDOUT;
9156 default:
Michal Wajdeczkof0d66152017-03-28 08:45:12 +00009157 MISSING_CASE(flags);
Lyude87660502016-08-17 15:55:53 -04009158 return 0;
9159 }
9160}
9161
9162static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
9163{
9164 uint32_t flags =
9165 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9166
9167 switch (flags) {
9168 case GEN6_PCODE_SUCCESS:
9169 return 0;
9170 case GEN6_PCODE_ILLEGAL_CMD:
9171 return -ENXIO;
9172 case GEN7_PCODE_TIMEOUT:
9173 return -ETIMEDOUT;
9174 case GEN7_PCODE_ILLEGAL_DATA:
9175 return -EINVAL;
9176 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
9177 return -EOVERFLOW;
9178 default:
9179 MISSING_CASE(flags);
9180 return 0;
9181 }
9182}
9183
Tom O'Rourke151a49d2014-11-13 18:50:10 -08009184int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009185{
Lyude87660502016-08-17 15:55:53 -04009186 int status;
9187
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009188 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009189
Chris Wilson3f5582d2016-06-30 15:32:45 +01009190 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9191 * use te fw I915_READ variants to reduce the amount of work
9192 * required when reading/writing.
9193 */
9194
9195 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009196 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps\n",
9197 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009198 return -EAGAIN;
9199 }
9200
Chris Wilson3f5582d2016-06-30 15:32:45 +01009201 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
9202 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
9203 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009204
Chris Wilsone09a3032017-04-11 11:13:39 +01009205 if (__intel_wait_for_register_fw(dev_priv,
9206 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9207 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009208 DRM_ERROR("timeout waiting for pcode read (from mbox %x) to finish for %ps\n",
9209 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009210 return -ETIMEDOUT;
9211 }
9212
Chris Wilson3f5582d2016-06-30 15:32:45 +01009213 *val = I915_READ_FW(GEN6_PCODE_DATA);
9214 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009215
Lyude87660502016-08-17 15:55:53 -04009216 if (INTEL_GEN(dev_priv) > 6)
9217 status = gen7_check_mailbox_status(dev_priv);
9218 else
9219 status = gen6_check_mailbox_status(dev_priv);
9220
9221 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009222 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
9223 mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009224 return status;
9225 }
9226
Ben Widawsky42c05262012-09-26 10:34:00 -07009227 return 0;
9228}
9229
Chris Wilson3f5582d2016-06-30 15:32:45 +01009230int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04009231 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009232{
Lyude87660502016-08-17 15:55:53 -04009233 int status;
9234
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009235 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009236
Chris Wilson3f5582d2016-06-30 15:32:45 +01009237 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9238 * use te fw I915_READ variants to reduce the amount of work
9239 * required when reading/writing.
9240 */
9241
9242 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009243 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps\n",
9244 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009245 return -EAGAIN;
9246 }
9247
Chris Wilson3f5582d2016-06-30 15:32:45 +01009248 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02009249 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01009250 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009251
Chris Wilsone09a3032017-04-11 11:13:39 +01009252 if (__intel_wait_for_register_fw(dev_priv,
9253 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9254 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009255 DRM_ERROR("timeout waiting for pcode write of 0x%08x to mbox %x to finish for %ps\n",
9256 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009257 return -ETIMEDOUT;
9258 }
9259
Chris Wilson3f5582d2016-06-30 15:32:45 +01009260 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009261
Lyude87660502016-08-17 15:55:53 -04009262 if (INTEL_GEN(dev_priv) > 6)
9263 status = gen7_check_mailbox_status(dev_priv);
9264 else
9265 status = gen6_check_mailbox_status(dev_priv);
9266
9267 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009268 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
9269 val, mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009270 return status;
9271 }
9272
Ben Widawsky42c05262012-09-26 10:34:00 -07009273 return 0;
9274}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07009275
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009276static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
9277 u32 request, u32 reply_mask, u32 reply,
9278 u32 *status)
9279{
9280 u32 val = request;
9281
9282 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
9283
9284 return *status || ((val & reply_mask) == reply);
9285}
9286
9287/**
9288 * skl_pcode_request - send PCODE request until acknowledgment
9289 * @dev_priv: device private
9290 * @mbox: PCODE mailbox ID the request is targeted for
9291 * @request: request ID
9292 * @reply_mask: mask used to check for request acknowledgment
9293 * @reply: value used to check for request acknowledgment
9294 * @timeout_base_ms: timeout for polling with preemption enabled
9295 *
9296 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02009297 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009298 * The request is acknowledged once the PCODE reply dword equals @reply after
9299 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02009300 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009301 * preemption disabled.
9302 *
9303 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
9304 * other error as reported by PCODE.
9305 */
9306int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
9307 u32 reply_mask, u32 reply, int timeout_base_ms)
9308{
9309 u32 status;
9310 int ret;
9311
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009312 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009313
9314#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
9315 &status)
9316
9317 /*
9318 * Prime the PCODE by doing a request first. Normally it guarantees
9319 * that a subsequent request, at most @timeout_base_ms later, succeeds.
9320 * _wait_for() doesn't guarantee when its passed condition is evaluated
9321 * first, so send the first request explicitly.
9322 */
9323 if (COND) {
9324 ret = 0;
9325 goto out;
9326 }
9327 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
9328 if (!ret)
9329 goto out;
9330
9331 /*
9332 * The above can time out if the number of requests was low (2 in the
9333 * worst case) _and_ PCODE was busy for some reason even after a
9334 * (queued) request and @timeout_base_ms delay. As a workaround retry
9335 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02009336 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009337 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02009338 * requests, and for any quirks of the PCODE firmware that delays
9339 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009340 */
9341 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
9342 WARN_ON_ONCE(timeout_base_ms > 3);
9343 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02009344 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009345 preempt_enable();
9346
9347out:
9348 return ret ? ret : status;
9349#undef COND
9350}
9351
Ville Syrjälädd06f882014-11-10 22:55:12 +02009352static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
9353{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009354 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9355
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009356 /*
9357 * N = val - 0xb7
9358 * Slow = Fast = GPLL ref * N
9359 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009360 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009361}
9362
Fengguang Wub55dd642014-07-12 11:21:39 +02009363static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009364{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009365 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9366
9367 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009368}
9369
Fengguang Wub55dd642014-07-12 11:21:39 +02009370static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309371{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009372 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9373
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009374 /*
9375 * N = val / 2
9376 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
9377 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009378 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05309379}
9380
Fengguang Wub55dd642014-07-12 11:21:39 +02009381static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309382{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009383 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9384
Ville Syrjälä1c147622014-08-18 14:42:43 +03009385 /* CHV needs even values */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009386 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05309387}
9388
Ville Syrjälä616bc822015-01-23 21:04:25 +02009389int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
9390{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009391 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009392 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
9393 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009394 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009395 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009396 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009397 return byt_gpu_freq(dev_priv, val);
9398 else
9399 return val * GT_FREQUENCY_MULTIPLIER;
9400}
9401
Ville Syrjälä616bc822015-01-23 21:04:25 +02009402int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
9403{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009404 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009405 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
9406 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009407 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009408 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009409 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009410 return byt_freq_opcode(dev_priv, val);
9411 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009412 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05309413}
9414
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00009415void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01009416{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009417 mutex_init(&dev_priv->pcu_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01009418
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009419 INIT_DELAYED_WORK(&dev_priv->gt_pm.autoenable_work,
Chris Wilson54b4f682016-07-21 21:16:19 +01009420 __intel_autoenable_gt_powersave);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009421 atomic_set(&dev_priv->gt_pm.rps.num_waiters, 0);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03009422
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01009423 dev_priv->runtime_pm.suspended = false;
9424 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01009425}
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009426
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009427static u64 vlv_residency_raw(struct drm_i915_private *dev_priv,
9428 const i915_reg_t reg)
9429{
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009430 u32 lower, upper, tmp;
Chris Wilson71cc2b12017-03-24 16:54:18 +00009431 int loop = 2;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009432
9433 /* The register accessed do not need forcewake. We borrow
9434 * uncore lock to prevent concurrent access to range reg.
9435 */
9436 spin_lock_irq(&dev_priv->uncore.lock);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009437
9438 /* vlv and chv residency counters are 40 bits in width.
9439 * With a control bit, we can choose between upper or lower
9440 * 32bit window into this counter.
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009441 *
9442 * Although we always use the counter in high-range mode elsewhere,
9443 * userspace may attempt to read the value before rc6 is initialised,
9444 * before we have set the default VLV_COUNTER_CONTROL value. So always
9445 * set the high bit to be safe.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009446 */
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009447 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9448 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009449 upper = I915_READ_FW(reg);
9450 do {
9451 tmp = upper;
9452
9453 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9454 _MASKED_BIT_DISABLE(VLV_COUNT_RANGE_HIGH));
9455 lower = I915_READ_FW(reg);
9456
9457 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9458 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
9459 upper = I915_READ_FW(reg);
Chris Wilson71cc2b12017-03-24 16:54:18 +00009460 } while (upper != tmp && --loop);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009461
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009462 /* Everywhere else we always use VLV_COUNTER_CONTROL with the
9463 * VLV_COUNT_RANGE_HIGH bit set - so it is safe to leave it set
9464 * now.
9465 */
9466
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009467 spin_unlock_irq(&dev_priv->uncore.lock);
9468
9469 return lower | (u64)upper << 8;
9470}
9471
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009472u64 intel_rc6_residency_us(struct drm_i915_private *dev_priv,
9473 const i915_reg_t reg)
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009474{
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009475 u64 time_hw, units, div;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009476
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01009477 if (!intel_rc6_enabled())
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009478 return 0;
9479
9480 intel_runtime_pm_get(dev_priv);
9481
9482 /* On VLV and CHV, residency time is in CZ units rather than 1.28us */
9483 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009484 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009485 div = dev_priv->czclk_freq;
9486
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009487 time_hw = vlv_residency_raw(dev_priv, reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009488 } else if (IS_GEN9_LP(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009489 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009490 div = 1200; /* 833.33ns */
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009491
9492 time_hw = I915_READ(reg);
9493 } else {
9494 units = 128000; /* 1.28us */
9495 div = 100000;
9496
9497 time_hw = I915_READ(reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009498 }
9499
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009500 intel_runtime_pm_put(dev_priv);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009501 return DIV_ROUND_UP_ULL(time_hw * units, div);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009502}